mirror of
https://git.yoctoproject.org/meta-raspberrypi
synced 2026-01-12 03:10:08 +00:00
Having RPI_KERNEL_DEVICETREE_OVERLAYS:append = " overlays/bcm2712d0.dtbo" in raspberrypi5.conf is not applying when building an 64bit compatible image with raspberrypi-armv8. Thus moving into the rpi-base.inc This fix the boot of this image on Raspberry Pi 5 hw rev 1.1 Signed-off-by: Thomas Roos <throos@amazon.de>
33 lines
962 B
Plaintext
33 lines
962 B
Plaintext
#@TYPE: Machine
|
|
#@NAME: RaspberryPi 5 Development Board (64bit)
|
|
#@DESCRIPTION: Machine configuration for the RaspberryPi 5 in 64 bits mode
|
|
|
|
require conf/machine/include/arm/armv8-2a/tune-cortexa76.inc
|
|
include conf/machine/include/rpi-base.inc
|
|
|
|
MACHINE_FEATURES += "pci"
|
|
MACHINE_EXTRA_RRECOMMENDS += "\
|
|
linux-firmware-rpidistro-bcm43455 \
|
|
bluez-firmware-rpidistro-bcm4345c0-hcd \
|
|
linux-firmware-rpidistro-bcm43456 \
|
|
bluez-firmware-rpidistro-bcm4345c5-hcd \
|
|
"
|
|
|
|
RPI_KERNEL_DEVICETREE = " \
|
|
broadcom/bcm2712-rpi-5-b.dtb \
|
|
"
|
|
|
|
SDIMG_KERNELIMAGE ?= "kernel_2712.img"
|
|
SERIAL_CONSOLES ?= "115200;ttyAMA10"
|
|
|
|
VC4DTBO ?= "vc4-kms-v3d"
|
|
|
|
# When u-boot is enabled we need to use the "Image" format and the "booti"
|
|
# command to load the kernel
|
|
KERNEL_IMAGETYPE_UBOOT ?= "Image"
|
|
# "zImage" not supported on arm64 and ".gz" images not supported by bootloader yet
|
|
KERNEL_IMAGETYPE_DIRECT ?= "Image"
|
|
KERNEL_BOOTCMD ?= "booti"
|
|
|
|
UBOOT_MACHINE = "rpi_arm64_config"
|