mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-19 21:09:03 +02:00

COMPATIBLE_MACHINE is expected to be overridden by linux-raspberrypi-v7.inc for linux-raspberrypi-v7 machine this however does not work because linux-raspberrypi-v7_5.15.bb includes linux-raspberrypi-v7.inc and linux-raspberrypi.inc ( via linux-raspberrypi_5.15.bb) and setting from linux-raspberrypi.inc takes precedence over one coming from linux-raspberrypi-v7.inc as a result linux-raspberrypi-v7 kernel recipe becomes available for raspberrypi4 machine as well, this recipe however needs certain defines e.g.RASPBERRYPI_v7_KERNEL which are only available in raspberrypi-armv7.conf Signed-off-by: Khem Raj <raj.khem@gmail.com>
43 lines
1.6 KiB
HTML
43 lines
1.6 KiB
HTML
DESCRIPTION = "Linux Kernel for Raspberry Pi"
|
|
SECTION = "kernel"
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
|
|
|
|
COMPATIBLE_MACHINE ?= "^rpi$"
|
|
|
|
PE = "1"
|
|
PV = "${LINUX_VERSION}+git${SRCPV}"
|
|
|
|
inherit siteinfo
|
|
require recipes-kernel/linux/linux-yocto.inc
|
|
|
|
SRC_URI += " \
|
|
${@bb.utils.contains("INITRAMFS_IMAGE_BUNDLE", "1", "file://initramfs-image-bundle.cfg", "", d)} \
|
|
${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "file://vc4graphics.cfg", "", d)} \
|
|
${@bb.utils.contains("MACHINE_FEATURES", "wm8960", "file://wm8960.cfg", "", d)} \
|
|
"
|
|
|
|
KCONFIG_MODE = "--alldefconfig"
|
|
KBUILD_DEFCONFIG:raspberrypi0-wifi ?= "bcmrpi_defconfig"
|
|
KBUILD_DEFCONFIG:raspberrypi ?= "bcmrpi_defconfig"
|
|
KBUILD_DEFCONFIG:raspberrypi-cm3 ?= "bcm2709_defconfig"
|
|
KBUILD_DEFCONFIG:raspberrypi2 ?= "bcm2709_defconfig"
|
|
KBUILD_DEFCONFIG:raspberrypi3 ?= "bcm2709_defconfig"
|
|
KBUILD_DEFCONFIG:raspberrypi3-64 ?= "bcmrpi3_defconfig"
|
|
KBUILD_DEFCONFIG:raspberrypi4 ?= "bcm2711_defconfig"
|
|
KBUILD_DEFCONFIG:raspberrypi4-64 ?= "bcm2711_defconfig"
|
|
KBUILD_DEFCONFIG:raspberrypi-armv7 ?= "bcm2711_defconfig"
|
|
KBUILD_DEFCONFIG:raspberrypi-armv8 ?= "bcm2711_defconfig"
|
|
|
|
LINUX_VERSION_EXTENSION ?= ""
|
|
|
|
KERNEL_MODULE_AUTOLOAD += "${@bb.utils.contains("MACHINE_FEATURES", "pitft28r", "stmpe-ts", "", d)}"
|
|
|
|
# A LOADADDR is needed when building a uImage format kernel. This value is not
|
|
# set by default in rpi-4.8.y and later branches so we need to provide it
|
|
# manually. This value unused if KERNEL_IMAGETYPE is not uImage.
|
|
KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
|
|
|
|
UBOOT_ENTRYPOINT = "0x00008000"
|
|
UBOOT_LOADADDRESS = "0x00008000"
|