5a09c19908
Since release 4.4 a kernel without a trailer is assumed to be device tree capable. Since our Raspberry Pi defconfigs all use the newer firmware we can just use the regular kernel image. https://www.raspberrypi.org/documentation/configuration/device-tree.md Tested on Raspberry Pi 3. Cc: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
31 lines
487 B
INI
31 lines
487 B
INI
image boot.vfat {
|
|
vfat {
|
|
files = {
|
|
"bcm2709-rpi-2-b.dtb",
|
|
"rpi-firmware/bootcode.bin",
|
|
"rpi-firmware/cmdline.txt",
|
|
"rpi-firmware/config.txt",
|
|
"rpi-firmware/fixup.dat",
|
|
"rpi-firmware/start.elf",
|
|
"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"
|
|
}
|
|
}
|