Do not check CONFIG_HARDEN_EL2_VECTORS for v5.9+ 48/head
authorPelle van Gils <pelle@vangils.xyz>
Mon, 19 Oct 2020 13:07:53 +0000 (15:07 +0200)
committerPelle van Gils <pelle@vangils.xyz>
Mon, 19 Oct 2020 13:07:53 +0000 (15:07 +0200)
kconfig_hardened_check/__init__.py

index aa08c12c50c8f3a2a80655ade23ce2af29d3179d..0d1e10cfd9a2f22bad8cdf00dc5c704254c32ad4 100644 (file)
@@ -293,7 +293,8 @@ def construct_checklist(l, arch):
     if arch == 'ARM64':
         l += [OptCheck('self_protection', 'defconfig', 'ARM64_PAN', 'y')]
         l += [OptCheck('self_protection', 'defconfig', 'UNMAP_KERNEL_AT_EL0', 'y')]
-        l += [OptCheck('self_protection', 'defconfig', 'HARDEN_EL2_VECTORS', 'y')]
+        l += [OR(OptCheck('self_protection', 'defconfig', 'HARDEN_EL2_VECTORS', 'y'),
+                 VerCheck((5,9)))] # HARDEN_EL2_VECTORS was removed in v5.9
         l += [OptCheck('self_protection', 'defconfig', 'RODATA_FULL_DEFAULT_ENABLED', 'y')]
         l += [OptCheck('self_protection', 'defconfig', 'ARM64_PTR_AUTH', 'y')]
     if arch in ('X86_64', 'ARM64'):