diff options
author | John Crispin <john@openwrt.org> | 2015-01-08 21:23:18 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-01-08 21:23:18 +0000 |
commit | baad87ae3d492e16079134fc8275c2c5cdfcf4dd (patch) | |
tree | 85212f6f9fd9c48df3c10328ed4a441b481c1182 /config/Config-kernel.in | |
parent | 31eadd07f29842a26ff9f133157aa28a0f379f46 (diff) | |
download | upstream-baad87ae3d492e16079134fc8275c2c5cdfcf4dd.tar.gz upstream-baad87ae3d492e16079134fc8275c2c5cdfcf4dd.tar.bz2 upstream-baad87ae3d492e16079134fc8275c2c5cdfcf4dd.zip |
kernel: add SECCOMP to menuconfig
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 43888
Diffstat (limited to 'config/Config-kernel.in')
-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. |