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