[openwrt/openwrt] target: select procd-{ujail, seccomp} if !SMALL_FLASH

LEDE Commits lede-commits at lists.infradead.org
Wed Oct 21 10:26:56 EDT 2020


dangole pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/6a56a6eb30799fcec9eecc3ee860dc4d8a5d952a

commit 6a56a6eb30799fcec9eecc3ee860dc4d8a5d952a
Author: Daniel Golle <daniel at makrotopia.org>
AuthorDate: Wed Oct 21 15:04:17 2020 +0100

    target: select procd-{ujail,seccomp} if !SMALL_FLASH
    
    Add procd-ujail and procd-seccomp to DEFAULT_PACKAGES if not building
    for space-constraint (FEATURES:=small_flash) targets.
    
    Signed-off-by: Daniel Golle <daniel at makrotopia.org>
---
 include/target.mk | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/include/target.mk b/include/target.mk
index a2e76f8149..c80a419543 100644
--- a/include/target.mk
+++ b/include/target.mk
@@ -36,6 +36,10 @@ else
 DEFAULT_PACKAGES+=busybox procd
 endif
 
+ifeq ($(CONFIG_SMALL_FLASH),)
+DEFAULT_PACKAGES+=procd-ujail procd-seccomp
+endif
+
 # For the basic set
 DEFAULT_PACKAGES.basic:=
 # For nas targets



More information about the lede-commits mailing list