diff options
author | acinonyx <acinonyx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-02-02 01:23:34 +0000 |
---|---|---|
committer | acinonyx <acinonyx@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-02-02 01:23:34 +0000 |
commit | 4afdf2ad8135f96c4bb4f3a9ba2405d178d2ec25 (patch) | |
tree | d062f5a99599ffe8a382d60d69aa43da32b51cf5 | |
parent | ab17079a991428c5c382b5467c16ed1ec1db200f (diff) |
[package] base-files: Fix alsa raw audio device hotplug rule
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25301 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/base-files/files/etc/hotplug2-common.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/etc/hotplug2-common.rules b/package/base-files/files/etc/hotplug2-common.rules index bd30e55632..dffca0b87f 100644 --- a/package/base-files/files/etc/hotplug2-common.rules +++ b/package/base-files/files/etc/hotplug2-common.rules @@ -18,7 +18,7 @@ DEVICENAME ~~ ^ppp { next-event } -DEVICENAME ~~ (^controlC[0-9]$|^pcmC0D0|^timer$) { +DEVICENAME ~~ (^controlC[0-9]$|^pcmC[0-9]D[0-9]|^timer$) { makedev /dev/snd/%DEVICENAME% 0644 next-event } |