09-19-2017, 08:00 AM
(09-19-2017, 05:46 AM)rontant Wrote:(09-19-2017, 02:26 AM)digitaldaz Wrote: Actually, how do you blacklist the UAS??
First, check if your USB enclosure is indeed a UAS enabled USB 3 enclosure. Use the command:
Code:lsusb -t
Do you see your device listed as one using uas driver?
If yes, get the vendor ID and the product ID . Just use the command line 'lsusb' without any parameter and you will see a list of USB devices with their respective ID numbers. Your USB enclosure should be one of them. If you use WD Passport 3TB, for example, you will see something like this:
Bus 005 Device 003: ID 1058:0827 Western Digital Technologies, Inc.
1058 is the vendor ID and 0827 the product ID.
Add these 2 numbers into the conf file in /etc/modprobe.d to blacklist the UAS
Code:sudo nano /etc/modprobe.d/rk3328-usb-storage-quirks.conf
The ID numbers should be following the format 0xVendorID:0xProductID:u. Each blacklisted device should be separated by a comma. See the example below.
options usb-storage quirks=0x2537:0x1066:u,0x2537:0x1068:u,0x0bc2:0xa013:u,0x1058:0x0827:u,0x0bc2:0x2101:u,0x2109:0x0715:u
Reboot twice.
Run 'dmesg' to verify. If you edit correctly, you should see a line in dmesg saying your device has been blacklisted. If you run "lsusb -t" again, it should say "driver=usb-storage" instead of "driver=uas"
A BIG CAVEAT: Do this at your own risk.
I'd actually worked it all out, the real key to this and I haven't a clue why is the "Reboot twice. " I had only rebooted once, thanks!