Home | History | Annotate | Line # | Download | only in adb
files.adb revision 1.6
      1 # 
      2 #	$NetBSD: files.adb,v 1.6 2012/08/29 02:44:07 macallan Exp $
      3 #
      4 # Apple Desktop Bus protocol and drivers
      5 
      6 defflag	adbdebug.h	ADB_DEBUG
      7 defflag	adbdebug.h	ADBKBD_DEBUG
      8 defflag	adbdebug.h	ADBMS_DEBUG
      9 defflag	adbdebug.h	ADBBT_DEBUG
     10 defflag adbdebug.h	ADBKBD_POWER_PANIC
     11 
     12 define adb_bus {}
     13 
     14 device nadb {}
     15 attach nadb at adb_bus
     16 file dev/adb/adb_bus.c		nadb needs-flag
     17 
     18 device adbkbd : wskbddev, wsmousedev, sysmon_power, sysmon_taskq
     19 attach adbkbd at nadb
     20 file dev/adb/adb_kbd.c		adbkbd needs-flag
     21 file dev/adb/adb_usb_map.c	adbkbd
     22 
     23 device adbbt : wskbddev
     24 attach adbbt at nadb
     25 file dev/adb/adb_bt.c		adbbt
     26 
     27 device adbms : wsmousedev
     28 attach adbms at nadb
     29 file dev/adb/adb_ms.c		adbms needs-flag
     30