Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[deliverable/linux.git] / arch / x86 / purgatory / Makefile
CommitLineData
c0dd6716
JP
1OBJECT_FILES_NON_STANDARD := y
2
8fc5b4d4
VG
3purgatory-y := purgatory.o stack.o setup-x86_$(BITS).o sha256.o entry64.o string.o
4
5targets += $(purgatory-y)
6PURGATORY_OBJS = $(addprefix $(obj)/,$(purgatory-y))
7
8LDFLAGS_purgatory.ro := -e purgatory_start -r --no-undefined -nostdlib -z nodefaultlib
9targets += purgatory.ro
10
543c37cb
ER
11KCOV_INSTRUMENT := n
12
8fc5b4d4
VG
13# Default KBUILD_CFLAGS can have -pg option set when FTRACE is enabled. That
14# in turn leaves some undefined symbols like __fentry__ in purgatory and not
15# sure how to relocate those. Like kexec-tools, use custom flags.
16
17KBUILD_CFLAGS := -fno-strict-aliasing -Wall -Wstrict-prototypes -fno-zero-initialized-in-bss -fno-builtin -ffreestanding -c -MD -Os -mcmodel=large
4df4185a 18KBUILD_CFLAGS += -m$(BITS)
8fc5b4d4
VG
19
20$(obj)/purgatory.ro: $(PURGATORY_OBJS) FORCE
21 $(call if_changed,ld)
22
23targets += kexec-purgatory.c
24
887f4f86 25CMD_BIN2C = $(objtree)/scripts/basic/bin2c
8fc5b4d4 26quiet_cmd_bin2c = BIN2C $@
887f4f86 27 cmd_bin2c = $(CMD_BIN2C) kexec_purgatory < $< > $@
8fc5b4d4
VG
28
29$(obj)/kexec-purgatory.c: $(obj)/purgatory.ro FORCE
30 $(call if_changed,bin2c)
8fc5b4d4 31
74ca317c 32obj-$(CONFIG_KEXEC_FILE) += kexec-purgatory.o
This page took 0.118321 seconds and 5 git commands to generate.