diff options
author | Daniel Golle <daniel@makrotopia.org> | 2019-09-12 13:17:24 +0200 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2019-09-12 13:17:24 +0200 |
commit | 7cc22d72e96093c816292e1b640adff770c7fe77 (patch) | |
tree | 42b6d62cced2dd094c1bd29acac3e3af8aa6fe10 /config | |
parent | 4f94a331e172fd23a21b74d3e552abad25248326 (diff) | |
download | upstream-7cc22d72e96093c816292e1b640adff770c7fe77.tar.gz upstream-7cc22d72e96093c816292e1b640adff770c7fe77.tar.bz2 upstream-7cc22d72e96093c816292e1b640adff770c7fe77.zip |
config: kernel: only enable container features if !SMALL_FLASH
KERNEL_DEVPTS_MULTIPLE_INSTANCES and KERNEL_POSIX_MQUEUE were
previously enabled by default only if KERNEL_LXC_MISC was selected.
KERNEL_LXC_MISC was enabled only if the SMALL_FLASH (anti-)feature
was not selected.
Now that KERNEL_LXC_MISC no longer exists, make sure that those
options are also only enabled by default for !SMALL_FLASH targets.
Fixes: 4f94a331 ("config: kernel: remove KERNEL_LXC_MISC")
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'config')
-rw-r--r-- | config/Config-kernel.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/Config-kernel.in b/config/Config-kernel.in index 310c6dfd07..bdb6b91cbb 100644 --- a/config/Config-kernel.in +++ b/config/Config-kernel.in @@ -625,7 +625,7 @@ endif config KERNEL_DEVPTS_MULTIPLE_INSTANCES bool "Support multiple instances of devpts" - default y + default y if !SMALL_FLASH help Enable support for multiple instances of devpts filesystem. If you want to have isolated PTY namespaces (eg: in containers), @@ -635,7 +635,7 @@ config KERNEL_DEVPTS_MULTIPLE_INSTANCES config KERNEL_POSIX_MQUEUE bool "POSIX Message Queues" - default y + default y if !SMALL_FLASH help POSIX variant of message queues is a part of IPC. In POSIX message queues every message has a priority which decides about succession |