Makefile 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. #
  2. # arch/x86/boot/Makefile
  3. #
  4. # This file is subject to the terms and conditions of the GNU General Public
  5. # License. See the file "COPYING" in the main directory of this archive
  6. # for more details.
  7. #
  8. # Copyright (C) 1994 by Linus Torvalds
  9. # Changed by many, many contributors over the years.
  10. #
  11. # Sanitizer runtimes are unavailable and cannot be linked for early boot code.
  12. KASAN_SANITIZE := n
  13. KCSAN_SANITIZE := n
  14. KMSAN_SANITIZE := n
  15. OBJECT_FILES_NON_STANDARD := y
  16. # Kernel does not boot with kcov instrumentation here.
  17. # One of the problems observed was insertion of __sanitizer_cov_trace_pc()
  18. # callback into middle of per-cpu data enabling code. Thus the callback observed
  19. # inconsistent state and crashed. We are interested mostly in syscall coverage,
  20. # so boot code is not interesting anyway.
  21. KCOV_INSTRUMENT := n
  22. # If you want to preset the SVGA mode, uncomment the next line and
  23. # set SVGA_MODE to whatever number you want.
  24. # Set it to -DSVGA_MODE=NORMAL_VGA if you just want the EGA/VGA mode.
  25. # The number is the same as you would ordinarily press at bootup.
  26. SVGA_MODE := -DSVGA_MODE=NORMAL_VGA
  27. targets := vmlinux.bin setup.bin setup.elf bzImage
  28. targets += fdimage fdimage144 fdimage288 image.iso hdimage
  29. subdir- := compressed
  30. setup-y += a20.o bioscall.o cmdline.o copy.o cpu.o cpuflags.o cpucheck.o
  31. setup-y += early_serial_console.o edd.o header.o main.o memory.o
  32. setup-y += pm.o pmjump.o printf.o regs.o string.o tty.o video.o
  33. setup-y += video-mode.o version.o
  34. setup-$(CONFIG_X86_APM_BOOT) += apm.o
  35. # The link order of the video-*.o modules can matter. In particular,
  36. # video-vga.o *must* be listed first, followed by video-vesa.o.
  37. # Hardware-specific drivers should follow in the order they should be
  38. # probed, and video-bios.o should typically be last.
  39. setup-y += video-vga.o
  40. setup-y += video-vesa.o
  41. setup-y += video-bios.o
  42. targets += $(setup-y)
  43. hostprogs := tools/build
  44. hostprogs += mkcpustr
  45. HOST_EXTRACFLAGS += -I$(srctree)/tools/include \
  46. -include include/generated/autoconf.h \
  47. -D__EXPORTED_HEADERS__
  48. ifdef CONFIG_X86_FEATURE_NAMES
  49. $(obj)/cpu.o: $(obj)/cpustr.h
  50. quiet_cmd_cpustr = CPUSTR $@
  51. cmd_cpustr = $(obj)/mkcpustr > $@
  52. $(obj)/cpustr.h: $(obj)/mkcpustr FORCE
  53. $(call if_changed,cpustr)
  54. endif
  55. targets += cpustr.h
  56. # ---------------------------------------------------------------------------
  57. KBUILD_CFLAGS := $(REALMODE_CFLAGS) -D_SETUP
  58. KBUILD_AFLAGS := $(KBUILD_CFLAGS) -D__ASSEMBLY__
  59. KBUILD_CFLAGS += $(call cc-option,-fmacro-prefix-map=$(srctree)/=)
  60. KBUILD_CFLAGS += -fno-asynchronous-unwind-tables
  61. GCOV_PROFILE := n
  62. UBSAN_SANITIZE := n
  63. $(obj)/bzImage: asflags-y := $(SVGA_MODE)
  64. quiet_cmd_image = BUILD $@
  65. silent_redirect_image = >/dev/null
  66. cmd_image = $(obj)/tools/build $(obj)/setup.bin $(obj)/vmlinux.bin \
  67. $(obj)/zoffset.h $@ $($(quiet)redirect_image)
  68. $(obj)/bzImage: $(obj)/setup.bin $(obj)/vmlinux.bin $(obj)/tools/build FORCE
  69. $(call if_changed,image)
  70. @$(kecho) 'Kernel: $@ is ready' ' (#'$(or $(KBUILD_BUILD_VERSION),`cat .version`)')'
  71. OBJCOPYFLAGS_vmlinux.bin := -O binary -R .note -R .comment -S
  72. $(obj)/vmlinux.bin: $(obj)/compressed/vmlinux FORCE
  73. $(call if_changed,objcopy)
  74. SETUP_OBJS = $(addprefix $(obj)/,$(setup-y))
  75. sed-zoffset := -e 's/^\([0-9a-fA-F]*\) [a-zA-Z] \(startup_32\|startup_64\|efi32_stub_entry\|efi64_stub_entry\|efi_pe_entry\|efi32_pe_entry\|input_data\|kernel_info\|_end\|_ehead\|_text\|z_.*\)$$/\#define ZO_\2 0x\1/p'
  76. quiet_cmd_zoffset = ZOFFSET $@
  77. cmd_zoffset = $(NM) $< | sed -n $(sed-zoffset) > $@
  78. targets += zoffset.h
  79. $(obj)/zoffset.h: $(obj)/compressed/vmlinux FORCE
  80. $(call if_changed,zoffset)
  81. AFLAGS_header.o += -I$(objtree)/$(obj)
  82. $(obj)/header.o: $(obj)/zoffset.h
  83. LDFLAGS_setup.elf := -m elf_i386 -z noexecstack -T
  84. $(obj)/setup.elf: $(src)/setup.ld $(SETUP_OBJS) FORCE
  85. $(call if_changed,ld)
  86. OBJCOPYFLAGS_setup.bin := -O binary
  87. $(obj)/setup.bin: $(obj)/setup.elf FORCE
  88. $(call if_changed,objcopy)
  89. $(obj)/compressed/vmlinux: FORCE
  90. $(Q)$(MAKE) $(build)=$(obj)/compressed $@
  91. # Set this if you want to pass append arguments to the
  92. # bzdisk/fdimage/hdimage/isoimage kernel
  93. FDARGS =
  94. # Set this if you want one or more initrds included in the image
  95. FDINITRD =
  96. imgdeps = $(obj)/bzImage $(obj)/mtools.conf $(src)/genimage.sh
  97. $(obj)/mtools.conf: $(src)/mtools.conf.in
  98. sed -e 's|@OBJ@|$(obj)|g' < $< > $@
  99. targets += mtools.conf
  100. # genimage.sh requires bash, but it also has a bunch of other
  101. # external dependencies.
  102. quiet_cmd_genimage = GENIMAGE $3
  103. cmd_genimage = $(BASH) $(srctree)/$(src)/genimage.sh $2 $3 $(obj)/bzImage \
  104. $(obj)/mtools.conf '$(FDARGS)' $(FDINITRD)
  105. PHONY += bzdisk fdimage fdimage144 fdimage288 hdimage isoimage
  106. # This requires write access to /dev/fd0
  107. # All images require syslinux to be installed; hdimage also requires
  108. # EDK2/OVMF if the kernel is compiled with the EFI stub.
  109. bzdisk: $(imgdeps)
  110. $(call cmd,genimage,bzdisk,/dev/fd0)
  111. fdimage fdimage144: $(imgdeps)
  112. $(call cmd,genimage,fdimage144,$(obj)/fdimage)
  113. @$(kecho) 'Kernel: $(obj)/fdimage is ready'
  114. fdimage288: $(imgdeps)
  115. $(call cmd,genimage,fdimage288,$(obj)/fdimage)
  116. @$(kecho) 'Kernel: $(obj)/fdimage is ready'
  117. hdimage: $(imgdeps)
  118. $(call cmd,genimage,hdimage,$(obj)/hdimage)
  119. @$(kecho) 'Kernel: $(obj)/hdimage is ready'
  120. isoimage: $(imgdeps)
  121. $(call cmd,genimage,isoimage,$(obj)/image.iso)
  122. @$(kecho) 'Kernel: $(obj)/image.iso is ready'