Linux-libre 5.7.3-gnu
[librecmc/linux-libre.git] / arch / x86 / realmode / rm / Makefile
1 #
2 # arch/x86/realmode/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 #
9 KASAN_SANITIZE                  := n
10 OBJECT_FILES_NON_STANDARD       := y
11
12 # Prevents link failures: __sanitizer_cov_trace_pc() is not linked in.
13 KCOV_INSTRUMENT         := n
14
15 always-y := realmode.bin realmode.relocs
16
17 wakeup-objs     := wakeup_asm.o wakemain.o video-mode.o
18 wakeup-objs     += copy.o bioscall.o regs.o
19 # The link order of the video-*.o modules can matter.  In particular,
20 # video-vga.o *must* be listed first, followed by video-vesa.o.
21 # Hardware-specific drivers should follow in the order they should be
22 # probed, and video-bios.o should typically be last.
23 wakeup-objs     += video-vga.o
24 wakeup-objs     += video-vesa.o
25 wakeup-objs     += video-bios.o
26
27 realmode-y                      += header.o
28 realmode-y                      += trampoline_$(BITS).o
29 realmode-y                      += stack.o
30 realmode-y                      += reboot.o
31 realmode-$(CONFIG_ACPI_SLEEP)   += $(wakeup-objs)
32
33 targets += $(realmode-y)
34
35 REALMODE_OBJS = $(addprefix $(obj)/,$(realmode-y))
36
37 sed-pasyms := -n -r -e 's/^([0-9a-fA-F]+) [ABCDGRSTVW] (.+)$$/pa_\2 = \2;/p'
38
39 quiet_cmd_pasyms = PASYMS  $@
40       cmd_pasyms = $(NM) $(real-prereqs) | sed $(sed-pasyms) | sort | uniq > $@
41
42 targets += pasyms.h
43 $(obj)/pasyms.h: $(REALMODE_OBJS) FORCE
44         $(call if_changed,pasyms)
45
46 targets += realmode.lds
47 $(obj)/realmode.lds: $(obj)/pasyms.h
48
49 LDFLAGS_realmode.elf := -m elf_i386 --emit-relocs -T
50 CPPFLAGS_realmode.lds += -P -C -I$(objtree)/$(obj)
51
52 targets += realmode.elf
53 $(obj)/realmode.elf: $(obj)/realmode.lds $(REALMODE_OBJS) FORCE
54         $(call if_changed,ld)
55
56 OBJCOPYFLAGS_realmode.bin := -O binary
57
58 targets += realmode.bin
59 $(obj)/realmode.bin: $(obj)/realmode.elf $(obj)/realmode.relocs FORCE
60         $(call if_changed,objcopy)
61
62 quiet_cmd_relocs = RELOCS  $@
63       cmd_relocs = arch/x86/tools/relocs --realmode $< > $@
64
65 targets += realmode.relocs
66 $(obj)/realmode.relocs: $(obj)/realmode.elf FORCE
67         $(call if_changed,relocs)
68
69 # ---------------------------------------------------------------------------
70
71 KBUILD_CFLAGS   := $(REALMODE_CFLAGS) -D_SETUP -D_WAKEUP \
72                    -I$(srctree)/arch/x86/boot
73 KBUILD_AFLAGS   := $(KBUILD_CFLAGS) -D__ASSEMBLY__
74 KBUILD_CFLAGS   += -fno-asynchronous-unwind-tables
75 GCOV_PROFILE := n
76 UBSAN_SANITIZE := n