| Summary: | aumix /etc/init.d/aumix script does not run with SUN audio module | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | Peter Schloemer <dapete> |
| Component: | Current packages | Assignee: | Jeremy Huddleston (RETIRED) <eradicator> |
| Status: | RESOLVED FIXED | ||
| Severity: | minor | CC: | sound |
| Priority: | High | ||
| Version: | 2004.3 | ||
| Hardware: | Sparc | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
|
Description
Peter Schloemer
2005-03-07 10:00:42 UTC
In setting up my Ultra 5 again from scratch, I realize Jeremy fixed this only days after I reported it and just didn't mark the bug as resolved... Thanks! Unfortunately there is a bug in the bugfix. The line to check for sound devices is a bit different than before: if ! grep -q 'sound|OSS|sparcaudio' /proc/devices && [[ ! -d /proc/asound ]] The -E option is missing in the grep, so it doesn't regard the search text as a regular expression and doesn't find an appropriate entry. The following line works correctly: if ! grep -q -E 'sound|OSS|sparcaudio' /proc/devices && [[ ! -d /proc/asound ]] Thanks, Peter Fixed now. Thanks for pointing it out. |