Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sbin/devd/moused.conf
39475 views
1
notify 100 {
2
match "system" "DEVFS";
3
match "subsystem" "CDEV";
4
match "type" "CREATE";
5
match "cdev" "atp[0-9]+";
6
7
action "service moused quietstart $cdev";
8
};
9
10
notify 100 {
11
match "system" "DEVFS";
12
match "subsystem" "CDEV";
13
match "type" "CREATE";
14
match "cdev" "ums[0-9]+";
15
16
action "service moused quietstart $cdev";
17
};
18
19
notify 100 {
20
match "system" "DEVFS";
21
match "subsystem" "CDEV";
22
match "type" "CREATE";
23
match "cdev" "wsp[0-9]+";
24
25
action "service moused quietstart $cdev";
26
};
27
28
notify 100 {
29
match "system" "DEVFS";
30
match "subsystem" "CDEV";
31
match "type" "DESTROY";
32
match "cdev" "ums[0-9]+";
33
34
action "service moused quietstop $cdev";
35
};
36
37
notify 100 {
38
match "system" "DEVFS";
39
match "subsystem" "CDEV";
40
match "type" "CREATE";
41
match "cdev" "input/event[0-9]+";
42
43
action "service moused quietstart $cdev";
44
};
45
46