summaryrefslogtreecommitdiff
path: root/minix/commands/devmand/devmand.cfg
blob: 714ce6ed72ac929e4a8827b416b98854dc66be57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
usb_driver usb_storage
{
	binary = /usr/sbin/usb_storage;
	id {
		bInterfaceClass = 0x08;
	}
	devprefix = usbstor;
	upscript = /etc/devmand/scripts/block;
	downscript = /etc/devmand/scripts/block;
}

usb_driver usb_keyboard
{
	binary = /usr/sbin/usb_hid;
	id {
		bInterfaceClass = 0x3;
		bInterfaceProtocol = 0x1;
	}
	upscript = /etc/devmand/scripts/singlechar;
	downscript = /etc/devmand/scripts/singlechar;
	devprefix = usb_keyboard;
}

usb_driver usb_mouse
{
	binary = /usr/sbin/usb_hid;
	id {
		bInterfaceClass = 0x3;
		bInterfaceProtocol = 0x2;
	}
	upscript = /etc/devmand/scripts/singlechar;
	downscript = /etc/devmand/scripts/singlechar;
	devprefix = usb_mouse;
}

usb_driver usb_hid
{
	binary = /usr/sbin/usb_hid;
	id {
		bInterfaceClass = 0x3;
	}
	upscript = /etc/devmand/scripts/singlechar;
	downscript = /etc/devmand/scripts/singlechar;
	devprefix = usb_keyboard;
}