get_kconfigs.sh: Rename distro variable
authorAlexander Popov <alex.popov@linux.com>
Sat, 23 Nov 2024 17:26:49 +0000 (20:26 +0300)
committerAlexander Popov <alex.popov@linux.com>
Sat, 23 Nov 2024 18:21:55 +0000 (21:21 +0300)
kernel_hardening_checker/config_files/distros/get_kconfigs.sh

index 49d685320058b0d480d0635424b22d2e067bfd85..3897a09f506a496b5583ddaed04448035bfca38e 100755 (executable)
@@ -2,7 +2,7 @@
 
 oracle_git_url="https://raw.githubusercontent.com/oracle/kconfigs/refs/heads/gh-pages/out/"
 
-distros_from_oracle=(
+kconfigs_from_oracle=(
     "Android 12 (5.10) aarch64"
     "Android 15 (6.6) aarch64"
     "Arch x86_64"
@@ -21,9 +21,9 @@ distros_from_oracle=(
     "Ubuntu 24.04 LTS Noble x86_64"
 )
 
-for distro in "${distros_from_oracle[@]}"; do
-    filename=$(echo ${distro// /_}) # Replace spaces with underscores
-    wget -O "${filename}.config" "${oracle_git_url}${distro}/config" # Fetch kconfig
+for kconfig in "${kconfigs_from_oracle[@]}"; do
+    filename=$(echo ${kconfig// /_}) # Replace spaces with underscores
+    wget -O "${filename}.config" "${oracle_git_url}${kconfig}/config" # Fetch kconfig
 done
 
 # Fetch some other kconfigs