diff mbox series

[1/3] python3-dtc: use https to fetch from git

Message ID 20260716113528.2322001-1-alex.kanavin@gmail.com
State New
Headers show
Series [1/3] python3-dtc: use https to fetch from git | expand

Commit Message

Alexander Kanavin July 16, 2026, 11:35 a.m. UTC
From: Alexander Kanavin <alex@linutronix.de>

git:// no longer seems to work, and all other kernel.org recipes
already use https for fetching.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
---
 meta/recipes-devtools/python/python3-dtc_1.8.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta/recipes-devtools/python/python3-dtc_1.8.1.bb b/meta/recipes-devtools/python/python3-dtc_1.8.1.bb
index 314107883f..4c362f513d 100644
--- a/meta/recipes-devtools/python/python3-dtc_1.8.1.bb
+++ b/meta/recipes-devtools/python/python3-dtc_1.8.1.bb
@@ -6,7 +6,7 @@  LICENSE = "GPL-2.0-only | BSD-2-Clause"
 
 DEPENDS = "flex-native bison-native swig-native python3-setuptools-scm-native libyaml dtc"
 
-SRC_URI = "git://git.kernel.org/pub/scm/utils/dtc/dtc.git;branch=main \
+SRC_URI = "git://git.kernel.org/pub/scm/utils/dtc/dtc.git;branch=main;protocol=https \
            "
 
 UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)"