blob: 4f67d298fdcd0fb4d1bb9d6ace767b17991efd9a [file] [log] [blame]
Patrick Williams8b8bc412016-08-17 15:02:23 -05001DESCRIPTION = "Linux Kernel for Raspberry Pi"
2SECTION = "kernel"
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00003LICENSE = "GPL-2.0-only"
Andrew Geissler11105212021-02-12 15:30:38 -06004LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
Patrick Williams8b8bc412016-08-17 15:02:23 -05005
Andrew Geissler517393d2023-01-13 08:55:19 -06006COMPATIBLE_MACHINE ?= "^rpi$"
Patrick Williams8b8bc412016-08-17 15:02:23 -05007
8PE = "1"
9PV = "${LINUX_VERSION}+git${SRCPV}"
10
Andrew Geissler11105212021-02-12 15:30:38 -060011inherit siteinfo
Brad Bishopd7bf8c12018-02-25 22:55:05 -050012require recipes-kernel/linux/linux-yocto.inc
13
Andrew Geissler26e4bea2020-11-30 19:54:03 -060014SRC_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)} \
Andrew Geisslera4353c82021-06-25 14:23:27 -050017 ${@bb.utils.contains("MACHINE_FEATURES", "wm8960", "file://wm8960.cfg", "", d)} \
Andrew Geissler26e4bea2020-11-30 19:54:03 -060018 "
Brad Bishop9392c692018-09-07 15:37:17 +010019
Brad Bishopd7bf8c12018-02-25 22:55:05 -050020KCONFIG_MODE = "--alldefconfig"
Patrick Williams213cb262021-08-07 19:21:33 -050021KBUILD_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"
Andrew Geissler87f5cff2022-09-30 13:13:31 -050029KBUILD_DEFCONFIG:raspberrypi-armv7 ?= "bcm2711_defconfig"
30KBUILD_DEFCONFIG:raspberrypi-armv8 ?= "bcm2711_defconfig"
Patrick Williams8b8bc412016-08-17 15:02:23 -050031
Brad Bishop870eb532020-01-06 09:44:45 -050032LINUX_VERSION_EXTENSION ?= ""
33
Patrick Williams8b8bc412016-08-17 15:02:23 -050034KERNEL_MODULE_AUTOLOAD += "${@bb.utils.contains("MACHINE_FEATURES", "pitft28r", "stmpe-ts", "", d)}"
35
Brad Bishopd7bf8c12018-02-25 22:55:05 -050036# A LOADADDR is needed when building a uImage format kernel. This value is not
37# set by default in rpi-4.8.y and later branches so we need to provide it
38# manually. This value unused if KERNEL_IMAGETYPE is not uImage.
Patrick Williams58776372022-04-13 09:07:35 -050039KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
40
41UBOOT_ENTRYPOINT = "0x00008000"
42UBOOT_LOADADDRESS = "0x00008000"