kumquat-buildroot/board/zynq/genimage.cfg
Peter Korsgaard d54123d293 boards/zynq: use genimage to generate a bootable SD card image
[Run-time tested on ZedBoard, build-tested on the other boards]
[Peter: also add host-dosfstools / host-mtools to make vfat images]
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2017-12-11 22:39:19 +01:00

26 lines
309 B
INI

image boot.vfat {
vfat {
files = {
"boot.bin",
"u-boot.img",
"devicetree.dtb",
"uImage"
}
file uramdisk.image.gz {
image = "rootfs.cpio.uboot"
}
}
size = 32M
}
image sdcard.img {
hdimage {
}
partition boot {
partition-type = 0xC
bootable = "true"
image = "boot.vfat"
}
}