044903594f
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>
33 lines
403 B
INI
33 lines
403 B
INI
# Image for SD card boot on Microchip SAM9X60-EK
|
|
#
|
|
image boot.vfat {
|
|
vfat {
|
|
files = {
|
|
"zImage",
|
|
"at91-sam9x60ek.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
|
|
}
|
|
}
|