[Trac-bugs] [PC-BSD Trac] #658: Sound device misdetected as a storage device?
PC-BSD
trac at pcbsd.org
Wed Sep 19 14:58:09 PDT 2012
#658: Sound device misdetected as a storage device?
----------------------------+---------------------
Reporter: tester543 | Owner:
Type: System Defect | Status: new
Priority: major | Milestone:
Component: System Tool | Version: 9.1-RC1
Resolution: | Keywords:
----------------------------+---------------------
Comment (by tester543):
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;
}
}}}
--
Ticket URL: <http://trac.pcbsd.org/ticket/658#comment:1>
PC-BSD <http://trac.pcbsd.org>
PC-BSD Project Management
More information about the Trac-bugs
mailing list