mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-09 17:03:35 -09:00
Now that the qspi.bin file is included for zynqmp images, the 32M vfat partition is getting dangerously close to being full. In the process of bumping Linux kernel 6.12.10 to 6.12.40, the size of the default Linux kernel Image file for zynqmp products is increasing from 23.4M to 26.9M. This is leaving less than 1M of free space in the vfat partition meaning users may unknowingly exceed the 32M size by just adding Linux kernel configs. To avoid potential problems, this patch doubles the size of the vfat partition to 64M, which should be plenty of space for any configuration. Signed-off-by: Neal Frager <neal.frager@amd.com> Reviewed-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Arnout Vandecappelle <arnout@rnout.be>
33 lines
391 B
INI
33 lines
391 B
INI
image boot.vfat {
|
|
vfat {
|
|
files = {
|
|
"boot.bin",
|
|
"u-boot.itb",
|
|
"qspi.bin",
|
|
"system.dtb",
|
|
"Image"
|
|
}
|
|
file extlinux/extlinux.conf {
|
|
image = extlinux.conf
|
|
}
|
|
}
|
|
|
|
size = 64M
|
|
}
|
|
|
|
image sdcard.img {
|
|
hdimage {
|
|
}
|
|
|
|
partition boot {
|
|
partition-type = 0xC
|
|
bootable = "true"
|
|
image = "boot.vfat"
|
|
}
|
|
|
|
partition rootfs {
|
|
partition-type = 0x83
|
|
image = "rootfs.ext4"
|
|
}
|
|
}
|