# HG changeset patch # User "Yann E. MORIN" # Date 1323644514 -3600 # Node ID 4d92888ec7cbc4f8e22f8d3b8d9e025171b32abc # Parent ce8ada0b1d412f92b2d2cc574d998de2db0fd358 kernel/linux: add alternate download locations Some longterm versions are not in the usual directory. Account for these new locations. Get rid of the mirror location, now that the main kernel site is (almost) back to normal operations. Signed-off-by: "Yann E. MORIN" diff -r ce8ada0b1d41 -r 4d92888ec7cb scripts/build/kernel/linux.sh --- a/scripts/build/kernel/linux.sh Mon Nov 28 21:27:08 2011 +0100 +++ b/scripts/build/kernel/linux.sh Mon Dec 12 00:01:54 2011 +0100 @@ -63,10 +63,10 @@ 3.*) rel_dir=v3.x;; esac korg_base="http://ftp.kernel.org/pub/linux/kernel/${rel_dir}" - mirror_base="http://ftp.free.fr/mirrors/ftp.kernel.org//linux/kernel/${rel_dir}" - CT_GetFile "linux-${CT_KERNEL_VERSION}" \ - "${korg_base}" "${korg_base}/longterm/v${k_ver}" \ - "${mirror_base}" "${mirror_base}/longterm/v${k_ver}" + CT_GetFile "linux-${CT_KERNEL_VERSION}" \ + "${korg_base}" \ + "${korg_base}/longterm/v${k_ver}" \ + "${korg_base}/longterm fi }