lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

Config.in (1146B)


      1 menu "Configuration"
      2         depends on PACKAGE_lxc
      3 
      4 config LXC_KERNEL_OPTIONS
      5 	bool "Enable kernel support for LXC"
      6 	default n
      7 	select KERNEL_CGROUPS
      8 	select KERNEL_NAMESPACES
      9 	select KERNEL_LXC_MISC
     10 	help
     11 	  Select needed kernel options for LXC related utilities. Options
     12 	  include cgroups, namespaces and other miscellaneous options. These
     13 	  options unfortunately can not be installed as a module.
     14 
     15 config LXC_BUSYBOX_OPTIONS
     16 	bool "Enable busybox support for lxc-create tool"
     17 	default n
     18 	select BUSYBOX_CUSTOM
     19 	select BUSYBOX_CONFIG_HAVE_DOT_CONFIG
     20 	select BUSYBOX_CONFIG_FEATURE_SEAMLESS_XZ
     21 	select BUSYBOX_CONFIG_FEATURE_TAR_LONG_OPTIONS
     22 	select BUSYBOX_CONFIG_UNXZ
     23 	select BUSYBOX_CONFIG_XZ
     24 	select BUSYBOX_CONFIG_GETOPT
     25 	select BUSYBOX_CONFIG_FEATURE_GETOPT_LONG
     26 	help
     27 	  Select needed busybox options for lxc-create utility. This include XZ tar
     28 	  compression, long option support for tar and built-in getopt support.
     29 
     30 config LXC_SECCOMP
     31 	bool "Enable support for seccomp in LXC"
     32 	default KERNEL_SECCOMP
     33 	help
     34 	  Build LXC with support for seccomp filters.
     35 	  Select libseccomp which also pulls-in the needed kernel features.
     36 
     37 endmenu