diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-06-25 09:45:24 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2009-06-25 09:45:24 +0000 |
commit | 5af577a0bf136eeda6e9a8384e8707d7ec518243 (patch) | |
tree | 832cbaffc645a781ec8d28487167467c48bca1c6 /target/linux | |
parent | c328f9058129096b5471aa67699e89aee59d6e1a (diff) | |
download | upstream-5af577a0bf136eeda6e9a8384e8707d7ec518243.tar.gz upstream-5af577a0bf136eeda6e9a8384e8707d7ec518243.tar.bz2 upstream-5af577a0bf136eeda6e9a8384e8707d7ec518243.zip |
[adm5120] build firmware image for the 5GXi board
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16558 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/adm5120/image/router_le.mk | 41 |
1 files changed, 40 insertions, 1 deletions
diff --git a/target/linux/adm5120/image/router_le.mk b/target/linux/adm5120/image/router_le.mk index d1ee363a16..96ad221062 100644 --- a/target/linux/adm5120/image/router_le.mk +++ b/target/linux/adm5120/image/router_le.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2007,2008 OpenWrt.org +# Copyright (C) 2007-2009 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -43,6 +43,24 @@ define Image/Build/Edimax rm -f $(call imgname,$(1),$(2)).trx endef +define Image/Build/Osbridge + $(call Image/Build/Loader,$(2),gz,0x80500000,0x6D8,y,$(2)) + $(call Image/Build/TRXEdimax,$(call imgname,$(1),$(2)).trx,$(1)) + $(STAGING_DIR_HOST)/bin/mkcsysimg -B $(2) -d \ + -r $(KDIR)/loader-$(2).gz::0x1000 \ + -x $(call imgname,$(1),$(2)).trx:0x10000 \ + -x $(JFFS2MARK):0x10000 \ + $(call imgname,$(1),$(2))-firmware.bin + $(STAGING_DIR_HOST)/bin/osbridge-crc \ + -i $(call imgname,$(1),$(2))-firmware.bin \ + -o $(call imgname,$(1),$(2))-temp.bin + $(STAGING_DIR_HOST)/bin/pc1crypt \ + -i $(call imgname,$(1),$(2))-temp.bin \ + -o $(call imgname,$(1),$(2))-webui.bin + rm -f $(call imgname,$(1),$(2))-temp.bin + rm -f $(call imgname,$(1),$(2)).trx +endef + define Image/Build/Infineon $(call Image/Build/Loader,$(2),gz,0x80500000,0x6D8,y,$(2)) $(call Image/Build/TRXNoloader,$(call imgname,$(1),$(2)).trx,$(1)) @@ -199,6 +217,21 @@ define Image/Build/Template/Mikrotik/Initramfs endef # +# OSBRiDGE 5GXi/5XLi +# +define Image/Build/Template/Osbridge + $(call Image/Build/Osbridge,$(1),$(2)) +endef + +define Image/Build/Template/Osbridge/squashfs + $(call Image/Build/Template/Osbridge,squashfs,$(1)) +endef + +define Image/Build/Template/Osbridge/Initramfs + $(call Image/Build/LZMAKernel/Admboot,$(1),gz) +endef + +# # Profiles # define Image/Build/Profile/CAS630 @@ -307,6 +340,10 @@ define Image/Build/Profile/PMUGW $(call Image/Build/Template/Infineon/$(1),powerline-mugw) endef +define Image/Build/Profile/5GXI + $(call Image/Build/Template/Osbridge/$(1),5gxi) +endef + define Image/Build/Profile/RouterBoard $(call Image/Build/Template/Mikrotik/$(1)) endef @@ -326,6 +363,8 @@ ifeq ($(CONFIG_BROKEN),y) $(call Image/Build/Profile/CAS861W,$(1)) # Motorola $(call Image/Build/Profile/PMUGW,$(1)) + # OSBRiDGE + $(call Image/Build/Profile/5GXI,$(1)) endef endif |