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:
parent
fc37ed7ae1
commit
2b9fc9390f
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2430
@ -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();
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user