Switch: Difference between revisions
Jump to navigation
Jump to search
| Line 19: | Line 19: | ||
</pre> | </pre> | ||
<pre> | <pre> | ||
# echo ' | # echo 'hw.usb.quirk.0="0x057e 0x201d 0 0xffff UQ_HID_IGNORE"' >> /boot/loader.conf | ||
</pre> | |||
<pre> | |||
# echo 'hw.usb.quirk.1="0x057e 0x201d 0 0xffff UQ_MSC_IGNORE"' >> /boot/loader.conf | |||
</pre> | </pre> | ||
Explanation: | Explanation: | ||
Revision as of 23:06, 20 January 2026
Firmware
Emulators
ROMs
Connecting
- MTP Responder
FreeBSD Desktop https://copilot.microsoft.com/chats/zGKPNVZ5M155xW8AHqSLA
# usbconfig -d $(usbconfig | awk -F: '/Nintendo/ { print $1}') dump_device_desc | grep '^ i'
idVendor = 0x057e
idProduct = 0x201d
iManufacturer = 0x0001 <->
iProduct = 0x0002 <DBI>
iSerialNumber = 0x0003 <XKW70009680664>
# echo 'hw.usb.quirk.0="0x057e 0x201d 0 0xffff UQ_HID_IGNORE"' >> /boot/loader.conf
# echo 'hw.usb.quirk.1="0x057e 0x201d 0 0xffff UQ_MSC_IGNORE"' >> /boot/loader.conf
Explanation:
| Field | Meaning |
|---|---|
| 0x057e | Vendor ID (Nintendo) |
| 0x201d | Product ID (DBI MTP device) |
| 0 | Lowest revision |
| 0xffff | Highest revision |
| UQ_HID_IGNORE | Prevent HID driver from attaching |