Changeset 26495 in vbox for trunk/src/VBox/Devices/EFI
- Timestamp:
- Feb 14, 2010 7:59:48 AM (15 years ago)
- Location:
- trunk/src/VBox/Devices/EFI
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/DevEFI.cpp
r26467 r26495 1135 1135 * CPU frequencies 1136 1136 */ 1137 // @todo: we need to have VMM API to access TSC increase speed, for now provide reasonable default 1137 // @todo: we need to have VMM API to access TSC increase speed, for now provide reasonable default 1138 1138 pThis->u64TscFrequency = 2500000000; // TMCpuTicksPerSecond(PDMDevHlpGetVM(pDevIns)); 1139 1139 /* Multiplier is read from MSR_IA32_PERF_STATUS, and now is hardcoded as 4 */ -
trunk/src/VBox/Devices/EFI/Firmware2/VBoxPkg/VBoxConsoleDxe/VBoxConsole.c
r26464 r26495 30 30 static EFI_GUID gVBoxConsoleVarGuid = { 0xb53865fd, 0xb76c, 0x4433, { 0x9e, 0x85, 0xc0, 0xca, 0xdf, 0x65, 0xaa, 0xb8}}; 31 31 32 static EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *TextOutputProtocol; 32 static EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *TextOutputProtocol; 33 33 static EFI_GRAPHICS_OUTPUT_PROTOCOL *Gop; 34 34 static EFI_UGA_DRAW_PROTOCOL *Uga; … … 70 70 GetVmVariable(EFI_INFO_INDEX_GOP_MODE, (CHAR8 *)&mode, sizeof(UINT32)); 71 71 r = Gop->SetMode(Gop, mode); 72 } 72 } 73 73 else if (Uga) 74 74 { … … 116 116 return r; 117 117 } 118 118 119 119 r = gBS->LocateProtocol(&gEfiSimpleTextOutProtocolGuid, NULL, (VOID **)&TextOutputProtocol); 120 120 if(EFI_ERROR(r))
Note:
See TracChangeset
for help on using the changeset viewer.