summaryrefslogtreecommitdiffstats
path: root/recipes-kernel
diff options
context:
space:
mode:
authorAlex J Lennon <ajlennon@dynamicdevices.co.uk>2015-08-11 13:30:22 +0100
committerAndrei Gherzan <andrei@gherzan.ro>2015-10-21 14:44:26 +0200
commit10a5bace87c19e50014f838031e8f3db334b45b7 (patch)
tree081c0838165e22ba49e657d348b28475a1d1c88a /recipes-kernel
parent20c8e6a5bce17fba97af7365d8bdf04e5c7b17b9 (diff)
downloadmeta-raspberrypi-10a5bace87c19e50014f838031e8f3db334b45b7.tar.gz
linux-raspberrypi: Update kernel to 3.18.16
This requires some changes to KERNEL_DEVICETREE as the dtb layout has changed to support overlays. This change also makes us ready to support kernel 4.x series Signed-off-by: Alex J Lennon <ajlennon@dynamicdevices.co.uk>
Diffstat (limited to 'recipes-kernel')
-rw-r--r--recipes-kernel/linux/linux-raspberrypi_3.18.bb9
1 files changed, 7 insertions, 2 deletions
diff --git a/recipes-kernel/linux/linux-raspberrypi_3.18.bb b/recipes-kernel/linux/linux-raspberrypi_3.18.bb
index 6d8b155..a1fe6b4 100644
--- a/recipes-kernel/linux/linux-raspberrypi_3.18.bb
+++ b/recipes-kernel/linux/linux-raspberrypi_3.18.bb
@@ -1,6 +1,11 @@
1LINUX_VERSION ?= "3.18.11" 1LINUX_VERSION ?= "3.18.16"
2 2
3SRCREV = "d64fa8121fca9883d6fb14ca06d2abf66496195e" 3SRCREV = "1bb18c8f721ef674a447f3622273f2e2de7a205c"
4SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-3.18.y" 4SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-3.18.y"
5 5
6require linux-raspberrypi.inc 6require linux-raspberrypi.inc
7
8# Create missing out of tree 'overlays' directory prior to install step
9do_compile_prepend() {
10 mkdir -p ${B}/arch/arm/boot/dts/overlays
11}