Makefile (a1922ed661ab2c1637d0b10cde933bd9cd33d965) Makefile (f4ed2877b16e8146427306aea8819adac5c88374)
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

--- 12 unchanged lines hidden (view full) ---

21# The number is the same as you would ordinarily press at bootup.
22
23SVGA_MODE := -DSVGA_MODE=NORMAL_VGA
24
25targets := vmlinux.bin setup.bin setup.elf bzImage
26targets += fdimage fdimage144 fdimage288 image.iso mtools.conf
27subdir- := compressed
28
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

--- 12 unchanged lines hidden (view full) ---

21# The number is the same as you would ordinarily press at bootup.
22
23SVGA_MODE := -DSVGA_MODE=NORMAL_VGA
24
25targets := vmlinux.bin setup.bin setup.elf bzImage
26targets += fdimage fdimage144 fdimage288 image.iso mtools.conf
27subdir- := compressed
28
29setup-y += a20.o bioscall.o cmdline.o copy.o cpu.o cpucheck.o edd.o
30setup-y += header.o main.o mca.o memory.o pm.o pmjump.o
31setup-y += printf.o regs.o string.o tty.o video.o video-mode.o
32setup-y += version.o
29setup-y += a20.o bioscall.o cmdline.o copy.o cpu.o cpucheck.o
30setup-y += early_serial_console.o edd.o header.o main.o mca.o memory.o
31setup-y += pm.o pmjump.o printf.o regs.o string.o tty.o video.o
32setup-y += video-mode.o version.o
33setup-$(CONFIG_X86_APM_BOOT) += apm.o
34
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.
39setup-y += video-vga.o
40setup-y += video-vesa.o

--- 160 unchanged lines hidden ---
33setup-$(CONFIG_X86_APM_BOOT) += apm.o
34
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.
39setup-y += video-vga.o
40setup-y += video-vesa.o

--- 160 unchanged lines hidden ---