blob: e0a446162e1115e20a5966c7a1960da4446ee0f8 [file] [log] [blame]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05001python __anonymous() {
2 if "linux-raspberrypi-dev" not in d.getVar("PREFERRED_PROVIDER_virtual/kernel"):
3 msg = "Skipping linux-raspberrypi-dev as it is not the preferred " + \
4 "provider of virtual/kernel."
5 raise bb.parse.SkipRecipe(msg)
6}
7
Andrew Geissler26e4bea2020-11-30 19:54:03 -06008LINUX_VERSION ?= "5.10.y"
9LINUX_RPI_BRANCH ?= "rpi-5.10.y"
William A. Kennington IIIa99e9b62021-06-02 12:47:56 -070010LINUX_RPI_KMETA_BRANCH ?= "yocto-5.10"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050011
William A. Kennington IIIa99e9b62021-06-02 12:47:56 -070012# Set default SRCREVs. Both the machine and meta SRCREVs are statically set
13# to the as in 5.10 recipe, and hence prevent network access during parsing. If
14# linux-yocto-dev is the preferred provider, they will be overridden to
15# AUTOREV in following anonymous python routine and resolved when the
16# variables are finalized.
17SRCREV_machine ?= '${@oe.utils.conditional("PREFERRED_PROVIDER_virtual/kernel", "linux-raspberrypi-dev", "${AUTOREV}", "89399e6e7e33d6260a954603ca03857df594ffd3", d)}'
18SRCREV_meta ?= '${@oe.utils.conditional("PREFERRED_PROVIDER_virtual/kernel", "linux-raspberrypi-dev", "${AUTOREV}", "a19886b00ea7d874fdd60d8e3435894bb16e6434", d)}'
Brad Bishop6e60e8b2018-02-01 10:27:11 -050019
Andrew Geissler26e4bea2020-11-30 19:54:03 -060020KMETA = "kernel-meta"
21
Brad Bishop316dfdd2018-06-25 12:45:53 -040022SRC_URI = " \
Andrew Geissler595f6302022-01-24 19:11:47 +000023 git://github.com/raspberrypi/linux.git;name=machine;branch=${LINUX_RPI_BRANCH};protocol=https \
William A. Kennington IIIa99e9b62021-06-02 12:47:56 -070024 git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=${LINUX_RPI_KMETA_BRANCH};destsuffix=${KMETA} \
Andrew Geissler26e4bea2020-11-30 19:54:03 -060025 file://powersave.cfg \
26 file://android-drivers.cfg \
Brad Bishop316dfdd2018-06-25 12:45:53 -040027 "
Andrew Geissler26e4bea2020-11-30 19:54:03 -060028
Brad Bishop6e60e8b2018-02-01 10:27:11 -050029require linux-raspberrypi.inc
30
Andrew Geissler11105212021-02-12 15:30:38 -060031KERNEL_DTC_FLAGS += "-@ -H epapr"
Andrew Geissler26e4bea2020-11-30 19:54:03 -060032
Brad Bishop6e60e8b2018-02-01 10:27:11 -050033# Disable version check so that we don't have to edit this recipe every time
34# upstream bumps the version
35KERNEL_VERSION_SANITY_SKIP = "1"