VirtualBox

Changeset 49578 in vbox for trunk/src/VBox/Devices/Storage


Ignore:
Timestamp:
Nov 20, 2013 10:57:56 AM (11 years ago)
Author:
vboxsync
Message:

BusLogic: Only enable ISA compatibility ports by default for the first device instance.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Storage/DevBusLogic.cpp

    r48947 r49578  
    39343934                                N_("BusLogic configuration error: failed to read Bootable as boolean"));
    39353935    Log(("%s: fBootable=%RTbool\n", __FUNCTION__, fBootable));
    3936     rc = CFGMR3QueryStringDef(pCfg, "ISACompat", achISACompat, sizeof(achISACompat), "Alternate");
     3936
     3937    /* Only the first instance defaults to having the ISA compatibility ports enabled. */
     3938    if (iInstance == 0)
     3939        rc = CFGMR3QueryStringDef(pCfg, "ISACompat", achISACompat, sizeof(achISACompat), "Alternate");
     3940    else
     3941        rc = CFGMR3QueryStringDef(pCfg, "ISACompat", achISACompat, sizeof(achISACompat), "Disabled");
    39373942    if (RT_FAILURE(rc))
    39383943        return PDMDEV_SET_ERROR(pDevIns, rc,
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