2c52579451
Increase vfat partition size for qemu-aarch64-sbsa since it now requires more than 32M. See "Disk full" [1]. [1] https://gitlab.com/kubu93/buildroot/-/jobs/1745752049 Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
28 lines
350 B
INI
28 lines
350 B
INI
image efi-part.vfat {
|
|
vfat {
|
|
file EFI {
|
|
image = "efi-part/EFI"
|
|
}
|
|
file Image {
|
|
image = "Image"
|
|
}
|
|
}
|
|
size = 64M
|
|
}
|
|
|
|
image disk.img {
|
|
hdimage {
|
|
gpt = true
|
|
}
|
|
|
|
partition boot {
|
|
partition-type = 0xEF
|
|
image = "efi-part.vfat"
|
|
}
|
|
|
|
partition root {
|
|
partition-type = 0x83
|
|
image = "rootfs.ext2"
|
|
}
|
|
}
|