Makefile 1.2 KB
Newer Older
1
# SPDX-License-Identifier: GPL-2.0
2 3
OBJECT_FILES_NON_STANDARD := y

4 5 6 7 8 9 10 11
purgatory-y := purgatory.o stack.o setup-x86_$(BITS).o sha256.o entry64.o string.o

targets += $(purgatory-y)
PURGATORY_OBJS = $(addprefix $(obj)/,$(purgatory-y))

LDFLAGS_purgatory.ro := -e purgatory_start -r --no-undefined -nostdlib -z nodefaultlib
targets += purgatory.ro

12
KASAN_SANITIZE	:= n
E
Emese Revfy 已提交
13 14
KCOV_INSTRUMENT := n

15 16 17 18 19
# Default KBUILD_CFLAGS can have -pg option set when FTRACE is enabled. That
# in turn leaves some undefined symbols like __fentry__ in purgatory and not
# sure how to relocate those. Like kexec-tools, use custom flags.

KBUILD_CFLAGS := -fno-strict-aliasing -Wall -Wstrict-prototypes -fno-zero-initialized-in-bss -fno-builtin -ffreestanding -c -MD -Os -mcmodel=large
20
KBUILD_CFLAGS += -m$(BITS)
21
KBUILD_CFLAGS += $(call cc-option,-fno-PIE)
22 23 24 25 26 27

$(obj)/purgatory.ro: $(PURGATORY_OBJS) FORCE
		$(call if_changed,ld)

targets += kexec-purgatory.c

28
CMD_BIN2C = $(objtree)/scripts/basic/bin2c
29
quiet_cmd_bin2c = BIN2C   $@
30
      cmd_bin2c = $(CMD_BIN2C) kexec_purgatory < $< > $@
31 32 33 34

$(obj)/kexec-purgatory.c: $(obj)/purgatory.ro FORCE
	$(call if_changed,bin2c)

35
obj-$(CONFIG_KEXEC_FILE)	+= kexec-purgatory.o