diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2017-10-07 05:38:11 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2017-10-07 05:38:11 +0200 |
commit | 1c6d2f8f4c230fbd5dd7d4219c96cfed358c74f8 (patch) | |
tree | 42a35b31d2b2ba3e2f2337584a85ad85c00e4752 | |
parent | 292e4773624948818c23ca682ea1fc02bdffaab0 (diff) |
kernel: add filesystem options
-rw-r--r-- | target/linux/config/Config.in.fs | 7 | ||||
-rw-r--r-- | target/linux/config/Config.in.fsopts | 12 |
2 files changed, 13 insertions, 6 deletions
diff --git a/target/linux/config/Config.in.fs b/target/linux/config/Config.in.fs index 956a0fb21..c051e2fd1 100644 --- a/target/linux/config/Config.in.fs +++ b/target/linux/config/Config.in.fs @@ -14,15 +14,9 @@ config ADK_KERNEL_FSNOTIFY bool default y -config ADK_KERNEL_INOTIFY_USER - bool - config ADK_KERNEL_AUTOFS4_FS bool -config ADK_KERNEL_DNOTIFY - bool - config ADK_KERNEL_TMPFS_POSIX_ACL bool @@ -261,6 +255,7 @@ config ADK_KERNEL_UBIFS_FS endmenu +source target/linux/config/Config.in.fsopts source target/linux/config/Config.in.part source target/linux/config/Config.in.fsnet source target/linux/config/Config.in.nls diff --git a/target/linux/config/Config.in.fsopts b/target/linux/config/Config.in.fsopts new file mode 100644 index 000000000..88b225589 --- /dev/null +++ b/target/linux/config/Config.in.fsopts @@ -0,0 +1,12 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +menu "Filesystem options" + +config ADK_KERNEL_INOTIFY_USER + bool "Enable INOTIFY" + +config ADK_KERNEL_DNOTIFY + bool "Enable DNOTIFY" + +endmenu |