diff options
author | Paul Barker <pbarker@konsulko.com> | 2020-11-25 15:56:50 +0000 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.ro> | 2020-11-27 14:29:55 +0000 |
commit | 7a6759e2424cecf57dbc7d891e89a70639faf3a8 (patch) | |
tree | 31f26f8fa408a022aad019fe5ca8efec1ec6a4d0 | |
parent | 8c5809ebbb9020ac5867d25a05120a87b9da5e2c (diff) | |
download | meta-raspberrypi-7a6759e2424cecf57dbc7d891e89a70639faf3a8.tar.gz |
linux-raspberrypi-dev: Update for testing v5.10.y
Linux 5.10 series will be the next LTS kernel so it's likely to be the
new stable branch for linux-raspberrypi within a couple of months. Let's
get set up to test it now.
Signed-off-by: Paul Barker <pbarker@konsulko.com>
-rw-r--r-- | recipes-kernel/linux/linux-raspberrypi-dev.bb | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/recipes-kernel/linux/linux-raspberrypi-dev.bb b/recipes-kernel/linux/linux-raspberrypi-dev.bb index bb4a64e..9b2b6f3 100644 --- a/recipes-kernel/linux/linux-raspberrypi-dev.bb +++ b/recipes-kernel/linux/linux-raspberrypi-dev.bb | |||
@@ -5,19 +5,27 @@ python __anonymous() { | |||
5 | raise bb.parse.SkipRecipe(msg) | 5 | raise bb.parse.SkipRecipe(msg) |
6 | } | 6 | } |
7 | 7 | ||
8 | FILESEXTRAPATHS_prepend := "${THISDIR}/linux-raspberrypi:" | 8 | LINUX_VERSION ?= "5.10.y" |
9 | LINUX_RPI_BRANCH ?= "rpi-5.10.y" | ||
9 | 10 | ||
10 | LINUX_VERSION ?= "4.19" | 11 | SRCREV_machine = "${AUTOREV}" |
11 | LINUX_RPI_BRANCH ?= "rpi-4.19.y" | 12 | SRCREV_meta = "${AUTOREV}" |
13 | |||
14 | KMETA = "kernel-meta" | ||
12 | 15 | ||
13 | SRCREV = "${AUTOREV}" | ||
14 | SRC_URI = " \ | 16 | SRC_URI = " \ |
15 | git://github.com/raspberrypi/linux.git;protocol=git;branch=${LINUX_RPI_BRANCH} \ | 17 | git://github.com/raspberrypi/linux.git;name=machine;protocol=git;branch=${LINUX_RPI_BRANCH} \ |
18 | git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=master;destsuffix=${KMETA} \ | ||
19 | file://powersave.cfg \ | ||
20 | file://android-drivers.cfg \ | ||
16 | " | 21 | " |
22 | |||
17 | require linux-raspberrypi.inc | 23 | require linux-raspberrypi.inc |
18 | 24 | ||
25 | LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46" | ||
26 | |||
27 | KERNEL_EXTRA_ARGS += "DTC_FLAGS='-@ -H epapr'" | ||
28 | |||
19 | # Disable version check so that we don't have to edit this recipe every time | 29 | # Disable version check so that we don't have to edit this recipe every time |
20 | # upstream bumps the version | 30 | # upstream bumps the version |
21 | KERNEL_VERSION_SANITY_SKIP = "1" | 31 | KERNEL_VERSION_SANITY_SKIP = "1" |
22 | |||
23 | LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814" | ||