diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2021-05-19 13:52:30 +0200 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.com> | 2021-06-07 12:59:57 +0100 |
commit | 253f1b1a2e3c6181e795a9439295dd16f66f0e00 (patch) | |
tree | c06c918c2e3430923059bdfe20494fef20a36336 | |
parent | 4685e5a3c90bf43afc1af8d77e775a055c19f002 (diff) | |
download | meta-raspberrypi-253f1b1a2e3c6181e795a9439295dd16f66f0e00.tar.gz |
linux-raspberrypi-dev: drop protocol=git and add LINUX_RPI_KMETA_BRANCH
* update SRC_URI format to use the same as linux-raspberrypi_5.10.bb
and linux-raspberrypi_5.4.bb by dropping protocol=git and using
LINUX_RPI_KMETA_BRANCH
* protocol=git was dropped from other linux-raspberrypi recipes in:
commit 0381ac4d08abdb3dda815e6594536ac774baad8d
Author: Timm Eversmeyer <saeugetier@googlemail.com>
Date: Wed Sep 11 07:08:50 2019 +0200
raspberrypi-linux: removed protocoll setting from SRC_URI
Default protocoll for git will be used. Default setting is in the most case https.
Signed-off-by: Timm Eversmeyer saeugetier@gmail.com
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | recipes-kernel/linux/linux-raspberrypi-dev.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/recipes-kernel/linux/linux-raspberrypi-dev.bb b/recipes-kernel/linux/linux-raspberrypi-dev.bb index 9b2b6f3..3434820 100644 --- a/recipes-kernel/linux/linux-raspberrypi-dev.bb +++ b/recipes-kernel/linux/linux-raspberrypi-dev.bb | |||
@@ -7,6 +7,7 @@ python __anonymous() { | |||
7 | 7 | ||
8 | LINUX_VERSION ?= "5.10.y" | 8 | LINUX_VERSION ?= "5.10.y" |
9 | LINUX_RPI_BRANCH ?= "rpi-5.10.y" | 9 | LINUX_RPI_BRANCH ?= "rpi-5.10.y" |
10 | LINUX_RPI_KMETA_BRANCH ?= "master" | ||
10 | 11 | ||
11 | SRCREV_machine = "${AUTOREV}" | 12 | SRCREV_machine = "${AUTOREV}" |
12 | SRCREV_meta = "${AUTOREV}" | 13 | SRCREV_meta = "${AUTOREV}" |
@@ -14,8 +15,8 @@ SRCREV_meta = "${AUTOREV}" | |||
14 | KMETA = "kernel-meta" | 15 | KMETA = "kernel-meta" |
15 | 16 | ||
16 | SRC_URI = " \ | 17 | SRC_URI = " \ |
17 | git://github.com/raspberrypi/linux.git;name=machine;protocol=git;branch=${LINUX_RPI_BRANCH} \ | 18 | git://github.com/raspberrypi/linux.git;name=machine;branch=${LINUX_RPI_BRANCH} \ |
18 | git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=master;destsuffix=${KMETA} \ | 19 | git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=${LINUX_RPI_KMETA_BRANCH};destsuffix=${KMETA} \ |
19 | file://powersave.cfg \ | 20 | file://powersave.cfg \ |
20 | file://android-drivers.cfg \ | 21 | file://android-drivers.cfg \ |
21 | " | 22 | " |