summaryrefslogtreecommitdiffstats
path: root/Config.in
diff options
context:
space:
mode:
authorLuka Perkov <luka@openwrt.org>2013-05-17 11:27:20 +0000
committerLuka Perkov <luka@openwrt.org>2013-05-17 11:27:20 +0000
commit058d074f8759749f4892cadd2b01bfdc25421ea2 (patch)
tree9058442e4f38af5a7c01826d82ea0a2b582f2724 /Config.in
parent7f847fe47c11b6687e1d395a2e8eb048786548c8 (diff)
downloadmaster-31e0f0ae-058d074f8759749f4892cadd2b01bfdc25421ea2.tar.gz
master-31e0f0ae-058d074f8759749f4892cadd2b01bfdc25421ea2.tar.bz2
master-31e0f0ae-058d074f8759749f4892cadd2b01bfdc25421ea2.zip
Config.in: expose symbols specific to lxc in separate item
SVN-Revision: 36650
Diffstat (limited to 'Config.in')
-rw-r--r--Config.in26
1 files changed, 26 insertions, 0 deletions
diff --git a/Config.in b/Config.in
index 9ad71e02cb..b79a26e871 100644
--- a/Config.in
+++ b/Config.in
@@ -568,6 +568,18 @@ menu "Global build settings"
Allow user space to create what appear to be multiple instances
of the network stack.
+ endif
+
+ #
+ # LXC related symbols
+ #
+
+ config KERNEL_LXC_MISC
+ bool "Enable miscellaneous LXC related options"
+ default n
+
+ if KERNEL_LXC_MISC
+
config KERNEL_DEVPTS_MULTIPLE_INSTANCES
bool "Support multiple instances of devpts"
default y
@@ -578,6 +590,20 @@ menu "Global build settings"
filesystem with the '-o newinstance' option will create an
independent PTY namespace.
+ config KERNEL_POSIX_MQUEUE
+ bool "POSIX Message Queues"
+ default n
+ 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.
+
endif
comment "Package build options"