summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-05-30 10:30:36 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-05-30 10:30:36 +0000
commitdf91d4a199216b13ddf1d7f4794d2370ce641c10 (patch)
tree3791eeb01a1c000fb310cbe7efde949523166cba /target
parent40f29a7cd3dd8d5a541494e5f0f1a4e6bc102e01 (diff)
Define target specific ramdisk images for testing (Gabor Juhos)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7395 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r--target/linux/adm5120-2.6/image/Makefile58
-rw-r--r--target/linux/adm5120eb-2.6/image/Makefile39
2 files changed, 69 insertions, 28 deletions
diff --git a/target/linux/adm5120-2.6/image/Makefile b/target/linux/adm5120-2.6/image/Makefile
index 9c7b9bd7b..02b57be99 100644
--- a/target/linux/adm5120-2.6/image/Makefile
+++ b/target/linux/adm5120-2.6/image/Makefile
@@ -1,5 +1,5 @@
#
-# Copyright (C) 2006 OpenWrt.org
+# Copyright (C) 2006,2007 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
@@ -7,28 +7,33 @@
include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/image.mk
-define Build/Compile
- rm -f $(KDIR)/loader.gz $(KDIR)/loader-edimax.gz
- $(MAKE) -C lzma-loader \
- BUILD_DIR="$(KDIR)" \
- TARGET="$(KDIR)" \
- install
- echo -ne "\\x00" >> $(KDIR)/loader.gz
- $(MAKE) -C lzma-loader \
- BUILD_DIR="$(KDIR)" \
- TARGET="$(KDIR)" \
- LOADER=loader-edimax \
- BZ_STARTUP_ORG=0x6D8 \
- install
- echo -ne "\\x00" >> $(KDIR)/loader-edimax.gz
+LOADER_MAKE = $(MAKE) -C lzma-loader KDIR=$(KDIR)
+
+define PrepareLoader
+ $(LOADER_MAKE) LOADER=$(1) LOADER_DATA="" \
+ LZMA_TEXT_START=$(2) LZMA_STARTUP_ORG=$(3) \
+ compile
+
+endef
+define PrepareLZMAKernel
+ $(LOADER_MAKE) LOADER=vmlinux-lzma-$(1) LOADER_DATA=$(KDIR)/vmlinux.lzma \
+ LZMA_TEXT_START=$(2) LZMA_STARTUP_ORG=$(3) \
+ compile
endef
define Build/Clean
- $(MAKE) -C lzma-loader clean
+ $(LOADER_MAKE) clean
endef
define Image/Prepare
cat $(KDIR)/vmlinux | $(STAGING_DIR)/bin/lzma e -si -so -eos -lc1 -lp2 -pb2 > $(KDIR)/vmlinux.lzma
+ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y)
+ $(call PrepareLoader,generic,0x80500000,0)
+ $(call PrepareLoader,admboot,0x80500000,0x6D8)
+else
+ $(call PrepareLZMAKernel,generic,0x80500000,0)
+ $(call PrepareLZMAKernel,admboot,0x80500000,0x6D8)
+endif
endef
define trxalign/jffs2-128k
@@ -47,7 +52,7 @@ endef
define Image/Build/Edimax
$(STAGING_DIR)/bin/mkcsysimg -B $(4) -d -w \
- -r $(KDIR)/loader-edimax.gz \
+ -r $(KDIR)/loader-admboot.gz \
-x $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1)-noloader.trx \
$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(3)-$(2).bin
endef
@@ -57,7 +62,7 @@ define Image/Build/MyLoader
$(STAGING_DIR)/bin/mkmylofw -B $(4) \
-p0x20000:0x10000:ahp:0x80001000 \
-p0x30000:0 \
- -b0x20000:0x10000:h:$(KDIR)/loader.gz \
+ -b0x20000:0x10000:h:$(KDIR)/loader-generic.gz \
-b0x30000:0::$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(3)-$(2).trx \
$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(3)-$(2).bin
endef
@@ -67,7 +72,7 @@ define Image/Build/RouterBoard
endef
define Image/Build
- $(STAGING_DIR)/bin/trx -o $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).trx -f $(KDIR)/loader.gz -f $(KDIR)/vmlinux.lzma $(call trxalign/$(1)) -f $(KDIR)/root.$(1)
+ $(STAGING_DIR)/bin/trx -o $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).trx -f $(KDIR)/loader-generic.gz -f $(KDIR)/vmlinux.lzma $(call trxalign/$(1)) -f $(KDIR)/root.$(1)
$(STAGING_DIR)/bin/trx -o $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1)-noloader.trx -f $(KDIR)/vmlinux.lzma $(call trxalign/$(1)) -f $(KDIR)/root.$(1)
ifneq ($(1),jffs2-128K)
$(call Image/Build/Compex,$(1),wp54g-wrt,$(patsubst jffs2-%,jffs2,$(1)))
@@ -97,4 +102,19 @@ ifeq ($(1),tgz)
endif
endef
+define Image/Build/LZMAKernel
+ $(CP) $(KDIR)/loader-vmlinux-lzma-$(2).$(3) \
+ $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-vmlinux-lzma-$(1).$(3)
+endef
+
+define Image/Build/Initramfs
+ $(call Image/Build/LZMAKernel,generic,generic,elf)
+ $(call Image/Build/LZMAKernel,rb-100,generic,elf)
+ $(call Image/Build/LZMAKernel,np27g,generic,bin)
+ $(call Image/Build/LZMAKernel,wp54g,generic,bin)
+ $(call Image/Build/LZMAKernel,br-6104k,admboot,gz)
+ $(call Image/Build/LZMAKernel,cas-771,admboot,gz)
+endef
+
$(eval $(call BuildImage))
+
diff --git a/target/linux/adm5120eb-2.6/image/Makefile b/target/linux/adm5120eb-2.6/image/Makefile
index 82ecedc1d..ce4644da1 100644
--- a/target/linux/adm5120eb-2.6/image/Makefile
+++ b/target/linux/adm5120eb-2.6/image/Makefile
@@ -7,21 +7,31 @@
include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/image.mk
-define Build/Compile
- rm -f $(KDIR)/loader-zynos.gz $(KDIR)/loader-zynos.bin
- $(MAKE) -C lzma-loader \
- BUILD_DIR="$(KDIR)" \
- TARGET="$(KDIR)" \
- LOADER=loader-zynos \
- install
+LOADER_MAKE = $(MAKE) -C lzma-loader KDIR=$(KDIR)
+
+define CompileLoader
+ $(LOADER_MAKE) LOADER=$(1) LOADER_DATA="" \
+ LZMA_TEXT_START=$(2) LZMA_STARTUP_ORG=$(3) \
+ compile
+endef
+
+define CompileLZMAKernel
+ $(LOADER_MAKE) LOADER=vmlinux-lzma-$(1) LOADER_DATA=$(KDIR)/vmlinux.lzma \
+ LZMA_TEXT_START=$(2) LZMA_STARTUP_ORG=$(3) \
+ compile
endef
define Build/Clean
- $(MAKE) -C lzma-loader clean
+ $(LOADER_MAKE) clean
endef
define Image/Prepare
cat $(KDIR)/vmlinux | $(STAGING_DIR)/bin/lzma e -si -so -eos -lc1 -lp2 -pb2 > $(KDIR)/vmlinux.lzma
+ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y)
+ $(call CompileLoader,zyxel,0x80500000,0)
+else
+ $(call CompileLZMAKernel,zyxel,0x80500000,0)
+endif
endef
define trxalign/jffs2-128k
@@ -41,8 +51,19 @@ endef
define Image/Build
$(STAGING_DIR)/bin/trx -o $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1)-noloader.trx -f $(KDIR)/vmlinux.lzma $(call trxalign/$(1)) -f $(KDIR)/root.$(1)
ifneq ($(1),jffs2-128K)
- #FIXME: no supported boards yet
+ #FIXME: firware images yet
endif
endef
+define Image/Build/LZMAKernel
+ $(CP) $(KDIR)/loader-vmlinux-lzma-$(2).$(3) \
+ $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-vmlinux-lzma-$(1).$(3)
+endef
+
+define Image/Build/Initramfs
+ $(call Image/Build/LZMAKernel,p-334wt,zyxel,bin)
+ $(call Image/Build/LZMAKernel,p-335wt,zyxel,bin)
+endef
+
$(eval $(call BuildImage))
+