
Some of the stuff (e.g., rarpd, bootpd, dhcpd etc., libsa) still will only support Ethernet. Tcpdump itself should be ok, but libpcap needs lot of work. For the detailed change history, look at the commit log entries for the is-newarp branch.
37 lines
758 B
Plaintext
37 lines
758 B
Plaintext
#
|
|
# First cut on Openfirmware interface
|
|
#
|
|
|
|
define openfirm {}
|
|
|
|
# Generic disk support
|
|
device ofdisk: disk
|
|
attach ofdisk at openfirm
|
|
file dev/ofw/ofdisk.c ofdisk needs-flag
|
|
|
|
# Generic net support
|
|
define ipkdbofn { [ disable = 0 ] }
|
|
device ofnet: ether, ifnet, ipkdbofn, arp
|
|
attach ofnet at openfirm
|
|
file dev/ofw/ofnet.c ofnet | ipkdb_ofn needs-flag
|
|
attach ipkdbif at ipkdbofn with ipkdb_ofn
|
|
|
|
# Generic console support
|
|
device ofcons: tty
|
|
attach ofcons at openfirm
|
|
file dev/ofw/ofcons.c ofcons needs-flag
|
|
|
|
# Generic RTC support
|
|
device ofrtc
|
|
attach ofrtc at openfirm
|
|
file dev/ofw/ofrtc.c ofrtc needs-flag
|
|
|
|
# Generic bus support
|
|
device ofbus: openfirm
|
|
attach ofbus at openfirm
|
|
file dev/ofw/ofbus.c openfirm
|
|
|
|
device ofroot: openfirm
|
|
attach ofroot at root
|
|
|