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: <20171209171252.8547-1-vincent.legoll@gmail.com> Date: Sat, 9 Dec 2017 18:12:52 +0100 From: Vincent Legoll <vincent.legoll@...il.com> To: Alexander Viro <viro@...iv.linux.org.uk>, Kees Cook <keescook@...omium.org>, Anton Vorontsov <anton@...msg.org>, Colin Cross <ccross@...roid.com>, Tony Luck <tony.luck@...el.com>, linux-fsdevel@...r.kernel.org, linux-kernel@...r.kernel.org Cc: Vincent Legoll <vincent.legoll@...il.com> Subject: [PATCH] Change some filesystem menus into 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 related 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> --- fs/Kconfig | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/fs/Kconfig b/fs/Kconfig index 7aee6d699fd6..94ee1422e995 100644 --- a/fs/Kconfig +++ b/fs/Kconfig @@ -105,29 +105,38 @@ source "fs/autofs4/Kconfig" source "fs/fuse/Kconfig" source "fs/overlayfs/Kconfig" -menu "Caches" +menuconfig FS_CACHE_MENU + bool "Caches" + +if FS_CACHE_MENU source "fs/fscache/Kconfig" source "fs/cachefiles/Kconfig" -endmenu +endif # FS_CACHE_MENU if BLOCK -menu "CD-ROM/DVD Filesystems" +menuconfig FS_CDVD_MENU + bool "CD-ROM/DVD Filesystems" + +if FS_CDVD_MENU source "fs/isofs/Kconfig" source "fs/udf/Kconfig" -endmenu +endif # FS_CDVD_MENU endif # BLOCK if BLOCK -menu "DOS/FAT/NT Filesystems" +menuconfig FS_FAT_MENU + bool "DOS/FAT/NT Filesystems" + +if FS_FAT_MENU source "fs/fat/Kconfig" source "fs/ntfs/Kconfig" -endmenu +endif # FS_FAT_MENU endif # BLOCK menu "Pseudo filesystems" -- 2.14.1
Powered by blists - more mailing lists