Config.in 905 B

123456789101112131415161718192021222324
  1. config BR2_PACKAGE_LXC
  2. bool "lxc"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS
  4. depends on BR2_USE_MMU # fork()
  5. # build system forcefully builds a shared library
  6. depends on !BR2_STATIC_LIBS
  7. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11
  8. depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 # setns() system call
  9. depends on !BR2_TOOLCHAIN_USES_UCLIBC # no fexecve
  10. help
  11. Linux Containers (LXC), provides the ability to group and
  12. isolate of a set of processes in a jail by virtualizing and
  13. accounting the kernel resources. It is similar to
  14. Linux-Vserver or Openvz.
  15. https://linuxcontainers.org/
  16. comment "lxc needs a glibc or musl toolchain w/ threads, headers >= 3.0, dynamic library, gcc >= 4.7"
  17. depends on BR2_USE_MMU
  18. depends on !BR2_TOOLCHAIN_HAS_THREADS \
  19. || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 \
  20. || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 \
  21. || BR2_STATIC_LIBS \
  22. || BR2_TOOLCHAN_USES_UCLIBC