mirror of
git://git.yoctoproject.org/meta-raspberrypi
synced 2026-04-02 02:49:12 +00:00
"zImage" not supported on arm64 so set KERNEL_IMAGETYPE_DIRECT to "Image" for Raspberry Pi 5 and avoid the following errors: | make: *** No rule to make target 'zImage'. Stop. | ERROR: oe_runmake failed This work was sponsored by GOVCERT.LU. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
27 lines
762 B
Plaintext
27 lines
762 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"
|
|
|
|
# "zImage" not supported on arm64 and ".gz" images not supported by bootloader yet
|
|
KERNEL_IMAGETYPE_DIRECT ?= "Image"
|