diff options
author | John Crispin <blogic@openwrt.org> | 2015-03-26 10:57:51 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2015-03-26 10:57:51 +0000 |
commit | 15527f7f5abe6c739de6195d3d450d1dc6c40f65 (patch) | |
tree | 82683542354b09af5202df498375c190c8a3aff6 | |
parent | 7238d37498bd850ee65fa69b32881df4ee053106 (diff) | |
download | upstream-15527f7f5abe6c739de6195d3d450d1dc6c40f65.tar.gz upstream-15527f7f5abe6c739de6195d3d450d1dc6c40f65.tar.bz2 upstream-15527f7f5abe6c739de6195d3d450d1dc6c40f65.zip |
kernel: cleanup seccomp symbol selection
Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45005 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | config/Config-kernel.in | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/config/Config-kernel.in b/config/Config-kernel.in index 6bf65f5bc0..84711298a6 100644 --- a/config/Config-kernel.in +++ b/config/Config-kernel.in @@ -516,16 +516,14 @@ if KERNEL_LXC_MISC endif +config KERNEL_SECCOMP_FILTER + bool + default n + config KERNEL_SECCOMP bool "Enable seccomp support" depends on !(TARGET_uml) + select KERNEL_SECCOMP_FILTER 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. |