diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2021-11-01 14:48:22 +0100 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2021-11-03 23:52:08 +0100 |
commit | bdc2194cbb67a2869cb3087640e5c5a34749da6d (patch) | |
tree | 19ba9d9d42ac8a7d905242e8675d48f087ef4356 | |
parent | db3acbac11cb11321e05c94babc543b94da19273 (diff) | |
download | upstream-bdc2194cbb67a2869cb3087640e5c5a34749da6d.tar.gz upstream-bdc2194cbb67a2869cb3087640e5c5a34749da6d.tar.bz2 upstream-bdc2194cbb67a2869cb3087640e5c5a34749da6d.zip |
config: Activate SECCOMP also on MIPS 64
This activates SECCOMP also on mips64 and mips64el.
This was working fine in a basic test in qemu.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
-rw-r--r-- | config/Config-build.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/Config-build.in b/config/Config-build.in index a028ebfbc3..9bef36e53e 100644 --- a/config/Config-build.in +++ b/config/Config-build.in @@ -376,7 +376,7 @@ menu "Global build settings" bool "Enable SECCOMP" select KERNEL_SECCOMP select PACKAGE_procd-seccomp - depends on (aarch64 || arm || armeb || mips || mipsel || i386 || powerpc || x86_64) + depends on (aarch64 || arm || armeb || mips || mipsel || mips64 || mips64el || i386 || powerpc || x86_64) depends on !TARGET_uml default y help |