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 | 88dcf365256749ab80a3c2e584a2651540f238bf (patch) | |
tree | 0818243d1d4b63be6a278d70fe50b8523fcbc1e8 /target | |
parent | 7e159bbc6194ee489bb86e090cfe8974df96d80d (diff) | |
download | upstream-88dcf365256749ab80a3c2e584a2651540f238bf.tar.gz upstream-88dcf365256749ab80a3c2e584a2651540f238bf.tar.bz2 upstream-88dcf365256749ab80a3c2e584a2651540f238bf.zip |
generate webuploadable image for the wnr854t
SVN-Revision: 11589
Diffstat (limited to 'target')
-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 |