summaryrefslogtreecommitdiffstats
path: root/target/linux/orion/image
diff options
context:
space:
mode:
authorrwhitby <rwhitby@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-03-22 12:38:24 +0000
committerrwhitby <rwhitby@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-03-22 12:38:24 +0000
commit0a75fedac40d4655c38d61740950573c4025d48c (patch)
tree2f864bec2ab62f530360bca66b27ee4865381834 /target/linux/orion/image
parent532c815db073d45f9cdc0166ecfa063321851a53 (diff)
orion: Added initial support for Freecom DT2. Thanks to Zintis.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14963 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/orion/image')
-rw-r--r--target/linux/orion/image/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/target/linux/orion/image/Makefile b/target/linux/orion/image/Makefile
index 0ca37678e..66edc0433 100644
--- a/target/linux/orion/image/Makefile
+++ b/target/linux/orion/image/Makefile
@@ -26,6 +26,13 @@ define Image/BuildKernel
-C none -a 0x00008000 -e 0x00008000 -n 'Linux-$(LINUX_VERSION)' \
-d $(KDIR)/wnr854t-zImage $(KDIR)/wnr854t-uImage
cp $(KDIR)/wnr854t-uImage $(BIN_DIR)/openwrt-wnr854t-uImage
+# DT2: mach id 1514 (0x5EA)
+ echo -en "\x05\x1c\xa0\xe3\xea\x10\x81\xe3" > $(KDIR)/dt2-zImage
+ cat $(LINUX_DIR)/arch/arm/boot/zImage >> $(KDIR)/dt2-zImage
+ $(STAGING_DIR_HOST)/bin/mkimage -A arm -O linux -T kernel \
+ -C none -a 0x00008000 -e 0x00008000 -n 'Linux-$(LINUX_VERSION)' \
+ -d $(KDIR)/dt2-zImage $(KDIR)/dt2-uImage
+ cp $(KDIR)/dt2-uImage $(BIN_DIR)/openwrt-dt2-uImage
endef
define Image/Build/Netgear
@@ -44,10 +51,21 @@ define Image/Build/Linksys
# placeholder for the WRT350N v2
endef
+define Image/Build/Freecom
+ $(INSTALL_DIR) $(TARGET_DIR)/boot
+ # TODO: Add special CMDLINE shim for webupgrade image here
+ $(CP) $(KDIR)/dt2-uImage $(TARGET_DIR)/boot/uImage
+ rm -rf $(TARGET_DIR)/{var,jffs,rom}
+ $(INSTALL_DIR) $(TARGET_DIR)/var
+ $(TAR) cfj $(BIN_DIR)/openwrt-$(2)-$(1).img --owner=root --group=root -C $(TARGET_DIR)/ .
+ $(STAGING_DIR_HOST)/bin/encode_crc $(BIN_DIR)/openwrt-$(2)-$(1).img $(BIN_DIR)/openwrt-$(2)-$(1)-webupgrade.img $(3)
+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))
+ $(call Image/Build/Freecom,$(1),dt2,DT,$(1))
endef
define Image/Build/squashfs