b5e29353b5
As resizing the rootfs partition using a partition manager can result in a non booting image due to the firmware's location, removal of the size limit for the rootfs allows better match size-wise. Signed-off-by: Dagg Stompler <daggs@gmx.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
39 lines
499 B
INI
39 lines
499 B
INI
image boot.vfat {
|
|
vfat {
|
|
files = {
|
|
"Image",
|
|
"meson-gxbb-odroidc2.dtb",
|
|
"boot.scr"
|
|
}
|
|
}
|
|
size = 64M
|
|
}
|
|
|
|
image sdcard.img {
|
|
hdimage {
|
|
}
|
|
|
|
partition bl1 {
|
|
in-partition-table = "no"
|
|
image = "bl1.bin.hardkernel"
|
|
offset = 0
|
|
}
|
|
|
|
partition u-boot {
|
|
in-partition-table = "no"
|
|
image = "uboot-odc2.img"
|
|
offset = 49664
|
|
}
|
|
|
|
partition boot {
|
|
partition-type = 0xC
|
|
bootable = "true"
|
|
image = "boot.vfat"
|
|
}
|
|
|
|
partition rootfs {
|
|
partition-type = 0x83
|
|
image = "rootfs.ext4"
|
|
}
|
|
}
|