blob: 2c835e356349b9284b6b6997fff19208b6dd1b61 [file] [log] [blame]
Vivek Goyal8fc5b4d2014-08-08 14:26:02 -07001purgatory-y := purgatory.o stack.o setup-x86_$(BITS).o sha256.o entry64.o string.o
2
3targets += $(purgatory-y)
4PURGATORY_OBJS = $(addprefix $(obj)/,$(purgatory-y))
5
6LDFLAGS_purgatory.ro := -e purgatory_start -r --no-undefined -nostdlib -z nodefaultlib
7targets += purgatory.ro
8
9# Default KBUILD_CFLAGS can have -pg option set when FTRACE is enabled. That
10# in turn leaves some undefined symbols like __fentry__ in purgatory and not
11# sure how to relocate those. Like kexec-tools, use custom flags.
12
13KBUILD_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 -070014KBUILD_CFLAGS += -m$(BITS)
Vivek Goyal8fc5b4d2014-08-08 14:26:02 -070015
16$(obj)/purgatory.ro: $(PURGATORY_OBJS) FORCE
17 $(call if_changed,ld)
18
19targets += kexec-purgatory.c
20
Baoquan He887f4f82014-10-13 15:53:37 -070021CMD_BIN2C = $(objtree)/scripts/basic/bin2c
Vivek Goyal8fc5b4d2014-08-08 14:26:02 -070022quiet_cmd_bin2c = BIN2C $@
Baoquan He887f4f82014-10-13 15:53:37 -070023 cmd_bin2c = $(CMD_BIN2C) kexec_purgatory < $< > $@
Vivek Goyal8fc5b4d2014-08-08 14:26:02 -070024
25$(obj)/kexec-purgatory.c: $(obj)/purgatory.ro FORCE
26 $(call if_changed,bin2c)
WANG Chao3ea4b8e2014-10-14 12:46:58 +080027 @:
Vivek Goyal8fc5b4d2014-08-08 14:26:02 -070028
29
Vivek Goyal74ca3172014-08-29 15:18:46 -070030obj-$(CONFIG_KEXEC_FILE) += kexec-purgatory.o