From abad647d566614c78095f2c63b5cef9faf847d74 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Sat, 23 Nov 2024 19:23:04 +0300 Subject: [PATCH] get_kconfigs.sh: Improve Arch kconfig naming --- kernel_hardening_checker/config_files/distros/get_kconfigs.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kernel_hardening_checker/config_files/distros/get_kconfigs.sh b/kernel_hardening_checker/config_files/distros/get_kconfigs.sh index 9759eff..dd9c11d 100755 --- a/kernel_hardening_checker/config_files/distros/get_kconfigs.sh +++ b/kernel_hardening_checker/config_files/distros/get_kconfigs.sh @@ -1,7 +1,6 @@ #!/bin/bash oracle_git_url="https://raw.githubusercontent.com/oracle/kconfigs/refs/heads/gh-pages/out/" -arch_git_url="https://gitlab.archlinux.org/archlinux/packaging/packages/" distros_from_oracle=( "Android 12 (5.10) aarch64" @@ -28,9 +27,9 @@ for distro in "${distros_from_oracle[@]}"; do done # Fetch some other kconfigs +wget -O Arch_hardened_x86_64.config https://gitlab.archlinux.org/archlinux/packaging/packages/linux-hardened/-/raw/main/config wget -O OpenSUSE_x86_64.config https://raw.githubusercontent.com/openSUSE/kernel-source/refs/heads/master/config/x86_64/default 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 wget -O Azure_linux_x86_64.config https://raw.githubusercontent.com/microsoft/azurelinux/refs/heads/1.0/SPECS/kernel/config -wget -O Archlinux-hardened_x86_64.config ${arch_git_url}linux-hardened/-/raw/main/config?ref_type=heads -- 2.31.1