Marcello Sylvester Bauer has uploaded this change for review. ( https://review.coreboot.org/29426
Change subject: LinuxBoot: use curl ......................................................................
LinuxBoot: use curl
Download the linux kernel tarball with curl. Curl is already a dependency for coreboot. The default progress bar is enable by purpose.
Change-Id: I2e0bee3286593bd8e93b4d645242898eb9a14015 Signed-off-by: Marcello Sylvester Bauer info@marcellobauer.com --- M payloads/external/LinuxBoot/Makefile 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/26/29426/1
diff --git a/payloads/external/LinuxBoot/Makefile b/payloads/external/LinuxBoot/Makefile index c051389..6a5f6b2 100644 --- a/payloads/external/LinuxBoot/Makefile +++ b/payloads/external/LinuxBoot/Makefile @@ -45,7 +45,7 @@ echo " WWW Download Linux $(CONFIG_LINUXBOOT_KERNEL_VERSION)" mkdir -p $(kernel_dir) ifeq ("$(wildcard $(kernel_dir)/README)","") - wget -qO- $(kernel_tarball) | tar xJ -C $(kernel_dir) --strip 1 + curl $(kernel_tarball) | tar xJ -C $(kernel_dir) --strip 1 endif
config: $(kernel_dir)/.config