Changeset 19045 in vbox for trunk/src/VBox
- Timestamp:
- Apr 21, 2009 2:10:00 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 46164
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl2.cpp
r19007 r19045 199 199 #if 0 /* enable to play with lots of memory. */ 200 200 if (RTEnvExist("VBOX_RAM_SIZE")) 201 cRamMBs = RTStrToUInt64(RTEnvGet("VBOX_RAM_SIZE")) * 1024;201 cRamMBs = RTStrToUInt64(RTEnvGet("VBOX_RAM_SIZE")); 202 202 #endif 203 203 uint64_t const cbRam = cRamMBs * (uint64_t)_1M; … … 480 480 rc = CFGMR3InsertInteger(pInst, "PCIBusNo", 1);/* ->pcibridge[0] */ RC_CHECK(); 481 481 #endif 482 483 482 483 484 484 Bstr tmpStr; 485 485 rc = pMachine->GetExtraData(Bstr("VBoxInternal/Devices/SupportExtHwProfile"), tmpStr.asOutParam()); … … 667 667 rc = CFGMR3InsertInteger(pCfg, "SmcEnabled", fSmcEnabled); RC_CHECK(); 668 668 #endif 669 rc = CFGMR3InsertInteger(pCfg, "ShowRtc", fExtProfile); RC_CHECK(); 669 rc = CFGMR3InsertInteger(pCfg, "ShowRtc", fExtProfile); RC_CHECK(); 670 670 rc = CFGMR3InsertInteger(pCfg, "ShowCpu", fExtProfile); RC_CHECK(); 671 671 rc = CFGMR3InsertInteger(pInst, "PCIDeviceNo", 7); RC_CHECK(); … … 1249 1249 } 1250 1250 #ifdef VMWARE_NET_IN_SLOT_11 1251 /* 1251 /* 1252 1252 * Dirty hack for PCI slot compatibility with VMWare, 1253 1253 * it assigns slot 11 to the first network controller.
Note:
See TracChangeset
for help on using the changeset viewer.