Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # linux/arch/arm/boot/compressed/Makefile |
| 3 | # |
| 4 | # create a compressed vmlinuz image from the original vmlinux |
| 5 | # |
| 6 | |
| 7 | HEAD = head.o |
| 8 | OBJS = misc.o |
Russell King | 4486b86 | 2007-06-03 18:54:42 +0100 | [diff] [blame^] | 9 | FONTC = $(srctree)/drivers/video/console/font_acorn_8x8.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | |
| 11 | # |
| 12 | # Architecture dependencies |
| 13 | # |
| 14 | ifeq ($(CONFIG_ARCH_ACORN),y) |
Russell King | 4486b86 | 2007-06-03 18:54:42 +0100 | [diff] [blame^] | 15 | OBJS += ll_char_wr.o font.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | endif |
| 17 | |
| 18 | ifeq ($(CONFIG_ARCH_SHARK),y) |
| 19 | OBJS += head-shark.o ofw-shark.o |
| 20 | endif |
| 21 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | ifeq ($(CONFIG_ARCH_L7200),y) |
| 23 | OBJS += head-l7200.o |
| 24 | endif |
| 25 | |
| 26 | ifeq ($(CONFIG_ARCH_CLPS7500),y) |
| 27 | HEAD = head-clps7500.o |
| 28 | endif |
| 29 | |
| 30 | ifeq ($(CONFIG_ARCH_P720T),y) |
| 31 | # Borrow this code from SA1100 |
| 32 | OBJS += head-sa1100.o |
| 33 | endif |
| 34 | |
| 35 | ifeq ($(CONFIG_ARCH_SA1100),y) |
| 36 | OBJS += head-sa1100.o |
| 37 | endif |
| 38 | |
| 39 | ifeq ($(CONFIG_CPU_XSCALE),y) |
| 40 | OBJS += head-xscale.o |
| 41 | endif |
| 42 | |
| 43 | ifeq ($(CONFIG_PXA_SHARPSL),y) |
| 44 | OBJS += head-sharpsl.o |
| 45 | endif |
| 46 | |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 47 | ifeq ($(CONFIG_ARCH_AT91RM9200),y) |
| 48 | OBJS += head-at91rm9200.o |
| 49 | endif |
| 50 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | ifeq ($(CONFIG_CPU_BIG_ENDIAN),y) |
Hyok S. Choi | f12d0d7 | 2006-09-26 17:36:37 +0900 | [diff] [blame] | 52 | ifeq ($(CONFIG_CPU_CP15),y) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | OBJS += big-endian.o |
Hyok S. Choi | f12d0d7 | 2006-09-26 17:36:37 +0900 | [diff] [blame] | 54 | else |
| 55 | # The endian should be set by h/w design. |
| 56 | endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | endif |
| 58 | |
| 59 | # |
| 60 | # We now have a PIC decompressor implementation. Decompressors running |
| 61 | # from RAM should not define ZTEXTADDR. Decompressors running directly |
| 62 | # from ROM or Flash must define ZTEXTADDR (preferably via the config) |
| 63 | # FIXME: Previous assignment to ztextaddr-y is lost here. See SHARK |
| 64 | ifeq ($(CONFIG_ZBOOT_ROM),y) |
| 65 | ZTEXTADDR := $(CONFIG_ZBOOT_ROM_TEXT) |
| 66 | ZBSSADDR := $(CONFIG_ZBOOT_ROM_BSS) |
| 67 | else |
| 68 | ZTEXTADDR := 0 |
| 69 | ZBSSADDR := ALIGN(4) |
| 70 | endif |
| 71 | |
| 72 | SEDFLAGS = s/TEXT_START/$(ZTEXTADDR)/;s/BSS_START/$(ZBSSADDR)/ |
| 73 | |
Russell King | 4486b86 | 2007-06-03 18:54:42 +0100 | [diff] [blame^] | 74 | targets := vmlinux vmlinux.lds piggy.gz piggy.o font.o font.c \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | head.o misc.o $(OBJS) |
| 76 | EXTRA_CFLAGS := -fpic |
| 77 | EXTRA_AFLAGS := |
| 78 | |
| 79 | # Supply ZRELADDR, INITRD_PHYS and PARAMS_PHYS to the decompressor via |
| 80 | # linker symbols. We only define initrd_phys and params_phys if the |
| 81 | # machine class defined the corresponding makefile variable. |
| 82 | LDFLAGS_vmlinux := --defsym zreladdr=$(ZRELADDR) |
| 83 | ifneq ($(INITRD_PHYS),) |
| 84 | LDFLAGS_vmlinux += --defsym initrd_phys=$(INITRD_PHYS) |
| 85 | endif |
| 86 | ifneq ($(PARAMS_PHYS),) |
| 87 | LDFLAGS_vmlinux += --defsym params_phys=$(PARAMS_PHYS) |
| 88 | endif |
| 89 | LDFLAGS_vmlinux += -p --no-undefined -X \ |
| 90 | $(shell $(CC) $(CFLAGS) --print-libgcc-file-name) -T |
| 91 | |
| 92 | # Don't allow any static data in misc.o, which |
| 93 | # would otherwise mess up our GOT table |
| 94 | CFLAGS_misc.o := -Dstatic= |
| 95 | |
| 96 | $(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.o \ |
| 97 | $(addprefix $(obj)/, $(OBJS)) FORCE |
| 98 | $(call if_changed,ld) |
| 99 | @: |
| 100 | |
| 101 | $(obj)/piggy.gz: $(obj)/../Image FORCE |
| 102 | $(call if_changed,gzip) |
| 103 | |
| 104 | $(obj)/piggy.o: $(obj)/piggy.gz FORCE |
| 105 | |
Russell King | 4486b86 | 2007-06-03 18:54:42 +0100 | [diff] [blame^] | 106 | CFLAGS_font.o := -Dstatic= |
| 107 | |
| 108 | $(obj)/font.c: $(FONTC) |
| 109 | $(call cmd,shipped) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
| 111 | $(obj)/vmlinux.lds: $(obj)/vmlinux.lds.in arch/arm/boot/Makefile .config |
| 112 | @sed "$(SEDFLAGS)" < $< > $@ |
| 113 | |
| 114 | $(obj)/misc.o: $(obj)/misc.c include/asm/arch/uncompress.h lib/inflate.c |
| 115 | |