Changeset 49578 in vbox for trunk/src/VBox/Devices/Storage
- Timestamp:
- Nov 20, 2013 10:57:56 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevBusLogic.cpp
r48947 r49578 3934 3934 N_("BusLogic configuration error: failed to read Bootable as boolean")); 3935 3935 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"); 3937 3942 if (RT_FAILURE(rc)) 3938 3943 return PDMDEV_SET_ERROR(pDevIns, rc,
Note:
See TracChangeset
for help on using the changeset viewer.