Changeset 53336 in vbox
- Timestamp:
- Nov 14, 2014 5:29:57 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 96931
- Location:
- trunk/src/VBox/Devices/EFI/Firmware/VBoxPkg
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxPkg.dec
r48674 r53336 50 50 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase|0|UINT32|0x00001004 51 51 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize|0|UINT32|0x00001005 52 gVBoxVgaPkgTokenSpaceGuid.PcdDriverSupportedEfiVersion|0x0002000a|UINT32|0x00010003 52 53 53 54 ## XXX - boot mode - gEfiNt32PkgTokenSpaceGuid.PcdWinNtBootMode|1|UINT32|0x00001006 -
trunk/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxVgaDxe/VBoxVga.c
r53144 r53336 515 515 &gEfiGraphicsOutputProtocolGuid, 516 516 &Private->GraphicsOutput, 517 #if 0518 517 &gEfiEdidDiscoveredProtocolGuid, 519 518 &Private->EdidDiscovered, 520 519 &gEfiEdidActiveProtocolGuid, 521 520 &Private->EdidActive, 522 #endif523 521 NULL 524 522 ); … … 1063 1061 ASSERT_EFI_ERROR (Status); 1064 1062 1065 #if 01066 1063 // 1067 1064 // Install EFI Driver Supported EFI Version Protocol required for … … 1073 1070 &gEfiDriverSupportedEfiVersionProtocolGuid, 1074 1071 &gVBoxVgaDriverSupportedEfiVersion, 1072 &gEfiAppleFrameBufferInfoGuid, 1073 &gAppleFrameBufferInfo, 1075 1074 NULL 1076 1075 ); 1077 1076 ASSERT_EFI_ERROR (Status); 1078 #endif1079 Status = gBS->InstallMultipleProtocolInterfaces (1080 &ImageHandle,1081 &gEfiAppleFrameBufferInfoGuid,1082 &gAppleFrameBufferInfo,1083 NULL1084 );1085 ASSERT_EFI_ERROR (Status);1086 1087 1077 1088 1078 return Status; -
trunk/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxVgaDxe/VBoxVgaDxe.inf
r48674 r53336 62 62 ENTRY_POINT = InitializeVBoxVga 63 63 64 PCI_VENDOR_ID = 0x 101365 PCI_DEVICE_ID = 0x 00A864 PCI_VENDOR_ID = 0x80EE 65 PCI_DEVICE_ID = 0xBEEF 66 66 PCI_CLASS_CODE = 0x030000 67 67 PCI_REVISION = 0x00 … … 116 116 gVBoxVgaPkgTokenSpaceGuid.PcdSupportGop 117 117 gVBoxVgaPkgTokenSpaceGuid.PcdSupportUga 118 119 [Pcd] 120 gVBoxVgaPkgTokenSpaceGuid.PcdDriverSupportedEfiVersion
Note:
See TracChangeset
for help on using the changeset viewer.