blob: 98fc0cf8185d07352072cb6c636624778374b52a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# $NetBSD: files.ofw,v 1.12 2002/09/27 06:23:09 thorpej Exp $
#
# First cut on Openfirmware interface
#
define ofbus {}
define of_network_dev
defpseudo openfirm
file dev/ofw/openfirmio.c openfirm needs-flag
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: ofbus
attach ofbus at ofbus
file dev/ofw/ofbus.c ofbus
|