From 80581008680dc3ac2d7936ebf14e969e7a6225cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Wei=C3=9F?= Date: Wed, 20 May 2026 09:25:17 +0200 Subject: [PATCH] linux-raspberrypi: switch protocol of yocto-kernel-cache to https MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For upstream yocto mirrors the git protocol was disabled lately. Appended 'protocol=https' in corresponding SRC_URIs to fixes following error: ERROR: ExpansionError during parsing [...]/meta-raspberrypi/recipes-kernel/linux/linux-raspberrypi-dev.bb bb.data_smart.ExpansionError: [...] \ ls-remote git://git.yoctoproject.org/yocto-kernel-cache failed with exit code 128, output: fatal: unable to connect to git.yoctoproject.org: git.yoctoproject.org[0: 104.18.0.115]: errno=Connection timed out git.yoctoproject.org[1: 104.18.1.115]: errno=Connection timed out git.yoctoproject.org[2: 2606:4700::6812:73]: errno=Network is unreachable git.yoctoproject.org[3: 2606:4700::6812:173]: errno=Network is unreachable The variable dependency chain for the failure is: fetcher_hashes_dummyfunc[vardepvalue] ERROR: Parsing halted due to errors, see error messages above Signed-off-by: Michael Weiß --- recipes-kernel/linux/linux-raspberrypi-dev.bb | 2 +- recipes-kernel/linux/linux-raspberrypi_6.1.bb | 2 +- recipes-kernel/linux/linux-raspberrypi_6.12.bb | 2 +- recipes-kernel/linux/linux-raspberrypi_6.6.bb | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/recipes-kernel/linux/linux-raspberrypi-dev.bb b/recipes-kernel/linux/linux-raspberrypi-dev.bb index e0a4461..88fb2f0 100644 --- a/recipes-kernel/linux/linux-raspberrypi-dev.bb +++ b/recipes-kernel/linux/linux-raspberrypi-dev.bb @@ -21,7 +21,7 @@ KMETA = "kernel-meta" SRC_URI = " \ git://github.com/raspberrypi/linux.git;name=machine;branch=${LINUX_RPI_BRANCH};protocol=https \ - git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=${LINUX_RPI_KMETA_BRANCH};destsuffix=${KMETA} \ + git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=${LINUX_RPI_KMETA_BRANCH};destsuffix=${KMETA};protocol=https \ file://powersave.cfg \ file://android-drivers.cfg \ " diff --git a/recipes-kernel/linux/linux-raspberrypi_6.1.bb b/recipes-kernel/linux/linux-raspberrypi_6.1.bb index 56a8a6e..c8d179b 100644 --- a/recipes-kernel/linux/linux-raspberrypi_6.1.bb +++ b/recipes-kernel/linux/linux-raspberrypi_6.1.bb @@ -9,7 +9,7 @@ KMETA = "kernel-meta" SRC_URI = " \ git://github.com/raspberrypi/linux.git;name=machine;branch=${LINUX_RPI_BRANCH};protocol=https \ - git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=${LINUX_RPI_KMETA_BRANCH};destsuffix=${KMETA} \ + git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=${LINUX_RPI_KMETA_BRANCH};destsuffix=${KMETA};protocol=https \ file://powersave.cfg \ file://android-drivers.cfg \ " diff --git a/recipes-kernel/linux/linux-raspberrypi_6.12.bb b/recipes-kernel/linux/linux-raspberrypi_6.12.bb index 16b6630..686a84b 100644 --- a/recipes-kernel/linux/linux-raspberrypi_6.12.bb +++ b/recipes-kernel/linux/linux-raspberrypi_6.12.bb @@ -9,7 +9,7 @@ KMETA = "kernel-meta" SRC_URI = " \ git://github.com/raspberrypi/linux.git;name=machine;branch=${LINUX_RPI_BRANCH};protocol=https \ - git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=${LINUX_RPI_KMETA_BRANCH};destsuffix=${KMETA} \ + git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=${LINUX_RPI_KMETA_BRANCH};destsuffix=${KMETA};protocol=https \ file://powersave.cfg \ file://android-drivers.cfg \ " diff --git a/recipes-kernel/linux/linux-raspberrypi_6.6.bb b/recipes-kernel/linux/linux-raspberrypi_6.6.bb index b714e06..e46a35d 100644 --- a/recipes-kernel/linux/linux-raspberrypi_6.6.bb +++ b/recipes-kernel/linux/linux-raspberrypi_6.6.bb @@ -9,7 +9,7 @@ KMETA = "kernel-meta" SRC_URI = " \ git://github.com/raspberrypi/linux.git;name=machine;branch=${LINUX_RPI_BRANCH};protocol=https \ - git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=${LINUX_RPI_KMETA_BRANCH};destsuffix=${KMETA} \ + git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=${LINUX_RPI_KMETA_BRANCH};destsuffix=${KMETA};protocol=https \ file://powersave.cfg \ file://android-drivers.cfg \ "