MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / arch / nios2nommu / boot / compressed / Makefile
blob2002471c471c490a67e174c1a2b25fc9adf39f38
2 # linux/arch/sh/boot/compressed/Makefile
4 # create a compressed vmlinux image from the original vmlinux
7 targets := vmlinux vmlinux.bin vmlinux.bin.gz head.o misc.o \
8 piggy.o vmlinux.lds
9 EXTRA_AFLAGS :=
11 OBJECTS = $(obj)/head.o $(obj)/misc.o
14 # IMAGE_OFFSET is the load offset of the compression loader
16 #IMAGE_OFFSET := $(shell printf "0x%08x" $$[$(CONFIG_MEMORY_START)+0x2000])
17 #IMAGE_OFFSET := $(shell printf "0x%08x" $$[$(CONFIG_MEMORY_START)+0x00400000])
19 LDFLAGS_vmlinux := -T
21 $(obj)/vmlinux: $(obj)/vmlinux.lds $(OBJECTS) $(obj)/piggy.o FORCE
22 $(call if_changed,ld)
25 $(obj)/vmlinux.bin: vmlinux FORCE
26 $(call if_changed,objcopy)
28 $(obj)/vmlinux.bin.gz: $(obj)/vmlinux.bin FORCE
29 $(call if_changed,gzip)
31 LDFLAGS_piggy.o := -r --format binary --oformat elf32-littlenios2 -T
33 OBJCOPYFLAGS += -O binary
35 $(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/vmlinux.bin.gz FORCE
36 $(call if_changed,ld)