package/wavpack: bump to version 5.1.0
[buildroot-gz.git] / board / minnowboard / genimage.cfg
blob6cf787430752ad6ec4c662f0a0451d2955d53367
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                 file bzImage {
11                         image = "bzImage"
12                 }
13         }
14         size=10M
17 # Create the sdcard image, pulling in
18 #  * the image created by buildroot
19 #  * the efi-partition created above
20 image sdcard.img {
21         hdimage {
22         }
24         partition boot {
25                 partition-type = 0xEF
26                 image = "efi-part.vfat"
27         }
29         partition rootfs {
30                 partition-type = 0x83
31                 image = "rootfs.ext4"
32                 size = 512M
33         }