diff options
author | Jonas Gorski <jogo@openwrt.org> | 2013-01-04 14:47:57 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2013-01-04 14:47:57 +0000 |
commit | f537f292a3161a296f8d5166671e158cd09a9c14 (patch) | |
tree | 8478a1567fb081098a2e880648ece8bb71aca3a0 /target/linux/brcm63xx/image | |
parent | 555460453f8444094c3e3fa9c5917d0280bf4ce2 (diff) | |
download | upstream-f537f292a3161a296f8d5166671e158cd09a9c14.tar.gz upstream-f537f292a3161a296f8d5166671e158cd09a9c14.tar.bz2 upstream-f537f292a3161a296f8d5166671e158cd09a9c14.zip |
bcm63xx: Add Huawei HG556a support
Add Huawei EchoLife HG556a support.
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
[jogo@openwrt.org: added some code style fixes]
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35011 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm63xx/image')
-rwxr-xr-x | target/linux/brcm63xx/image/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/target/linux/brcm63xx/image/Makefile b/target/linux/brcm63xx/image/Makefile index 99dc8c5be3..5811cdba69 100755 --- a/target/linux/brcm63xx/image/Makefile +++ b/target/linux/brcm63xx/image/Makefile @@ -60,6 +60,15 @@ define Image/Build/CFEHW553 --block-size 0x20000 --image-offset $(4) endef +define Image/Build/CFEHW556 + # Generate the tagged image + $(STAGING_DIR_HOST)/bin/imagetag -i $(KDIR)/vmlinux.lzma.cfe -f $(KDIR)/root.$(1) \ + --output $(BIN_DIR)/openwrt-$(2)-$(1)-cfe.bin \ + --boardid $(2) --chipid $(3) --entry $(LOADADDR) \ + --load-addr $(LOADADDR) --tag-version 8 --rsa-signature "$(5)" \ + --image-offset $(4) --info1 "$(6)" --block-size 0x20000 +endef + define Image/Build/CFEAGPF # Generate the tagged image $(STAGING_DIR_HOST)/bin/imagetag -i $(KDIR)/vmlinux.lzma.cfe -f $(KDIR)/root.$(1) \ @@ -258,6 +267,9 @@ define Image/Build #HW553 $(call Image/Build/CFEHW553,$(1),HW553,6358,0x20000,HW553) + #HW556 + $(call Image/Build/CFEHW556,$(1),HW556,6358,0x20000,EchoLife_HG556a,OpenWRT-$(REVISION)) + # T-Com Speedport W 303V Typ B $(call Image/Build/SPW303V,$(1),96358-502V,6358,SPW303V) endef |