diff options
author | John Crispin <john@openwrt.org> | 2015-03-27 16:28:43 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-03-27 16:28:43 +0000 |
commit | 23b24d43ae9afb5ad271b77d19fb4803405c7a81 (patch) | |
tree | 983d917eed9603ab52d23971ec8914bdc03271ef /package/system/procd | |
parent | c6a29d2528db2b5c0504d0eaaf80e65b92edd303 (diff) | |
download | upstream-23b24d43ae9afb5ad271b77d19fb4803405c7a81.tar.gz upstream-23b24d43ae9afb5ad271b77d19fb4803405c7a81.tar.bz2 upstream-23b24d43ae9afb5ad271b77d19fb4803405c7a81.zip |
procd: disable jail for uml builds
probiere den mal bitte
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 45066
Diffstat (limited to 'package/system/procd')
-rw-r--r-- | package/system/procd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/system/procd/Makefile b/package/system/procd/Makefile index 2652a94f3c..f502307f15 100644 --- a/package/system/procd/Makefile +++ b/package/system/procd/Makefile @@ -77,12 +77,12 @@ config PROCD_ZRAM_TMPFS config PROCD_JAIL_SUPPORT bool default y - depends on mips || mipsel || i386 || x86_64 + depends on (mips || mipsel || i386 || x86_64) && PROCD_SECCOMP_SUPPORT config PROCD_SECCOMP_SUPPORT bool default y - depends on (mips || mipsel || i386 || x86_64) && @KERNEL_SECCOMP + depends on (mips || mipsel || i386 || x86_64) && !@TARGET_uml && @KERNEL_SECCOMP endmenu endef |