1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-02-09 05:31:57 +02:00

[madwifi]: use the xscale hal by default for arm, override it where needed

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25929 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
kaloz 2011-03-07 13:07:17 +00:00
parent c0b7eece82
commit 73c8760a13

View File

@ -73,27 +73,24 @@ endif
ifeq ($(ARCH),i686) ifeq ($(ARCH),i686)
HAL_TARGET:=i386-elf HAL_TARGET:=i386-elf
endif endif
ifeq ($(BOARD),ixp4xx) ifeq ($(ARCH),armeb)
HAL_TARGET:=xscale-be-elfgnueabi HAL_TARGET:=xscale-be-elfgnueabi
endif endif
ifeq ($(BOARD),iop32x) ifneq ($(ARCH),arm)
HAL_TARGET:=xscale-le-elfgnueabi HAL_TARGET:=xscale-le-elfgnueabi
endif ifeq ($(BOARD),cns21xx)
ifeq ($(BOARD),kirkwood) HAL_TARGET:=armv4-le-elfgnueabi
HAL_TARGET:=xscale-le-elfgnueabi endif
endif ifeq ($(BOARD),cns3xxx)
ifeq ($(BOARD),orion)
HAL_TARGET:=xscale-le-elfgnueabi
endif
ifeq ($(BOARD),cns3xxx)
HAL_TARGET:=arm11-le-elfgnueabi HAL_TARGET:=arm11-le-elfgnueabi
endif
ifeq ($(BOARD),gemini)
HAL_TARGET:=armv4-le-elfgnueabi
endif
endif endif
ifeq ($(ARCH),powerpc) ifeq ($(ARCH),powerpc)
HAL_TARGET:=powerpc-be-elf HAL_TARGET:=powerpc-be-elf
endif endif
ifeq ($(BOARD),gemini)
HAL_TARGET:=armv4-le-elfgnueabi
endif
ifneq ($(CONFIG_TARGET_atheros),) ifneq ($(CONFIG_TARGET_atheros),)
HAL_TARGET:=wisoc HAL_TARGET:=wisoc
endif endif