diff options
author | Alex J Lennon <ajlennon@dynamicdevices.co.uk> | 2015-08-11 13:30:22 +0100 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.ro> | 2015-10-21 14:44:26 +0200 |
commit | 10a5bace87c19e50014f838031e8f3db334b45b7 (patch) | |
tree | 081c0838165e22ba49e657d348b28475a1d1c88a /recipes-kernel | |
parent | 20c8e6a5bce17fba97af7365d8bdf04e5c7b17b9 (diff) | |
download | meta-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.bb | 9 |
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 @@ | |||
1 | LINUX_VERSION ?= "3.18.11" | 1 | LINUX_VERSION ?= "3.18.16" |
2 | 2 | ||
3 | SRCREV = "d64fa8121fca9883d6fb14ca06d2abf66496195e" | 3 | SRCREV = "1bb18c8f721ef674a447f3622273f2e2de7a205c" |
4 | SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-3.18.y" | 4 | SRC_URI = "git://github.com/raspberrypi/linux.git;protocol=git;branch=rpi-3.18.y" |
5 | 5 | ||
6 | require linux-raspberrypi.inc | 6 | require linux-raspberrypi.inc |
7 | |||
8 | # Create missing out of tree 'overlays' directory prior to install step | ||
9 | do_compile_prepend() { | ||
10 | mkdir -p ${B}/arch/arm/boot/dts/overlays | ||
11 | } | ||