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 | 8cc16aa14e07cc31edbea3b450c4429632957a7c (patch) | |
tree | 26d22b1a500dbfb2a97ed2902ad9f0b04e27dbc0 /target/linux/brcm63xx/image | |
parent | a9c7feb0f77addb23f484ac42bbe31e767e49ff7 (diff) | |
download | upstream-8cc16aa14e07cc31edbea3b450c4429632957a7c.tar.gz upstream-8cc16aa14e07cc31edbea3b450c4429632957a7c.tar.bz2 upstream-8cc16aa14e07cc31edbea3b450c4429632957a7c.zip |
add support for HW553 bcm6358-based boards (#8844)
SVN-Revision: 25590
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)) |