29 lines
661 B
Ada
29 lines
661 B
Ada
#
|
|
# $NetBSD: files.adb,v 1.5 2007/04/16 23:34:43 macallan Exp $
|
|
#
|
|
# Apple Desktop Bus protocol and drivers
|
|
|
|
defflag adbdebug.h ADB_DEBUG
|
|
defflag adbdebug.h ADBKBD_DEBUG
|
|
defflag adbdebug.h ADBMS_DEBUG
|
|
defflag adbdebug.h ADBBT_DEBUG
|
|
defflag adbdebug.h ADBKBD_POWER_PANIC
|
|
|
|
define adb_bus {}
|
|
|
|
device nadb {}
|
|
attach nadb at adb_bus
|
|
file dev/adb/adb_bus.c nadb needs-flag
|
|
|
|
device adbkbd : wskbddev, wsmousedev, sysmon_power, sysmon_taskq
|
|
attach adbkbd at nadb
|
|
file dev/adb/adb_kbd.c adbkbd needs-flag
|
|
|
|
device adbbt : wskbddev
|
|
attach adbbt at nadb
|
|
file dev/adb/adb_bt.c adbbt
|
|
|
|
device adbms : wsmousedev
|
|
attach adbms at nadb
|
|
file dev/adb/adb_ms.c adbms needs-flag
|