name sercomm-based ar7 images (dg834/compatible) .img instead of .bin, because the web interface expects it

SVN-Revision: 3228
This commit is contained in:
Felix Fietkau 2006-02-12 18:47:22 +00:00
parent 5d0330daf9
commit 58713c8d76

View File

@ -84,13 +84,13 @@ install: $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(FS)-$(1).bin
endef endef
define sercomm_template define sercomm_template
$(BIN_DIR)/openwrt-$(1)-$(KERNEL)-$(FS).bin: $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(FS).bin $(BIN_DIR)/openwrt-$(1)-$(KERNEL)-$(FS).img: $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(FS).bin
cat sercomm/adam2.bin "$$^" > "$$@.tmp" cat sercomm/adam2.bin "$$^" > "$$@.tmp"
dd if=sercomm/$(1) of="$$@.tmp" bs=$$$$((0x3e0000 - 80)) seek=1 conv=notrunc dd if=sercomm/$(1) of="$$@.tmp" bs=$$$$((0x3e0000 - 80)) seek=1 conv=notrunc
$(STAGING_DIR)/bin/dgfirmware -f -w "$$@" "$$@.tmp" $(STAGING_DIR)/bin/dgfirmware -f -w "$$@" "$$@.tmp"
rm -f "$$@.tmp" rm -f "$$@.tmp"
install: $(BIN_DIR)/openwrt-$(1)-$(KERNEL)-$(FS).bin install: $(BIN_DIR)/openwrt-$(1)-$(KERNEL)-$(FS).img
endef endef
$(eval $(call sercomm_template,dg834)) $(eval $(call sercomm_template,dg834))