diff options
author | Chase Qi <chase.qi@linaro.org> | 2016-12-06 11:09:04 +0800 |
---|---|---|
committer | Milosz Wasilewski <milosz.wasilewski@linaro.org> | 2016-12-06 12:23:46 +0000 |
commit | 307031702a0e75bde3c5f3e6e8ad415027e63c8a (patch) | |
tree | 5cf3f0f8e1f1bcb0841901e02b5fc7277b3f1139 /automated/linux | |
parent | 236749e33c5b54079ae4030753da67ad6df041c9 (diff) | |
download | test-definitions-pipe-307031702a0e75bde3c5f3e6e8ad415027e63c8a.tar.gz |
automated: linux: kernel-compilation: install wget
Change-Id: I5ea518268065d3bb4161e0c7b97f97407e390558
Signed-off-by: Chase Qi <chase.qi@linaro.org>
Diffstat (limited to 'automated/linux')
-rwxr-xr-x | automated/linux/kernel-compilation/kernel-compilation.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/automated/linux/kernel-compilation/kernel-compilation.sh b/automated/linux/kernel-compilation/kernel-compilation.sh index 1637c12..7040e93 100755 --- a/automated/linux/kernel-compilation/kernel-compilation.sh +++ b/automated/linux/kernel-compilation/kernel-compilation.sh @@ -25,8 +25,8 @@ done dist_name # shellcheck disable=SC2154 case "${dist}" in - Debian|Ubuntu) pkgs="time bc xz-utils build-essential" ;; - CentOS|Fedora) pkgs="time bc xz gcc make" ;; + Debian|Ubuntu) pkgs="wget time bc xz-utils build-essential" ;; + CentOS|Fedora) pkgs="wget time bc xz gcc make" ;; esac ! check_root && error_msg "You need to be root to install packages!" # install_deps supports the above distributions. |