diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-03-27 15:51:02 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-03-27 15:51:02 +0000 |
commit | 9a4eb9867e40c7ba350964e5feced1b4f7186f63 (patch) | |
tree | 3bf57b5a4c6afe9de77516c2d0012aa045bdc1b6 /target/linux/generic-2.6/image/lzma-loader/src/Makefile | |
parent | 14e96a8a42a27f36a7e53bc87acdb134b1fbdbd8 (diff) |
Revert [10668] was accidental
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10669 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic-2.6/image/lzma-loader/src/Makefile')
-rw-r--r-- | target/linux/generic-2.6/image/lzma-loader/src/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/generic-2.6/image/lzma-loader/src/Makefile b/target/linux/generic-2.6/image/lzma-loader/src/Makefile index d5f712a1db..910172c4f8 100644 --- a/target/linux/generic-2.6/image/lzma-loader/src/Makefile +++ b/target/linux/generic-2.6/image/lzma-loader/src/Makefile @@ -49,7 +49,7 @@ lzma.bin: lzma.elf ifeq ($(IMAGE_COPY),1) LOADER_ENTRY ?= $(KERNEL_ENTRY) -lzma.o: decompress.o LzmaDecode.o kernel.o print.o printf.o uart16550.o +lzma.o: decompress.o LzmaDecode.o kernel.o sed -e 's,@LOADADDR@,$(LOADADDR),g' -e 's,@ENTRY@,entry,g' lzma.lds.in >lzma-stage2.lds $(LD) -static --no-warn-mismatch -e entry -Tlzma-stage2.lds -o temp-$@ $^ $(OBJCOPY) temp-$@ lzma.tmp @@ -60,7 +60,7 @@ lzma.elf: start.o lzma.o sed -e 's,@LOADADDR@,$(LOADER_ENTRY),g' lzma-copy.lds.in >lzma-copy.lds $(LD) -s -Tlzma-copy.lds -o $@ $^ else -lzma.elf: start.o decompress.o LzmaDecode.o kernel.o print.o printf.o uart16550.o +lzma.elf: start.o decompress.o LzmaDecode.o kernel.o $(LD) -s -Tlzma.lds -o $@ $^ endif |