diff options
author | Waldemar Brodkorb <wbx@openwrt.org> | 2005-04-02 12:12:58 +0000 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openwrt.org> | 2005-04-02 12:12:58 +0000 |
commit | 7427da90ceb14878996e3e3a3945f29754b73459 (patch) | |
tree | 242788637a26f3f16ea5b2cf9912f9274b46ad51 /target/jffs2 | |
parent | d8372fba558ccaf85624a6ab37d88cf31de6fe23 (diff) | |
download | upstream-7427da90ceb14878996e3e3a3945f29754b73459.tar.gz upstream-7427da90ceb14878996e3e3a3945f29754b73459.tar.bz2 upstream-7427da90ceb14878996e3e3a3945f29754b73459.zip |
lzma loader patch from oleg, great thanks good work, saves another 300 kb flashmemory
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@513 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/jffs2')
-rw-r--r-- | target/jffs2/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/target/jffs2/Makefile b/target/jffs2/Makefile index ff63e6fc2a..ca61febf2e 100644 --- a/target/jffs2/Makefile +++ b/target/jffs2/Makefile @@ -12,14 +12,14 @@ clean: jffs2root-dirclean $(BIN_DIR)/openwrt-generic-jffs2-4MB.trx: $(MKFS_JFFS2) --pad --little-endian --squash -e 0x10000 \ -d $(TARGET_DIR) -o $(IMAGE)-4MB.jffs2 - PATH=$(TARGET_PATH) trx -o $@ \ - $(LINUX_KERNEL) -a 0x10000 $(IMAGE)-4MB.jffs2 + PATH=$(TARGET_PATH) trx -o $@ $(LINUX_LOADER) \ + $(LINUX_IMAGE) -a 0x10000 $(IMAGE)-4MB.jffs2 $(BIN_DIR)/openwrt-generic-jffs2-8MB.trx: $(MKFS_JFFS2) --pad --little-endian --squash -e 0x20000 \ -d $(TARGET_DIR) -o $(IMAGE)-8MB.jffs2 - PATH=$(TARGET_PATH) trx -o $@ \ - $(LINUX_KERNEL) -a 0x20000 $(IMAGE)-8MB.jffs2 + PATH=$(TARGET_PATH) trx -o $@ $(LINUX_LOADER) \ + $(LINUX_IMAGE) -a 0x20000 $(IMAGE)-8MB.jffs2 $(BIN_DIR)/openwrt-wrt54g-jffs2.bin: $(BIN_DIR)/openwrt-generic-jffs2-4MB.trx PATH=$(TARGET_PATH) addpattern -2 -i $< -o $@ -g |