Hello,
I need to configure the usb-storage module to add some quirks for a device. In various web references I found that this is done by editing /etc/modprobe.d/usb-storage.conf
to add some lines that are used to configure module loading parameters.
For example, see these Arch linux instructions
I noticed that there is no /etc/modprobe.d folder in my Solus system. How does Solus control passing options to modules? The line I would be adding to modprob.d is:
options usb-storage quirks=059f:1060:fk
Also, is there a way to confirm what options were passed to a module? I know I can list loaded modules with:
$ lsmod | grep usb_storage
usb_storage 77824 1 uas
usbcore 294912 6 xhci_hcd,usbhid,usb_storage,btusb,xhci_pci,uas
If I add the options, would these show up here?
Thanks!