diff options
author | Marcello Sylvester Bauer <info@marcellobauer.com> | 2018-11-01 14:12:01 +0100 |
---|---|---|
committer | Philipp Deppenwiese <zaolin.daisuki@gmail.com> | 2018-11-02 14:58:56 +0000 |
commit | 51f2f2eba1778167e9d281b8c7a7c9b9792a37cb (patch) | |
tree | 817c4d2a0f57e327c616f8ccab4d4ff7b628190f /payloads/external | |
parent | 78d29bff721a2c19daaf75c28391e042574d94c1 (diff) |
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>
Diffstat (limited to 'payloads/external')
-rw-r--r-- | payloads/external/LinuxBoot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/payloads/external/LinuxBoot/Makefile b/payloads/external/LinuxBoot/Makefile index b8e2c51b83..83768055ef 100644 --- a/payloads/external/LinuxBoot/Makefile +++ b/payloads/external/LinuxBoot/Makefile @@ -45,7 +45,7 @@ $(kernel_dir)/.config: 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 -s $(kernel_tarball) | tar xJ -C $(kernel_dir) --strip 1 endif config: $(kernel_dir)/.config |