59c3426c51
Since commit 'package/rpi-firmware: fix startup file names' ([1]) the start and fixup file names are normalized to start.elf/fixup.dat, adjust the rpi4 genimage config files accordingly. Fixes: ERROR: file(rpi-firmware/fixup4.dat): stat(.../images/rpi-firmware/fixup4.dat) failed: No such file or directory ERROR: vfat(boot.vfat): could not setup rpi-firmware/fixup4.dat [1] https://git.buildroot.net/buildroot/commit/?id=1bdc0334ff6273761b2e7fda730cdcc7e1f46862 Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
31 lines
483 B
INI
31 lines
483 B
INI
image boot.vfat {
|
|
vfat {
|
|
files = {
|
|
"bcm2711-rpi-4-b.dtb",
|
|
"rpi-firmware/cmdline.txt",
|
|
"rpi-firmware/config.txt",
|
|
"rpi-firmware/fixup.dat",
|
|
"rpi-firmware/start.elf",
|
|
"rpi-firmware/overlays",
|
|
"zImage"
|
|
}
|
|
}
|
|
size = 32M
|
|
}
|
|
|
|
image sdcard.img {
|
|
hdimage {
|
|
}
|
|
|
|
partition boot {
|
|
partition-type = 0xC
|
|
bootable = "true"
|
|
image = "boot.vfat"
|
|
}
|
|
|
|
partition rootfs {
|
|
partition-type = 0x83
|
|
image = "rootfs.ext4"
|
|
}
|
|
}
|