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