Makefile 4.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6
#
# linux/arch/arm/boot/compressed/Makefile
#
# create a compressed vmlinuz image from the original vmlinux
#

7 8
OBJS		=

9
# Ensure that MMCIF loader code appears early in the image
10 11 12 13 14
# to minimise that number of bocks that have to be read in
# order to load it.
ifeq ($(CONFIG_ZBOOT_ROM_MMCIF),y)
OBJS		+= mmcif-sh7372.o
endif
15 16 17 18 19 20 21

# Ensure that SDHI loader code appears early in the image
# to minimise that number of bocks that have to be read in
# order to load it.
ifeq ($(CONFIG_ZBOOT_ROM_SH_MOBILE_SDHI),y)
OBJS		+= sdhi-shmobile.o
OBJS		+= sdhi-sh7372.o
22 23
endif

24
AFLAGS_head.o += -DTEXT_OFFSET=$(TEXT_OFFSET)
L
Linus Torvalds 已提交
25
HEAD	= head.o
26
OBJS	+= misc.o decompress.o
27
FONTC	= $(srctree)/drivers/video/console/font_acorn_8x8.c
L
Linus Torvalds 已提交
28 29 30 31 32

#
# Architecture dependencies
#
ifeq ($(CONFIG_ARCH_ACORN),y)
33
OBJS		+= ll_char_wr.o font.o
L
Linus Torvalds 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
endif

ifeq ($(CONFIG_ARCH_SHARK),y)
OBJS		+= head-shark.o ofw-shark.o
endif

ifeq ($(CONFIG_ARCH_P720T),y)
# Borrow this code from SA1100
OBJS		+= head-sa1100.o
endif

ifeq ($(CONFIG_ARCH_SA1100),y)
OBJS		+= head-sa1100.o
endif

49 50 51 52
ifeq ($(CONFIG_ARCH_VT8500),y)
OBJS		+= head-vt8500.o
endif

L
Linus Torvalds 已提交
53 54 55 56
ifeq ($(CONFIG_CPU_XSCALE),y)
OBJS		+= head-xscale.o
endif

57
ifeq ($(CONFIG_PXA_SHARPSL_DETECT_MACH_ID),y)
L
Linus Torvalds 已提交
58 59 60
OBJS		+= head-sharpsl.o
endif

61
ifeq ($(CONFIG_CPU_ENDIAN_BE32),y)
62
ifeq ($(CONFIG_CPU_CP15),y)
L
Linus Torvalds 已提交
63
OBJS		+= big-endian.o
64 65 66
else
# The endian should be set by h/w design.
endif
L
Linus Torvalds 已提交
67 68
endif

69 70 71 72
ifeq ($(CONFIG_ARCH_SHMOBILE),y)
OBJS		+= head-shmobile.o
endif

L
Linus Torvalds 已提交
73 74 75 76 77 78 79 80 81 82
#
# We now have a PIC decompressor implementation.  Decompressors running
# from RAM should not define ZTEXTADDR.  Decompressors running directly
# from ROM or Flash must define ZTEXTADDR (preferably via the config)
# FIXME: Previous assignment to ztextaddr-y is lost here. See SHARK
ifeq ($(CONFIG_ZBOOT_ROM),y)
ZTEXTADDR	:= $(CONFIG_ZBOOT_ROM_TEXT)
ZBSSADDR	:= $(CONFIG_ZBOOT_ROM_BSS)
else
ZTEXTADDR	:= 0
83
ZBSSADDR	:= ALIGN(8)
L
Linus Torvalds 已提交
84 85 86 87
endif

SEDFLAGS	= s/TEXT_START/$(ZTEXTADDR)/;s/BSS_START/$(ZBSSADDR)/

88 89
suffix_$(CONFIG_KERNEL_GZIP) = gzip
suffix_$(CONFIG_KERNEL_LZO)  = lzo
90
suffix_$(CONFIG_KERNEL_LZMA) = lzma
91 92 93 94

targets       := vmlinux vmlinux.lds \
		 piggy.$(suffix_y) piggy.$(suffix_y).o \
		 font.o font.c head.o misc.o $(OBJS)
A
Abhishek Sagar 已提交
95

96 97 98
# Make sure files are removed during clean
extra-y       += piggy.gzip piggy.lzo piggy.lzma lib1funcs.S

99
ifeq ($(CONFIG_FUNCTION_TRACER),y)
A
Abhishek Sagar 已提交
100 101 102 103
ORIG_CFLAGS := $(KBUILD_CFLAGS)
KBUILD_CFLAGS = $(subst -pg, , $(ORIG_CFLAGS))
endif

M
matt mooney 已提交
104 105
ccflags-y := -fpic -fno-builtin
asflags-y := -Wa,-march=all
L
Linus Torvalds 已提交
106

107 108
# Supply ZRELADDR to the decompressor via a linker symbol.
ifneq ($(CONFIG_AUTO_ZRELADDR),y)
109
LDFLAGS_vmlinux += --defsym zreladdr=$(ZRELADDR)
110
endif
111 112 113
ifeq ($(CONFIG_CPU_ENDIAN_BE8),y)
LDFLAGS_vmlinux += --be8
endif
114 115 116 117 118 119 120 121 122 123 124 125 126 127
# ?
LDFLAGS_vmlinux += -p
# Report unresolved symbol references
LDFLAGS_vmlinux += --no-undefined
# Delete all temporary local symbols
LDFLAGS_vmlinux += -X
# Next argument is a linker script
LDFLAGS_vmlinux += -T

# For __aeabi_uidivmod
lib1funcs = $(obj)/lib1funcs.o

$(obj)/lib1funcs.S: $(srctree)/arch/$(SRCARCH)/lib/lib1funcs.S FORCE
	$(call cmd,shipped)
L
Linus Torvalds 已提交
128

129 130 131 132 133 134 135 136 137 138 139 140 141
# We need to prevent any GOTOFF relocs being used with references
# to symbols in the .bss section since we cannot relocate them
# independently from the rest at run time.  This can be achieved by
# ensuring that no private .bss symbols exist, as global symbols
# always have a GOT entry which is what we need.
# The .data section is already discarded by the linker script so no need
# to bother about it here.
check_for_bad_syms = \
bad_syms=$$($(CROSS_COMPILE)nm $@ | sed -n 's/^.\{8\} [bc] \(.*\)/\1/p') && \
[ -z "$$bad_syms" ] || \
  ( echo "following symbols must have non local/private scope:" >&2; \
    echo "$$bad_syms" >&2; rm -f $@; false )

142
check_for_multiple_zreladdr = \
143
if [ $(words $(ZRELADDR)) -gt 1 -a "$(CONFIG_AUTO_ZRELADDR)" = "" ]; then \
144 145 146 147 148
	echo 'multiple zreladdrs: $(ZRELADDR)'; \
	echo 'This needs CONFIG_AUTO_ZRELADDR to be set'; \
	false; \
fi

149 150
$(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.$(suffix_y).o \
	 	$(addprefix $(obj)/, $(OBJS)) $(lib1funcs) FORCE
151
	@$(check_for_multiple_zreladdr)
L
Linus Torvalds 已提交
152
	$(call if_changed,ld)
153
	@$(check_for_bad_syms)
L
Linus Torvalds 已提交
154

155 156
$(obj)/piggy.$(suffix_y): $(obj)/../Image FORCE
	$(call if_changed,$(suffix_y))
L
Linus Torvalds 已提交
157

158
$(obj)/piggy.$(suffix_y).o:  $(obj)/piggy.$(suffix_y) FORCE
L
Linus Torvalds 已提交
159

160 161 162 163
CFLAGS_font.o := -Dstatic=

$(obj)/font.c: $(FONTC)
	$(call cmd,shipped)
L
Linus Torvalds 已提交
164

165
$(obj)/vmlinux.lds: $(obj)/vmlinux.lds.in arch/arm/boot/Makefile $(KCONFIG_CONFIG)
L
Linus Torvalds 已提交
166
	@sed "$(SEDFLAGS)" < $< > $@