1notify 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 10notify 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 19notify 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 28notify 100 { 29 match "system" "DEVFS"; 30 match "subsystem" "CDEV"; 31 match "type" "DESTROY"; 32 match "cdev" "ums[0-9]+"; 33 34 action "service moused stop $cdev"; 35}; 36