summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-04-12 14:52:18 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-04-12 14:52:18 +0000
commit7443b76f81187871961b0995b60053b3b1e727f1 (patch)
tree19cceb07be6b7b04ae289c2c5483b9237af0c11d
parent6e0ce9917560362bf7e0d02e921051b6c277fed5 (diff)
add additional compressors and try all of them when making jffs2 images (decreases default image size by ~70k)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@636 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--openwrt/target/jffs2/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/openwrt/target/jffs2/Makefile b/openwrt/target/jffs2/Makefile
index 01dede7d7..5f155fd70 100644
--- a/openwrt/target/jffs2/Makefile
+++ b/openwrt/target/jffs2/Makefile
@@ -3,6 +3,8 @@ include $(TOPDIR)/rules.mk
include ./jffs2root.mk
TARGETS:= $(BIN_DIR)/openwrt-generic-jffs2-4MB.trx $(BIN_DIR)/openwrt-generic-jffs2-8MB.trx
+JFFS2OPTS := --pad --little-endian --squash -d $(TARGET_DIR)
+JFFS2OPTS += -Xlzo -msize -Xlzari
prepare: $(MTD_DIR)/.unpacked
compile: mtd
@@ -10,14 +12,12 @@ install: compile $(TARGETS)
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
+ $(MKFS_JFFS2) $(JFFS2OPTS) -e 0x10000 -o $(IMAGE)-4MB.jffs2
PATH=$(TARGET_PATH) trx -o $@ $(BUILD_DIR)/loader.gz \
$(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
+ $(MKFS_JFFS2) $(JFFS2OPTS) -e 0x20000 -o $(IMAGE)-8MB.jffs2
PATH=$(TARGET_PATH) trx -o $@ $(BUILD_DIR)/loader.gz \
$(LINUX_IMAGE) -a 0x20000 $(IMAGE)-8MB.jffs2