VirtualBox

Changeset 5972 in vbox


Ignore:
Timestamp:
Dec 5, 2007 7:26:21 PM (17 years ago)
Author:
vboxsync
Message:

When the OHCI controller is alone, employ the 2.0 -> 1.1 hack to stop XP from bothering users (like we used to do).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/ConsoleImpl2.cpp

    r5755 r5972  
    14011401                rc = CFGMR3InsertInteger(pCfg,  "Last",     0);                             RC_CHECK();
    14021402            }
     1403            else
    14031404#endif
     1405            {
     1406                /*
     1407                 * Enable the 2.0 -> 1.1 device morphing of proxied devies to keep windows quiet.
     1408                 */
     1409                rc = CFGMR3InsertNode(pRoot, "USB", &pCfg);                                RC_CHECK();
     1410                rc = CFGMR3InsertNode(pCfg, "USBProxy", &pCfg);                            RC_CHECK();
     1411                rc = CFGMR3InsertNode(pCfg, "GlobalConfig", &pCfg);                        RC_CHECK();
     1412                rc = CFGMR3InsertInteger(pCfg, "Force11Device", true);                     RC_CHECK();
     1413                // The following breaks stuff, but it makes MSDs work in vista. (I include it here so
     1414                // that it's documented somewhere.) Users needing it can use:
     1415                //      VBoxManage setextradata "myvm" "VBoxInternal/USB/USBProxy/GlobalConfig/Force11PacketSize" 1
     1416                //rc = CFGMR3InsertInteger(pCfg, "Force11PacketSize", true);                  RC_CHECK();
     1417            }
    14041418        }
    14051419    }
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette