Merge pull request #1550 from cpackham/kernel-cdn

CT_Mirrors: make use of kernel cdn
This commit is contained in:
Chris Packham 2021-07-11 19:26:18 +12:00 committed by GitHub
commit 4d2c1708da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1800,7 +1800,6 @@ CT_Mirrors()
echo "https://releases.linaro.org/archive/${yymm}/components/toolchain/${project}-linaro"
;;
kernel.org)
# TBD move to linux.sh and dtc.sh?
case "${project}" in
linux)
local version="${CT_LINUX_VERSION}"
@ -1809,14 +1808,14 @@ CT_Mirrors()
# Ignore, this happens before .config is fully evaluated
;;
[345].*)
echo "http://www.kernel.org/pub/linux/kernel/v${version%%.*}.x"
echo "https://cdn.kernel.org/pub/linux/kernel/v${version%%.*}.x"
;;
2.6.*)
echo "http://www.kernel.org/pub/linux/kernel/v2.6"
echo "https://cdn.kernel.org/pub/linux/kernel/v2.6"
case "${version}" in
2.6.*.*)
echo "http://www.kernel.org/pub/linux/kernel/v2.6/longterm"
echo "http://www.kernel.org/pub/linux/kernel/v2.6/longterm/v${version%.*}"
echo "https://cdn.kernel.org/pub/linux/kernel/v2.6/longterm"
echo "https://cdn.kernel.org/pub/linux/kernel/v2.6/longterm/v${version%.*}"
;;
esac
;;
@ -1826,7 +1825,7 @@ CT_Mirrors()
esac
;;
dtc)
echo "https://mirrors.edge.kernel.org/pub/software/utils/dtc"
echo "https://cdn.kernel.org/pub/software/utils/dtc"
;;
*)
echo "-unknown-"