Changeset 50584 in vbox for trunk/src/VBox/Devices/EFI
- Timestamp:
- Feb 25, 2014 4:06:26 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/DevEFI.cpp
r48786 r50584 23 23 #include <VBox/vmm/pdmdev.h> 24 24 #include <VBox/vmm/pgm.h> 25 #include <VBox/vmm/cpum.h> 25 26 #include <VBox/vmm/mm.h> 26 27 #include <VBox/log.h> … … 2209 2210 N_("Configuration error: Querying \"BootArgs\" as a string failed")); 2210 2211 2211 //strcpy(pThis->szBootArgs, "-v keepsyms=1 io=0xf"); 2212 //strcpy(pThis->szBootArgs, "-v keepsyms=1 io=0xf debug=0x2a"); 2213 //strcpy(pThis->szBootArgs, "-v keepsyms=1 debug=0x2a"); 2212 2214 LogRel(("EFI: boot args = %s\n", pThis->szBootArgs)); 2213 2215 … … 2239 2241 */ 2240 2242 pThis->u64TscFrequency = TMCpuTicksPerSecond(PDMDevHlpGetVM(pDevIns)); 2241 /* Multiplier is read from MSR_IA32_PERF_STATUS, and now is hardcoded as 4. */2242 pThis->u64FsbFrequency = pThis->u64TscFrequency / 4;2243 2243 pThis->u64CpuFrequency = pThis->u64TscFrequency; 2244 pThis->u64FsbFrequency = CPUMGetGuestBusFrequency(PDMDevHlpGetVM(pDevIns)); 2244 2245 2245 2246 /*
Note:
See TracChangeset
for help on using the changeset viewer.