mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
In the process of bumping Linux kernel 6.12.10 to 6.12.40, the size of the default Linux kernel Image file for versal products is increasing from 23.4M to 26.9M. This is leaving limited 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> Signed-off-by: Julien Olivain <ju.o@free.fr>
31 lines
359 B
INI
31 lines
359 B
INI
image boot.vfat {
|
|
vfat {
|
|
files = {
|
|
"boot.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"
|
|
}
|
|
}
|