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/Makefile | |
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/Makefile')
-rw-r--r-- | target/Makefile | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/target/Makefile b/target/Makefile index a17a80ffc1..c8baab5f7a 100644 --- a/target/Makefile +++ b/target/Makefile @@ -29,6 +29,20 @@ IMAGE_TARGETS += $(BIN_DIR)/openwrt-motorola-$(1).bin endif endef +# Enable loader and prepare kernel +ifeq ($(strip $(BR2_PACKAGE_LOADER)),y) +export LINUX_LOADER=$(BUILD_DIR)/lzmaldr +export LINUX_IMAGE=$(BUILD_DIR)/piggy.lzma +else +export LINUX_IMAGE=$(BUILD_DIR)/piggy.gz +endif + +$(BUILD_DIR)/piggy.lzma: $(LINUX_KERNEL) + cat $^ | $(BUILD_DIR)/lzma/lzma e -si -so -eos > $@ || (rm -f $@ && false) + +$(BUILD_DIR)/piggy.gz: $(LINUX_KERNEL) + cat $^ | gzip -c9 $^ > $@ || (rm -f $@ && false) + TARGET_DIRS:= TARGET_FS:= IMAGE_TARGETS:= @@ -70,7 +84,7 @@ $(BIN_DIR): mkdir -p $(BIN_DIR) compile: $(patsubst %,%-compile,$(TARGET_DIRS)) -install: utils-install $(patsubst %,%-install,$(TARGET_DIRS)) $(IMAGE_TARGETS) +install: utils-install lzma-install $(LINUX_IMAGE) $(patsubst %,%-install,$(TARGET_DIRS)) $(IMAGE_TARGETS) clean: $(patsubst %,%-clean,$(TARGET_DIRS)) image_clean image_clean: |