From: Alexander Popov Date: Sun, 1 Sep 2024 21:36:18 +0000 (+0300) Subject: Don't normalize the `cfi` cmdline parameter X-Git-Tag: v0.6.10~5 X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;h=d9d189c7ea1d5aa61a58cc5c905f40f611724650;p=kconfig-hardened-check.git Don't normalize the `cfi` cmdline parameter --- diff --git a/kernel_hardening_checker/checks.py b/kernel_hardening_checker/checks.py index 665b8bc..efea049 100755 --- a/kernel_hardening_checker/checks.py +++ b/kernel_hardening_checker/checks.py @@ -691,6 +691,7 @@ no_kstrtobool_options = [ 'vsyscall', # See vsyscall_setup() in arch/x86/entry/vsyscall/vsyscall_64.c 'vdso32', # See vdso32_setup() in arch/x86/entry/vdso/vdso32-setup.c 'vdso', # See vdso32_setup() in arch/x86/entry/vdso/vdso32-setup.c + 'cfi', # See cfi_parse_cmdline() in arch/x86/kernel/alternative.c 'tsx' # See tsx_init() in arch/x86/kernel/cpu/tsx.c ]