Merge tag 'virtio-fs-5.4' of git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi...
[sfrench/cifs-2.6.git] / arch / x86 / purgatory / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2 OBJECT_FILES_NON_STANDARD := y
3
4 purgatory-y := purgatory.o stack.o setup-x86_$(BITS).o sha256.o entry64.o string.o
5
6 targets += $(purgatory-y)
7 PURGATORY_OBJS = $(addprefix $(obj)/,$(purgatory-y))
8
9 $(obj)/string.o: $(srctree)/arch/x86/boot/compressed/string.c FORCE
10         $(call if_changed_rule,cc_o_c)
11
12 $(obj)/sha256.o: $(srctree)/lib/crypto/sha256.c FORCE
13         $(call if_changed_rule,cc_o_c)
14
15 CFLAGS_sha256.o := -D__DISABLE_EXPORTS
16
17 LDFLAGS_purgatory.ro := -e purgatory_start -r --no-undefined -nostdlib -z nodefaultlib
18 targets += purgatory.ro
19
20 KASAN_SANITIZE  := n
21 KCOV_INSTRUMENT := n
22
23 # These are adjustments to the compiler flags used for objects that
24 # make up the standalone purgatory.ro
25
26 PURGATORY_CFLAGS_REMOVE := -mcmodel=kernel
27 PURGATORY_CFLAGS := -mcmodel=large -ffreestanding -fno-zero-initialized-in-bss
28
29 # Default KBUILD_CFLAGS can have -pg option set when FTRACE is enabled. That
30 # in turn leaves some undefined symbols like __fentry__ in purgatory and not
31 # sure how to relocate those.
32 ifdef CONFIG_FUNCTION_TRACER
33 PURGATORY_CFLAGS_REMOVE         += $(CC_FLAGS_FTRACE)
34 endif
35
36 ifdef CONFIG_STACKPROTECTOR
37 PURGATORY_CFLAGS_REMOVE         += -fstack-protector
38 endif
39
40 ifdef CONFIG_STACKPROTECTOR_STRONG
41 PURGATORY_CFLAGS_REMOVE         += -fstack-protector-strong
42 endif
43
44 ifdef CONFIG_RETPOLINE
45 PURGATORY_CFLAGS_REMOVE         += $(RETPOLINE_CFLAGS)
46 endif
47
48 CFLAGS_REMOVE_purgatory.o       += $(PURGATORY_CFLAGS_REMOVE)
49 CFLAGS_purgatory.o              += $(PURGATORY_CFLAGS)
50
51 CFLAGS_REMOVE_sha256.o          += $(PURGATORY_CFLAGS_REMOVE)
52 CFLAGS_sha256.o                 += $(PURGATORY_CFLAGS)
53
54 CFLAGS_REMOVE_string.o          += $(PURGATORY_CFLAGS_REMOVE)
55 CFLAGS_string.o                 += $(PURGATORY_CFLAGS)
56
57 $(obj)/purgatory.ro: $(PURGATORY_OBJS) FORCE
58                 $(call if_changed,ld)
59
60 targets += kexec-purgatory.c
61
62 quiet_cmd_bin2c = BIN2C   $@
63       cmd_bin2c = $(objtree)/scripts/bin2c kexec_purgatory < $< > $@
64
65 $(obj)/kexec-purgatory.c: $(obj)/purgatory.ro FORCE
66         $(call if_changed,bin2c)
67
68 obj-$(CONFIG_KEXEC_FILE)        += kexec-purgatory.o