diff options
| author | Tor Egge <tegge@FreeBSD.org> | 1997-05-11 18:05:39 +0000 |
|---|---|---|
| committer | Tor Egge <tegge@FreeBSD.org> | 1997-05-11 18:05:39 +0000 |
| commit | 432aad0e9818ec0d610601dcdf20588645ee7424 (patch) | |
| tree | e0d8a7d50c38b03d4a574055c66b94de6d1fe093 /sys/kern/init_main.c | |
| parent | 74714a48875fc44aa0fd760a9586b61284c64324 (diff) | |
Notes
Diffstat (limited to 'sys/kern/init_main.c')
| -rw-r--r-- | sys/kern/init_main.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c index 4630283305d8..7af230ffcd00 100644 --- a/sys/kern/init_main.c +++ b/sys/kern/init_main.c @@ -39,7 +39,7 @@ * SUCH DAMAGE. * * @(#)init_main.c 8.9 (Berkeley) 1/21/94 - * $Id: init_main.c,v 1.60 1997/04/07 07:15:59 peter Exp $ + * $Id: init_main.c,v 1.61 1997/04/26 11:46:11 peter Exp $ */ #include "opt_rlimit.h" @@ -456,10 +456,17 @@ SYSINIT(sched_setup, SI_SUB_KICK_SCHEDULER, SI_ORDER_FIRST, sched_setup, NULL) /* ARGSUSED*/ static void xxx_vfs_mountroot __P((void *fsnamep)); +#ifdef BOOTP +extern void bootpc_init __P((void)); +#endif static void xxx_vfs_mountroot(fsnamep) void *fsnamep; { + /* XXX Add a separate SYSINIT entry */ +#ifdef BOOTP + bootpc_init(); +#endif /* Mount the root file system. */ if (vfs_mountrootfs(*((char **) fsnamep))) panic("cannot mount root"); |
