logrotate: enable selinux support
[buildroot-gz.git] / board / intel / galileo / genimage.cfg
blob31add21e676f470513be185080bdf269dd4d3e41
1 # Create an image of the efi partition
2 image efi-part.vfat {
3         vfat {
4                 file startup.nsh {
5                         image = "efi-part/startup.nsh"
6                 }
7                 file EFI {
8                         image = "efi-part/EFI"
9                 }
10         }
11         size=512K
14 # Create the sdcard image, pulling in
15 #  * the image created by buildroot
16 #  * the efi-partition created above
17 image sdcard.img {
18         hdimage {
19         }
21         partition boot {
22                 partition-type = 0xC
23                 image = "efi-part.vfat"
24         }
26         partition rootfs {
27                 partition-type = 0x83
28                 image = "rootfs.ext2"
29                 size = 512M
30         }