mirror of
https://git.yoctoproject.org/meta-raspberrypi
synced 2026-02-04 22:49:38 +00:00
The patch to add dtbo rules to the arm64 Makefile is no longer needed. Signed-off-by: Paul Barker <pbarker@toganlabs.com>
21 lines
685 B
BlitzBasic
21 lines
685 B
BlitzBasic
python __anonymous() {
|
|
if "linux-raspberrypi-dev" not in d.getVar("PREFERRED_PROVIDER_virtual/kernel"):
|
|
msg = "Skipping linux-raspberrypi-dev as it is not the preferred " + \
|
|
"provider of virtual/kernel."
|
|
raise bb.parse.SkipRecipe(msg)
|
|
}
|
|
|
|
FILESEXTRAPATHS_prepend := "${THISDIR}/linux-raspberrypi:"
|
|
|
|
LINUX_VERSION ?= "4.14"
|
|
LINUX_RPI_DEV_BRANCH ?= "rpi-4.14.y"
|
|
|
|
SRCREV = "${AUTOREV}"
|
|
SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=${LINUX_RPI_DEV_BRANCH} \
|
|
"
|
|
require linux-raspberrypi.inc
|
|
|
|
# Disable version check so that we don't have to edit this recipe every time
|
|
# upstream bumps the version
|
|
KERNEL_VERSION_SANITY_SKIP = "1"
|