diff options
author | kato <kato@FreeBSD.org> | 1997-04-22 12:20:50 +0000 |
---|---|---|
committer | kato <kato@FreeBSD.org> | 1997-04-22 12:20:50 +0000 |
commit | 7f078631641bbf1b5e5cb26bddb5c17e5aa8e7be (patch) | |
tree | 458b58854234b8a78e02c9a8bf45e80ad403b23d /sys/pc98/i386 | |
parent | a6bde6da85086f08d0ee2f36010aa9c2a5d354e4 (diff) | |
download | FreeBSD-src-7f078631641bbf1b5e5cb26bddb5c17e5aa8e7be.zip FreeBSD-src-7f078631641bbf1b5e5cb26bddb5c17e5aa8e7be.tar.gz |
Synchronize with sys/i386/conf/Makefile.i386, sys/i386/i386/machdep.c
and sys/i386/isa/npx.c revisions 1.94, 1.238 and 1.41, respectively.
Diffstat (limited to 'sys/pc98/i386')
-rw-r--r-- | sys/pc98/i386/machdep.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/pc98/i386/machdep.c b/sys/pc98/i386/machdep.c index ed46bc2..f762f1d 100644 --- a/sys/pc98/i386/machdep.c +++ b/sys/pc98/i386/machdep.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)machdep.c 7.4 (Berkeley) 6/3/91 - * $Id: machdep.c,v 1.35 1997/04/07 11:00:45 kato Exp $ + * $Id: machdep.c,v 1.36 1997/04/13 06:02:52 kato Exp $ */ #include "npx.h" @@ -130,6 +130,7 @@ extern void earlysetcpuclass(void); /* same header file */ extern void finishidentcpu(void); extern void panicifcpuunsupported(void); extern void initializecpu(void); +extern void init_sets(void); static void cpu_startup __P((void *)); SYSINIT(cpu, SI_SUB_CPU, SI_ORDER_FIRST, cpu_startup, NULL) @@ -989,6 +990,11 @@ init386(first) atdevbase = ISA_HOLE_START + KERNBASE; /* + * Fill in the length fields of all linker sets (necessary for ELF). + */ + init_sets(); + + /* * Initialize the console before we print anything out. */ cninit(); |