kumquat-buildroot/board/microchip/sama5d2_icp/genimage.cfg
Giulio Benetti 332dc70102 board/microchip/sama5d2_icp/genimage.cfg: beautify file
Beatify this genimage .cfg file to have consistency with all genimage .cfg
files in Buildroot.

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2021-11-08 22:59:29 +01:00

33 lines
441 B
INI

# Image for SD card boot on Microchip SAMA5D2 ICP (Industrial Connectivity Platform)
#
image boot.vfat {
vfat {
files = {
"zImage",
"at91-sama5d2_icp.dtb",
"boot.bin",
"u-boot.bin"
}
}
size = 16M
}
image sdcard.img {
hdimage {
}
partition boot {
partition-type = 0xC
bootable = "true"
image = "boot.vfat"
offset = 1M
}
partition rootfs {
partition-type = 0x83
image = "rootfs.ext4"
size = 512M
}
}