GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / m32r / boot / compressed / Makefile
blob177716b1d61354a74a86ecfff0e08ba522660ec8
2 # linux/arch/m32r/boot/compressed/Makefile
4 # create a compressed vmlinux image from the original vmlinux
7 targets := vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 \
8 vmlinux.bin.lzma head.o misc.o piggy.o vmlinux.lds
10 OBJECTS = $(obj)/head.o $(obj)/misc.o
13 # IMAGE_OFFSET is the load offset of the compression loader
15 #IMAGE_OFFSET := $(shell printf "0x%08x" $$[$(CONFIG_MEMORY_START)+0x2000])
16 #IMAGE_OFFSET := $(shell printf "0x%08x" $$[$(CONFIG_MEMORY_START)+0x00400000])
18 LDFLAGS_vmlinux := -T
20 $(obj)/vmlinux: $(obj)/vmlinux.lds $(OBJECTS) $(obj)/piggy.o FORCE
21 $(call if_changed,ld)
24 $(obj)/vmlinux.bin: vmlinux FORCE
25 $(call if_changed,objcopy)
27 $(obj)/vmlinux.bin.gz: $(obj)/vmlinux.bin FORCE
28 $(call if_changed,gzip)
30 $(obj)/vmlinux.bin.bz2: $(obj)/vmlinux.bin FORCE
31 $(call if_changed,bzip2)
33 $(obj)/vmlinux.bin.lzma: $(obj)/vmlinux.bin FORCE
34 $(call if_changed,lzma)
36 CFLAGS_misc.o += -fpic
38 ifdef CONFIG_MMU
39 LDFLAGS_piggy.o := -r --format binary --oformat elf32-m32r-linux -T
40 else
41 LDFLAGS_piggy.o := -r --format binary --oformat elf32-m32r -T
42 endif
44 OBJCOPYFLAGS += -R .empty_zero_page
46 suffix_$(CONFIG_KERNEL_GZIP) = gz
47 suffix_$(CONFIG_KERNEL_BZIP2) = bz2
48 suffix_$(CONFIG_KERNEL_LZMA) = lzma
50 $(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/vmlinux.bin.$(suffix-y) FORCE
51 $(call if_changed,ld)