From 6a56a6eb30799fcec9eecc3ee860dc4d8a5d952a Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Wed, 21 Oct 2020 15:04:17 +0100 Subject: [PATCH] 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 --- 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 -- 2.30.2