[tools] firmware-utils: copy bcm_tag.h to src/ and get rid of cc3 macro, fixes imagetag compilation

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19485 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
Jo-Philipp Wich
2010-02-01 01:17:46 +00:00
parent 2c28ebcdee
commit e402bf7a8e
2 changed files with 179 additions and 5 deletions

View File

@@ -20,10 +20,6 @@ define cc2
$(CC) $(HOST_CFLAGS) -include endian.h -o $(HOST_BUILD_DIR)/bin/$(firstword $(1)) $(foreach src,$(1),src/$(src).c) $(2)
endef
define cc3
$(CC) $(HOST_CFLAGS) -I$(CURDIR)/../../target/linux/brcm63xx/files/include/asm-mips/mach-bcm63xx -include endian.h -o $(HOST_BUILD_DIR)/bin/$(1) src/$(1).c $(2)
endef
define Host/Compile
mkdir -p $(HOST_BUILD_DIR)/bin
@@ -42,7 +38,7 @@ define Host/Compile
$(call cc,mkcasfw)
$(call cc,mkfwimage,-lz)
$(call cc,mkfwimage2,-lz)
$(call cc3,imagetag)
$(call cc2,imagetag)
$(call cc,add_header)
$(call cc,makeamitbin)
$(call cc,encode_crc)