mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-19 17:26:28 +00:00
Merge pull request #3363 from lpottier/fix-kconfig-urls
Fixed urls used to download kernel images from kernel.org in kernel/Dockerfile.kconfig, used by make kconfig
This commit is contained in:
commit
d58859dd7f
@ -25,7 +25,7 @@ RUN set -e && \
|
||||
MAJOR=v${MAJOR}.x && \
|
||||
echo "Downloading/Unpacking $VERSION" && \
|
||||
KERNEL_SOURCE=https://www.kernel.org/pub/linux/kernel/${MAJOR}/linux-${VERSION}.tar.xz && \
|
||||
[ -f sources/linux-${VERSION}.tar.xz ] || curl -fSLo sources/linux-${VERSION}.tar.xz ${KERNEL_SOURCE} && \
|
||||
[ -f sources/linux-${VERSION}.tar.xz ] || curl -fSLo sources/linux-${VERSION}.tar.xz --create-dirs ${KERNEL_SOURCE} && \
|
||||
bsdtar xf sources/linux-${VERSION}.tar.xz; \
|
||||
done
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user