summaryrefslogtreecommitdiffstats
path: root/target/linux/storm/image
diff options
context:
space:
mode:
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-10-13 17:28:47 +0000
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-10-13 17:28:47 +0000
commit4d51ed98373167813fbad92143e8fe3062b06a35 (patch)
treec7ee3c2eb14b6ec0988c47dc59dd38b91ccff2a3 /target/linux/storm/image
parent1a2eac4b9fbe4e3ccc9ccf78f327877407617f40 (diff)
[storm] change mtd partition map, use rootfs_split, and generate a firmware image for the WBD-111
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12976 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/storm/image')
-rw-r--r--target/linux/storm/image/Makefile29
1 files changed, 17 insertions, 12 deletions
diff --git a/target/linux/storm/image/Makefile b/target/linux/storm/image/Makefile
index b061c6d0e..e94c463ec 100644
--- a/target/linux/storm/image/Makefile
+++ b/target/linux/storm/image/Makefile
@@ -1,5 +1,5 @@
-#
-# Copyright (C) 2007 OpenWrt.org
+#
+# Copyright (C) 2007-2008 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
@@ -19,23 +19,28 @@ define Image/BuildKernel
# BIN_DIR=$(BIN_DIR) $(TOPDIR)/scripts/arm-magic.sh
endef
-define Image/Build
- $(call Image/Build/$(1),$(1))
-endef
-
define Image/Build/jffs2-64k
- dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-$(1).img bs=65536 conv=sync
+ dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-$(1).img bs=64k conv=sync
endef
define Image/Build/jffs2-128k
- dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-$(1).img bs=131072 conv=sync
- $(call Image/Build/slug,$(1))
+ dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-$(1).img bs=128k conv=sync
endef
define Image/Build/squashfs
- $(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
- dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-$(1).img bs=131072 conv=sync
- $(call Image/Build/slug,$(1))
+ $(call prepare_generic_squashfs,$(KDIR)/root.squashfs)
+endef
+
+define Image/Build
+ $(call Image/Build/$(1),$(1))
+ dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-root.$(1) bs=128k conv=sync
+
+ -$(STAGING_DIR_HOST)/bin/mkfwimage2 \
+ -m GEOS -f 0x30000000 -z \
+ -v WILI-S.WILIBOARD.v5.00.SL3512.OpenWrt.00000.000000.000000 \
+ -o $(BIN_DIR)/openwrt-$(BOARD)-wbd-111-$(1).bin \
+ -p Kernel:0x020000:0x100000:0:0:$(BIN_DIR)/openwrt-$(BOARD)-zImage \
+ -p Ramdisk:0x120000:0x500000:0:0:$(BIN_DIR)/openwrt-$(BOARD)-root.$(1)
endef
$(eval $(call BuildImage))