From 49c8f5a8dbb6b26e40518cc6cd1462673b6c6e64 Mon Sep 17 00:00:00 2001 From: Ryan Roberts Date: Thu, 8 Feb 2024 15:45:09 +0000 Subject: [PATCH] config: Use https instead of git protocol When we have a choice of https and git, prefer https; this is more efficient with modern web servers. git:// protocol is also blocked on some CI systems. Signed-off-by: Ryan Roberts --- config/dt-base.yaml | 2 +- config/kvmtool-base.yaml | 4 ++-- config/linux-base.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/dt-base.yaml b/config/dt-base.yaml index c26bffc..f2fadbf 100644 --- a/config/dt-base.yaml +++ b/config/dt-base.yaml @@ -14,7 +14,7 @@ description: >- build: dt: repo: - remote: git://git.kernel.org/pub/scm/linux/kernel/git/devicetree/devicetree-rebasing.git + remote: https://git.kernel.org/pub/scm/linux/kernel/git/devicetree/devicetree-rebasing.git revision: v6.6-dts toolchain: aarch64-none-elf- diff --git a/config/kvmtool-base.yaml b/config/kvmtool-base.yaml index 4ad3412..24de55b 100644 --- a/config/kvmtool-base.yaml +++ b/config/kvmtool-base.yaml @@ -14,10 +14,10 @@ build: kvmtool: repo: dtc: - remote: git://git.kernel.org/pub/scm/utils/dtc/dtc.git + remote: https://git.kernel.org/pub/scm/utils/dtc/dtc.git revision: master kvmtool: - remote: git://git.kernel.org/pub/scm/linux/kernel/git/will/kvmtool.git + remote: https://git.kernel.org/pub/scm/linux/kernel/git/will/kvmtool.git revision: master toolchain: aarch64-linux-gnu- diff --git a/config/linux-base.yaml b/config/linux-base.yaml index 047e640..b21b13d 100644 --- a/config/linux-base.yaml +++ b/config/linux-base.yaml @@ -21,7 +21,7 @@ description: >- build: linux: repo: - remote: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git + remote: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git revision: v6.6 toolchain: aarch64-linux-gnu- -- GitLab