Makefile (74c12ee02af109adcde36ec184fa59c0afb0edaa) Makefile (40d04110f87940b6a03bf0aa19cd29e84f465f20)
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#
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
10# Sanitizer runtimes are unavailable and cannot be linked here.
9KASAN_SANITIZE := n
11KASAN_SANITIZE := n
12KCSAN_SANITIZE := n
10OBJECT_FILES_NON_STANDARD := y
11
12# Prevents link failures: __sanitizer_cov_trace_pc() is not linked in.
13KCOV_INSTRUMENT := n
14
13OBJECT_FILES_NON_STANDARD := y
14
15# Prevents link failures: __sanitizer_cov_trace_pc() is not linked in.
16KCOV_INSTRUMENT := n
17
15always-y := realmode.bin realmode.relocs
18always := realmode.bin realmode.relocs
16
17wakeup-objs := wakeup_asm.o wakemain.o video-mode.o
18wakeup-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.
23wakeup-objs += video-vga.o

--- 52 unchanged lines hidden ---
19
20wakeup-objs := wakeup_asm.o wakemain.o video-mode.o
21wakeup-objs += copy.o bioscall.o regs.o
22# The link order of the video-*.o modules can matter. In particular,
23# video-vga.o *must* be listed first, followed by video-vesa.o.
24# Hardware-specific drivers should follow in the order they should be
25# probed, and video-bios.o should typically be last.
26wakeup-objs += video-vga.o

--- 52 unchanged lines hidden ---