Add pceb at pci and {eisa,isa} at pceb attachments.
This commit is contained in:
parent
9c9a25df29
commit
b16f0280e3
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: GENERIC,v 1.134 1998/02/06 07:21:44 mrg Exp $
|
||||
# $NetBSD: GENERIC,v 1.135 1998/02/06 07:53:27 thorpej Exp $
|
||||
#
|
||||
# GENERIC -- everything that's currently supported
|
||||
#
|
||||
|
@ -160,14 +160,17 @@ pci* at ppb? bus ?
|
|||
|
||||
# PCI bridges
|
||||
pchb* at pci? dev ? function ? # PCI-Host bridges
|
||||
pceb* at pci? dev ? function ? # PCI-EISA bridges
|
||||
pcib* at pci? dev ? function ? # PCI-ISA bridges
|
||||
ppb* at pci? dev ? function ? # PCI-PCI bridges
|
||||
|
||||
# EISA bus support
|
||||
eisa* at mainbus?
|
||||
eisa* at pceb?
|
||||
|
||||
# ISA bus support
|
||||
isa* at mainbus?
|
||||
isa* at pceb?
|
||||
isa* at pcib?
|
||||
|
||||
# PCMCIA bus support
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: INSTALL,v 1.74 1998/02/06 07:21:45 mrg Exp $
|
||||
# $NetBSD: INSTALL,v 1.75 1998/02/06 07:53:28 thorpej Exp $
|
||||
#
|
||||
# INSTALL - Installation kernel.
|
||||
#
|
||||
|
@ -170,14 +170,17 @@ pci* at ppb? bus ?
|
|||
|
||||
# PCI bridges
|
||||
pchb* at pci? dev ? function ? # PCI-Host bridges
|
||||
pceb* at pci? dev ? function ? # PCI-EISA bridges
|
||||
pcib* at pci? dev ? function ? # PCI-ISA bridges
|
||||
ppb* at pci? dev ? function ? # PCI-PCI bridges
|
||||
|
||||
# EISA bus support
|
||||
eisa* at mainbus?
|
||||
eisa* at pceb?
|
||||
|
||||
# ISA bus support
|
||||
isa* at mainbus?
|
||||
isa* at pceb?
|
||||
isa* at pcib?
|
||||
|
||||
# PCMCIA bus support
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: INSTALL_SMALL,v 1.12 1998/02/06 07:21:46 mrg Exp $
|
||||
# $NetBSD: INSTALL_SMALL,v 1.13 1998/02/06 07:53:29 thorpej Exp $
|
||||
#
|
||||
# INSTALL_SMALL - Small Installation kernel.
|
||||
#
|
||||
|
@ -171,14 +171,17 @@ mainbus0 at root
|
|||
|
||||
# PCI bridges
|
||||
#pchb* at pci? dev ? function ? # PCI-Host bridges
|
||||
#pceb* at pci? dev ? function ? # PCI-EISA bridges
|
||||
#pcib* at pci? dev ? function ? # PCI-ISA bridges
|
||||
#ppb* at pci? dev ? function ? # PCI-PCI bridges
|
||||
|
||||
# EISA bus support
|
||||
eisa* at mainbus?
|
||||
#eisa* at pceb?
|
||||
|
||||
# ISA bus support
|
||||
isa* at mainbus?
|
||||
#eisa* at pceb?
|
||||
#isa* at pcib?
|
||||
|
||||
# PCMCIA bus support
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: files.i386,v 1.106 1998/02/06 07:21:50 mrg Exp $
|
||||
# $NetBSD: files.i386,v 1.107 1998/02/06 07:53:26 thorpej Exp $
|
||||
#
|
||||
# new style config file for i386 architecture
|
||||
#
|
||||
|
@ -101,6 +101,11 @@ device pchb class dull: pcibus
|
|||
attach pchb at pci
|
||||
file arch/i386/pci/pchb.c pchb
|
||||
|
||||
# PCI-EISA bridges
|
||||
device pceb class dull: eisabus, isabus
|
||||
attach pceb at pci
|
||||
file arch/i386/pci/pceb.c pceb
|
||||
|
||||
# PCI-ISA bridges
|
||||
device pcib class dull: isabus
|
||||
attach pcib at pci
|
||||
|
|
Loading…
Reference in New Issue