1# $NetBSD: files.ofw,v 1.8 1998/02/24 05:44:39 mycroft Exp $ 2# 3# First cut on Openfirmware interface 4# 5 6define ofbus {} 7 8file dev/ofw/ofw_subr.c ofbus 9 10# Generic disk support 11device ofdisk: disk 12attach ofdisk at ofbus 13file dev/ofw/ofdisk.c ofdisk needs-flag 14 15# Generic net support 16define ipkdbofn { [ disable = 0 ] } 17device ofnet: ether, ifnet, ipkdbofn, arp 18attach ofnet at ofbus 19file dev/ofw/ofnet.c ofnet | ipkdb_ofn needs-flag 20attach ipkdbif at ipkdbofn with ipkdb_ofn 21 22# Generic console support 23device ofcons: tty 24attach ofcons at ofbus 25file dev/ofw/ofcons.c ofcons needs-flag 26 27# Generic RTC support 28device ofrtc 29attach ofrtc at ofbus 30file dev/ofw/ofrtc.c ofrtc needs-flag 31 32# Generic bus support 33device ofbus 34attach ofbus at ofbus 35file dev/ofw/ofbus.c ofbus 36