diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-03-26 13:33:22 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-03-26 13:33:22 +0000 |
commit | 878684ff47f116c5a75e8d1640bf32ad5922dc19 (patch) | |
tree | 33f69544d15fb0b90b0eda6bc6d24437b932c856 /target/linux/generic-2.6/image/lzma-loader/Makefile | |
parent | 299b1b9a543d4fe65ab5baf2742a52430e02beeb (diff) |
Generate a binary lzma-loader
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10661 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic-2.6/image/lzma-loader/Makefile')
-rw-r--r-- | target/linux/generic-2.6/image/lzma-loader/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/target/linux/generic-2.6/image/lzma-loader/Makefile b/target/linux/generic-2.6/image/lzma-loader/Makefile index e3a98afbc..171c3c393 100644 --- a/target/linux/generic-2.6/image/lzma-loader/Makefile +++ b/target/linux/generic-2.6/image/lzma-loader/Makefile @@ -33,11 +33,15 @@ $(PKG_BUILD_DIR)/vmlinux.lzma: $(KDIR)/vmlinux.lzma $(KDIR)/loader$(LOADER_TYPE).elf: $(PKG_BUILD_DIR)/lzma.elf $(CP) $< $@ +$(KDIR)/loader$(LOADER_TYPE).bin: $(PKG_BUILD_DIR)/lzma.bin + $(CP) $< $@ + download: prepare: $(PKG_BUILD_DIR)/.prepared -compile: $(KDIR)/loader$(LOADER_TYPE).elf +compile: $(KDIR)/loader$(LOADER_TYPE).elf $(KDIR)/loader$(LOADER_TYPE).bin install: clean: rm -rf $(PKG_BUILD_DIR) rm -f $(KDIR)/loader.elf + rm -f $(KDIR)/loader.bin |