get_kconfigs.sh: Make it verbose
authorAlexander Popov <alex.popov@linux.com>
Sat, 23 Nov 2024 18:04:39 +0000 (21:04 +0300)
committerAlexander Popov <alex.popov@linux.com>
Sat, 23 Nov 2024 18:22:06 +0000 (21:22 +0300)
kernel_hardening_checker/config_files/distros/get_kconfigs.sh

index 0f3cb5b2651fa562a59195d661f04f44dbecb0a1..d39d5a07d7d1c756f2804073c47983a40a3fd5f9 100755 (executable)
@@ -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!"