diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2012-04-03 21:08:04 +0200 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2012-04-03 21:08:04 +0200 |
commit | 19c5f19d69bb5f520fa7213239490c55de06d99d (patch) | |
tree | 0066ff6b95da3b86812f72f771fd09bab25d4e7a /src/udev/rules/60-persistent-alsa.rules | |
parent | 3eff4208ffecedd778fec260f0d4b18e94dab443 (diff) | |
parent | 4db539b27021dcaa716828cbb689f591adb5af23 (diff) |
import udev repository
Diffstat (limited to 'src/udev/rules/60-persistent-alsa.rules')
-rw-r--r-- | src/udev/rules/60-persistent-alsa.rules | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/udev/rules/60-persistent-alsa.rules b/src/udev/rules/60-persistent-alsa.rules new file mode 100644 index 0000000000..8154e2dbb5 --- /dev/null +++ b/src/udev/rules/60-persistent-alsa.rules @@ -0,0 +1,14 @@ +# do not edit this file, it will be overwritten on update + +ACTION=="remove", GOTO="persistent_alsa_end" +SUBSYSTEM!="sound", GOTO="persistent_alsa_end" +KERNEL!="controlC[0-9]*", GOTO="persistent_alsa_end" + +SUBSYSTEMS=="usb", ENV{ID_MODEL}=="", IMPORT{builtin}="usb_id" +ENV{ID_SERIAL}=="?*", ENV{ID_USB_INTERFACE_NUM}=="?*", SYMLINK+="snd/by-id/$env{ID_BUS}-$env{ID_SERIAL}-$env{ID_USB_INTERFACE_NUM}" +ENV{ID_SERIAL}=="?*", ENV{ID_USB_INTERFACE_NUM}=="", SYMLINK+="snd/by-id/$env{ID_BUS}-$env{ID_SERIAL}" + +IMPORT{builtin}="path_id" +ENV{ID_PATH}=="?*", SYMLINK+="snd/by-path/$env{ID_PATH}" + +LABEL="persistent_alsa_end" |