diff --git a/include/target.mk b/include/target.mk index 52a28e41a1..8c6b7191f6 100644 --- a/include/target.mk +++ b/include/target.mk @@ -34,22 +34,7 @@ DEFAULT_PACKAGES+=busybox procd endif # For the basic set -DEFAULT_PACKAGES.basic:=\ - ca-certificates \ - coreutils \ - default-settings \ - kmod-ipt-raw \ - kmod-nf-nathelper \ - kmod-nf-nathelper-extra \ - luci \ - luci-app-cpufreq \ - luci-app-turboacc \ - luci-compat \ - luci-lib-base \ - luci-lib-fs \ - luci-lib-ipkg \ - luci-proto-relay \ - wget-ssl +DEFAULT_PACKAGES.basic:= # For nas targets DEFAULT_PACKAGES.nas:=\ block-mount \ @@ -67,6 +52,24 @@ DEFAULT_PACKAGES.router:=\ odhcpd-ipv6only \ ppp \ ppp-mod-pppoe +# For easy usage +DEFAULT_PACKAGES.tweak:=\ + block-mount \ + ca-certificates \ + coreutils \ + default-settings \ + kmod-ipt-raw \ + kmod-nf-nathelper \ + kmod-nf-nathelper-extra \ + luci \ + luci-app-cpufreq \ + luci-app-turboacc \ + luci-compat \ + luci-lib-base \ + luci-lib-fs \ + luci-lib-ipkg \ + luci-proto-relay \ + wget-ssl ifneq ($(DUMP),) all: dumpinfo @@ -99,8 +102,8 @@ else endif endif -# Add basic packages -DEFAULT_PACKAGES += $(DEFAULT_PACKAGES.basic) +# Add tweaked packages +DEFAULT_PACKAGES += $(DEFAULT_PACKAGES.tweak) # Add device specific packages (here below to allow device type set from subtarget) DEFAULT_PACKAGES += $(DEFAULT_PACKAGES.$(DEVICE_TYPE))