diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-02-12 18:47:22 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-02-12 18:47:22 +0000 |
commit | bd54ca4bdb3e64205b31bb6315666fda37d8c109 (patch) | |
tree | 314b571f4d408841414502d20e29181c4cab4b2a /target/linux/image/ar7 | |
parent | c80b2d46af8f42956f112392265587957825d67c (diff) | |
download | master-187ad058-bd54ca4bdb3e64205b31bb6315666fda37d8c109.tar.gz master-187ad058-bd54ca4bdb3e64205b31bb6315666fda37d8c109.tar.bz2 master-187ad058-bd54ca4bdb3e64205b31bb6315666fda37d8c109.zip |
name sercomm-based ar7 images (dg834/compatible) .img instead of .bin, because the web interface expects it
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3228 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/image/ar7')
-rw-r--r-- | target/linux/image/ar7/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/image/ar7/Makefile b/target/linux/image/ar7/Makefile index 3a803cbd8b..2cdf18d66f 100644 --- a/target/linux/image/ar7/Makefile +++ b/target/linux/image/ar7/Makefile @@ -84,13 +84,13 @@ install: $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(FS)-$(1).bin endef 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" dd if=sercomm/$(1) of="$$@.tmp" bs=$$$$((0x3e0000 - 80)) seek=1 conv=notrunc $(STAGING_DIR)/bin/dgfirmware -f -w "$$@" "$$@.tmp" rm -f "$$@.tmp" -install: $(BIN_DIR)/openwrt-$(1)-$(KERNEL)-$(FS).bin +install: $(BIN_DIR)/openwrt-$(1)-$(KERNEL)-$(FS).img endef $(eval $(call sercomm_template,dg834)) |