diff options
author | John Crispin <blogic@openwrt.org> | 2015-03-27 16:28:43 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2015-03-27 16:28:43 +0000 |
commit | 17cafdd3d0b0270f3d67d900583965ca0fc85699 (patch) | |
tree | 9b70606a4fde03c8709fab0bd5d44b1ac23abb0a | |
parent | 06e722b91f3991324f5328556eafd55290a97fcb (diff) | |
download | upstream-17cafdd3d0b0270f3d67d900583965ca0fc85699.tar.gz upstream-17cafdd3d0b0270f3d67d900583965ca0fc85699.tar.bz2 upstream-17cafdd3d0b0270f3d67d900583965ca0fc85699.zip |
procd: disable jail for uml builds
probiere den mal bitte
Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45066 3c298f89-4303-0410-b956-a3cf2f4a3e73
-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 |