Create a dummy sit package for 2.4 kernelsq
[openwrt.git] / target / linux / generic-2.6 / image / lzma-loader / src / Makefile
index 13ed962..d5f712a 100644 (file)
@@ -36,7 +36,7 @@ O_FORMAT = $(shell $(OBJDUMP) -i | head -2 | grep elf32)
 drop-sections   = .reginfo .mdebug .comment
 strip-flags     = $(addprefix --remove-section=,$(drop-sections))
 
-all : lzma.elf
+all : lzma.elf lzma.bin
 
 lzma.lds: lzma.lds.in
        sed -e 's,@LOADADDR@,$(LOADADDR),g' -e 's,@ENTRY@,_start,g' $< >$@
@@ -44,9 +44,12 @@ lzma.lds: lzma.lds.in
 kernel.o: vmlinux.lzma lzma.lds
        $(LD) -r -b binary --oformat $(O_FORMAT) -o $@ $<
 
+lzma.bin: lzma.elf
+       $(OBJCOPY) $< $@
+
 ifeq ($(IMAGE_COPY),1)
 LOADER_ENTRY ?= $(KERNEL_ENTRY)
-lzma.o: decompress.o LzmaDecode.o kernel.o
+lzma.o: decompress.o LzmaDecode.o kernel.o print.o printf.o uart16550.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
@@ -57,9 +60,9 @@ 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
+lzma.elf: start.o decompress.o LzmaDecode.o kernel.o print.o printf.o uart16550.o
        $(LD) -s -Tlzma.lds -o $@ $^
 endif
 
 clean:
-       rm -f *.o lzma.elf *.tmp *.lds
+       rm -f *.o lzma.elf lzma.bin *.tmp *.lds