LinuxBoot: use curl

Download the linux kernel tarball with curl.
Curl is already a dependency for coreboot.

Change-Id: I2e0bee3286593bd8e93b4d645242898eb9a14015
Signed-off-by: Marcello Sylvester Bauer <info@marcellobauer.com>
Reviewed-on: https://review.coreboot.org/29426
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
This commit is contained in:
Marcello Sylvester Bauer 2018-11-01 14:12:01 +01:00 committed by Philipp Deppenwiese
parent 78d29bff72
commit 51f2f2eba1
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ $(kernel_dir)/.config:
echo " WWW Download Linux $(CONFIG_LINUXBOOT_KERNEL_VERSION)" echo " WWW Download Linux $(CONFIG_LINUXBOOT_KERNEL_VERSION)"
mkdir -p $(kernel_dir) mkdir -p $(kernel_dir)
ifeq ("$(wildcard $(kernel_dir)/README)","") ifeq ("$(wildcard $(kernel_dir)/README)","")
wget -qO- $(kernel_tarball) | tar xJ -C $(kernel_dir) --strip 1 curl -s $(kernel_tarball) | tar xJ -C $(kernel_dir) --strip 1
endif endif
config: $(kernel_dir)/.config config: $(kernel_dir)/.config