mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-27 08:00:11 +00:00
Move sys/dev/x86bios to sys/compat/x86bios.
It may not be optimal but it is clearly better than the old place. OK'ed by: delphij, paradox (ddkprog yahoo com)
This commit is contained in:
parent
9747418cc4
commit
19de5df5e5
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=197444
@ -21,7 +21,7 @@ __FBSDID("$FreeBSD$");
|
||||
|
||||
#include <contrib/x86emu/x86emu.h>
|
||||
#include <contrib/x86emu/x86emu_regs.h>
|
||||
#include <dev/x86bios/x86bios.h>
|
||||
#include <compat/x86bios/x86bios.h>
|
||||
|
||||
u_char *pbiosMem = NULL;
|
||||
static u_char *pbiosStack = NULL;
|
@ -27,7 +27,7 @@ __FBSDID("$FreeBSD$");
|
||||
|
||||
#include <sys/param.h>
|
||||
|
||||
#include <dev/x86bios/x86bios.h>
|
||||
#include <compat/x86bios/x86bios.h>
|
||||
|
||||
extern u_char *pbiosMem;
|
||||
extern int busySegMap[5];
|
@ -297,8 +297,7 @@ libkern/memset.c standard
|
||||
#
|
||||
# x86 real mode BIOS emulator, required by atkbdc/dpms/vesa
|
||||
#
|
||||
dev/x86bios/x86bios.c optional x86bios | atkbd | dpms | vesa
|
||||
dev/x86bios/x86bios_alloc.c optional x86bios | atkbd | dpms | vesa
|
||||
contrib/x86emu/x86emu.c optional x86bios | atkbd | dpms | vesa
|
||||
contrib/x86emu/x86emu_util.c optional x86bios | atkbd | dpms | vesa
|
||||
|
||||
compat/x86bios/x86bios.c optional x86bios | atkbd | dpms | vesa
|
||||
compat/x86bios/x86bios_alloc.c optional x86bios | atkbd | dpms | vesa
|
||||
|
@ -381,7 +381,7 @@ i386/xbox/pic16l.s optional xbox
|
||||
#
|
||||
# x86 real mode BIOS emulator, required by atkbdc/dpms/vesa
|
||||
#
|
||||
dev/x86bios/x86bios.c optional x86bios | atkbd | dpms | vesa
|
||||
dev/x86bios/x86bios_alloc.c optional x86bios | atkbd | dpms | vesa
|
||||
contrib/x86emu/x86emu.c optional x86bios | atkbd | dpms | vesa
|
||||
contrib/x86emu/x86emu_util.c optional x86bios | atkbd | dpms | vesa
|
||||
compat/x86bios/x86bios.c optional x86bios | atkbd | dpms | vesa
|
||||
compat/x86bios/x86bios_alloc.c optional x86bios | atkbd | dpms | vesa
|
||||
|
@ -47,7 +47,7 @@ __FBSDID("$FreeBSD$");
|
||||
#if 0
|
||||
#include <machine/md_var.h>
|
||||
#include <machine/psl.h>
|
||||
#include <dev/x86bios/x86bios.h>
|
||||
#include <compat/x86bios/x86bios.h>
|
||||
#include <machine/pc/bios.h>
|
||||
|
||||
#include <vm/vm.h>
|
||||
|
@ -67,7 +67,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <sys/libkern.h>
|
||||
#include <sys/module.h>
|
||||
|
||||
#include <dev/x86bios/x86bios.h>
|
||||
#include <compat/x86bios/x86bios.h>
|
||||
|
||||
/*
|
||||
* VESA DPMS States
|
||||
|
@ -53,7 +53,7 @@ __FBSDID("$FreeBSD$");
|
||||
|
||||
#include <isa/isareg.h>
|
||||
|
||||
#include <dev/x86bios/x86bios.h>
|
||||
#include <compat/x86bios/x86bios.h>
|
||||
|
||||
#define VESA_VIA_CLE266 "VIA CLE266\r\n"
|
||||
|
||||
|
@ -4,7 +4,7 @@ KMOD= x86bios
|
||||
SRCS= opt_x86bios.h
|
||||
|
||||
.PATH: ${.CURDIR}/../../contrib/x86emu
|
||||
.PATH: ${.CURDIR}/../../dev/x86bios
|
||||
.PATH: ${.CURDIR}/../../compat/x86bios
|
||||
SRCS+= x86bios.c x86bios_alloc.c x86emu.c x86emu_util.c
|
||||
|
||||
.include <bsd.kmod.mk>
|
||||
|
Loading…
Reference in New Issue
Block a user