mirror of
https://github.com/systemd/systemd.git
synced 2024-12-27 07:22:31 +03:00
18 lines
764 B
Plaintext
18 lines
764 B
Plaintext
# sysfs is populated after the event is sent
|
|
ACTION=="add", DEVPATH=="/devices/*", ENV{PHYSDEVBUS}=="?*", WAIT_FOR_SYSFS="bus"
|
|
# ignore these events until someone needs them
|
|
SUBSYSTEM=="drivers", OPTIONS="ignore_device"
|
|
SUBSYSTEM=="module", OPTIONS="ignore_device"
|
|
|
|
|
|
ACTION=="add", SUBSYSTEM=="?*", ENV{MODALIAS}=="?*", RUN+="modprobe $env{MODALIAS}", OPTIONS="last_rule"
|
|
|
|
# pnp devices
|
|
ACTION=="add", SUBSYSTEM=="pnp", RUN+="/bin/sh -c 'while read id; do /lib/udev/modprobe pnp:d$$id; done < /sys/$devpath/id'", OPTIONS="last_rule"
|
|
|
|
ACTION=="add", SUBSYSTEM=="net", WAIT_FOR_SYSFS="address"
|
|
|
|
ACTION=="add", SUBSYSTEM=="scsi", WAIT_FOR_SYSFS="ioerr_cnt"
|
|
|
|
ACTION=="add", SUBSYSTEM=="firmware", ENV{FIRMWARE}=="*", RUN="/sbin/firmware_helper", OPTIONS="last_rule"
|