Makefile 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. purgatory-y := purgatory.o stack.o setup-x86_$(BITS).o sha256.o entry64.o string.o
  2. targets += $(purgatory-y)
  3. PURGATORY_OBJS = $(addprefix $(obj)/,$(purgatory-y))
  4. LDFLAGS_purgatory.ro := -e purgatory_start -r --no-undefined -nostdlib -z nodefaultlib
  5. targets += purgatory.ro
  6. # Default KBUILD_CFLAGS can have -pg option set when FTRACE is enabled. That
  7. # in turn leaves some undefined symbols like __fentry__ in purgatory and not
  8. # sure how to relocate those. Like kexec-tools, use custom flags.
  9. KBUILD_CFLAGS := -fno-strict-aliasing -Wall -Wstrict-prototypes -fno-zero-initialized-in-bss -fno-builtin -ffreestanding -c -MD -Os -mcmodel=large
  10. KBUILD_CFLAGS += -m$(BITS)
  11. KBUILD_CFLAGS += $(call cc-option,-fno-PIE)
  12. $(obj)/purgatory.ro: $(PURGATORY_OBJS) FORCE
  13. $(call if_changed,ld)
  14. targets += kexec-purgatory.c
  15. CMD_BIN2C = $(objtree)/scripts/basic/bin2c
  16. quiet_cmd_bin2c = BIN2C $@
  17. cmd_bin2c = $(CMD_BIN2C) kexec_purgatory < $< > $@
  18. $(obj)/kexec-purgatory.c: $(obj)/purgatory.ro FORCE
  19. $(call if_changed,bin2c)
  20. @:
  21. obj-$(CONFIG_KEXEC_FILE) += kexec-purgatory.o