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