fcecfb66d1
Fixes #12816 Commit42d22f3bdb
({configs/raspberrypi,package/rpi-firmware}: bump kernel/firmware to 20190819 version) updated the kernel version but failed to take into consideration that the rpi0w dts file has been renamed:6f91b5dbfd
Fix it by renaming the dts/dtb file referenced from the kernel build and genimage. Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
32 lines
521 B
INI
32 lines
521 B
INI
image boot.vfat {
|
|
vfat {
|
|
files = {
|
|
"bcm2708-rpi-zero-w.dtb",
|
|
"rpi-firmware/bootcode.bin",
|
|
"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"
|
|
}
|
|
}
|