diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-11-07 12:59:05 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-11-07 12:59:05 +0000 |
commit | c94b4af3dc06c81e33f925bc53e52b933f4a035e (patch) | |
tree | 2d8833a96472f1a35a1eeab10893f29ad8b9f85f /target/linux | |
parent | d1bc81ae4929497638c74b66f8f64635f708dded (diff) | |
download | upstream-c94b4af3dc06c81e33f925bc53e52b933f4a035e.tar.gz upstream-c94b4af3dc06c81e33f925bc53e52b933f4a035e.tar.bz2 upstream-c94b4af3dc06c81e33f925bc53e52b933f4a035e.zip |
ar71xx: fix WHR-HP-G300N image generation
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28802 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/ar71xx/image/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/target/linux/ar71xx/image/Makefile b/target/linux/ar71xx/image/Makefile index b1015a1e7d..48289a5de1 100644 --- a/target/linux/ar71xx/image/Makefile +++ b/target/linux/ar71xx/image/Makefile @@ -145,17 +145,17 @@ define Image/Build/WZRHPG30XNH endef define Image/Build/WHRHPG300N - $(call MkuImageLzma,$(2),$(3)) + $(call MkuImageLzma,$(2),$(3) $($(4))) $(call Sysupgrade/KR,$(1),$(2),917504,2883584) if [ -e "$(call sysupname,$(1),$(2))" ]; then \ ( \ echo -n -e "# Airstation Public Fmt1\x00\x00\x00\x00\x00\x00\x00\x00"; \ dd if=$(call sysupname,$(1),$(2)); \ ) > $(call imgname,$(1),$(2))-tftp.bin; \ - buffalo-enc -p $(4) -v 1.76 \ + buffalo-enc -p $(5) -v 1.76 \ -i $(call sysupname,$(1),$(2)) \ -o $(KDIR)/$(2).enc; \ - buffalo-tag -b $(4) -p $(4) -a ath -v 1.76 -m 1.01 -l mlang8 \ + buffalo-tag -b $(5) -p $(5) -a ath -v 1.76 -m 1.01 -l mlang8 \ -w 3 -c 0x80041000 -d 0x801e8000 -f 1 -r M_ \ -i $(KDIR)/$(2).enc \ -o $(call factoryname,$(1),$(2)); \ @@ -708,6 +708,7 @@ define Image/Build/Profile/WRT160NL endef whrhpg300n_cmdline=board=WHR-HP-G300N console=ttyS0,115200 +whrhpg300n_mtdlayout=mtdparts=spi0.0:248k(u-boot)ro,8k(u-boot-env)ro,896k(kernel),2816k(rootfs),64k(user_property),64k(art)ro,3712k@0x30000(firmware) define Image/Build/Profile/WHRHPG300N $(call Image/Build/Template/$(fs_64k)/$(1),WHRHPG300N,whr-hp-g300n,$(whrhpg300n_cmdline),whrhpg300n_mtdlayout,WHR-HP-G300N) endef |