summaryrefslogtreecommitdiffstats
path: root/rules/libseccomp.in
blob: d3708c952f796ffa4d3df05373f53f8e64438ac4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
## SECTION=system_libraries

menuconfig LIBSECCOMP
	bool
	prompt "libseccomp                    "
	select SED if LIBSECCOMP_UTILS && RUNTIME
	select STRACE if LIBSECCOMP_UTILS && RUNTIME
	select WHICH if LIBSECCOMP_UTILS && RUNTIME
	help
	  An Enhanced Seccomp (mode 2) Helper Library

	  The libseccomp library provides an easy to use, platform independent, interface
	  to the Linux Kernel's syscall filtering mechanism.  The libseccomp API is
	  designed to abstract away the underlying BPF based syscall filter language and
	  present a more conventional function-call based filtering interface that should
	  be familiar to, and easily adopted by, application developers.

if LIBSECCOMP

config LIBSECCOMP_UTILS
	bool
	prompt "install utils"
	help
	  Install some utils, useful for development.
	  Note: in order to run some of these utils the tools 'uniq', 'sort',
	  'expr' and 'mktemp' from the 'Busybox' *or* 'Coreutils' package is
	  required.

endif