diff options
author | Florian Fainelli <florian@openwrt.org> | 2011-02-19 15:44:06 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2011-02-19 15:44:06 +0000 |
commit | 2ec15bd5be4e74d198eb0587e110e6a01696bd73 (patch) | |
tree | 3b25a6a068d6b2335ea9b6eca467509920a2ec7a /target/linux/brcm63xx/image | |
parent | dc90adbe1ff2af3286e65089937da771db475b1d (diff) | |
download | master-187ad058-2ec15bd5be4e74d198eb0587e110e6a01696bd73.tar.gz master-187ad058-2ec15bd5be4e74d198eb0587e110e6a01696bd73.tar.bz2 master-187ad058-2ec15bd5be4e74d198eb0587e110e6a01696bd73.zip |
[brcm63xx] add support for HW553 bcm6358-based boards (#8844)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25590 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm63xx/image')
-rw-r--r-- | 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 b34c7eb5dc..9d48613c22 100644 --- a/target/linux/brcm63xx/image/Makefile +++ b/target/linux/brcm63xx/image/Makefile @@ -51,6 +51,15 @@ define Image/Build/CFEFIXUP $(6) $(7) $(8) $(9) endef +define Image/Build/CFEHW553 + # Generate the tagged image + $(STAGING_DIR_HOST)/bin/imagetag -i $(KDIR)/vmlinux.lzma.cfe -f $(KDIR)/root.$(1) \ + --output $(BIN_DIR)/openwrt-$(5)-$(1)-cfe.bin \ + --boardid $(2) --chipid $(3) --entry $(LOADADDR) \ + --load-addr $(LOADADDR) --tag-version 7 \ + --block-size 0x20000 --image-offset $(4) +endef + define Image/Build/CFEAGPF # Generate the tagged image $(STAGING_DIR_HOST)/bin/imagetag -i $(KDIR)/vmlinux.lzma.cfe -f $(KDIR)/root.$(1) \ @@ -193,6 +202,9 @@ define Image/Build # T-Com Speedport W 500V $(call Image/Build/CFEFIXUP,$(1),96348GW,6348,SPW500V) + + #HW553 + $(call Image/Build/CFEHW553,$(1),HW553,6358,0x20000,HW553) endef $(eval $(call BuildImage)) |