aboutsummaryrefslogtreecommitdiff
path: root/automated/linux/kernel-compilation
diff options
context:
space:
mode:
authorNicolas Dechesne <nicolas.dechesne@linaro.org>2017-01-25 12:07:08 +0100
committerNicolas Dechesne <nicolas.dechesne@linaro.org>2017-01-25 12:35:23 +0100
commitb7e3876bb33cdd55f645c2f55f5c9bb57d051eac (patch)
treed864d552f426abed427b568c7f4288e37f9a9dd0 /automated/linux/kernel-compilation
parent14c77d935aa059e9cad906f996885c163ed17f3f (diff)
automated: switch to using ID field for distro
Let's standardadize all test cases to use lowercase distro ID field from /etc/os-release, instead of the 'pretty' (capitalized) name that we used so far. This is an invasive change, all test scripts were modified with this command: $ sed -i -e 's|Debian\(.*\))|debian\1)|g' \ -e 's|Ubuntu\(.*\))|ubuntu\1)|g' \ -e 's|CentOS\(.*\))|centos\1)|g' \ -e 's|Fedora\(.*\))|fedora\1)|g' \ -e 's|Unknown\(.*\))|unknown\1)|g' And the remaining instances were fixed manually. dist_name() function was updated to always report lowercase distro name. Also when /etc/os-release is not available and that we use lsb_release output, we convert the old capitalized name into the new lowercase ones. Change-Id: I1f1ce0932ab04476567f0338e902656470267a74 Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Diffstat (limited to 'automated/linux/kernel-compilation')
-rwxr-xr-xautomated/linux/kernel-compilation/kernel-compilation.sh4
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 7040e930..b9b8d2ab 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="wget time bc xz-utils build-essential" ;;
- CentOS|Fedora) pkgs="wget 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.