From 572057b9fc8aea59b8f163b4a41c1e1d1c587b2a Mon Sep 17 00:00:00 2001 From: juhosg Date: Sat, 3 Nov 2007 14:53:24 +0000 Subject: [adm5120] image generation fixes (closes: #2643, #2644) * rewrite mkcsysimg to use an align parameter instead of a fixed size * Edimax images contains the jffs2 end-of-filesystem marker at the right position from now on git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9490 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/linux/adm5120/image/Makefile | 14 ++++++++----- target/linux/adm5120/image/router_le.mk | 37 ++++++++++++++++++++++++++------- 2 files changed, 39 insertions(+), 12 deletions(-) (limited to 'target/linux/adm5120/image') diff --git a/target/linux/adm5120/image/Makefile b/target/linux/adm5120/image/Makefile index 710e82be5..ee8cf42ea 100644 --- a/target/linux/adm5120/image/Makefile +++ b/target/linux/adm5120/image/Makefile @@ -9,7 +9,8 @@ include $(INCLUDE_DIR)/image.mk LOADER_MAKE := $(NO_TRACE_MAKE) -C lzma-loader KDIR=$(KDIR) IMGNAME := $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL) -JFFS2EOF := $(KDIR)/jffs2.eof +JFFS2BLOCK := $(KDIR)/jffs2.block +JFFS2MARK := $(KDIR)/jffs2.mark define imgname $(IMGNAME)-$(2)-$(patsubst jffs2-%,jffs2,$(1)) @@ -21,9 +22,12 @@ endef define Image/Prepare cat $(KDIR)/vmlinux | $(STAGING_DIR_HOST)/bin/lzma e -si -so -eos -lc1 -lp2 -pb2 > $(KDIR)/vmlinux.lzma - rm -f $(JFFS2EOF) - touch $(JFFS2EOF) - $(call prepare_generic_squashfs,$(JFFS2EOF)) + rm -f $(JFFS2BLOCK) + touch $(JFFS2BLOCK) + $(call prepare_generic_squashfs,$(JFFS2BLOCK)) + rm -f $(JFFS2MARK) + touch $(JFFS2MARK) + $(call add_jffs2_mark,$(JFFS2MARK)) endef define Image/Build/Loader @@ -63,7 +67,7 @@ define trxalign/jffs2-64k endef define trxalign/squashfs --a 1024 -f $(KDIR)/root.squashfs -a 0x10000 -A $(JFFS2EOF) +-a 1024 -f $(KDIR)/root.squashfs -a 0x10000 -A $(JFFS2BLOCK) endef define Image/Build/TRX diff --git a/target/linux/adm5120/image/router_le.mk b/target/linux/adm5120/image/router_le.mk index 135b8dff5..f08ed564d 100644 --- a/target/linux/adm5120/image/router_le.mk +++ b/target/linux/adm5120/image/router_le.mk @@ -5,6 +5,23 @@ # See /LICENSE for more information. # +define trxedimax/jffs2-128k +-a 0x20000 -f $(KDIR)/root.jffs2-128k +endef + +define trxedimax/jffs2-64k +-a 0x10000 -f $(KDIR)/root.jffs2-64k +endef + +define trxedimax/squashfs +-a 1024 -f $(KDIR)/root.squashfs +endef + +define Image/Build/TRXEdimax + $(STAGING_DIR_HOST)/bin/trx -o $(1) -f $(KDIR)/vmlinux.lzma \ + $(call trxedimax/$(2)) +endef + define Image/Build/Compex $(call Image/Build/Loader,$(2),gz,0x80500000,0,y,$(2)) $(call Image/Build/TRX,$(call imgname,$(1),$(2)).trx,$(1),$(KDIR)/loader-$(2).gz) @@ -12,14 +29,16 @@ endef define Image/Build/Edimax $(call Image/Build/Loader,$(2),gz,0x80500000,0x6D8,y,$(2)) - $(call Image/Build/TRXNoloader,$(call imgname,$(1),$(2)).trx,$(1)) - $(STAGING_DIR_HOST)/bin/mkcsysimg -B $(2) -d -w \ - -r $(KDIR)/loader-$(2).gz::8192 \ - -x $(call imgname,$(1),$(2)).trx \ + $(call Image/Build/TRXEdimax,$(call imgname,$(1),$(2)).trx,$(1)) + $(STAGING_DIR_HOST)/bin/mkcsysimg -B $(2) -v -v -d -w \ + -r $(KDIR)/loader-$(2).gz::0x1000 \ + -x $(call imgname,$(1),$(2)).trx:0x10000 \ + -x $(JFFS2MARK):0x10000 \ $(call imgname,$(1),$(2))-webui.bin - $(STAGING_DIR_HOST)/bin/mkcsysimg -B $(2) -d \ - -r $(KDIR)/loader-$(2).gz::8192 \ - -x $(call imgname,$(1),$(2)).trx \ + $(STAGING_DIR_HOST)/bin/mkcsysimg -B $(2) -v -v -d \ + -r $(KDIR)/loader-$(2).gz::0x1000 \ + -x $(call imgname,$(1),$(2)).trx:0x10000 \ + -x $(JFFS2MARK):0x10000 \ $(call imgname,$(1),$(2))-xmodem.bin rm -f $(call imgname,$(1),$(2)).trx endef @@ -340,6 +359,10 @@ define Image/Build/Profile/CAS771W $(call Image/Build/Board/CAS771W/$(1)) endef +define Image/Build/Profile/BR6104K + $(call Image/Build/Board/BR6104K/$(1)) +endef + define Image/Build/Profile/BR6104KP $(call Image/Build/Board/BR6104KP/$(1)) endef -- cgit v1.2.3