2013-02-12 12:21:26 +01:00
|
|
|
config BR2_PACKAGE_LXC
|
|
|
|
bool "lxc"
|
|
|
|
select BR2_PACKAGE_LIBCAP
|
|
|
|
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
|
2014-11-30 17:48:54 +01:00
|
|
|
# the toolchain doesn't support setns syscall
|
|
|
|
depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201305
|
|
|
|
depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201405
|
2014-11-16 12:04:47 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 # libcap
|
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
|
|
|
|
2015-05-12 23:21:21 +02: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
|
2014-11-30 17:48:54 +01:00
|
|
|
depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201305
|
|
|
|
depends on !BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_NIOSII201405
|
2015-04-19 14:40:00 +02:00
|
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS \
|
2015-05-12 23:21:21 +02:00
|
|
|
|| !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 \
|
|
|
|
|| BR2_STATIC_LIBS
|