| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- --- a/include/target.mk
- +++ b/include/target.mk
- @@ -44,29 +44,33 @@ DEFAULT_PACKAGES.nas:=\
- # For router targets
- DEFAULT_PACKAGES.router:=\
- dnsmasq-full \
- + kmod-ipt-nat \
- + kmod-ipt-nat6 \
- firewall \
- + ip6tables \
- iptables \
- + kmod-ipt-offload \
- + odhcp6c \
- + odhcpd-ipv6only \
- ppp \
- ppp-mod-pppoe
- -# For easy usage
- -DEFAULT_PACKAGES.tweak:=\
- - block-mount \
- - default-settings-chn \
- - kmod-ipt-raw \
- - kmod-nf-nathelper \
- - kmod-nf-nathelper-extra \
- - luci \
- - luci-app-filetransfer \
- - luci-app-turboacc \
- - luci-compat \
- - luci-lib-base \
- - luci-lib-fs \
- - luci-lib-ipkg
-
- ifneq ($(DUMP),)
- all: dumpinfo
- 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
- +
- target_conf=$(subst .,_,$(subst -,_,$(subst /,_,$(1))))
- ifeq ($(DUMP),)
- PLATFORM_DIR:=$(TOPDIR)/target/linux/$(BOARD)
|