diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2016-03-08 18:33:25 +0000 |
---|---|---|
committer | Rafał Miłecki <zajec5@gmail.com> | 2016-03-08 18:33:25 +0000 |
commit | 6cb60eccdb71d7dca8e68d9bc1bd4cb44aa2c77b (patch) | |
tree | dcec6f7f5b78b2ab6e750f0dc81229ede1b0c1f6 /target/linux | |
parent | 1a2c4f384cdb7d5f64b6def550bfed03ec1229b9 (diff) | |
download | master-187ad058-6cb60eccdb71d7dca8e68d9bc1bd4cb44aa2c77b.tar.gz master-187ad058-6cb60eccdb71d7dca8e68d9bc1bd4cb44aa2c77b.tar.bz2 master-187ad058-6cb60eccdb71d7dca8e68d9bc1bd4cb44aa2c77b.zip |
brcm47xx: image: switch Netgear WGT634U to the new building system
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@48973 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/brcm47xx/image/Makefile | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/target/linux/brcm47xx/image/Makefile b/target/linux/brcm47xx/image/Makefile index 731bef349b..aeeb147986 100644 --- a/target/linux/brcm47xx/image/Makefile +++ b/target/linux/brcm47xx/image/Makefile @@ -34,11 +34,6 @@ endif $(call prepare_generic_squashfs,$(KDIR)/fs_mark) endef -define Image/Build/wgt634u - dd if=$(KDIR)/loader.elf of=$(BIN_DIR)/$(IMG_PREFIX)-wgt634u-$(2).bin bs=131072 conv=sync - cat $(BIN_DIR)/$(IMG_PREFIX)-$(1).trx >> $(BIN_DIR)/$(IMG_PREFIX)-wgt634u-$(2).bin -endef - # $(1): filesystem type. # $(2): device model (used for output file). # $(3): pattern (device specific magic). @@ -133,6 +128,12 @@ define Build/motorola-bin mv $@.new $@ endef +define Build/prepend-with-elf + mv $@ $@.old + dd if=$(KDIR)/loader.elf of=$@ bs=131072 conv=sync + cat $@.old >> $@ +endef + define Build/tailed-bin echo $(BIN_TAIL) >> $@ endef @@ -238,7 +239,6 @@ endif # $(1): filesystem type. define Image/Build/legacy/devices-with-128k-blocks $(call Image/Build/trxV2,$(1),wrt54g3gv2-vf,3G2V,3.00.24,$(patsubst jffs2-%,jffs2,$(1)),6) - $(call Image/Build/wgt634u,$(1),$(patsubst jffs2-%,jffs2,$(1))) endef # $(1): filesystem type. @@ -282,6 +282,12 @@ define Device/linksys-wrtsl54gs VERSION := 2.08.1 endef +define Device/netgear-wgt634u + FILESYSTEMS := $(FS_128K) + IMAGES := bin + IMAGE/bin := trx-with-loader | prepend-with-elf +endef + define Device/usrobotics-usr5461 IMAGES := bin IMAGE/bin := trx-with-loader | usrobotics-bin @@ -294,6 +300,7 @@ ifeq ($(SUBTARGET),legacy) huawei-e970 \ linksys-wrt54gs \ linksys-wrtsl54gs \ + netgear-wgt634u \ usrobotics-usr5461 $(eval $(call AsusDevice,wl-300g,WL300g )) |