diff options
author | msmith <msmith@FreeBSD.org> | 1998-10-21 20:10:33 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 1998-10-21 20:10:33 +0000 |
commit | edf2081f844c6ed2f39cbb5d56aab38a37059db4 (patch) | |
tree | 03810df05910fc1668a4d0c48859277eb2769c3f /sys/boot/i386/loader/conf.c | |
parent | 702529216ce81262b87ad8903ed6d77eef2665da (diff) | |
download | FreeBSD-src-edf2081f844c6ed2f39cbb5d56aab38a37059db4.zip FreeBSD-src-edf2081f844c6ed2f39cbb5d56aab38a37059db4.tar.gz |
- Enable PnP and ISA PnP code.
- Use the ISA PnP enumerator.
- Use the new linker set code, throw out the gensetdefs stuff.
- Produce an intermediate loader image that has symbols stripped, to aid
- in debugging.
- Supply ISA port access functions required for ISA PnP
Diffstat (limited to 'sys/boot/i386/loader/conf.c')
-rw-r--r-- | sys/boot/i386/loader/conf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/boot/i386/loader/conf.c b/sys/boot/i386/loader/conf.c index d39d67f..b17a308 100644 --- a/sys/boot/i386/loader/conf.c +++ b/sys/boot/i386/loader/conf.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: conf.c,v 1.6 1998/09/30 19:48:42 peter Exp $ + * $Id: conf.c,v 1.7 1998/10/07 02:39:32 msmith Exp $ */ #include <stand.h> @@ -88,7 +88,7 @@ extern struct pnphandler isapnphandler; /* extern struct pnphandler pcipnphandler;*/ struct pnphandler *pnphandlers[] = { -/* &isapnphandler, */ + &isapnphandler, /* &pcipnphandler, */ NULL }; |