2013-02-12 12:21:26 +01:00
|
|
|
config BR2_PACKAGE_LXC
|
|
|
|
bool "lxc"
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2013-10-18 21:45:15 +02:00
|
|
|
depends on BR2_USE_MMU # fork()
|
2015-05-12 23:21:21 +02:00
|
|
|
# build system forcefully builds a shared library
|
|
|
|
depends on !BR2_STATIC_LIBS
|
2016-03-17 14:34:11 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 # setns() system call
|
2013-02-12 12:21:26 +01:00
|
|
|
help
|
|
|
|
Linux Containers (LXC), provides the ability to group and isolate
|
|
|
|
of a set of processes in a jail by virtualizing and accounting the
|
|
|
|
kernel resources. It is similar to Linux-Vserver or Openvz.
|
|
|
|
|
2014-07-04 15:35:31 +02:00
|
|
|
https://linuxcontainers.org/
|
2013-02-12 12:21:26 +01:00
|
|
|
|
2016-03-18 22:24:49 +01:00
|
|
|
comment "lxc needs a toolchain w/ threads, headers >= 3.0, dynamic library"
|
2013-11-07 09:24:37 +01:00
|
|
|
depends on BR2_USE_MMU
|
2015-04-19 14:40:00 +02:00
|
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS \
|
2016-03-18 22:24:49 +01:00
|
|
|
|| !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 \
|
2015-05-12 23:21:21 +02:00
|
|
|
|| BR2_STATIC_LIBS
|