Files
buildroot/board/minnowboard/genimage.cfg
tiopex dcdaa3599c bump version to 2022.02.9
add miyoo_defconfig
2023-01-31 16:39:34 +01:00

34 lines
512 B
INI

# Create an image of the efi partition
image efi-part.vfat {
vfat {
file EFI {
image = "efi-part/EFI"
}
file bzImage {
image = "bzImage"
}
}
size = 10M
}
# Create the sdcard image, pulling in
# * the image created by buildroot
# * the efi-partition created above
image sdcard.img {
hdimage {
partition-table-type = "gpt"
}
partition boot {
partition-type-uuid = U
image = "efi-part.vfat"
}
partition rootfs {
partition-type-uuid = L
image = "rootfs.ext4"
size = 512M
}
}