diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2008-06-27 12:19:20 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2008-06-27 12:19:20 +0000 |
commit | f9ad1636dcb3cdbd8762c69ee639e1a0127bda2b (patch) | |
tree | ed79e5f3dcfdddc71a9990edb34b3b9246899864 /target/linux/orion/image | |
parent | 28b170883bb1eb1223dd64609617ade6ab79328c (diff) | |
download | upstream-f9ad1636dcb3cdbd8762c69ee639e1a0127bda2b.tar.gz upstream-f9ad1636dcb3cdbd8762c69ee639e1a0127bda2b.tar.bz2 upstream-f9ad1636dcb3cdbd8762c69ee639e1a0127bda2b.zip |
generate webuploadable image for the wnr854t
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11589 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/orion/image')
-rw-r--r-- | target/linux/orion/image/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/target/linux/orion/image/Makefile b/target/linux/orion/image/Makefile index 0650870322..0ca37678ef 100644 --- a/target/linux/orion/image/Makefile +++ b/target/linux/orion/image/Makefile @@ -28,8 +28,26 @@ define Image/BuildKernel cp $(KDIR)/wnr854t-uImage $(BIN_DIR)/openwrt-wnr854t-uImage endef +define Image/Build/Netgear + mkdir $(KDIR)/netgear_image + cp $(KDIR)/wnr854t-uImage $(KDIR)/netgear_image/uImage + $(STAGING_DIR_HOST)/bin/mkfs.jffs2 -m none -p -l -q -e 128KiB -o $(KDIR)/wnr854t-uImage.jffs2 -d $(KDIR)/netgear_image + rm -rf $(KDIR)/netgear_image + ( \ + dd if=$(KDIR)/wnr854t-uImage.jffs2 bs=1024k conv=sync; \ + dd if=$(KDIR)/root.$(1) bs=128k conv=sync; \ + ) > $(BIN_DIR)/openwrt-$(2)-$(1).img + $(STAGING_DIR_HOST)/bin/add_header $(3) $(BIN_DIR)/openwrt-$(2)-$(1).img $(BIN_DIR)/openwrt-$(2)-$(1)-webupgrade.img +endef + +define Image/Build/Linksys +# placeholder for the WRT350N v2 +endef + define Image/Build $(call Image/Build/$(1),$(1)) + $(call Image/Build/Netgear,$(1),wnr854t,NG_WNR854T,$(1)) + $(call Image/Build/Linksys,$(1),wrt350nv2,WNR350Nv2,$(1)) endef define Image/Build/squashfs |