Opened 9 months ago
Closed 9 months ago
#658 closed System Defect (fixed)
Sound device misdetected as a storage device?
| Reported by: | tester543 | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | |
| Component: | System Tool | Version: | 9.1-RC1 |
| Keywords: | Cc: | trac-bugs@… |
Description
I sometimes see a process like "file /dev/dspX", as if it tries to determine the filesystem type.
Change History (2)
comment:1 Changed 9 months ago by tester543
comment:2 Changed 9 months ago by kenmoore
- Resolution set to fixed
- Status changed from new to closed
This has been fixed for 9.1-RC2.
Note: See
TracTickets for help on using
tickets.

Suggested fix/improvement: change
//Don't run "file" command on certain devices that are known non-storage devices if(dev.startsWith("pcm") || dev.startsWith("tty") ){ return newdev; }in mountTray.cpp to
//Don't run "file" command on certain devices that are known non-storage devices if(dev.startsWith("pcm") || dev.startsWith("tty") || dev.startsWith("dsp") ){ return newdev; }