Makefile 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. # SPDX-License-Identifier: GPL-2.0
  2. OBJECT_FILES_NON_STANDARD := y
  3. purgatory-y := purgatory.o stack.o setup-x86_$(BITS).o sha256.o entry64.o string.o
  4. targets += $(purgatory-y)
  5. PURGATORY_OBJS = $(addprefix $(obj)/,$(purgatory-y))
  6. $(obj)/string.o: $(srctree)/arch/x86/boot/compressed/string.c FORCE
  7. $(call if_changed_rule,cc_o_c)
  8. $(obj)/sha256.o: $(srctree)/lib/crypto/sha256.c FORCE
  9. $(call if_changed_rule,cc_o_c)
  10. CFLAGS_sha256.o := -D__DISABLE_EXPORTS
  11. # When profile-guided optimization is enabled, llvm emits two different
  12. # overlapping text sections, which is not supported by kexec. Remove profile
  13. # optimization flags.
  14. KBUILD_CFLAGS := $(filter-out -fprofile-sample-use=% -fprofile-use=%,$(KBUILD_CFLAGS))
  15. # When LTO is enabled, llvm emits many text sections, which is not supported
  16. # by kexec. Remove -flto=* flags.
  17. KBUILD_CFLAGS := $(filter-out $(CC_FLAGS_LTO),$(KBUILD_CFLAGS))
  18. # When linking purgatory.ro with -r unresolved symbols are not checked,
  19. # also link a purgatory.chk binary without -r to check for unresolved symbols.
  20. PURGATORY_LDFLAGS := -e purgatory_start -z nodefaultlib
  21. LDFLAGS_purgatory.ro := -r $(PURGATORY_LDFLAGS)
  22. LDFLAGS_purgatory.chk := $(PURGATORY_LDFLAGS)
  23. targets += purgatory.ro purgatory.chk
  24. # Sanitizer, etc. runtimes are unavailable and cannot be linked here.
  25. GCOV_PROFILE := n
  26. KASAN_SANITIZE := n
  27. UBSAN_SANITIZE := n
  28. KCSAN_SANITIZE := n
  29. KMSAN_SANITIZE := n
  30. KCOV_INSTRUMENT := n
  31. # These are adjustments to the compiler flags used for objects that
  32. # make up the standalone purgatory.ro
  33. PURGATORY_CFLAGS_REMOVE := -mcmodel=kernel
  34. PURGATORY_CFLAGS := -mcmodel=large -ffreestanding -fno-zero-initialized-in-bss -g0
  35. PURGATORY_CFLAGS += $(DISABLE_STACKLEAK_PLUGIN) -DDISABLE_BRANCH_PROFILING
  36. PURGATORY_CFLAGS += -fno-stack-protector
  37. # Default KBUILD_CFLAGS can have -pg option set when FTRACE is enabled. That
  38. # in turn leaves some undefined symbols like __fentry__ in purgatory and not
  39. # sure how to relocate those.
  40. ifdef CONFIG_FUNCTION_TRACER
  41. PURGATORY_CFLAGS_REMOVE += $(CC_FLAGS_FTRACE)
  42. endif
  43. ifdef CONFIG_STACKPROTECTOR
  44. PURGATORY_CFLAGS_REMOVE += -fstack-protector
  45. endif
  46. ifdef CONFIG_STACKPROTECTOR_STRONG
  47. PURGATORY_CFLAGS_REMOVE += -fstack-protector-strong
  48. endif
  49. ifdef CONFIG_RETPOLINE
  50. PURGATORY_CFLAGS_REMOVE += $(RETPOLINE_CFLAGS)
  51. endif
  52. ifdef CONFIG_CFI_CLANG
  53. PURGATORY_CFLAGS_REMOVE += $(CC_FLAGS_CFI)
  54. endif
  55. CFLAGS_REMOVE_purgatory.o += $(PURGATORY_CFLAGS_REMOVE)
  56. CFLAGS_purgatory.o += $(PURGATORY_CFLAGS)
  57. CFLAGS_REMOVE_sha256.o += $(PURGATORY_CFLAGS_REMOVE)
  58. CFLAGS_sha256.o += $(PURGATORY_CFLAGS)
  59. CFLAGS_REMOVE_string.o += $(PURGATORY_CFLAGS_REMOVE)
  60. CFLAGS_string.o += $(PURGATORY_CFLAGS)
  61. asflags-remove-y += $(foreach x, -g -gdwarf-4 -gdwarf-5, $(x) -Wa,$(x))
  62. $(obj)/purgatory.ro: $(PURGATORY_OBJS) FORCE
  63. $(call if_changed,ld)
  64. $(obj)/purgatory.chk: $(obj)/purgatory.ro FORCE
  65. $(call if_changed,ld)
  66. $(obj)/kexec-purgatory.o: $(obj)/purgatory.ro $(obj)/purgatory.chk
  67. obj-y += kexec-purgatory.o