summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Barker <pbarker@konsulko.com>2020-11-25 15:56:50 +0000
committerAndrei Gherzan <andrei@gherzan.ro>2020-11-27 14:29:55 +0000
commit7a6759e2424cecf57dbc7d891e89a70639faf3a8 (patch)
tree31f26f8fa408a022aad019fe5ca8efec1ec6a4d0
parent8c5809ebbb9020ac5867d25a05120a87b9da5e2c (diff)
downloadmeta-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.bb22
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
8FILESEXTRAPATHS_prepend := "${THISDIR}/linux-raspberrypi:" 8LINUX_VERSION ?= "5.10.y"
9LINUX_RPI_BRANCH ?= "rpi-5.10.y"
9 10
10LINUX_VERSION ?= "4.19" 11SRCREV_machine = "${AUTOREV}"
11LINUX_RPI_BRANCH ?= "rpi-4.19.y" 12SRCREV_meta = "${AUTOREV}"
13
14KMETA = "kernel-meta"
12 15
13SRCREV = "${AUTOREV}"
14SRC_URI = " \ 16SRC_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
17require linux-raspberrypi.inc 23require linux-raspberrypi.inc
18 24
25LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
26
27KERNEL_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
21KERNEL_VERSION_SANITY_SKIP = "1" 31KERNEL_VERSION_SANITY_SKIP = "1"
22
23LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814"