Add the `TEST_DEBUG_VIRTUAL` kconfig check 138/head
authorAlexander Popov <alex.popov@linux.com>
Mon, 19 Aug 2024 14:34:02 +0000 (17:34 +0300)
committerAlexander Popov <alex.popov@linux.com>
Mon, 19 Aug 2024 14:34:02 +0000 (17:34 +0300)
kernel_hardening_checker/checks.py

index 38655cfa1be67d3723aeeb59d23fe16afe77a74f..6fcb07df8763b4ccf39f5585161a1d3877846103 100755 (executable)
@@ -398,6 +398,7 @@ def add_kconfig_checks(l: List[ChecklistObjType], arch: str) -> None:
     l += [KconfigCheck('cut_attack_surface', 'grsec', 'PREEMPTIRQ_TRACEPOINTS', 'is not set')]
     l += [KconfigCheck('cut_attack_surface', 'grsec', 'ENABLE_DEFAULT_TRACERS', 'is not set')]
     l += [KconfigCheck('cut_attack_surface', 'grsec', 'PROVE_LOCKING', 'is not set')]
+    l += [KconfigCheck('cut_attack_surface', 'grsec', 'TEST_DEBUG_VIRTUAL', 'is not set')]
     l += [KconfigCheck('cut_attack_surface', 'grsec', 'MPTCP', 'is not set')]
     l += [KconfigCheck('cut_attack_surface', 'grsec', 'TLS', 'is not set')]
     l += [KconfigCheck('cut_attack_surface', 'grsec', 'TIPC', 'is not set')]