Reviewed by: Stefan Esser <se>

Submitted by:	Wolfgang Stanglmeier <wolf@dentaro.GUN.de>
Added PCI support (call of pci_config(), if NPCI > 0).
This commit is contained in:
Stefan Eßer 1994-08-31 23:36:56 +00:00
parent fc37ed7ae1
commit 2b9fc9390f
2 changed files with 12 additions and 2 deletions

View File

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)autoconf.c 7.1 (Berkeley) 5/9/91
* $Id: autoconf.c,v 1.12 1994/08/13 03:49:33 wollman Exp $
* $Id: autoconf.c,v 1.13 1994/08/29 21:47:11 ache Exp $
*/
/*
@ -79,6 +79,11 @@ configure()
isa_configure();
#endif
#include "pci.h"
#if NPCI > 0
pci_configure();
#endif
#if GENERICxxx && !defined(DISKLESS)
if ((boothowto & RB_ASKNAME) == 0)
setroot();

View File

@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)autoconf.c 7.1 (Berkeley) 5/9/91
* $Id: autoconf.c,v 1.12 1994/08/13 03:49:33 wollman Exp $
* $Id: autoconf.c,v 1.13 1994/08/29 21:47:11 ache Exp $
*/
/*
@ -79,6 +79,11 @@ configure()
isa_configure();
#endif
#include "pci.h"
#if NPCI > 0
pci_configure();
#endif
#if GENERICxxx && !defined(DISKLESS)
if ((boothowto & RB_ASKNAME) == 0)
setroot();