I have a special USB device. HAL tries to probe it and I get a lot of these error messages in my log:<br>
<br>
usb 2-2: hald timed out on ep0in<br>
usb 2-2: hald timed out on ep0in<br>
usb 2-2: hald timed out on ep0in<br>
<br>
<br>
lsusb gives the correct VID and PID<br>
<br>
Bus 002 Device 003: ID 07f2:0001<br>
<br>
How do I blacklist this device so HAL doesn't touch it? I want
HAL to completely skip this device based on its VID and PID. I can't
use /etc/hotplug/blacklist because it doesn't use any special driver. I
have tried making an fdi file which matches but it doesn't help.<br>
<br>
Any help would be much appreciated.<br>
<br>
Cheuksan Wang<br>
<br>
<?xml version="1.0" encoding="ISO-8859-1"?> <!-- -*- SGML -*- --><br>
<br>
<deviceinfo version="0.2"><br>
<device><br>
<match key="info.bus" string="usb"><br>
<match key="usb.vendor_id" int="0x07f2"><br>
<match key="usb.product_id" int="0x0001"><br>
<merge key="info.category" type="string">special</merge><br>
</match><br>
</match><br>
</match><br>
</device><br>
</deviceinfo><br>
<br>
<br>