Home | History | Annotate | Line # | Download | only in adb
files.adb revision 1.5.68.1
      1 # 
      2 #	$NetBSD: files.adb,v 1.5.68.1 2012/10/30 17:20:52 yamt 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 defflag	opt_adbkbd.h	ADBKBD_EMUL_USB
     23 
     24 device adbbt : wskbddev
     25 attach adbbt at nadb
     26 file dev/adb/adb_bt.c		adbbt
     27 
     28 device adbms : wsmousedev
     29 attach adbms at nadb
     30 file dev/adb/adb_ms.c		adbms needs-flag
     31