lxc: bump to 2.1.0
[feed/packages.git] / utils / lxc / Config.in
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 select KERNEL_CGROUP_SCHED
11 select KERNEL_FAIR_GROUP_SCHED
12 select KERNEL_RT_GROUP_SCHED
13 select KERNEL_CGROUP_CPUACCT
14 select KERNEL_MEMCG
15 select KERNEL_MEMCG_KMEM
16 select KERNEL_CPUSETS
17 help
18 Select needed kernel options for LXC related utilities. Options
19 include cgroups, namespaces and other miscellaneous options. These
20 options unfortunately can not be installed as a module.
21
22 config LXC_BUSYBOX_OPTIONS
23 bool "Enable busybox support for lxc-create tool"
24 default n
25 select BUSYBOX_CUSTOM
26 select BUSYBOX_CONFIG_HAVE_DOT_CONFIG
27 select BUSYBOX_CONFIG_FEATURE_SEAMLESS_XZ
28 select BUSYBOX_CONFIG_FEATURE_TAR_LONG_OPTIONS
29 select BUSYBOX_CONFIG_UNXZ
30 select BUSYBOX_CONFIG_XZ
31 select BUSYBOX_CONFIG_GETOPT
32 select BUSYBOX_CONFIG_FEATURE_GETOPT_LONG
33 help
34 Select needed busybox options for lxc-create utility. This include XZ tar
35 compression, long option support for tar and built-in getopt support.
36
37 config LXC_SECCOMP
38 bool "Enable support for seccomp in LXC"
39 default KERNEL_SECCOMP
40 help
41 Build LXC with support for seccomp filters.
42 Select libseccomp which also pulls-in the needed kernel features.
43
44 config LXC_NETWORKING
45 bool "Enable networking support for LXC containers"
46 default n
47 select PACKAGE_kmod-veth
48 select PACKAGE_kmod-macvlan
49 help
50 Enable "veth pair device" and "macvlan"
51
52 endmenu