mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 13:12:37 -05:00
usb: remove "Ask" USB Mode (FS#13317)
USB ask mode is basically a footgun: it can't work on native targets
and doesn't work reliably on hosted ones, and it continually produces
a slow trickle of problems. FS#13317 gives a rundown of the issues.
Removing the setting seems like the best solution for now, since a fix
would be pretty involved.
This partially reverts 60f581e8f5. The USB Mode setting is left in
place so the option can be added back later in a non-buggy way.
Change-Id: Ie01b28dd2ed95a31b509a7834d85bac8eb866098
This commit is contained in:
parent
6cdd142d5c
commit
7e0492444c
5 changed files with 17 additions and 41 deletions
|
|
@ -2148,19 +2148,18 @@ const struct settings_list settings[] = {
|
|||
LANG_USB_MODE,
|
||||
USBMODE_DEFAULT,
|
||||
"usb mode",
|
||||
"ask,mass storage,charge"
|
||||
"mass storage,charge"
|
||||
#if defined(DX50) || defined(DX90)
|
||||
",adb"
|
||||
#endif
|
||||
,
|
||||
#if defined(DX50) || defined(DX90)
|
||||
ibasso_set_usb_mode,
|
||||
4,
|
||||
3,
|
||||
#else
|
||||
usb_set_mode,
|
||||
3,
|
||||
2,
|
||||
#endif
|
||||
ID2P(LANG_ASK),
|
||||
ID2P(LANG_USB_MODE_MASS_STORAGE),
|
||||
ID2P(LANG_USB_MODE_CHARGE)
|
||||
#if defined(DX50) || defined(DX90)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue