blob: ffec8bb01ba8c20372b8cf4a37bd6810f054d0cc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
Thomas Gleixner96ae6ea2007-10-11 11:16:45 +02002# arch/x86/boot/Makefile
Linus Torvalds1da177e2005-04-16 15:20:36 -07003#
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
H. Peter Anvin5e47c472009-03-11 10:55:33 -07009# Changed by many, many contributors over the years.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#
11
Marco Elver40d04112019-11-14 19:03:03 +010012# Sanitizer runtimes are unavailable and cannot be linked for early boot code.
Josh Poimboeufc0dd6716862016-02-28 22:22:34 -060013KASAN_SANITIZE := n
Marco Elver40d04112019-11-14 19:03:03 +010014KCSAN_SANITIZE := n
Josh Poimboeufc0dd6716862016-02-28 22:22:34 -060015OBJECT_FILES_NON_STANDARD := y
Andrey Konovalovc63f06d2015-11-05 18:51:09 -080016
Dmitry Vyukov5c9a8752016-03-22 14:27:30 -070017# Kernel does not boot with kcov instrumentation here.
18# One of the problems observed was insertion of __sanitizer_cov_trace_pc()
19# callback into middle of per-cpu data enabling code. Thus the callback observed
20# inconsistent state and crashed. We are interested mostly in syscall coverage,
21# so boot code is not interesting anyway.
22KCOV_INSTRUMENT := n
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024# If you want to preset the SVGA mode, uncomment the next line and
25# set SVGA_MODE to whatever number you want.
26# Set it to -DSVGA_MODE=NORMAL_VGA if you just want the EGA/VGA mode.
27# The number is the same as you would ordinarily press at bootup.
28
H. Peter Anvin5e47c472009-03-11 10:55:33 -070029SVGA_MODE := -DSVGA_MODE=NORMAL_VGA
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
H. Peter Anvin5e47c472009-03-11 10:55:33 -070031targets := vmlinux.bin setup.bin setup.elf bzImage
H. Peter Anvin (Intel)f279b492021-05-10 01:28:40 -070032targets += fdimage fdimage144 fdimage288 image.iso hdimage
H. Peter Anvinf0be6c62008-02-04 16:48:00 +010033subdir- := compressed
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Kees Cookdd78b972013-10-10 17:18:13 -070035setup-y += a20.o bioscall.o cmdline.o copy.o cpu.o cpuflags.o cpucheck.o
Paolo Pisati94916302015-07-20 18:23:50 +020036setup-y += early_serial_console.o edd.o header.o main.o memory.o
Yinghai Luf4ed2872010-08-02 02:17:31 -070037setup-y += pm.o pmjump.o printf.o regs.o string.o tty.o video.o
38setup-y += video-mode.o version.o
Andi Kleena6b680762008-01-30 13:32:49 +010039setup-$(CONFIG_X86_APM_BOOT) += apm.o
H. Peter Anvin4fd06962007-07-11 12:18:56 -070040
41# The link order of the video-*.o modules can matter. In particular,
42# video-vga.o *must* be listed first, followed by video-vesa.o.
43# Hardware-specific drivers should follow in the order they should be
44# probed, and video-bios.o should typically be last.
45setup-y += video-vga.o
46setup-y += video-vesa.o
47setup-y += video-bios.o
H. Peter Anvin30c82642007-10-15 17:13:22 -070048
Sam Ravnborg3fbc5412007-07-17 22:27:22 +020049targets += $(setup-y)
Masahiro Yamada5f2fb52f2020-02-02 01:49:24 +090050hostprogs := tools/build
51hostprogs += mkcpustr
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Matt Flemingb6eea872012-10-12 11:19:59 +010053HOST_EXTRACFLAGS += -I$(srctree)/tools/include \
54 -include include/generated/autoconf.h \
H. Peter Anvin446e1c82012-03-22 11:08:18 -070055 -D__EXPORTED_HEADERS__
56
Josh Triplett9def39be2013-10-30 08:09:45 -070057ifdef CONFIG_X86_FEATURE_NAMES
H. Peter Anvinf0be6c62008-02-04 16:48:00 +010058$(obj)/cpu.o: $(obj)/cpustr.h
59
60quiet_cmd_cpustr = CPUSTR $@
61 cmd_cpustr = $(obj)/mkcpustr > $@
H. Peter Anvinf0be6c62008-02-04 16:48:00 +010062$(obj)/cpustr.h: $(obj)/mkcpustr FORCE
63 $(call if_changed,cpustr)
Josh Triplett9def39be2013-10-30 08:09:45 -070064endif
Masahiro Yamadae3c7c102020-02-15 15:32:41 +090065targets += cpustr.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67# ---------------------------------------------------------------------------
68
Paul Bolle0acba3f2016-11-03 10:47:48 +010069KBUILD_CFLAGS := $(REALMODE_CFLAGS) -D_SETUP
Sam Ravnborg222d3942007-10-15 21:59:31 +020070KBUILD_AFLAGS := $(KBUILD_CFLAGS) -D__ASSEMBLY__
Bruce Ashfield9e2276f2019-09-26 10:32:26 +010071KBUILD_CFLAGS += $(call cc-option,-fmacro-prefix-map=$(srctree)/=)
Arvind Sankar003602ad52020-02-24 18:21:28 -050072KBUILD_CFLAGS += -fno-asynchronous-unwind-tables
Peter Oberparleiter7bf99fb2009-06-17 16:28:09 -070073GCOV_PROFILE := n
Andrey Ryabininc6d30852016-01-20 15:00:55 -080074UBSAN_SANITIZE := n
H. Peter Anvin4fd06962007-07-11 12:18:56 -070075
H. Peter Anvin5e47c472009-03-11 10:55:33 -070076$(obj)/bzImage: asflags-y := $(SVGA_MODE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78quiet_cmd_image = BUILD $@
Arnd Bergmannd4601312017-07-19 14:53:03 +020079silent_redirect_image = >/dev/null
Kees Cook809373e22013-09-06 11:15:32 -070080cmd_image = $(obj)/tools/build $(obj)/setup.bin $(obj)/vmlinux.bin \
Arnd Bergmannd4601312017-07-19 14:53:03 +020081 $(obj)/zoffset.h $@ $($(quiet)redirect_image)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
H. Peter Anvin5e47c472009-03-11 10:55:33 -070083$(obj)/bzImage: $(obj)/setup.bin $(obj)/vmlinux.bin $(obj)/tools/build FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 $(call if_changed,image)
Arnd Bergmannd4601312017-07-19 14:53:03 +020085 @$(kecho) 'Kernel: $@ is ready' ' (#'`cat .version`')'
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Ian Campbell1622ac22008-02-04 16:47:56 +010087OBJCOPYFLAGS_vmlinux.bin := -O binary -R .note -R .comment -S
Linus Torvalds1da177e2005-04-16 15:20:36 -070088$(obj)/vmlinux.bin: $(obj)/compressed/vmlinux FORCE
89 $(call if_changed,objcopy)
90
H. Peter Anvin4fd06962007-07-11 12:18:56 -070091SETUP_OBJS = $(addprefix $(obj)/,$(setup-y))
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Ard Biesheuvel97aa2762020-02-12 12:18:17 +010093sed-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'
H. Peter Anvin77d1a492009-05-11 14:21:12 -070094
95quiet_cmd_zoffset = ZOFFSET $@
96 cmd_zoffset = $(NM) $< | sed -n $(sed-zoffset) > $@
97
98targets += zoffset.h
99$(obj)/zoffset.h: $(obj)/compressed/vmlinux FORCE
100 $(call if_changed,zoffset)
101
Ian Campbell099e1372008-02-13 20:54:58 +0000102
Arnd Bergmann58ab5e02016-06-15 17:45:46 +0200103AFLAGS_header.o += -I$(objtree)/$(obj)
Yinghai Lu67b66622016-04-28 17:09:06 -0700104$(obj)/header.o: $(obj)/zoffset.h
Ian Campbell099e1372008-02-13 20:54:58 +0000105
Nick Desaulniersb6c05de2022-08-10 15:24:41 -0700106LDFLAGS_setup.elf := -m elf_i386 -z noexecstack -T
H. Peter Anvin4fd06962007-07-11 12:18:56 -0700107$(obj)/setup.elf: $(src)/setup.ld $(SETUP_OBJS) FORCE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 $(call if_changed,ld)
109
H. Peter Anvin4fd06962007-07-11 12:18:56 -0700110OBJCOPYFLAGS_setup.bin := -O binary
H. Peter Anvin4fd06962007-07-11 12:18:56 -0700111$(obj)/setup.bin: $(obj)/setup.elf FORCE
112 $(call if_changed,objcopy)
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114$(obj)/compressed/vmlinux: FORCE
Paul Bolled960c9c2008-10-04 21:18:51 +0200115 $(Q)$(MAKE) $(build)=$(obj)/compressed $@
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
H. Peter Anvinf9c51072009-03-12 12:50:33 -0700117# Set this if you want to pass append arguments to the
H. Peter Anvin (Intel)f279b492021-05-10 01:28:40 -0700118# bzdisk/fdimage/hdimage/isoimage kernel
H. Peter Anvinf0be6c62008-02-04 16:48:00 +0100119FDARGS =
H. Peter Anvin (Intel)f279b492021-05-10 01:28:40 -0700120# Set this if you want one or more initrds included in the image
H. Peter Anvin841b8a42006-03-26 01:36:59 -0800121FDINITRD =
122
H. Peter Anvin (Intel)f279b492021-05-10 01:28:40 -0700123imgdeps = $(obj)/bzImage $(obj)/mtools.conf $(src)/genimage.sh
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125$(obj)/mtools.conf: $(src)/mtools.conf.in
126 sed -e 's|@OBJ@|$(obj)|g' < $< > $@
127
H. Peter Anvin (Intel)f279b492021-05-10 01:28:40 -0700128targets += mtools.conf
Changbin Du4366d572017-11-06 11:32:56 +0800129
H. Peter Anvin (Intel)f279b492021-05-10 01:28:40 -0700130# genimage.sh requires bash, but it also has a bunch of other
131# external dependencies.
132quiet_cmd_genimage = GENIMAGE $3
133cmd_genimage = $(BASH) $(srctree)/$(src)/genimage.sh $2 $3 $(obj)/bzImage \
134 $(obj)/mtools.conf '$(FDARGS)' $(FDINITRD)
135
Masahiro Yamada08155122021-07-29 23:00:23 +0900136PHONY += bzdisk fdimage fdimage144 fdimage288 hdimage isoimage
Masahiro Yamada675a59b72020-02-15 15:38:52 +0900137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138# This requires write access to /dev/fd0
H. Peter Anvin (Intel)f279b492021-05-10 01:28:40 -0700139# All images require syslinux to be installed; hdimage also requires
140# EDK2/OVMF if the kernel is compiled with the EFI stub.
141bzdisk: $(imgdeps)
Changbin Du4366d572017-11-06 11:32:56 +0800142 $(call cmd,genimage,bzdisk,/dev/fd0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
H. Peter Anvin (Intel)f279b492021-05-10 01:28:40 -0700144fdimage fdimage144: $(imgdeps)
Changbin Du4366d572017-11-06 11:32:56 +0800145 $(call cmd,genimage,fdimage144,$(obj)/fdimage)
146 @$(kecho) 'Kernel: $(obj)/fdimage is ready'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
H. Peter Anvin (Intel)f279b492021-05-10 01:28:40 -0700148fdimage288: $(imgdeps)
Changbin Du4366d572017-11-06 11:32:56 +0800149 $(call cmd,genimage,fdimage288,$(obj)/fdimage)
150 @$(kecho) 'Kernel: $(obj)/fdimage is ready'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
H. Peter Anvin (Intel)f279b492021-05-10 01:28:40 -0700152hdimage: $(imgdeps)
153 $(call cmd,genimage,hdimage,$(obj)/hdimage)
154 @$(kecho) 'Kernel: $(obj)/hdimage is ready'
155
156isoimage: $(imgdeps)
Changbin Du4366d572017-11-06 11:32:56 +0800157 $(call cmd,genimage,isoimage,$(obj)/image.iso)
158 @$(kecho) 'Kernel: $(obj)/image.iso is ready'