diff options
author | John Crispin <blogic@openwrt.org> | 2015-01-08 21:23:18 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2015-01-08 21:23:18 +0000 |
commit | 10c4ed3ce2a84e36d543c8f82e37bacf538d94c9 (patch) | |
tree | 58643d9000099679229cfa7db25294467816e0f2 /config | |
parent | 0db74510c05e7f1c3c4518f9ba1de7f13d8be86c (diff) | |
download | upstream-10c4ed3ce2a84e36d543c8f82e37bacf538d94c9.tar.gz upstream-10c4ed3ce2a84e36d543c8f82e37bacf538d94c9.tar.bz2 upstream-10c4ed3ce2a84e36d543c8f82e37bacf538d94c9.zip |
kernel: add SECCOMP to menuconfig
Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43888 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'config')
-rw-r--r-- | config/Config-kernel.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/config/Config-kernel.in b/config/Config-kernel.in index 51cc31f515..656fce3eb8 100644 --- a/config/Config-kernel.in +++ b/config/Config-kernel.in @@ -465,3 +465,17 @@ if KERNEL_LXC_MISC operations on message queues. endif + +config KERNEL_SECCOMP + bool "Enable seccomp support" + depends on !(TARGET_uml || TARGET_avr32) + default n + help + Build kernel with support for seccomp. + +config KERNEL_SECCOMP_FILTER + bool "Enable seccomp filter support" + depends on KERNEL_SECCOMP + default n + help + Build kernel with support for seccomp BPF programs. |