From 057e5f6edee34e6bbd49dfe6f9944a3ba1936719 Mon Sep 17 00:00:00 2001 From: Adrian Schmutzler Date: Fri, 29 May 2020 18:40:03 +0200 Subject: treewide: provide consistent basic DEVICE_TYPE While the effective "default" based on frequent use is "router", the DEVICE_TYPE variable actually provides a "basic" configuration without selecting any additional packages. This is currently set up with the identifier "bootloader", which seems to be not used at all. However, the only targets not using "router" or "nas" are actually archs38 and arc770, which use their own value "developerboard" for DEVICE_TYPE which seems to have been invented when these targets where added. The latter is not implemented in target.mk, though, and will fall back to the "basic" set of packages then. So, to clean this up and make it more readable, let's just define a DEVICE_TYPE "basic" and use it for the aforementioned cases. Cc: Christian Lamparter Cc: Sungbo Eo Cc: Linus Walleij Signed-off-by: Adrian Schmutzler --- include/target.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/target.mk') diff --git a/include/target.mk b/include/target.mk index 9bd4c14936..a2ceb7f783 100644 --- a/include/target.mk +++ b/include/target.mk @@ -14,11 +14,12 @@ DEVICE_TYPE?=router # Default packages - the really basic set DEFAULT_PACKAGES:=base-files libc libgcc busybox dropbear mtd uci opkg netifd fstools uclient-fetch logd urandom-seed urngd +# For the basic set +DEFAULT_PACKAGES.basic:= # For nas targets DEFAULT_PACKAGES.nas:=block-mount fdisk lsblk mdadm # For router targets DEFAULT_PACKAGES.router:=dnsmasq iptables ip6tables ppp ppp-mod-pppoe firewall odhcpd-ipv6only odhcp6c kmod-ipt-offload -DEFAULT_PACKAGES.bootloader:= ifneq ($(DUMP),) all: dumpinfo -- cgit v1.2.3