~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/s390/boot/Makefile

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 # SPDX-License-Identifier: GPL-2.0
  2 #
  3 # Makefile for the linux s390-specific parts of the memory manager.
  4 #
  5 
  6 # Tooling runtimes are unavailable and cannot be linked for early boot code
  7 KCOV_INSTRUMENT := n
  8 GCOV_PROFILE := n
  9 UBSAN_SANITIZE := n
 10 KASAN_SANITIZE := n
 11 KCSAN_SANITIZE := n
 12 KMSAN_SANITIZE := n
 13 
 14 KBUILD_AFLAGS := $(KBUILD_AFLAGS_DECOMPRESSOR)
 15 KBUILD_CFLAGS := $(KBUILD_CFLAGS_DECOMPRESSOR)
 16 
 17 #
 18 # Use minimum architecture for als.c to be able to print an error
 19 # message if the kernel is started on a machine which is too old
 20 #
 21 ifndef CONFIG_CC_IS_CLANG
 22 CC_FLAGS_MARCH_MINIMUM := -march=z900
 23 else
 24 CC_FLAGS_MARCH_MINIMUM := -march=z10
 25 endif
 26 
 27 ifneq ($(CC_FLAGS_MARCH),$(CC_FLAGS_MARCH_MINIMUM))
 28 AFLAGS_REMOVE_head.o            += $(CC_FLAGS_MARCH)
 29 AFLAGS_head.o                   += $(CC_FLAGS_MARCH_MINIMUM)
 30 AFLAGS_REMOVE_mem.o             += $(CC_FLAGS_MARCH)
 31 AFLAGS_mem.o                    += $(CC_FLAGS_MARCH_MINIMUM)
 32 CFLAGS_REMOVE_als.o             += $(CC_FLAGS_MARCH)
 33 CFLAGS_als.o                    += $(CC_FLAGS_MARCH_MINIMUM)
 34 CFLAGS_REMOVE_sclp_early_core.o += $(CC_FLAGS_MARCH)
 35 CFLAGS_sclp_early_core.o        += $(CC_FLAGS_MARCH_MINIMUM)
 36 endif
 37 
 38 CFLAGS_sclp_early_core.o += -I$(srctree)/drivers/s390/char
 39 
 40 obj-y   := head.o als.o startup.o physmem_info.o ipl_parm.o ipl_report.o vmem.o
 41 obj-y   += string.o ebcdic.o sclp_early_core.o mem.o ipl_vmparm.o cmdline.o
 42 obj-y   += version.o pgm_check_info.o ctype.o ipl_data.o relocs.o alternative.o uv.o
 43 obj-$(CONFIG_RANDOMIZE_BASE)    += kaslr.o
 44 obj-y   += $(if $(CONFIG_KERNEL_UNCOMPRESSED),,decompressor.o) info.o
 45 obj-$(CONFIG_KERNEL_ZSTD) += clz_ctz.o
 46 obj-$(CONFIG_KMSAN) += kmsan.o
 47 obj-all := $(obj-y) piggy.o syms.o
 48 
 49 targets := bzImage section_cmp.boot.data section_cmp.boot.preserved.data $(obj-y)
 50 targets += vmlinux.lds vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2
 51 targets += vmlinux.bin.xz vmlinux.bin.lzma vmlinux.bin.lzo vmlinux.bin.lz4
 52 targets += vmlinux.bin.zst info.bin syms.bin vmlinux.syms $(obj-all)
 53 targets += relocs.S
 54 
 55 OBJECTS := $(addprefix $(obj)/,$(obj-y))
 56 OBJECTS_ALL := $(addprefix $(obj)/,$(obj-all))
 57 
 58 clean-files += vmlinux.map
 59 
 60 quiet_cmd_section_cmp = SECTCMP $*
 61 define cmd_section_cmp
 62         s1=`$(OBJDUMP) -t "$<" | grep "\s$*\s\+" | sort | \
 63                 sed -n "/0000000000000000/! s/.*\s$*\s\+//p" | sha256sum`; \
 64         s2=`$(OBJDUMP) -t "$(word 2,$^)" | grep "\s$*\s\+" | sort | \
 65                 sed -n "/0000000000000000/! s/.*\s$*\s\+//p" | sha256sum`; \
 66         if [ "$$s1" != "$$s2" ]; then \
 67                 echo "error: section $* differs between $< and $(word 2,$^)" >&2; \
 68                 exit 1; \
 69         fi; \
 70         touch $@
 71 endef
 72 
 73 $(obj)/bzImage: $(obj)/vmlinux $(obj)/section_cmp.boot.data $(obj)/section_cmp.boot.preserved.data FORCE
 74         $(call if_changed,objcopy)
 75 
 76 $(obj)/section_cmp%: vmlinux $(obj)/vmlinux FORCE
 77         $(call if_changed,section_cmp)
 78 
 79 LDFLAGS_vmlinux-$(CONFIG_LD_ORPHAN_WARN) := --orphan-handling=$(CONFIG_LD_ORPHAN_WARN_LEVEL)
 80 LDFLAGS_vmlinux := $(LDFLAGS_vmlinux-y) --oformat $(LD_BFD) -e startup $(if $(CONFIG_VMLINUX_MAP),-Map=$(obj)/vmlinux.map) --build-id=sha1 -T
 81 $(obj)/vmlinux: $(obj)/vmlinux.lds $(OBJECTS_ALL) FORCE
 82         $(call if_changed,ld)
 83 
 84 LDFLAGS_vmlinux.syms := $(LDFLAGS_vmlinux-y) --oformat $(LD_BFD) -e startup -T
 85 $(obj)/vmlinux.syms: $(obj)/vmlinux.lds $(OBJECTS) FORCE
 86         $(call if_changed,ld)
 87 
 88 quiet_cmd_dumpsyms = DUMPSYMS $<
 89 define cmd_dumpsyms
 90         $(NM) -n -S --format=bsd "$<" | sed -nE 's/^0*([0-9a-fA-F]+) 0*([0-9a-fA-F]+) [tT] ([^ ]*)$$/\1 \2 \3/p' | tr '\n' '\0' > "$@"
 91 endef
 92 
 93 $(obj)/syms.bin: $(obj)/vmlinux.syms FORCE
 94         $(call if_changed,dumpsyms)
 95 
 96 OBJCOPYFLAGS_syms.o := -I binary -O elf64-s390 -B s390:64-bit --rename-section .data=.decompressor.syms
 97 $(obj)/syms.o: $(obj)/syms.bin FORCE
 98         $(call if_changed,objcopy)
 99 
100 OBJCOPYFLAGS_info.bin := -O binary --only-section=.vmlinux.info --set-section-flags .vmlinux.info=alloc,load
101 $(obj)/info.bin: vmlinux FORCE
102         $(call if_changed,objcopy)
103 
104 OBJCOPYFLAGS_info.o := -I binary -O elf64-s390 -B s390:64-bit --rename-section .data=.vmlinux.info
105 $(obj)/info.o: $(obj)/info.bin FORCE
106         $(call if_changed,objcopy)
107 
108 OBJCOPYFLAGS_vmlinux.bin := -O binary --remove-section=.comment --remove-section=.vmlinux.info -S
109 $(obj)/vmlinux.bin: vmlinux FORCE
110         $(call if_changed,objcopy)
111 
112 CMD_RELOCS=arch/s390/tools/relocs
113 quiet_cmd_relocs = RELOCS  $@
114         cmd_relocs = $(CMD_RELOCS) $< > $@
115 $(obj)/relocs.S: vmlinux FORCE
116         $(call if_changed,relocs)
117 
118 suffix-$(CONFIG_KERNEL_GZIP)  := .gz
119 suffix-$(CONFIG_KERNEL_BZIP2) := .bz2
120 suffix-$(CONFIG_KERNEL_LZ4)  := .lz4
121 suffix-$(CONFIG_KERNEL_LZMA)  := .lzma
122 suffix-$(CONFIG_KERNEL_LZO)  := .lzo
123 suffix-$(CONFIG_KERNEL_XZ)  := .xz
124 suffix-$(CONFIG_KERNEL_ZSTD)  := .zst
125 
126 $(obj)/vmlinux.bin.gz: $(obj)/vmlinux.bin FORCE
127         $(call if_changed,gzip)
128 $(obj)/vmlinux.bin.bz2: $(obj)/vmlinux.bin FORCE
129         $(call if_changed,bzip2_with_size)
130 $(obj)/vmlinux.bin.lz4: $(obj)/vmlinux.bin FORCE
131         $(call if_changed,lz4_with_size)
132 $(obj)/vmlinux.bin.lzma: $(obj)/vmlinux.bin FORCE
133         $(call if_changed,lzma_with_size)
134 $(obj)/vmlinux.bin.lzo: $(obj)/vmlinux.bin FORCE
135         $(call if_changed,lzo_with_size)
136 $(obj)/vmlinux.bin.xz: $(obj)/vmlinux.bin FORCE
137         $(call if_changed,xzkern_with_size)
138 $(obj)/vmlinux.bin.zst: $(obj)/vmlinux.bin FORCE
139         $(call if_changed,zstd22_with_size)
140 
141 OBJCOPYFLAGS_piggy.o := -I binary -O elf64-s390 -B s390:64-bit --rename-section .data=.vmlinux.bin.compressed
142 $(obj)/piggy.o: $(obj)/vmlinux.bin$(suffix-y) FORCE
143         $(call if_changed,objcopy)

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php