mirror of
https://github.com/speed47/spectre-meltdown-checker.git
synced 2026-04-03 13:47:08 +02:00
fix: bad kernel/config var names
This commit is contained in:
@@ -82,8 +82,8 @@ check_CVE_2024_36357_linux() {
|
||||
kernel_tsa="CONFIG_MITIGATION_TSA=y found in kernel config"
|
||||
fi
|
||||
fi
|
||||
if [ -z "$kernel_tsa" ] && [ -n "$g_kernel_map" ]; then
|
||||
if grep -q 'tsa_select_mitigation' "$g_kernel_map"; then
|
||||
if [ -z "$kernel_tsa" ] && [ -n "$opt_map" ]; then
|
||||
if grep -q 'tsa_select_mitigation' "$opt_map"; then
|
||||
kernel_tsa="found tsa_select_mitigation in System.map"
|
||||
fi
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user