blob: ac58c1616408b515813403389f9d0c91bc19124c [file] [log] [blame]
Josh Poimboeufc0dd6716862016-02-28 22:22:34 -06001OBJECT_FILES_NON_STANDARD := y
2
Vivek Goyal8fc5b4d2014-08-08 14:26:02 -07003purgatory-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
Emese Revfy543c37c2016-05-24 00:11:37 +020011KCOV_INSTRUMENT := n
12
Vivek Goyal8fc5b4d2014-08-08 14:26:02 -070013# 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
Vivek Goyal4df41852014-08-29 15:18:55 -070018KBUILD_CFLAGS += -m$(BITS)
Vivek Goyal8fc5b4d2014-08-08 14:26:02 -070019
20$(obj)/purgatory.ro: $(PURGATORY_OBJS) FORCE
21 $(call if_changed,ld)
22
23targets += kexec-purgatory.c
24
Baoquan He887f4f82014-10-13 15:53:37 -070025CMD_BIN2C = $(objtree)/scripts/basic/bin2c
Vivek Goyal8fc5b4d2014-08-08 14:26:02 -070026quiet_cmd_bin2c = BIN2C $@
Baoquan He887f4f82014-10-13 15:53:37 -070027 cmd_bin2c = $(CMD_BIN2C) kexec_purgatory < $< > $@
Vivek Goyal8fc5b4d2014-08-08 14:26:02 -070028
29$(obj)/kexec-purgatory.c: $(obj)/purgatory.ro FORCE
30 $(call if_changed,bin2c)
Vivek Goyal8fc5b4d2014-08-08 14:26:02 -070031
Vivek Goyal74ca3172014-08-29 15:18:46 -070032obj-$(CONFIG_KEXEC_FILE) += kexec-purgatory.o