From: Alexander Popov Date: Sat, 23 Nov 2024 18:04:39 +0000 (+0300) Subject: get_kconfigs.sh: Make it verbose X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;h=bdd85d7f895b14547771043a91cae2ec7f765913;p=kconfig-hardened-check.git get_kconfigs.sh: Make it verbose --- diff --git a/kernel_hardening_checker/config_files/distros/get_kconfigs.sh b/kernel_hardening_checker/config_files/distros/get_kconfigs.sh index 0f3cb5b..d39d5a0 100755 --- a/kernel_hardening_checker/config_files/distros/get_kconfigs.sh +++ b/kernel_hardening_checker/config_files/distros/get_kconfigs.sh @@ -1,5 +1,6 @@ #!/bin/bash +set -x oracle_git_url="https://raw.githubusercontent.com/oracle/kconfigs/refs/heads/gh-pages/out/" kconfigs_from_oracle=( @@ -33,3 +34,5 @@ wget -O OpenSUSE_x86_64.config https://raw.githubusercontent.com/openSUSE/kernel wget -O OpenSUSE_aarch64.config https://raw.githubusercontent.com/openSUSE/kernel-source/refs/heads/master/config/arm64/default wget -O SLE-15-SP7_x86_64.config https://raw.githubusercontent.com/openSUSE/kernel-source/refs/heads/SLE15-SP7/config/x86_64/default wget -O SLE-15-SP7_aarch64.config https://raw.githubusercontent.com/openSUSE/kernel-source/refs/heads/SLE15-SP7/config/arm64/default + +echo "Well done!"