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 | |
parent | 31eadd07f29842a26ff9f133157aa28a0f379f46 (diff) | |
download | mtk-20170518-baad87ae3d492e16079134fc8275c2c5cdfcf4dd.zip mtk-20170518-baad87ae3d492e16079134fc8275c2c5cdfcf4dd.tar.gz mtk-20170518-baad87ae3d492e16079134fc8275c2c5cdfcf4dd.tar.bz2 |
kernel: add SECCOMP to menuconfig
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 43888
-rw-r--r-- | config/Config-kernel.in | 14 | ||||
-rw-r--r-- | target/linux/generic/config-3.10 | 1 | ||||
-rw-r--r-- | target/linux/generic/config-3.13 | 1 | ||||
-rw-r--r-- | target/linux/generic/config-3.14 | 1 | ||||
-rw-r--r-- | target/linux/generic/config-3.18 | 1 | ||||
-rw-r--r-- | target/linux/generic/config-3.3 | 1 | ||||
-rw-r--r-- | target/linux/generic/config-3.8 | 1 |
7 files changed, 14 insertions, 6 deletions
diff --git a/config/Config-kernel.in b/config/Config-kernel.in index 51cc31f..656fce3 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. diff --git a/target/linux/generic/config-3.10 b/target/linux/generic/config-3.10 index 9251e6c..4299c57 100644 --- a/target/linux/generic/config-3.10 +++ b/target/linux/generic/config-3.10 @@ -2892,7 +2892,6 @@ CONFIG_SCSI_PROC_FS=y # CONFIG_SCSI_UFSHCD is not set # CONFIG_SCSI_ULTRASTOR is not set # CONFIG_SDIO_UART is not set -# CONFIG_SECCOMP is not set # CONFIG_SECURITY is not set # CONFIG_SECURITYFS is not set # CONFIG_SECURITY_DMESG_RESTRICT is not set diff --git a/target/linux/generic/config-3.13 b/target/linux/generic/config-3.13 index d9f92ee..8dff7e1 100644 --- a/target/linux/generic/config-3.13 +++ b/target/linux/generic/config-3.13 @@ -3043,7 +3043,6 @@ CONFIG_SCSI_PROC_FS=y # CONFIG_SCSI_UFSHCD is not set # CONFIG_SCSI_ULTRASTOR is not set # CONFIG_SDIO_UART is not set -# CONFIG_SECCOMP is not set # CONFIG_SECURITY is not set # CONFIG_SECURITYFS is not set # CONFIG_SECURITY_DMESG_RESTRICT is not set diff --git a/target/linux/generic/config-3.14 b/target/linux/generic/config-3.14 index 2faf7f9..7b6055a 100644 --- a/target/linux/generic/config-3.14 +++ b/target/linux/generic/config-3.14 @@ -3104,7 +3104,6 @@ CONFIG_SCSI_PROC_FS=y # CONFIG_SCSI_UFSHCD is not set # CONFIG_SCSI_ULTRASTOR is not set # CONFIG_SDIO_UART is not set -# CONFIG_SECCOMP is not set # CONFIG_SECURITY is not set # CONFIG_SECURITYFS is not set # CONFIG_SECURITY_DMESG_RESTRICT is not set diff --git a/target/linux/generic/config-3.18 b/target/linux/generic/config-3.18 index 9e4dec3..ce2ec5c 100644 --- a/target/linux/generic/config-3.18 +++ b/target/linux/generic/config-3.18 @@ -3230,7 +3230,6 @@ CONFIG_SCSI_PROC_FS=y # CONFIG_SCSI_UFSHCD is not set # CONFIG_SCSI_ULTRASTOR is not set # CONFIG_SDIO_UART is not set -# CONFIG_SECCOMP is not set # CONFIG_SECURITY is not set # CONFIG_SECURITYFS is not set # CONFIG_SECURITY_DMESG_RESTRICT is not set diff --git a/target/linux/generic/config-3.3 b/target/linux/generic/config-3.3 index 6567bca..4de7995 100644 --- a/target/linux/generic/config-3.3 +++ b/target/linux/generic/config-3.3 @@ -2483,7 +2483,6 @@ CONFIG_SCSI_PROC_FS=y # CONFIG_SCSI_U14_34F is not set # CONFIG_SCSI_ULTRASTOR is not set # CONFIG_SDIO_UART is not set -# CONFIG_SECCOMP is not set # CONFIG_SECURITY is not set # CONFIG_SECURITYFS is not set # CONFIG_SECURITY_DMESG_RESTRICT is not set diff --git a/target/linux/generic/config-3.8 b/target/linux/generic/config-3.8 index b647075..343c0dd 100644 --- a/target/linux/generic/config-3.8 +++ b/target/linux/generic/config-3.8 @@ -2782,7 +2782,6 @@ CONFIG_SCSI_PROC_FS=y # CONFIG_SCSI_UFSHCD is not set # CONFIG_SCSI_ULTRASTOR is not set # CONFIG_SDIO_UART is not set -# CONFIG_SECCOMP is not set # CONFIG_SECURITY is not set # CONFIG_SECURITYFS is not set # CONFIG_SECURITY_DMESG_RESTRICT is not set |