1DESCRIPTION = "Linux Kernel for Raspberry Pi" 2SECTION = "kernel" 3LICENSE = "GPL-2.0-only" 4LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46" 5 6COMPATIBLE_MACHINE = "^rpi$" 7 8PE = "1" 9PV = "${LINUX_VERSION}+git${SRCPV}" 10 11inherit siteinfo 12require recipes-kernel/linux/linux-yocto.inc 13 14SRC_URI += " \ 15 ${@bb.utils.contains("INITRAMFS_IMAGE_BUNDLE", "1", "file://initramfs-image-bundle.cfg", "", d)} \ 16 ${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "file://vc4graphics.cfg", "", d)} \ 17 ${@bb.utils.contains("MACHINE_FEATURES", "wm8960", "file://wm8960.cfg", "", d)} \ 18 " 19 20KCONFIG_MODE = "--alldefconfig" 21KBUILD_DEFCONFIG:raspberrypi0-wifi ?= "bcmrpi_defconfig" 22KBUILD_DEFCONFIG:raspberrypi ?= "bcmrpi_defconfig" 23KBUILD_DEFCONFIG:raspberrypi-cm3 ?= "bcm2709_defconfig" 24KBUILD_DEFCONFIG:raspberrypi2 ?= "bcm2709_defconfig" 25KBUILD_DEFCONFIG:raspberrypi3 ?= "bcm2709_defconfig" 26KBUILD_DEFCONFIG:raspberrypi3-64 ?= "bcmrpi3_defconfig" 27KBUILD_DEFCONFIG:raspberrypi4 ?= "bcm2711_defconfig" 28KBUILD_DEFCONFIG:raspberrypi4-64 ?= "bcm2711_defconfig" 29 30LINUX_VERSION_EXTENSION ?= "" 31 32KERNEL_MODULE_AUTOLOAD += "${@bb.utils.contains("MACHINE_FEATURES", "pitft28r", "stmpe-ts", "", d)}" 33 34# A LOADADDR is needed when building a uImage format kernel. This value is not 35# set by default in rpi-4.8.y and later branches so we need to provide it 36# manually. This value unused if KERNEL_IMAGETYPE is not uImage. 37KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}" 38 39UBOOT_ENTRYPOINT = "0x00008000" 40UBOOT_LOADADDRESS = "0x00008000" 41