37 lines
738 B
Plaintext
37 lines
738 B
Plaintext
# $NetBSD: files.ofw,v 1.10 2000/03/24 17:05:34 ws Exp $
|
|
#
|
|
# First cut on Openfirmware interface
|
|
#
|
|
|
|
define ofbus {}
|
|
define of_network_dev
|
|
|
|
file dev/ofw/ofw_subr.c ofbus
|
|
|
|
file dev/ofw/ofw_network_subr.c of_network_dev
|
|
|
|
# Generic disk support
|
|
device ofdisk: disk
|
|
attach ofdisk at ofbus
|
|
file dev/ofw/ofdisk.c ofdisk needs-flag
|
|
|
|
# Generic net support
|
|
device ofnet: ether, ifnet, arp
|
|
attach ofnet at ofbus
|
|
file dev/ofw/ofnet.c ofnet needs-flag
|
|
|
|
# Generic console support
|
|
device ofcons: tty
|
|
attach ofcons at ofbus
|
|
file dev/ofw/ofcons.c ofcons needs-flag
|
|
|
|
# Generic RTC support
|
|
device ofrtc
|
|
attach ofrtc at ofbus
|
|
file dev/ofw/ofrtc.c ofrtc needs-flag
|
|
|
|
# Generic bus support
|
|
device ofbus
|
|
attach ofbus at ofbus
|
|
file dev/ofw/ofbus.c ofbus
|