summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Barker <paul@betafive.co.uk>2019-07-25 22:02:49 +0100
committerPaul Barker <paul@betafive.co.uk>2019-07-25 22:07:13 +0100
commitb33438c49e7332e32f261614d1b5de9e2a14f6c2 (patch)
tree201fd425452e8cd4fe2b15f042759bca3accc999
parent5366c969e8ee40ef0366ec0d2ca4e0336c71de27 (diff)
downloadmeta-raspberrypi-b33438c49e7332e32f261614d1b5de9e2a14f6c2.tar.gz
linux-raspberrypi: 4.14 kernel does not support rpi4pbarker/kernel
Signed-off-by: Paul Barker <paul@betafive.co.uk>
-rw-r--r--recipes-kernel/linux/linux-raspberrypi_4.14.bb6
1 files changed, 6 insertions, 0 deletions
diff --git a/recipes-kernel/linux/linux-raspberrypi_4.14.bb b/recipes-kernel/linux/linux-raspberrypi_4.14.bb
index 838a551..98e3fbf 100644
--- a/recipes-kernel/linux/linux-raspberrypi_4.14.bb
+++ b/recipes-kernel/linux/linux-raspberrypi_4.14.bb
@@ -8,3 +8,9 @@ SRC_URI = " \
8 " 8 "
9 9
10require linux-raspberrypi.inc 10require linux-raspberrypi.inc
11
12python __anonymous() {
13 if "raspberrypi4" in d.getVar("MACHINE"):
14 msg = "Skipping linux-raspberrypi_4.14 as it is incompatible with rpi4"
15 raise bb.parse.SkipRecipe(msg)
16}