1# $NetBSD: files.ofw,v 1.10 2000/03/24 17:05:34 ws Exp $ 2# 3# First cut on Openfirmware interface 4# 5 6define ofbus {} 7define of_network_dev 8 9file dev/ofw/ofw_subr.c ofbus 10 11file dev/ofw/ofw_network_subr.c of_network_dev 12 13# Generic disk support 14device ofdisk: disk 15attach ofdisk at ofbus 16file dev/ofw/ofdisk.c ofdisk needs-flag 17 18# Generic net support 19device ofnet: ether, ifnet, arp 20attach ofnet at ofbus 21file dev/ofw/ofnet.c ofnet needs-flag 22 23# Generic console support 24device ofcons: tty 25attach ofcons at ofbus 26file dev/ofw/ofcons.c ofcons needs-flag 27 28# Generic RTC support 29device ofrtc 30attach ofrtc at ofbus 31file dev/ofw/ofrtc.c ofrtc needs-flag 32 33# Generic bus support 34device ofbus 35attach ofbus at ofbus 36file dev/ofw/ofbus.c ofbus 37