Makefile 2.9 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
AFLAGS_head.o += -DTEXT_OFFSET=$(TEXT_OFFSET)
L
Linus Torvalds 已提交
8
HEAD	= head.o
9
OBJS	= misc.o decompress.o
10
FONTC	= $(srctree)/drivers/video/console/font_acorn_8x8.c
L
Linus Torvalds 已提交
11 12 13 14 15

#
# Architecture dependencies
#
ifeq ($(CONFIG_ARCH_ACORN),y)
16
OBJS		+= ll_char_wr.o font.o
L
Linus Torvalds 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
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

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

36
ifeq ($(CONFIG_PXA_SHARPSL_DETECT_MACH_ID),y)
L
Linus Torvalds 已提交
37 38 39
OBJS		+= head-sharpsl.o
endif

40
ifeq ($(CONFIG_CPU_ENDIAN_BE32),y)
41
ifeq ($(CONFIG_CPU_CP15),y)
L
Linus Torvalds 已提交
42
OBJS		+= big-endian.o
43 44 45
else
# The endian should be set by h/w design.
endif
L
Linus Torvalds 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
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
ZBSSADDR	:= ALIGN(4)
endif

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

63 64
suffix_$(CONFIG_KERNEL_GZIP) = gzip
suffix_$(CONFIG_KERNEL_LZO)  = lzo
65
suffix_$(CONFIG_KERNEL_LZMA) = lzma
66 67 68 69

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

71 72 73
# Make sure files are removed during clean
extra-y       += piggy.gzip piggy.lzo piggy.lzma lib1funcs.S

74
ifeq ($(CONFIG_FUNCTION_TRACER),y)
A
Abhishek Sagar 已提交
75 76 77 78
ORIG_CFLAGS := $(KBUILD_CFLAGS)
KBUILD_CFLAGS = $(subst -pg, , $(ORIG_CFLAGS))
endif

79
EXTRA_CFLAGS  := -fpic -fno-builtin
80
EXTRA_AFLAGS  := -Wa,-march=all
L
Linus Torvalds 已提交
81

82 83 84 85
# Supply ZRELADDR to the decompressor via a linker symbol.
ifneq ($(CONFIG_AUTO_ZRELADDR),y)
LDFLAGS_vmlinux := --defsym zreladdr=$(ZRELADDR)
endif
86 87 88
ifeq ($(CONFIG_CPU_ENDIAN_BE8),y)
LDFLAGS_vmlinux += --be8
endif
89 90 91 92 93 94 95 96 97 98 99 100 101 102
# ?
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 已提交
103

104 105
$(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.$(suffix_y).o \
	 	$(addprefix $(obj)/, $(OBJS)) $(lib1funcs) FORCE
L
Linus Torvalds 已提交
106 107 108
	$(call if_changed,ld)
	@:

109 110
$(obj)/piggy.$(suffix_y): $(obj)/../Image FORCE
	$(call if_changed,$(suffix_y))
L
Linus Torvalds 已提交
111

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

114 115 116 117
CFLAGS_font.o := -Dstatic=

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

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