kumquat-buildroot/board/roseapplepi/genimage.cfg
Giulio Benetti 1de0e582dd board/roseapplepi/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:34 +01:00

40 lines
540 B
INI

# Minimal SD card image for the Roseapple Pi
#
image boot.vfat {
vfat {
files = {
"uEnv.txt",
"uImage"
}
file kernel.dtb {
image = "owl-s500-roseapplepi.dtb"
}
}
size = 128M
}
image sdcard.img {
hdimage {
}
partition s500-bootloader {
in-partition-table = "no"
image = "s500-bootloader.bin"
offset = 0x200200 # 2MB + 512B
}
partition u-boot {
in-partition-table = "no"
image = "u-boot-dtb.img"
offset = 3M
}
partition boot {
partition-type = 0xC
bootable = "true"
image = "boot.vfat"
}
}