diff options
| author | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2009-05-14 16:01:29 +0000 |
|---|---|---|
| committer | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2009-05-14 16:01:29 +0000 |
| commit | 85d12e2316c26a7e02bcce78a0e5cc575c221ac0 (patch) | |
| tree | a08e215494afeb1fcf84b411854e17ce1a43ea42 /sys | |
| parent | bb2aebf3ad252165a58525e2f972f955de04d46f (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/conf/files.pc98 | 1 | ||||
| -rw-r--r-- | sys/pc98/include/mca.h | 6 | ||||
| -rw-r--r-- | sys/pc98/pc98/machdep.c | 3 |
3 files changed, 10 insertions, 0 deletions
diff --git a/sys/conf/files.pc98 b/sys/conf/files.pc98 index 4e7e43fa5701..7aedb38517a3 100644 --- a/sys/conf/files.pc98 +++ b/sys/conf/files.pc98 @@ -150,6 +150,7 @@ i386/i386/k6_mem.c optional mem i386/i386/legacy.c standard i386/i386/local_apic.c optional apic i386/i386/locore.s standard no-obj +i386/i386/mca.c standard i386/i386/mem.c optional mem i386/i386/minidump_machdep.c standard i386/i386/mp_clock.c optional smp diff --git a/sys/pc98/include/mca.h b/sys/pc98/include/mca.h new file mode 100644 index 000000000000..a047f87c48c4 --- /dev/null +++ b/sys/pc98/include/mca.h @@ -0,0 +1,6 @@ +/*- + * This file is in the public domain. + */ +/* $FreeBSD$ */ + +#include <i386/mca.h> diff --git a/sys/pc98/pc98/machdep.c b/sys/pc98/pc98/machdep.c index a42b9032edb0..ba3d04796c62 100644 --- a/sys/pc98/pc98/machdep.c +++ b/sys/pc98/pc98/machdep.c @@ -111,6 +111,7 @@ __FBSDID("$FreeBSD$"); #include <machine/cpu.h> #include <machine/cputypes.h> #include <machine/intr_machdep.h> +#include <machine/mca.h> #include <machine/md_var.h> #include <machine/pc/bios.h> #include <machine/pcb.h> @@ -256,6 +257,8 @@ cpu_startup(dummy) vm_pager_bufferinit(); cpu_setregs(); + + mca_init(); } /* |
