aboutsummaryrefslogtreecommitdiffstats
path: root/config/Config-kernel.in
diff options
context:
space:
mode:
authorYousong Zhou <yszhou4tech@gmail.com>2019-08-27 06:35:10 +0000
committerYousong Zhou <yszhou4tech@gmail.com>2019-09-12 02:30:26 +0000
commit4f94a331e172fd23a21b74d3e552abad25248326 (patch)
tree376b65b2f49bd080d41bfec0828e75a87fac5a24 /config/Config-kernel.in
parent083bb9b6a4e33a2881da9086c65792148d0d04b1 (diff)
downloadupstream-4f94a331e172fd23a21b74d3e552abad25248326.tar.gz
upstream-4f94a331e172fd23a21b74d3e552abad25248326.tar.bz2
upstream-4f94a331e172fd23a21b74d3e552abad25248326.zip
config: kernel: remove KERNEL_LXC_MISC
Kernel features are neutral. The two cascaded features can also be useful for other container related tools It's also less error-prone if only kconfig symbols from the kernel are prefixed KERNEL_ Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
Diffstat (limited to 'config/Config-kernel.in')
-rw-r--r--config/Config-kernel.in55
1 files changed, 22 insertions, 33 deletions
diff --git a/config/Config-kernel.in b/config/Config-kernel.in
index d9a9fe687f..310c6dfd07 100644
--- a/config/Config-kernel.in
+++ b/config/Config-kernel.in
@@ -623,41 +623,30 @@ if KERNEL_NAMESPACES
endif
-#
-# LXC related symbols
-#
-
-config KERNEL_LXC_MISC
- bool "Enable miscellaneous LXC related options"
- default y if !SMALL_FLASH
-
-if KERNEL_LXC_MISC
-
- config KERNEL_DEVPTS_MULTIPLE_INSTANCES
- bool "Support multiple instances of devpts"
- default y
- help
- Enable support for multiple instances of devpts filesystem.
- If you want to have isolated PTY namespaces (eg: in containers),
- say Y here. Otherwise, say N. If enabled, each mount of devpts
- filesystem with the '-o newinstance' option will create an
- independent PTY namespace.
-
- config KERNEL_POSIX_MQUEUE
- bool "POSIX Message Queues"
- default y
- help
- POSIX variant of message queues is a part of IPC. In POSIX message
- queues every message has a priority which decides about succession
- of receiving it by a process. If you want to compile and run
- programs written e.g. for Solaris with use of its POSIX message
- queues (functions mq_*) say Y here.
+config KERNEL_DEVPTS_MULTIPLE_INSTANCES
+ bool "Support multiple instances of devpts"
+ default y
+ help
+ Enable support for multiple instances of devpts filesystem.
+ If you want to have isolated PTY namespaces (eg: in containers),
+ say Y here. Otherwise, say N. If enabled, each mount of devpts
+ filesystem with the '-o newinstance' option will create an
+ independent PTY namespace.
+
+config KERNEL_POSIX_MQUEUE
+ bool "POSIX Message Queues"
+ default y
+ help
+ POSIX variant of message queues is a part of IPC. In POSIX message
+ queues every message has a priority which decides about succession
+ of receiving it by a process. If you want to compile and run
+ programs written e.g. for Solaris with use of its POSIX message
+ queues (functions mq_*) say Y here.
- POSIX message queues are visible as a filesystem called 'mqueue'
- and can be mounted somewhere if you want to do filesystem
- operations on message queues.
+ POSIX message queues are visible as a filesystem called 'mqueue'
+ and can be mounted somewhere if you want to do filesystem
+ operations on message queues.
-endif
config KERNEL_SECCOMP_FILTER
bool