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 | |
Simon Horman | f45b114 | 2011-01-11 04:01:08 +0100 | [diff] [blame] | 7 | OBJS = |
| 8 | |
Eric Miao | e69edc79 | 2010-07-05 15:56:50 +0200 | [diff] [blame] | 9 | AFLAGS_head.o += -DTEXT_OFFSET=$(TEXT_OFFSET) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | HEAD = head.o |
Simon Horman | f45b114 | 2011-01-11 04:01:08 +0100 | [diff] [blame] | 11 | OBJS += misc.o decompress.o |
Shawn Guo | 3b4af9b | 2013-03-14 08:48:06 +0100 | [diff] [blame] | 12 | ifeq ($(CONFIG_DEBUG_UNCOMPRESS),y) |
| 13 | OBJS += debug.o |
| 14 | endif |
Geert Uytterhoeven | ee89bd6 | 2013-06-09 11:46:43 +0200 | [diff] [blame] | 15 | FONTC = $(srctree)/lib/fonts/font_acorn_8x8.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
Nicolas Pitre | df4879f | 2011-09-13 21:42:55 -0400 | [diff] [blame] | 17 | # string library code (-Os is enforced to keep it much smaller) |
| 18 | OBJS += string.o |
| 19 | CFLAGS_string.o := -Os |
| 20 | |
Dave Martin | 424e599 | 2012-02-10 18:07:07 -0800 | [diff] [blame] | 21 | ifeq ($(CONFIG_ARM_VIRT_EXT),y) |
| 22 | OBJS += hyp-stub.o |
| 23 | endif |
| 24 | |
Vincent Sanders | 75c3490 | 2014-09-18 20:39:15 +0100 | [diff] [blame] | 25 | GCOV_PROFILE := n |
| 26 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | # |
| 28 | # Architecture dependencies |
| 29 | # |
| 30 | ifeq ($(CONFIG_ARCH_ACORN),y) |
Russell King | 4486b86 | 2007-06-03 18:54:42 +0100 | [diff] [blame] | 31 | OBJS += ll_char_wr.o font.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | endif |
| 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | ifeq ($(CONFIG_ARCH_SA1100),y) |
| 35 | OBJS += head-sa1100.o |
| 36 | endif |
| 37 | |
| 38 | ifeq ($(CONFIG_CPU_XSCALE),y) |
| 39 | OBJS += head-xscale.o |
| 40 | endif |
| 41 | |
Eric Miao | 9c3fca2 | 2010-06-23 09:27:32 +0800 | [diff] [blame] | 42 | ifeq ($(CONFIG_PXA_SHARPSL_DETECT_MACH_ID),y) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | OBJS += head-sharpsl.o |
| 44 | endif |
| 45 | |
Catalin Marinas | 2658485 | 2009-05-30 14:00:18 +0100 | [diff] [blame] | 46 | ifeq ($(CONFIG_CPU_ENDIAN_BE32),y) |
Hyok S. Choi | f12d0d7 | 2006-09-26 17:36:37 +0900 | [diff] [blame] | 47 | ifeq ($(CONFIG_CPU_CP15),y) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | OBJS += big-endian.o |
Hyok S. Choi | f12d0d7 | 2006-09-26 17:36:37 +0900 | [diff] [blame] | 49 | else |
| 50 | # The endian should be set by h/w design. |
| 51 | endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | endif |
| 53 | |
Laurent Pinchart | bf98c1e | 2013-11-09 13:33:48 +0100 | [diff] [blame] | 54 | ifeq ($(CONFIG_ARCH_SHMOBILE_LEGACY),y) |
Kuninori Morimoto | 9a4af11 | 2010-12-01 07:45:00 +0100 | [diff] [blame] | 55 | OBJS += head-shmobile.o |
| 56 | endif |
| 57 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | # |
| 59 | # We now have a PIC decompressor implementation. Decompressors running |
| 60 | # from RAM should not define ZTEXTADDR. Decompressors running directly |
| 61 | # from ROM or Flash must define ZTEXTADDR (preferably via the config) |
| 62 | # FIXME: Previous assignment to ztextaddr-y is lost here. See SHARK |
| 63 | ifeq ($(CONFIG_ZBOOT_ROM),y) |
| 64 | ZTEXTADDR := $(CONFIG_ZBOOT_ROM_TEXT) |
| 65 | ZBSSADDR := $(CONFIG_ZBOOT_ROM_BSS) |
| 66 | else |
| 67 | ZTEXTADDR := 0 |
Nicolas Pitre | 3bd2cbb | 2011-04-21 21:45:08 -0400 | [diff] [blame] | 68 | ZBSSADDR := ALIGN(8) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | endif |
| 70 | |
Russell King | c79bf92 | 2014-06-17 15:00:54 +0100 | [diff] [blame] | 71 | CPPFLAGS_vmlinux.lds := -DTEXT_START="$(ZTEXTADDR)" -DBSS_START="$(ZBSSADDR)" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
Albin Tonnerre | e7db7b4 | 2010-01-08 14:42:43 -0800 | [diff] [blame] | 73 | suffix_$(CONFIG_KERNEL_GZIP) = gzip |
| 74 | suffix_$(CONFIG_KERNEL_LZO) = lzo |
Albin Tonnerre | 6e8699f | 2010-04-03 11:40:28 +0100 | [diff] [blame] | 75 | suffix_$(CONFIG_KERNEL_LZMA) = lzma |
Imre Kaloz | a7f464f | 2012-01-26 13:08:57 +0100 | [diff] [blame] | 76 | suffix_$(CONFIG_KERNEL_XZ) = xzkern |
Kyungsik Lee | f9b493a | 2013-07-08 16:01:48 -0700 | [diff] [blame] | 77 | suffix_$(CONFIG_KERNEL_LZ4) = lz4 |
Albin Tonnerre | e7db7b4 | 2010-01-08 14:42:43 -0800 | [diff] [blame] | 78 | |
Nicolas Pitre | b90b9a3 | 2011-09-13 22:37:07 -0400 | [diff] [blame] | 79 | # Borrowed libfdt files for the ATAG compatibility mode |
| 80 | |
| 81 | libfdt := fdt_rw.c fdt_ro.c fdt_wip.c fdt.c |
| 82 | libfdt_hdrs := fdt.h libfdt.h libfdt_internal.h |
| 83 | |
| 84 | libfdt_objs := $(addsuffix .o, $(basename $(libfdt))) |
| 85 | |
| 86 | $(addprefix $(obj)/,$(libfdt) $(libfdt_hdrs)): $(obj)/%: $(srctree)/scripts/dtc/libfdt/% |
| 87 | $(call cmd,shipped) |
| 88 | |
| 89 | $(addprefix $(obj)/,$(libfdt_objs) atags_to_fdt.o): \ |
| 90 | $(addprefix $(obj)/,$(libfdt_hdrs)) |
| 91 | |
| 92 | ifeq ($(CONFIG_ARM_ATAG_DTB_COMPAT),y) |
| 93 | OBJS += $(libfdt_objs) atags_to_fdt.o |
| 94 | endif |
| 95 | |
Albin Tonnerre | e7db7b4 | 2010-01-08 14:42:43 -0800 | [diff] [blame] | 96 | targets := vmlinux vmlinux.lds \ |
| 97 | piggy.$(suffix_y) piggy.$(suffix_y).o \ |
Kim Phillips | 017f161 | 2013-11-06 05:15:24 +0100 | [diff] [blame] | 98 | lib1funcs.o lib1funcs.S ashldi3.o ashldi3.S bswapsdi2.o \ |
| 99 | bswapsdi2.S font.o font.c head.o misc.o $(OBJS) |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 100 | |
Magnus Damm | f1b957d | 2010-07-28 05:46:21 +0100 | [diff] [blame] | 101 | # Make sure files are removed during clean |
Kyungsik Lee | f9b493a | 2013-07-08 16:01:48 -0700 | [diff] [blame] | 102 | extra-y += piggy.gzip piggy.lzo piggy.lzma piggy.xzkern piggy.lz4 \ |
Kim Phillips | 017f161 | 2013-11-06 05:15:24 +0100 | [diff] [blame] | 103 | lib1funcs.S ashldi3.S bswapsdi2.S $(libfdt) $(libfdt_hdrs) \ |
Russell King | c79bf92 | 2014-06-17 15:00:54 +0100 | [diff] [blame] | 104 | hyp-stub.S |
Magnus Damm | f1b957d | 2010-07-28 05:46:21 +0100 | [diff] [blame] | 105 | |
Arnd Bergmann | 8c36a75 | 2015-05-26 15:39:36 +0100 | [diff] [blame] | 106 | KBUILD_CFLAGS += -DDISABLE_BRANCH_PROFILING |
| 107 | |
Steven Rostedt | 606576c | 2008-10-06 19:06:12 -0400 | [diff] [blame] | 108 | ifeq ($(CONFIG_FUNCTION_TRACER),y) |
Abhishek Sagar | 014c257 | 2008-05-31 14:23:50 +0530 | [diff] [blame] | 109 | ORIG_CFLAGS := $(KBUILD_CFLAGS) |
| 110 | KBUILD_CFLAGS = $(subst -pg, , $(ORIG_CFLAGS)) |
| 111 | endif |
| 112 | |
Jonathan Austin | b8083f8 | 2013-03-04 15:17:36 +0100 | [diff] [blame] | 113 | ccflags-y := -fpic -mno-single-pic-base -fno-builtin -I$(obj) |
Arnd Bergmann | da94a82 | 2013-05-31 22:50:47 +0100 | [diff] [blame] | 114 | asflags-y := -DZIMAGE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | |
Nicolas Pitre | 5ffb04f | 2011-06-12 01:07:33 -0400 | [diff] [blame] | 116 | # Supply kernel BSS size to the decompressor via a linker symbol. |
Janusz Krzysztofik | 1ec332a | 2011-12-01 22:45:47 +0100 | [diff] [blame] | 117 | KBSS_SZ = $(shell $(CROSS_COMPILE)size $(obj)/../../../../vmlinux | \ |
| 118 | awk 'END{print $$3}') |
Nicolas Pitre | 5ffb04f | 2011-06-12 01:07:33 -0400 | [diff] [blame] | 119 | LDFLAGS_vmlinux = --defsym _kernel_bss_size=$(KBSS_SZ) |
Russell King | 9e84ed6 | 2010-09-09 22:39:41 +0100 | [diff] [blame] | 120 | # Supply ZRELADDR to the decompressor via a linker symbol. |
| 121 | ifneq ($(CONFIG_AUTO_ZRELADDR),y) |
Nicolas Pitre | d239b1d | 2011-02-21 04:57:38 +0100 | [diff] [blame] | 122 | LDFLAGS_vmlinux += --defsym zreladdr=$(ZRELADDR) |
Russell King | 9e84ed6 | 2010-09-09 22:39:41 +0100 | [diff] [blame] | 123 | endif |
Catalin Marinas | 2658485 | 2009-05-30 14:00:18 +0100 | [diff] [blame] | 124 | ifeq ($(CONFIG_CPU_ENDIAN_BE8),y) |
| 125 | LDFLAGS_vmlinux += --be8 |
| 126 | endif |
Albin Tonnerre | e7db7b4 | 2010-01-08 14:42:43 -0800 | [diff] [blame] | 127 | # ? |
| 128 | LDFLAGS_vmlinux += -p |
| 129 | # Report unresolved symbol references |
| 130 | LDFLAGS_vmlinux += --no-undefined |
| 131 | # Delete all temporary local symbols |
| 132 | LDFLAGS_vmlinux += -X |
| 133 | # Next argument is a linker script |
| 134 | LDFLAGS_vmlinux += -T |
| 135 | |
| 136 | # For __aeabi_uidivmod |
| 137 | lib1funcs = $(obj)/lib1funcs.o |
| 138 | |
Nicolas Pitre | 63d1514 | 2011-09-14 00:16:21 -0400 | [diff] [blame] | 139 | $(obj)/lib1funcs.S: $(srctree)/arch/$(SRCARCH)/lib/lib1funcs.S |
Albin Tonnerre | e7db7b4 | 2010-01-08 14:42:43 -0800 | [diff] [blame] | 140 | $(call cmd,shipped) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | |
Imre Kaloz | a7f464f | 2012-01-26 13:08:57 +0100 | [diff] [blame] | 142 | # For __aeabi_llsl |
| 143 | ashldi3 = $(obj)/ashldi3.o |
| 144 | |
| 145 | $(obj)/ashldi3.S: $(srctree)/arch/$(SRCARCH)/lib/ashldi3.S |
| 146 | $(call cmd,shipped) |
| 147 | |
Kim Phillips | 017f161 | 2013-11-06 05:15:24 +0100 | [diff] [blame] | 148 | # For __bswapsi2, __bswapdi2 |
| 149 | bswapsdi2 = $(obj)/bswapsdi2.o |
| 150 | |
| 151 | $(obj)/bswapsdi2.S: $(srctree)/arch/$(SRCARCH)/lib/bswapsdi2.S |
| 152 | $(call cmd,shipped) |
| 153 | |
Nicolas Pitre | 8d7e4cc | 2011-04-27 14:54:39 -0400 | [diff] [blame] | 154 | # We need to prevent any GOTOFF relocs being used with references |
| 155 | # to symbols in the .bss section since we cannot relocate them |
| 156 | # independently from the rest at run time. This can be achieved by |
| 157 | # ensuring that no private .bss symbols exist, as global symbols |
| 158 | # always have a GOT entry which is what we need. |
| 159 | # The .data section is already discarded by the linker script so no need |
| 160 | # to bother about it here. |
| 161 | check_for_bad_syms = \ |
| 162 | bad_syms=$$($(CROSS_COMPILE)nm $@ | sed -n 's/^.\{8\} [bc] \(.*\)/\1/p') && \ |
| 163 | [ -z "$$bad_syms" ] || \ |
| 164 | ( echo "following symbols must have non local/private scope:" >&2; \ |
| 165 | echo "$$bad_syms" >&2; rm -f $@; false ) |
| 166 | |
Sascha Hauer | 60aac93 | 2011-08-17 14:22:11 +0100 | [diff] [blame] | 167 | check_for_multiple_zreladdr = \ |
Rabin Vincent | 4bdad98 | 2011-10-04 14:33:34 +0100 | [diff] [blame] | 168 | if [ $(words $(ZRELADDR)) -gt 1 -a "$(CONFIG_AUTO_ZRELADDR)" = "" ]; then \ |
Sascha Hauer | 60aac93 | 2011-08-17 14:22:11 +0100 | [diff] [blame] | 169 | echo 'multiple zreladdrs: $(ZRELADDR)'; \ |
| 170 | echo 'This needs CONFIG_AUTO_ZRELADDR to be set'; \ |
| 171 | false; \ |
| 172 | fi |
| 173 | |
Albin Tonnerre | e7db7b4 | 2010-01-08 14:42:43 -0800 | [diff] [blame] | 174 | $(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.$(suffix_y).o \ |
Kim Phillips | 017f161 | 2013-11-06 05:15:24 +0100 | [diff] [blame] | 175 | $(addprefix $(obj)/, $(OBJS)) $(lib1funcs) $(ashldi3) \ |
| 176 | $(bswapsdi2) FORCE |
Sascha Hauer | 60aac93 | 2011-08-17 14:22:11 +0100 | [diff] [blame] | 177 | @$(check_for_multiple_zreladdr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | $(call if_changed,ld) |
Nicolas Pitre | 8d7e4cc | 2011-04-27 14:54:39 -0400 | [diff] [blame] | 179 | @$(check_for_bad_syms) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
Albin Tonnerre | e7db7b4 | 2010-01-08 14:42:43 -0800 | [diff] [blame] | 181 | $(obj)/piggy.$(suffix_y): $(obj)/../Image FORCE |
| 182 | $(call if_changed,$(suffix_y)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | |
Albin Tonnerre | e7db7b4 | 2010-01-08 14:42:43 -0800 | [diff] [blame] | 184 | $(obj)/piggy.$(suffix_y).o: $(obj)/piggy.$(suffix_y) FORCE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | |
Russell King | 4486b86 | 2007-06-03 18:54:42 +0100 | [diff] [blame] | 186 | CFLAGS_font.o := -Dstatic= |
| 187 | |
| 188 | $(obj)/font.c: $(FONTC) |
| 189 | $(call cmd,shipped) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | |
Dave Martin | 424e599 | 2012-02-10 18:07:07 -0800 | [diff] [blame] | 191 | $(obj)/hyp-stub.S: $(srctree)/arch/$(SRCARCH)/kernel/hyp-stub.S |
| 192 | $(call cmd,shipped) |