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