From: Alexander Popov Date: Sun, 2 Oct 2022 18:45:13 +0000 (+0300) Subject: Also check 'nospectre_v2' with 'spectre_v2' X-Git-Tag: v0.6.1~82 X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;h=899752c13f4d1260d1a33985672b72b3a9cb60ec;hp=f47bd6f7ed3c79d485e44f3aea2b173655707b1c;p=kconfig-hardened-check.git Also check 'nospectre_v2' with 'spectre_v2' --- diff --git a/kconfig_hardened_check/__init__.py b/kconfig_hardened_check/__init__.py index 8f59b34..3409758 100644 --- a/kconfig_hardened_check/__init__.py +++ b/kconfig_hardened_check/__init__.py @@ -749,7 +749,8 @@ def add_cmdline_checks(l, arch): # 'self_protection', 'clipos' l += [CmdlineCheck('self_protection', 'clipos', 'page_alloc.shuffle', '1')] if arch in ('X86_64', 'X86_32'): - l += [CmdlineCheck('self_protection', 'clipos', 'spectre_v2', 'on')] + l += [AND(CmdlineCheck('self_protection', 'clipos', 'spectre_v2', 'on'), + CmdlineCheck('self_protection', 'defconfig', 'nospectre_v2', 'is not set'))] # 'cut_attack_surface', 'kspp' if arch == 'X86_64':