lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <20171209154013.5626-1-vincent.legoll@gmail.com> Date: Sat, 9 Dec 2017 16:40:13 +0100 From: Vincent Legoll <vincent.legoll@...il.com> To: sagi@...mberg.me, rdunlap@...radead.org, keith.busch@...el.com, linux-kernel@...r.kernel.org Cc: Vincent Legoll <vincent.legoll@...il.com> Subject: [PATCH] nvme: make NVME a menuconfig to ease disabling it all No need to get into the submenu to disable all related config entries. This makes it easier to disable all NVME config options without entering the submenu. It will also enable one to see that en/dis-abled state from the outside menu. This is only intended to change menuconfig UI, not change the config dependencies. Signed-off-by: Vincent Legoll <vincent.legoll@...il.com> --- drivers/nvme/Kconfig | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/drivers/nvme/Kconfig b/drivers/nvme/Kconfig index 04008e0bbe81..aad33a0dfbce 100644 --- a/drivers/nvme/Kconfig +++ b/drivers/nvme/Kconfig @@ -1,6 +1,9 @@ -menu "NVME Support" +menuconfig NVME_MENU + bool "NVME Support" + +if NVME_MENU source "drivers/nvme/host/Kconfig" source "drivers/nvme/target/Kconfig" -endmenu +endif # NVME_MENU -- 2.14.1
Powered by blists - more mailing lists