NetBSD/sys/dev/ofw/files.ofw

39 lines
842 B
Plaintext
Raw Normal View History

# $NetBSD: files.ofw,v 1.9 1998/07/22 22:04:14 thorpej Exp $
1996-09-30 20:34:14 +04:00
#
# First cut on Openfirmware interface
#
define ofbus {}
define of_network_dev
1996-09-30 20:34:14 +04:00
file dev/ofw/ofw_subr.c ofbus
file dev/ofw/ofw_network_subr.c of_network_dev
1996-09-30 20:34:14 +04:00
# Generic disk support
device ofdisk: disk
attach ofdisk at ofbus
1996-09-30 20:34:14 +04:00
file dev/ofw/ofdisk.c ofdisk needs-flag
# Generic net support
define ipkdbofn { [ disable = 0 ] }
device ofnet: ether, ifnet, ipkdbofn, arp
attach ofnet at ofbus
file dev/ofw/ofnet.c ofnet | ipkdb_ofn needs-flag
attach ipkdbif at ipkdbofn with ipkdb_ofn
1996-09-30 20:34:14 +04:00
# Generic console support
device ofcons: tty
attach ofcons at ofbus
1996-09-30 20:34:14 +04:00
file dev/ofw/ofcons.c ofcons needs-flag
# Generic RTC support
device ofrtc
attach ofrtc at ofbus
1996-09-30 20:34:14 +04:00
file dev/ofw/ofrtc.c ofrtc needs-flag
# Generic bus support
device ofbus
attach ofbus at ofbus
file dev/ofw/ofbus.c ofbus