1# do not call hotplug.d and dev.d for "drivers" and "module" events
2SUBSYSTEM=="drivers",   GOTO="hotplug_end"
3SUBSYSTEM=="module",    GOTO="hotplug_end"
4ACTION=="add",           GOTO="hotplug_comp"
5ACTION=="remove",        GOTO="hotplug_comp"
6
7GOTO="hotplug_end"
8
9LABEL="hotplug_comp"
10# compatibility support for the obsolete hotplug.d and dev.d directories
11ENV{UDEVD_EVENT}=="1",  RUN+="/lib/udev/udev_run_hotplugd"
12RUN+="/lib/udev/udev_run_devd"
13
14
15LABEL="hotplug_end"
16