From: Alexander Popov Date: Wed, 18 Mar 2020 09:17:55 +0000 (+0300) Subject: Fix RANDOM_TRUST_BOOTLOADER check X-Git-Tag: v0.5.5~14 X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;h=59f626bbb3d1c0ead50d4ab079a02e351b29ad69;p=kconfig-hardened-check.git Fix RANDOM_TRUST_BOOTLOADER check --- diff --git a/kconfig-hardened-check.py b/kconfig-hardened-check.py index 26fbd30..6e0d8f6 100755 --- a/kconfig-hardened-check.py +++ b/kconfig-hardened-check.py @@ -325,7 +325,7 @@ def construct_checklist(checklist, arch): checklist.append(OptCheck('SLAB_MERGE_DEFAULT', 'is not set', 'clipos', 'self_protection')) # slab_nomerge checklist.append(AND(OptCheck('GCC_PLUGIN_RANDSTRUCT_PERFORMANCE', 'is not set', 'clipos', 'self_protection'), \ randstruct_is_set)) - checklist.append(OptCheck('CONFIG_RANDOM_TRUST_BOOTLOADER', 'is not set', 'clipos', 'self_protection')) + checklist.append(OptCheck('RANDOM_TRUST_BOOTLOADER', 'is not set', 'clipos', 'self_protection')) checklist.append(OptCheck('RANDOM_TRUST_CPU', 'is not set', 'clipos', 'self_protection')) if arch == 'X86_64' or arch == 'X86_32': checklist.append(AND(OptCheck('INTEL_IOMMU_SVM', 'y', 'clipos', 'self_protection'), \