1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

Do not build real mode emulator for i386. We use VM86 again since r210877.

This commit is contained in:
Jung-uk Kim 2010-08-08 06:18:05 +00:00
parent 367698346b
commit 3bf2fc8546
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=211058
2 changed files with 5 additions and 3 deletions

View File

@ -369,10 +369,9 @@ i386/xbox/xboxfb.c optional xboxfb
dev/fb/boot_font.c optional xboxfb
i386/xbox/pic16l.s optional xbox
#
# x86 real mode BIOS emulator, required by atkbdc/dpms/vesa
# x86 real mode BIOS support, required by atkbdc/dpms/vesa
#
compat/x86bios/x86bios.c optional x86bios | atkbd | dpms | vesa
contrib/x86emu/x86emu.c optional x86bios | atkbd | dpms | vesa
#
# x86 shared code between IA32, AMD64 and PC98 architectures
#

View File

@ -6,6 +6,9 @@ SRCS+= bus_if.h device_if.h pci_if.h
.PATH: ${.CURDIR}/../../contrib/x86emu
.PATH: ${.CURDIR}/../../compat/x86bios
SRCS+= x86bios.c x86emu.c
SRCS+= x86bios.c
.if ${MACHINE_ARCH} != "i386"
SRCS+= x86emu.c
.endif
.include <bsd.kmod.mk>