summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2018-12-11 06:01:04 -0500
committerMasahiro Yamada <yamada.masahiro@socionext.com>2018-12-21 10:25:54 -0500
commit8636a1f9677db4f883f29a072f401303acfc2edd (patch)
treed6d66bcec84c006a8765b92878bea0a1ec90857b
parent48547bd23d0eeb2cf3a63ed588b46236eac5f2c3 (diff)
treewide: surround Kconfig file paths with double quotes
The Kconfig lexer supports special characters such as '.' and '/' in the parameter context. In my understanding, the reason is just to support bare file paths in the source statement. I do not see a good reason to complicate Kconfig for the room of ambiguity. The majority of code already surrounds file paths with double quotes, and it makes sense since file paths are constant string literals. Make it treewide consistent now. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Acked-by: Wolfram Sang <wsa@the-dreams.de> Acked-by: Geert Uytterhoeven <geert@linux-m68k.org> Acked-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r--arch/arm/Kconfig2
-rw-r--r--arch/arm/kvm/Kconfig2
-rw-r--r--arch/arm64/Kconfig2
-rw-r--r--arch/arm64/kvm/Kconfig2
-rw-r--r--arch/ia64/Kconfig2
-rw-r--r--arch/m68k/Kconfig6
-rw-r--r--arch/mips/kvm/Kconfig2
-rw-r--r--arch/openrisc/Kconfig2
-rw-r--r--arch/powerpc/Kconfig4
-rw-r--r--arch/powerpc/kvm/Kconfig2
-rw-r--r--arch/riscv/Kconfig2
-rw-r--r--arch/s390/Kconfig2
-rw-r--r--arch/s390/kvm/Kconfig2
-rw-r--r--arch/sh/Kconfig2
-rw-r--r--arch/sparc/Kconfig2
-rw-r--r--arch/x86/Kconfig2
-rw-r--r--arch/x86/kvm/Kconfig2
-rw-r--r--block/Kconfig2
-rw-r--r--crypto/Kconfig4
-rw-r--r--drivers/crypto/Kconfig2
-rw-r--r--drivers/gpu/drm/i915/Kconfig2
-rw-r--r--drivers/hwmon/Kconfig2
-rw-r--r--drivers/i2c/Kconfig6
-rw-r--r--drivers/pps/Kconfig4
-rw-r--r--drivers/ras/Kconfig2
-rw-r--r--drivers/thermal/Kconfig2
-rw-r--r--drivers/w1/Kconfig4
-rw-r--r--lib/Kconfig.debug4
-rw-r--r--security/Kconfig16
-rw-r--r--security/integrity/Kconfig4
30 files changed, 47 insertions, 47 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 91be74d8df65..0a7faf82250e 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -910,7 +910,7 @@ config PLAT_VERSATILE
910 910
911source "arch/arm/firmware/Kconfig" 911source "arch/arm/firmware/Kconfig"
912 912
913source arch/arm/mm/Kconfig 913source "arch/arm/mm/Kconfig"
914 914
915config IWMMXT 915config IWMMXT
916 bool "Enable iWMMXt support" 916 bool "Enable iWMMXt support"
diff --git a/arch/arm/kvm/Kconfig b/arch/arm/kvm/Kconfig
index e2bd35b6780c..3f5320f46de2 100644
--- a/arch/arm/kvm/Kconfig
+++ b/arch/arm/kvm/Kconfig
@@ -55,6 +55,6 @@ config KVM_ARM_HOST
55 ---help--- 55 ---help---
56 Provides host support for ARM processors. 56 Provides host support for ARM processors.
57 57
58source drivers/vhost/Kconfig 58source "drivers/vhost/Kconfig"
59 59
60endif # VIRTUALIZATION 60endif # VIRTUALIZATION
diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig
index 787d7850e064..04e525fc5a0f 100644
--- a/arch/arm64/Kconfig
+++ b/arch/arm64/Kconfig
@@ -782,7 +782,7 @@ config NEED_PER_CPU_EMBED_FIRST_CHUNK
782config HOLES_IN_ZONE 782config HOLES_IN_ZONE
783 def_bool y 783 def_bool y
784 784
785source kernel/Kconfig.hz 785source "kernel/Kconfig.hz"
786 786
787config ARCH_SUPPORTS_DEBUG_PAGEALLOC 787config ARCH_SUPPORTS_DEBUG_PAGEALLOC
788 def_bool y 788 def_bool y
diff --git a/arch/arm64/kvm/Kconfig b/arch/arm64/kvm/Kconfig
index 47b23bf617c7..a3f85624313e 100644
--- a/arch/arm64/kvm/Kconfig
+++ b/arch/arm64/kvm/Kconfig
@@ -61,6 +61,6 @@ config KVM_ARM_PMU
61config KVM_INDIRECT_VECTORS 61config KVM_INDIRECT_VECTORS
62 def_bool KVM && (HARDEN_BRANCH_PREDICTOR || HARDEN_EL2_VECTORS) 62 def_bool KVM && (HARDEN_BRANCH_PREDICTOR || HARDEN_EL2_VECTORS)
63 63
64source drivers/vhost/Kconfig 64source "drivers/vhost/Kconfig"
65 65
66endif # VIRTUALIZATION 66endif # VIRTUALIZATION
diff --git a/arch/ia64/Kconfig b/arch/ia64/Kconfig
index 36773def6920..0ef105ac40f6 100644
--- a/arch/ia64/Kconfig
+++ b/arch/ia64/Kconfig
@@ -261,7 +261,7 @@ config HZ
261endif 261endif
262 262
263if !IA64_HP_SIM 263if !IA64_HP_SIM
264source kernel/Kconfig.hz 264source "kernel/Kconfig.hz"
265endif 265endif
266 266
267config IA64_BRL_EMU 267config IA64_BRL_EMU
diff --git a/arch/m68k/Kconfig b/arch/m68k/Kconfig
index 1bc9f1ba759a..6f18c45f7703 100644
--- a/arch/m68k/Kconfig
+++ b/arch/m68k/Kconfig
@@ -123,11 +123,11 @@ config BOOTINFO_PROC
123 123
124menu "Platform setup" 124menu "Platform setup"
125 125
126source arch/m68k/Kconfig.cpu 126source "arch/m68k/Kconfig.cpu"
127 127
128source arch/m68k/Kconfig.machine 128source "arch/m68k/Kconfig.machine"
129 129
130source arch/m68k/Kconfig.bus 130source "arch/m68k/Kconfig.bus"
131 131
132endmenu 132endmenu
133 133
diff --git a/arch/mips/kvm/Kconfig b/arch/mips/kvm/Kconfig
index 76b93a9c8c9b..c36930226b7b 100644
--- a/arch/mips/kvm/Kconfig
+++ b/arch/mips/kvm/Kconfig
@@ -72,6 +72,6 @@ config KVM_MIPS_DEBUG_COP0_COUNTERS
72 72
73 If unsure, say N. 73 If unsure, say N.
74 74
75source drivers/vhost/Kconfig 75source "drivers/vhost/Kconfig"
76 76
77endif # VIRTUALIZATION 77endif # VIRTUALIZATION
diff --git a/arch/openrisc/Kconfig b/arch/openrisc/Kconfig
index 285f7d05c8ed..d765b4a5e05f 100644
--- a/arch/openrisc/Kconfig
+++ b/arch/openrisc/Kconfig
@@ -139,7 +139,7 @@ config SMP
139 139
140 If you don't know what to do here, say N. 140 If you don't know what to do here, say N.
141 141
142source kernel/Kconfig.hz 142source "kernel/Kconfig.hz"
143 143
144config OPENRISC_NO_SPR_SR_DSX 144config OPENRISC_NO_SPR_SR_DSX
145 bool "use SPR_SR_DSX software emulation" if OR1K_1200 145 bool "use SPR_SR_DSX software emulation" if OR1K_1200
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig
index 8be31261aec8..e1307d66c76b 100644
--- a/arch/powerpc/Kconfig
+++ b/arch/powerpc/Kconfig
@@ -393,7 +393,7 @@ config HIGHMEM
393 bool "High memory support" 393 bool "High memory support"
394 depends on PPC32 394 depends on PPC32
395 395
396source kernel/Kconfig.hz 396source "kernel/Kconfig.hz"
397 397
398config HUGETLB_PAGE_SIZE_VARIABLE 398config HUGETLB_PAGE_SIZE_VARIABLE
399 bool 399 bool
@@ -816,7 +816,7 @@ config ARCH_WANTS_FREEZER_CONTROL
816 def_bool y 816 def_bool y
817 depends on ADB_PMU 817 depends on ADB_PMU
818 818
819source kernel/power/Kconfig 819source "kernel/power/Kconfig"
820 820
821config SECCOMP 821config SECCOMP
822 bool "Enable seccomp to safely compute untrusted bytecode" 822 bool "Enable seccomp to safely compute untrusted bytecode"
diff --git a/arch/powerpc/kvm/Kconfig b/arch/powerpc/kvm/Kconfig
index 68a0e9d5b440..bfdde04e4905 100644
--- a/arch/powerpc/kvm/Kconfig
+++ b/arch/powerpc/kvm/Kconfig
@@ -204,6 +204,6 @@ config KVM_XIVE
204 default y 204 default y
205 depends on KVM_XICS && PPC_XIVE_NATIVE && KVM_BOOK3S_HV_POSSIBLE 205 depends on KVM_XICS && PPC_XIVE_NATIVE && KVM_BOOK3S_HV_POSSIBLE
206 206
207source drivers/vhost/Kconfig 207source "drivers/vhost/Kconfig"
208 208
209endif # VIRTUALIZATION 209endif # VIRTUALIZATION
diff --git a/arch/riscv/Kconfig b/arch/riscv/Kconfig
index 55da93f4e818..4f428ab4429f 100644
--- a/arch/riscv/Kconfig
+++ b/arch/riscv/Kconfig
@@ -287,6 +287,6 @@ endmenu
287 287
288menu "Power management options" 288menu "Power management options"
289 289
290source kernel/power/Kconfig 290source "kernel/power/Kconfig"
291 291
292endmenu 292endmenu
diff --git a/arch/s390/Kconfig b/arch/s390/Kconfig
index 5173366af8f3..48de9d32b833 100644
--- a/arch/s390/Kconfig
+++ b/arch/s390/Kconfig
@@ -520,7 +520,7 @@ config SCHED_TOPOLOGY
520 making when dealing with machines that have multi-threading, 520 making when dealing with machines that have multi-threading,
521 multiple cores or multiple books. 521 multiple cores or multiple books.
522 522
523source kernel/Kconfig.hz 523source "kernel/Kconfig.hz"
524 524
525config KEXEC 525config KEXEC
526 def_bool y 526 def_bool y
diff --git a/arch/s390/kvm/Kconfig b/arch/s390/kvm/Kconfig
index a3dbd459cce9..767453faacfc 100644
--- a/arch/s390/kvm/Kconfig
+++ b/arch/s390/kvm/Kconfig
@@ -57,6 +57,6 @@ config KVM_S390_UCONTROL
57 57
58# OK, it's a little counter-intuitive to do this, but it puts it neatly under 58# OK, it's a little counter-intuitive to do this, but it puts it neatly under
59# the virtualization menu. 59# the virtualization menu.
60source drivers/vhost/Kconfig 60source "drivers/vhost/Kconfig"
61 61
62endif # VIRTUALIZATION 62endif # VIRTUALIZATION
diff --git a/arch/sh/Kconfig b/arch/sh/Kconfig
index f82a4da7adf3..b2581b14e464 100644
--- a/arch/sh/Kconfig
+++ b/arch/sh/Kconfig
@@ -597,7 +597,7 @@ endmenu
597 597
598menu "Kernel features" 598menu "Kernel features"
599 599
600source kernel/Kconfig.hz 600source "kernel/Kconfig.hz"
601 601
602config KEXEC 602config KEXEC
603 bool "kexec system call (EXPERIMENTAL)" 603 bool "kexec system call (EXPERIMENTAL)"
diff --git a/arch/sparc/Kconfig b/arch/sparc/Kconfig
index 490b2c95c212..29b97f1dd9c5 100644
--- a/arch/sparc/Kconfig
+++ b/arch/sparc/Kconfig
@@ -187,7 +187,7 @@ config NR_CPUS
187 default 32 if SPARC32 187 default 32 if SPARC32
188 default 4096 if SPARC64 188 default 4096 if SPARC64
189 189
190source kernel/Kconfig.hz 190source "kernel/Kconfig.hz"
191 191
192config RWSEM_GENERIC_SPINLOCK 192config RWSEM_GENERIC_SPINLOCK
193 bool 193 bool
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
index 9d734f3c8234..fd5ac1d89d74 100644
--- a/arch/x86/Kconfig
+++ b/arch/x86/Kconfig
@@ -1975,7 +1975,7 @@ config SECCOMP
1975 1975
1976 If unsure, say Y. Only embedded should say N here. 1976 If unsure, say Y. Only embedded should say N here.
1977 1977
1978source kernel/Kconfig.hz 1978source "kernel/Kconfig.hz"
1979 1979
1980config KEXEC 1980config KEXEC
1981 bool "kexec system call" 1981 bool "kexec system call"
diff --git a/arch/x86/kvm/Kconfig b/arch/x86/kvm/Kconfig
index 1bbec387d289..72fa955f4a15 100644
--- a/arch/x86/kvm/Kconfig
+++ b/arch/x86/kvm/Kconfig
@@ -98,6 +98,6 @@ config KVM_MMU_AUDIT
98 98
99# OK, it's a little counter-intuitive to do this, but it puts it neatly under 99# OK, it's a little counter-intuitive to do this, but it puts it neatly under
100# the virtualization menu. 100# the virtualization menu.
101source drivers/vhost/Kconfig 101source "drivers/vhost/Kconfig"
102 102
103endif # VIRTUALIZATION 103endif # VIRTUALIZATION
diff --git a/block/Kconfig b/block/Kconfig
index f7045aa47edb..1b9149810999 100644
--- a/block/Kconfig
+++ b/block/Kconfig
@@ -224,4 +224,4 @@ config BLK_MQ_RDMA
224config BLK_PM 224config BLK_PM
225 def_bool BLOCK && PM 225 def_bool BLOCK && PM
226 226
227source block/Kconfig.iosched 227source "block/Kconfig.iosched"
diff --git a/crypto/Kconfig b/crypto/Kconfig
index f7a235db56aa..2c63b52a5fcc 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -1826,7 +1826,7 @@ config CRYPTO_HASH_INFO
1826 bool 1826 bool
1827 1827
1828source "drivers/crypto/Kconfig" 1828source "drivers/crypto/Kconfig"
1829source crypto/asymmetric_keys/Kconfig 1829source "crypto/asymmetric_keys/Kconfig"
1830source certs/Kconfig 1830source "certs/Kconfig"
1831 1831
1832endif # if CRYPTO 1832endif # if CRYPTO
diff --git a/drivers/crypto/Kconfig b/drivers/crypto/Kconfig
index caa98a7fe392..4db49de39b3e 100644
--- a/drivers/crypto/Kconfig
+++ b/drivers/crypto/Kconfig
@@ -258,7 +258,7 @@ config CRYPTO_DEV_HIFN_795X_RNG
258 Select this option if you want to enable the random number generator 258 Select this option if you want to enable the random number generator
259 on the HIFN 795x crypto adapters. 259 on the HIFN 795x crypto adapters.
260 260
261source drivers/crypto/caam/Kconfig 261source "drivers/crypto/caam/Kconfig"
262 262
263config CRYPTO_DEV_TALITOS 263config CRYPTO_DEV_TALITOS
264 tristate "Talitos Freescale Security Engine (SEC)" 264 tristate "Talitos Freescale Security Engine (SEC)"
diff --git a/drivers/gpu/drm/i915/Kconfig b/drivers/gpu/drm/i915/Kconfig
index 33a458b7f1fc..148be8e1a090 100644
--- a/drivers/gpu/drm/i915/Kconfig
+++ b/drivers/gpu/drm/i915/Kconfig
@@ -131,5 +131,5 @@ config DRM_I915_GVT_KVMGT
131menu "drm/i915 Debugging" 131menu "drm/i915 Debugging"
132depends on DRM_I915 132depends on DRM_I915
133depends on EXPERT 133depends on EXPERT
134source drivers/gpu/drm/i915/Kconfig.debug 134source "drivers/gpu/drm/i915/Kconfig.debug"
135endmenu 135endmenu
diff --git a/drivers/hwmon/Kconfig b/drivers/hwmon/Kconfig
index 81da17a42dc9..9ccbbd39b3c6 100644
--- a/drivers/hwmon/Kconfig
+++ b/drivers/hwmon/Kconfig
@@ -1306,7 +1306,7 @@ config SENSORS_PCF8591
1306 These devices are hard to detect and rarely found on mainstream 1306 These devices are hard to detect and rarely found on mainstream
1307 hardware. If unsure, say N. 1307 hardware. If unsure, say N.
1308 1308
1309source drivers/hwmon/pmbus/Kconfig 1309source "drivers/hwmon/pmbus/Kconfig"
1310 1310
1311config SENSORS_PWM_FAN 1311config SENSORS_PWM_FAN
1312 tristate "PWM fan" 1312 tristate "PWM fan"
diff --git a/drivers/i2c/Kconfig b/drivers/i2c/Kconfig
index efc3354d60ae..c6b7fc7b67d6 100644
--- a/drivers/i2c/Kconfig
+++ b/drivers/i2c/Kconfig
@@ -68,7 +68,7 @@ config I2C_MUX
68 This support is also available as a module. If so, the module 68 This support is also available as a module. If so, the module
69 will be called i2c-mux. 69 will be called i2c-mux.
70 70
71source drivers/i2c/muxes/Kconfig 71source "drivers/i2c/muxes/Kconfig"
72 72
73config I2C_HELPER_AUTO 73config I2C_HELPER_AUTO
74 bool "Autoselect pertinent helper modules" 74 bool "Autoselect pertinent helper modules"
@@ -94,8 +94,8 @@ config I2C_SMBUS
94 This support is also available as a module. If so, the module 94 This support is also available as a module. If so, the module
95 will be called i2c-smbus. 95 will be called i2c-smbus.
96 96
97source drivers/i2c/algos/Kconfig 97source "drivers/i2c/algos/Kconfig"
98source drivers/i2c/busses/Kconfig 98source "drivers/i2c/busses/Kconfig"
99 99
100config I2C_STUB 100config I2C_STUB
101 tristate "I2C/SMBus Test Stub" 101 tristate "I2C/SMBus Test Stub"
diff --git a/drivers/pps/Kconfig b/drivers/pps/Kconfig
index c6008f296605..965aa086a1e0 100644
--- a/drivers/pps/Kconfig
+++ b/drivers/pps/Kconfig
@@ -37,8 +37,8 @@ config NTP_PPS
37 37
38 It doesn't work on tickless systems at the moment. 38 It doesn't work on tickless systems at the moment.
39 39
40source drivers/pps/clients/Kconfig 40source "drivers/pps/clients/Kconfig"
41 41
42source drivers/pps/generators/Kconfig 42source "drivers/pps/generators/Kconfig"
43 43
44endif # PPS 44endif # PPS
diff --git a/drivers/ras/Kconfig b/drivers/ras/Kconfig
index 4c3c67d13254..b834ff555188 100644
--- a/drivers/ras/Kconfig
+++ b/drivers/ras/Kconfig
@@ -30,6 +30,6 @@ menuconfig RAS
30 30
31if RAS 31if RAS
32 32
33source arch/x86/ras/Kconfig 33source "arch/x86/ras/Kconfig"
34 34
35endif 35endif
diff --git a/drivers/thermal/Kconfig b/drivers/thermal/Kconfig
index 5422523c03f8..5fbfabbf627b 100644
--- a/drivers/thermal/Kconfig
+++ b/drivers/thermal/Kconfig
@@ -383,7 +383,7 @@ config INTEL_QUARK_DTS_THERMAL
383 underlying BIOS/Firmware. 383 underlying BIOS/Firmware.
384 384
385menu "ACPI INT340X thermal drivers" 385menu "ACPI INT340X thermal drivers"
386source drivers/thermal/int340x_thermal/Kconfig 386source "drivers/thermal/int340x_thermal/Kconfig"
387endmenu 387endmenu
388 388
389config INTEL_BXT_PMIC_THERMAL 389config INTEL_BXT_PMIC_THERMAL
diff --git a/drivers/w1/Kconfig b/drivers/w1/Kconfig
index 6743bde038cc..dbb41f45af8a 100644
--- a/drivers/w1/Kconfig
+++ b/drivers/w1/Kconfig
@@ -25,7 +25,7 @@ config W1_CON
25 2. Userspace commands. Includes read/write and search/alarm search commands. 25 2. Userspace commands. Includes read/write and search/alarm search commands.
26 3. Replies to userspace commands. 26 3. Replies to userspace commands.
27 27
28source drivers/w1/masters/Kconfig 28source "drivers/w1/masters/Kconfig"
29source drivers/w1/slaves/Kconfig 29source "drivers/w1/slaves/Kconfig"
30 30
31endif # W1 31endif # W1
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug
index 1af29b8224fd..08a95da1adcc 100644
--- a/lib/Kconfig.debug
+++ b/lib/Kconfig.debug
@@ -439,7 +439,7 @@ config DEBUG_KERNEL
439 439
440menu "Memory Debugging" 440menu "Memory Debugging"
441 441
442source mm/Kconfig.debug 442source "mm/Kconfig.debug"
443 443
444config DEBUG_OBJECTS 444config DEBUG_OBJECTS
445 bool "Debug object operations" 445 bool "Debug object operations"
@@ -1609,7 +1609,7 @@ config LATENCYTOP
1609 Enable this option if you want to use the LatencyTOP tool 1609 Enable this option if you want to use the LatencyTOP tool
1610 to find out which userspace is blocking on what kernel operations. 1610 to find out which userspace is blocking on what kernel operations.
1611 1611
1612source kernel/trace/Kconfig 1612source "kernel/trace/Kconfig"
1613 1613
1614config PROVIDE_OHCI1394_DMA_INIT 1614config PROVIDE_OHCI1394_DMA_INIT
1615 bool "Remote debugging over FireWire early on boot" 1615 bool "Remote debugging over FireWire early on boot"
diff --git a/security/Kconfig b/security/Kconfig
index d9aa521b5206..e4fe2f3c2c65 100644
--- a/security/Kconfig
+++ b/security/Kconfig
@@ -4,7 +4,7 @@
4 4
5menu "Security options" 5menu "Security options"
6 6
7source security/keys/Kconfig 7source "security/keys/Kconfig"
8 8
9config SECURITY_DMESG_RESTRICT 9config SECURITY_DMESG_RESTRICT
10 bool "Restrict unprivileged access to the kernel syslog" 10 bool "Restrict unprivileged access to the kernel syslog"
@@ -230,14 +230,14 @@ config STATIC_USERMODEHELPER_PATH
230 If you wish for all usermode helper programs to be disabled, 230 If you wish for all usermode helper programs to be disabled,
231 specify an empty string here (i.e. ""). 231 specify an empty string here (i.e. "").
232 232
233source security/selinux/Kconfig 233source "security/selinux/Kconfig"
234source security/smack/Kconfig 234source "security/smack/Kconfig"
235source security/tomoyo/Kconfig 235source "security/tomoyo/Kconfig"
236source security/apparmor/Kconfig 236source "security/apparmor/Kconfig"
237source security/loadpin/Kconfig 237source "security/loadpin/Kconfig"
238source security/yama/Kconfig 238source "security/yama/Kconfig"
239 239
240source security/integrity/Kconfig 240source "security/integrity/Kconfig"
241 241
242choice 242choice
243 prompt "Default security module" 243 prompt "Default security module"
diff --git a/security/integrity/Kconfig b/security/integrity/Kconfig
index da9565891738..877af1f2d904 100644
--- a/security/integrity/Kconfig
+++ b/security/integrity/Kconfig
@@ -66,7 +66,7 @@ config INTEGRITY_AUDIT
66 be enabled by specifying 'integrity_audit=1' on the kernel 66 be enabled by specifying 'integrity_audit=1' on the kernel
67 command line. 67 command line.
68 68
69source security/integrity/ima/Kconfig 69source "security/integrity/ima/Kconfig"
70source security/integrity/evm/Kconfig 70source "security/integrity/evm/Kconfig"
71 71
72endif # if INTEGRITY 72endif # if INTEGRITY