diff options
| author | Mike Smith <msmith@FreeBSD.org> | 1998-09-03 02:10:09 +0000 |
|---|---|---|
| committer | Mike Smith <msmith@FreeBSD.org> | 1998-09-03 02:10:09 +0000 |
| commit | 06b57b0e096b169e96e363151b867f99c7cd4877 (patch) | |
| tree | 95d1040f91a6dfbc5efa08f2abd404562dac8542 /sys/boot/i386/loader | |
| parent | 9de9848b61e1f78985a975fe38bf0e24a42b868a (diff) | |
Notes
Diffstat (limited to 'sys/boot/i386/loader')
| -rw-r--r-- | sys/boot/i386/loader/main.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/sys/boot/i386/loader/main.c b/sys/boot/i386/loader/main.c index ded0d5a6af33..ee7d5752498f 100644 --- a/sys/boot/i386/loader/main.c +++ b/sys/boot/i386/loader/main.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: main.c,v 1.1.1.1 1998/08/21 03:17:41 msmith Exp $ + * $Id: main.c,v 1.2 1998/08/31 21:10:43 msmith Exp $ */ /* @@ -102,19 +102,14 @@ main(void) archsw.arch_autoload = i386_autoload; archsw.arch_getdev = i386_getdev; archsw.arch_copyin = i386_copyin; + archsw.arch_copyout = i386_copyout; archsw.arch_readin = i386_readin; /* * XXX should these be in the MI source? */ - source("/boot/boot.conf"); #if 0 legacy_config(); /* read old /boot.config file */ #endif - printf("\n"); - autoboot(10, NULL); /* try to boot automatically */ - printf("\nType '?' for a list of commands, 'help' for more detailed help.\n"); - setenv("prompt", "$currdev>", 1); - interact(); /* doesn't return */ } |
