include/target.mk: default to CPU_TYPE for the package architecture
Use the more specific CPU_TYPE designation as default package architecture and only fall back to ARCH if no specific CPU_TYPE is set. This means that e.g. ar71xx packages will use "74kc" as architecture, not "mips" which is a precondition for sharing packages between targets. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
		| @@ -1,5 +1,6 @@ | |||||||
| # | # | ||||||
| # Copyright (C) 2007-2008 OpenWrt.org | # Copyright (C) 2007-2008 OpenWrt.org | ||||||
|  | # Copyright (C) 2016 LEDE Project | ||||||
| # | # | ||||||
| # This is free software, licensed under the GNU General Public License v2. | # This is free software, licensed under the GNU General Public License v2. | ||||||
| # See /LICENSE for more information. | # See /LICENSE for more information. | ||||||
| @@ -280,7 +281,7 @@ define BuildTargets/DumpCurrent | |||||||
| 	 echo 'Target-Name: $(BOARDNAME)$(if $(SUBTARGETS),$(if $(SUBTARGET),))'; \ | 	 echo 'Target-Name: $(BOARDNAME)$(if $(SUBTARGETS),$(if $(SUBTARGET),))'; \ | ||||||
| 	 echo 'Target-Path: $(subst $(TOPDIR)/,,$(PWD))'; \ | 	 echo 'Target-Path: $(subst $(TOPDIR)/,,$(PWD))'; \ | ||||||
| 	 echo 'Target-Arch: $(ARCH)'; \ | 	 echo 'Target-Arch: $(ARCH)'; \ | ||||||
| 	 echo 'Target-Arch-Packages: $(if $(ARCH_PACKAGES),$(ARCH_PACKAGES),$(BOARD))'; \ | 	 echo 'Target-Arch-Packages: $(if $(ARCH_PACKAGES),$(ARCH_PACKAGES),$(if $(CPU_TYPE),$(CPU_TYPE),$(ARCH)))'; \ | ||||||
| 	 echo 'Target-Features: $(FEATURES)'; \ | 	 echo 'Target-Features: $(FEATURES)'; \ | ||||||
| 	 echo 'Target-Depends: $(DEPENDS)'; \ | 	 echo 'Target-Depends: $(DEPENDS)'; \ | ||||||
| 	 echo 'Target-Optimization: $(if $(CFLAGS),$(CFLAGS),$(DEFAULT_CFLAGS))'; \ | 	 echo 'Target-Optimization: $(if $(CFLAGS),$(CFLAGS),$(DEFAULT_CFLAGS))'; \ | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Jo-Philipp Wich
					Jo-Philipp Wich