123456789101112131415161718192021222324252627282930313233343536 |
- --- a/include/target.mk
- +++ b/include/target.mk
- @@ -44,9 +44,11 @@
- # For router targets
- DEFAULT_PACKAGES.router:=\
- - dnsmasq \
- + dnsmasq-full \
- firewall \
- ip6tables \
- iptables \
- kmod-ipt-offload \
- + kmod-ipt-nat \
- + kmod-ipt-nat6 \
- odhcp6c \
- odhcpd-ipv6only \
- @@ -83,4 +85,20 @@
- -include ./$(SUBTARGET)/target.mk
- endif
- +endif
- +
- +ifneq ($(CONFIG_SMALL_FLASH),)
- + DEFAULT_PACKAGES+=-coremark -htop -bash -openssh-sftp-server
- +endif
- +
- +ifeq ($(ARCH),arm)
- + DEFAULT_PACKAGES+=autocore-arm luci-app-cpufreq
- +endif
- +
- +ifeq ($(ARCH),aarch64)
- + DEFAULT_PACKAGES+=autocore-arm luci-app-cpufreq
- +endif
- +
- +ifneq ($(CONFIG_USB_SUPPORT),)
- + DEFAULT_PACKAGES+=automount
- endif
-
|