mirror of
https://git.yoctoproject.org/meta-raspberrypi
synced 2026-01-12 03:10:08 +00:00
Set SDIMG_KERNELIMAGE to kernel_2712.img instead of kernel8.img. Raspberry Pi 5 firmware defaults to loading kernel_2712.img because this image contains optimisations specific to Raspberry Pi 5 (e.g. 16K page-size). For more details: https://www.raspberrypi.com/documentation/computers/config_txt.html#kernel This work was sponsored by GOVCERT.LU. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
24 lines
640 B
Plaintext
24 lines
640 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;ttyS0"
|
|
|
|
VC4DTBO ?= "vc4-kms-v3d"
|