Do the same as biosboot does.
This makes it possible to create serial console dosboot.com's via uncommenting the appropriate Makefile options. I needed this when testing the SMP test kernels at work.
This commit is contained in:
parent
6758a2722d
commit
8ba340d655
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: main.c,v 1.13 1999/04/14 15:22:46 christos Exp $ */
|
||||
/* $NetBSD: main.c,v 1.14 2000/03/13 10:51:22 martin Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1996, 1997
|
||||
|
@ -255,7 +255,11 @@ main(argc, argv)
|
|||
extern char *optarg;
|
||||
extern int optind;
|
||||
|
||||
#ifdef SUPPORT_SERIAL
|
||||
initio(SUPPORT_SERIAL);
|
||||
#else
|
||||
initio(CONSDEV_PC);
|
||||
#endif
|
||||
gateA20();
|
||||
|
||||
print_banner();
|
||||
|
|
Loading…
Reference in New Issue