Add the 'nospectre_v2' check
authorAlexander Popov <alex.popov@linux.com>
Sun, 2 Oct 2022 11:23:19 +0000 (14:23 +0300)
committerAlexander Popov <alex.popov@linux.com>
Sun, 2 Oct 2022 11:23:19 +0000 (14:23 +0300)
kconfig_hardened_check/__init__.py

index 859a5082dcf1cc153386584e7dcaae1adb06e71e..1d74ee55d26c68f7427419812e67bf19711e9358 100644 (file)
@@ -701,6 +701,7 @@ def add_cmdline_checks(l, arch):
     l += [CmdlineCheck('self_protection', 'defconfig', 'nosmep', 'is not set')]
     l += [CmdlineCheck('self_protection', 'defconfig', 'nosmap', 'is not set')]
     l += [CmdlineCheck('self_protection', 'defconfig', 'nospectre_v1', 'is not set')]
+    l += [CmdlineCheck('self_protection', 'defconfig', 'nospectre_v2', 'is not set')]
     if arch == 'ARM64':
         l += [OR(CmdlineCheck('self_protection', 'defconfig', 'rodata', 'full'),
                  AND(KconfigCheck('self_protection', 'defconfig', 'RODATA_FULL_DEFAULT_ENABLED', 'y'),