Makefile 5.2 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
AFLAGS_head.o += -DTEXT_OFFSET=$(TEXT_OFFSET)
L
Linus Torvalds 已提交
10
HEAD	= head.o
11
OBJS	+= misc.o decompress.o
12 13 14
ifeq ($(CONFIG_DEBUG_UNCOMPRESS),y)
OBJS	+= debug.o
endif
15
FONTC	= $(srctree)/lib/fonts/font_acorn_8x8.c
L
Linus Torvalds 已提交
16

17 18 19 20
# string library code (-Os is enforced to keep it much smaller)
OBJS		+= string.o
CFLAGS_string.o	:= -Os

21 22 23 24
ifeq ($(CONFIG_ARM_VIRT_EXT),y)
OBJS		+= hyp-stub.o
endif

25 26
GCOV_PROFILE		:= n

L
Linus Torvalds 已提交
27 28 29 30
#
# Architecture dependencies
#
ifeq ($(CONFIG_ARCH_ACORN),y)
31
OBJS		+= ll_char_wr.o font.o
L
Linus Torvalds 已提交
32 33 34 35 36 37 38 39 40 41
endif

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

ifeq ($(CONFIG_CPU_XSCALE),y)
OBJS		+= head-xscale.o
endif

42
ifeq ($(CONFIG_PXA_SHARPSL_DETECT_MACH_ID),y)
L
Linus Torvalds 已提交
43 44 45
OBJS		+= head-sharpsl.o
endif

46
ifeq ($(CONFIG_CPU_ENDIAN_BE32),y)
47
ifeq ($(CONFIG_CPU_CP15),y)
L
Linus Torvalds 已提交
48
OBJS		+= big-endian.o
49 50 51
else
# The endian should be set by h/w design.
endif
L
Linus Torvalds 已提交
52 53 54 55 56 57 58 59 60 61 62 63
endif

#
# 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
64
ZBSSADDR	:= ALIGN(8)
L
Linus Torvalds 已提交
65 66
endif

67
CPPFLAGS_vmlinux.lds := -DTEXT_START="$(ZTEXTADDR)" -DBSS_START="$(ZBSSADDR)"
L
Linus Torvalds 已提交
68

69 70
suffix_$(CONFIG_KERNEL_GZIP) = gzip
suffix_$(CONFIG_KERNEL_LZO)  = lzo
71
suffix_$(CONFIG_KERNEL_LZMA) = lzma
72
suffix_$(CONFIG_KERNEL_XZ)   = xzkern
73
suffix_$(CONFIG_KERNEL_LZ4)  = lz4
74

75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
# Borrowed libfdt files for the ATAG compatibility mode

libfdt		:= fdt_rw.c fdt_ro.c fdt_wip.c fdt.c
libfdt_hdrs	:= fdt.h libfdt.h libfdt_internal.h

libfdt_objs	:= $(addsuffix .o, $(basename $(libfdt)))

$(addprefix $(obj)/,$(libfdt) $(libfdt_hdrs)): $(obj)/%: $(srctree)/scripts/dtc/libfdt/%
	$(call cmd,shipped)

$(addprefix $(obj)/,$(libfdt_objs) atags_to_fdt.o): \
	$(addprefix $(obj)/,$(libfdt_hdrs))

ifeq ($(CONFIG_ARM_ATAG_DTB_COMPAT),y)
OBJS	+= $(libfdt_objs) atags_to_fdt.o
endif

92 93
targets       := vmlinux vmlinux.lds \
		 piggy.$(suffix_y) piggy.$(suffix_y).o \
94 95
		 lib1funcs.o lib1funcs.S ashldi3.o ashldi3.S bswapsdi2.o \
		 bswapsdi2.S font.o font.c head.o misc.o $(OBJS)
A
Abhishek Sagar 已提交
96

97
# Make sure files are removed during clean
98
extra-y       += piggy.gzip piggy.lzo piggy.lzma piggy.xzkern piggy.lz4 \
99
		 lib1funcs.S ashldi3.S bswapsdi2.S $(libfdt) $(libfdt_hdrs) \
100
		 hyp-stub.S
101

102 103
KBUILD_CFLAGS += -DDISABLE_BRANCH_PROFILING

104
ifeq ($(CONFIG_FUNCTION_TRACER),y)
A
Abhishek Sagar 已提交
105 106 107 108
ORIG_CFLAGS := $(KBUILD_CFLAGS)
KBUILD_CFLAGS = $(subst -pg, , $(ORIG_CFLAGS))
endif

109
ccflags-y := -fpic -mno-single-pic-base -fno-builtin -I$(obj)
110
asflags-y := -DZIMAGE
L
Linus Torvalds 已提交
111

112
# Supply kernel BSS size to the decompressor via a linker symbol.
113 114
KBSS_SZ = $(shell $(CROSS_COMPILE)size $(obj)/../../../../vmlinux | \
		awk 'END{print $$3}')
115
LDFLAGS_vmlinux = --defsym _kernel_bss_size=$(KBSS_SZ)
116 117
# Supply ZRELADDR to the decompressor via a linker symbol.
ifneq ($(CONFIG_AUTO_ZRELADDR),y)
118
LDFLAGS_vmlinux += --defsym zreladdr=$(ZRELADDR)
119
endif
120 121 122
ifeq ($(CONFIG_CPU_ENDIAN_BE8),y)
LDFLAGS_vmlinux += --be8
endif
123 124 125 126 127 128 129 130 131 132 133 134
# ?
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

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

138 139 140 141 142 143
# For __aeabi_llsl
ashldi3 = $(obj)/ashldi3.o

$(obj)/ashldi3.S: $(srctree)/arch/$(SRCARCH)/lib/ashldi3.S
	$(call cmd,shipped)

144 145 146 147 148 149
# For __bswapsi2, __bswapdi2
bswapsdi2 = $(obj)/bswapsdi2.o

$(obj)/bswapsdi2.S: $(srctree)/arch/$(SRCARCH)/lib/bswapsdi2.S
	$(call cmd,shipped)

150 151 152 153 154 155 156 157 158 159 160 161 162
# 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 )

163
check_for_multiple_zreladdr = \
164
if [ $(words $(ZRELADDR)) -gt 1 -a "$(CONFIG_AUTO_ZRELADDR)" = "" ]; then \
165 166 167 168 169
	echo 'multiple zreladdrs: $(ZRELADDR)'; \
	echo 'This needs CONFIG_AUTO_ZRELADDR to be set'; \
	false; \
fi

R
Roy Franz 已提交
170 171
efi-obj-$(CONFIG_EFI_STUB) := $(objtree)/drivers/firmware/efi/libstub/lib.a

172
$(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.$(suffix_y).o \
173
		$(addprefix $(obj)/, $(OBJS)) $(lib1funcs) $(ashldi3) \
R
Roy Franz 已提交
174
		$(bswapsdi2) $(efi-obj-y) FORCE
175
	@$(check_for_multiple_zreladdr)
L
Linus Torvalds 已提交
176
	$(call if_changed,ld)
177
	@$(check_for_bad_syms)
L
Linus Torvalds 已提交
178

179 180
$(obj)/piggy.$(suffix_y): $(obj)/../Image FORCE
	$(call if_changed,$(suffix_y))
L
Linus Torvalds 已提交
181

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

184 185 186 187
CFLAGS_font.o := -Dstatic=

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

189 190
AFLAGS_hyp-stub.o := -Wa,-march=armv7-a

191 192
$(obj)/hyp-stub.S: $(srctree)/arch/$(SRCARCH)/kernel/hyp-stub.S
	$(call cmd,shipped)