1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

ramips: rt288x: add support for the Buffalo WLI-TX4-AG300N board

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29612 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg
2011-12-27 16:56:30 +00:00
parent 2993f34f45
commit 66769bfe50
11 changed files with 189 additions and 1 deletions

View File

@@ -89,6 +89,10 @@ define BuildFirmware/Buffalo
fi; fi
endef
define BuildFirmware/Buffalo2
$(call BuildFirmware/Generic,$(1),$(2),board=$(3),$($(4)),$(5),$(6))
endef
define BuildFirmware/NW718
$(call PatchKernelLzma,$(2),$(3) $($(4)))
mkimage -A mips -O linux -T kernel -C lzma $(call kernel_entry) \
@@ -284,9 +288,15 @@ define Image/Build/Profile/RTN15
$(call Image/Build/Template/GENERIC_4M,$(1),rt-n15,RT-N15)
endef
mtdlayout_wlitx4ag300n=mtdparts=physmap-flash.0:192k(u-boot)ro,64k(u-boot-env)ro,64k(factory)ro,832k(kernel),2880k(rootfs),64k(user)ro,3712k@0x50000(firmware)
define Image/Build/Profile/WLITX4AG300N
$(call BuildFirmware/Buffalo2,$(1),wli-tx4-ag300n,WLI-TX4-AG300N,mtdlayout_wlitx4ag300n,851968,2949120)
endef
ifeq ($(CONFIG_RALINK_RT288X),y)
define Image/Build/Profile/Default
$(call Image/Build/Profile/RTN15,$(1))
$(call Image/Build/Profile/WLITX4AG300N,$(1))
endef
endif