diff options
author | Daniel Golle <daniel@makrotopia.org> | 2020-10-21 15:04:17 +0100 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2020-10-21 15:26:43 +0100 |
commit | 6a56a6eb30799fcec9eecc3ee860dc4d8a5d952a (patch) | |
tree | 6be2be28eb1e9da028dcb04c726a4ecc7a78eaed /include/target.mk | |
parent | a2def3663a0feff12550906c33f9ecc3e5fb2a5d (diff) | |
download | upstream-6a56a6eb30799fcec9eecc3ee860dc4d8a5d952a.tar.gz upstream-6a56a6eb30799fcec9eecc3ee860dc4d8a5d952a.tar.bz2 upstream-6a56a6eb30799fcec9eecc3ee860dc4d8a5d952a.zip |
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@makrotopia.org>
Diffstat (limited to 'include/target.mk')
-rw-r--r-- | include/target.mk | 4 |
1 files changed, 4 insertions, 0 deletions
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 |