xref: /OK3568_Linux_fs/yocto/poky/meta/recipes-core/udev/eudev/run.rules (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1# debugging monitor
2RUN+="socket:/org/kernel/udev/monitor"
3
4# run a command on remove events
5ACTION=="remove", ENV{REMOVE_CMD}!="", RUN+="$env{REMOVE_CMD}"
6
7# ignore the events generated by virtual consoles
8KERNEL=="ptmx",		OPTIONS+="last_rule"
9KERNEL=="console",	OPTIONS+="last_rule"
10KERNEL=="tty"	,	OPTIONS+="last_rule"
11KERNEL=="tty[0-9]*",	OPTIONS+="last_rule"
12KERNEL=="pty*",		OPTIONS+="last_rule"
13SUBSYSTEM=="vc",	OPTIONS+="last_rule"
14
15