Skip to content

Commit 015206b

Browse files
committed
some workaround from Tianocore
Signed-off-by: Slice <[email protected]>
1 parent 286a4f3 commit 015206b

File tree

17 files changed

+100
-21
lines changed

17 files changed

+100
-21
lines changed

CloverEFI/OsxDxeCore/DxeMain/DxeMain.c

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,7 @@ EFI_SYSTEM_TABLE *gDxeCoreST = NULL;
207207
EFI_RUNTIME_SERVICES *gDxeCoreRT = &mEfiRuntimeServicesTableTemplate;
208208
EFI_HANDLE gDxeCoreImageHandle = NULL;
209209

210+
static BOOLEAN mExitBootServicesCalled = FALSE;
210211

211212
//
212213
// EFI Decompress Protocol
@@ -778,9 +779,13 @@ CoreExitBootServices (
778779
Status = CoreTerminateMemoryMap (MapKey);
779780
if (EFI_ERROR(Status)) {
780781
//
781-
// Notify other drivers that ExitBootServices fail
782+
// Notify other drivers that ExitBootServices fail. Do this ones
782783
//
783-
CoreNotifySignalList (&gEventExitBootServicesFailedGuid);
784+
//CoreNotifySignalList (&gEventExitBootServicesFailedGuid);
785+
if (!mExitBootServicesCalled) {
786+
CoreNotifySignalList (&gEventExitBootServicesFailedGuid);
787+
mExitBootServicesCalled = TRUE;
788+
}
784789
return Status;
785790
}
786791

Drivers/SataControllerDxe/SataController.c

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,31 @@ SataControllerSupported (
355355
EFI_STATUS Status;
356356
EFI_PCI_IO_PROTOCOL *PciIo;
357357
PCI_TYPE00 PciData;
358+
EFI_DEVICE_PATH_PROTOCOL *ParentDevicePath;
359+
//
360+
// Attempt to open DevicePath Protocol
361+
//
362+
Status = gBS->OpenProtocol (
363+
Controller,
364+
&gEfiDevicePathProtocolGuid,
365+
(VOID *)&ParentDevicePath,
366+
This->DriverBindingHandle,
367+
Controller,
368+
EFI_OPEN_PROTOCOL_BY_DRIVER
369+
);
370+
if (EFI_ERROR (Status)) {
371+
return Status;
372+
}
373+
///
374+
/// Close the protocol because we don't use it here
375+
///
376+
gBS->CloseProtocol (
377+
Controller,
378+
&gEfiDevicePathProtocolGuid,
379+
This->DriverBindingHandle,
380+
Controller
381+
);
382+
358383

359384
//
360385
// Attempt to open PCI I/O Protocol

Drivers/SataControllerDxe/SataController.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
#include <Uefi.h>
1919
#include <Protocol/ComponentName.h>
20+
#include <Protocol/DevicePath.h>
2021
#include <Protocol/DriverBinding.h>
2122
#include <Protocol/PciIo.h>
2223
#include <Protocol/IdeControllerInit.h>

Drivers/SataControllerDxe/SataControllerDxe.inf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,5 @@
4848
[Protocols]
4949
gEfiPciIoProtocolGuid
5050
gEfiIdeControllerInitProtocolGuid
51+
gEfiDevicePathProtocolGuid
5152

Drivers/XhciDxe/XhciSched.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2762,7 +2762,7 @@ XhcInitializeEndpointContext (
27622762

27632763
NumEp = IfDesc->NumEndpoints;
27642764

2765-
EpDesc = (USB_ENDPOINT_DESCRIPTOR *)(IfDesc + 1);
2765+
EpDesc = (USB_ENDPOINT_DESCRIPTOR *)((UINTN)IfDesc + IfDesc->Length);
27662766
for (EpIndex = 0; EpIndex < NumEp; EpIndex++) {
27672767
while (EpDesc->DescriptorType != USB_DESC_TYPE_ENDPOINT) {
27682768
EpDesc = (USB_ENDPOINT_DESCRIPTOR *)((UINTN)EpDesc + EpDesc->Length);
@@ -2954,7 +2954,7 @@ XhcInitializeEndpointContext64 (
29542954

29552955
NumEp = IfDesc->NumEndpoints;
29562956

2957-
EpDesc = (USB_ENDPOINT_DESCRIPTOR *)(IfDesc + 1);
2957+
EpDesc = (USB_ENDPOINT_DESCRIPTOR *)((UINTN)IfDesc + IfDesc->Length);
29582958
for (EpIndex = 0; EpIndex < NumEp; EpIndex++) {
29592959
while (EpDesc->DescriptorType != USB_DESC_TYPE_ENDPOINT) {
29602960
EpDesc = (USB_ENDPOINT_DESCRIPTOR *)((UINTN)EpDesc + EpDesc->Length);
@@ -3155,7 +3155,7 @@ XhcSetConfigCmd (
31553155

31563156
MaxDci = 0;
31573157

3158-
IfDesc = (USB_INTERFACE_DESCRIPTOR *)(ConfigDesc + 1);
3158+
IfDesc = (USB_INTERFACE_DESCRIPTOR *)((UINTN)ConfigDesc + ConfigDesc->Length);
31593159
for (Index = 0; Index < ConfigDesc->NumInterfaces; Index++) {
31603160
while ((IfDesc->DescriptorType != USB_DESC_TYPE_INTERFACE) || (IfDesc->AlternateSetting != 0)) {
31613161
IfDesc = (USB_INTERFACE_DESCRIPTOR *)((UINTN)IfDesc + IfDesc->Length);
@@ -3248,7 +3248,7 @@ XhcSetConfigCmd64 (
32483248

32493249
MaxDci = 0;
32503250

3251-
IfDesc = (USB_INTERFACE_DESCRIPTOR *)(ConfigDesc + 1);
3251+
IfDesc = (USB_INTERFACE_DESCRIPTOR *)((UINTN)ConfigDesc + ConfigDesc->Length);
32523252
for (Index = 0; Index < ConfigDesc->NumInterfaces; Index++) {
32533253
while ((IfDesc->DescriptorType != USB_DESC_TYPE_INTERFACE) || (IfDesc->AlternateSetting != 0)) {
32543254
IfDesc = (USB_INTERFACE_DESCRIPTOR *)((UINTN)IfDesc + IfDesc->Length);
@@ -3532,7 +3532,7 @@ XhcSetInterface (
35323532
IfDescActive = NULL;
35333533
IfDescSet = NULL;
35343534

3535-
IfDesc = (USB_INTERFACE_DESCRIPTOR *)(ConfigDesc + 1);
3535+
IfDesc = (USB_INTERFACE_DESCRIPTOR *)((UINTN)ConfigDesc + ConfigDesc->Length);
35363536
while ((UINTN) IfDesc < ((UINTN) ConfigDesc + ConfigDesc->TotalLength)) {
35373537
if ((IfDesc->DescriptorType == USB_DESC_TYPE_INTERFACE) && (IfDesc->Length >= sizeof (USB_INTERFACE_DESCRIPTOR))) {
35383538
if (IfDesc->InterfaceNumber == (UINT8) Request->Index) {
@@ -3734,7 +3734,7 @@ XhcSetInterface64 (
37343734
IfDescActive = NULL;
37353735
IfDescSet = NULL;
37363736

3737-
IfDesc = (USB_INTERFACE_DESCRIPTOR *)(ConfigDesc + 1);
3737+
IfDesc = (USB_INTERFACE_DESCRIPTOR *)((UINTN)ConfigDesc + ConfigDesc->Length);
37383738
while ((UINTN) IfDesc < ((UINTN) ConfigDesc + ConfigDesc->TotalLength)) {
37393739
if ((IfDesc->DescriptorType == USB_DESC_TYPE_INTERFACE) && (IfDesc->Length >= sizeof (USB_INTERFACE_DESCRIPTOR))) {
37403740
if (IfDesc->InterfaceNumber == (UINT8) Request->Index) {

FileSystems/FatPkg/EnhancedFatDxe/DirectoryManage.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -979,7 +979,7 @@ Routine Description:
979979
{
980980
EFI_STATUS Status;
981981
FAT_ODIR *ODir;
982-
FAT_DIRENT *TempDirEnt;
982+
FAT_DIRENT *TempDirEnt = NULL;
983983
UINT32 NewEndPos;
984984

985985
ODir = OFile->ODir;

FileSystems/FatPkg/EnhancedFatDxe/Info.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ Routine Description:
312312
CHAR16 NewFileName[EFI_PATH_STRING_LENGTH];
313313
EFI_TIME ZeroTime;
314314
FAT_DIRENT *DirEnt;
315-
FAT_DIRENT *TempDirEnt;
315+
FAT_DIRENT *TempDirEnt = NULL;
316316
UINT8 NewAttribute;
317317
BOOLEAN ReadOnly;
318318

MdeModulePkg/Bus/Pci/SataControllerDxe/SataController.c

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,30 @@ SataControllerSupported (
293293
EFI_STATUS Status;
294294
EFI_PCI_IO_PROTOCOL *PciIo;
295295
PCI_TYPE00 PciData;
296+
EFI_DEVICE_PATH_PROTOCOL *ParentDevicePath;
297+
//
298+
// Attempt to open DevicePath Protocol
299+
//
300+
Status = gBS->OpenProtocol (
301+
Controller,
302+
&gEfiDevicePathProtocolGuid,
303+
(VOID *)&ParentDevicePath,
304+
This->DriverBindingHandle,
305+
Controller,
306+
EFI_OPEN_PROTOCOL_BY_DRIVER
307+
);
308+
if (EFI_ERROR (Status)) {
309+
return Status;
310+
}
311+
///
312+
/// Close the protocol because we don't use it here
313+
///
314+
gBS->CloseProtocol (
315+
Controller,
316+
&gEfiDevicePathProtocolGuid,
317+
This->DriverBindingHandle,
318+
Controller
319+
);
296320

297321
//
298322
// Attempt to open PCI I/O Protocol

MdeModulePkg/Bus/Pci/SataControllerDxe/SataController.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include <IndustryStandard/Pci.h>
1616

1717
#include <Protocol/ComponentName.h>
18+
#include <Protocol/DevicePath.h>
1819
#include <Protocol/DriverBinding.h>
1920
#include <Protocol/PciIo.h>
2021
#include <Protocol/IdeControllerInit.h>

MdeModulePkg/Bus/Pci/SataControllerDxe/SataControllerDxe.inf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
[Protocols]
4646
gEfiPciIoProtocolGuid ## TO_START
4747
gEfiIdeControllerInitProtocolGuid ## BY_START
48+
gEfiDevicePathProtocolGuid
4849

4950
[UserExtensions.TianoCore."ExtraFiles"]
5051
SataControllerDxeExtra.uni

MdeModulePkg/Bus/Pci/XhciDxe/XhciSched.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2808,7 +2808,7 @@ XhcInitializeEndpointContext (
28082808

28092809
NumEp = IfDesc->NumEndpoints;
28102810

2811-
EpDesc = (USB_ENDPOINT_DESCRIPTOR *)(IfDesc + 1);
2811+
EpDesc = (USB_ENDPOINT_DESCRIPTOR *)((UINTN)IfDesc + IfDesc->Length);
28122812
for (EpIndex = 0; EpIndex < NumEp; EpIndex++) {
28132813
while (EpDesc->DescriptorType != USB_DESC_TYPE_ENDPOINT) {
28142814
EpDesc = (USB_ENDPOINT_DESCRIPTOR *)((UINTN)EpDesc + EpDesc->Length);
@@ -3007,7 +3007,7 @@ XhcInitializeEndpointContext64 (
30073007

30083008
NumEp = IfDesc->NumEndpoints;
30093009

3010-
EpDesc = (USB_ENDPOINT_DESCRIPTOR *)(IfDesc + 1);
3010+
EpDesc = (USB_ENDPOINT_DESCRIPTOR *)((UINTN)IfDesc + IfDesc->Length);
30113011
for (EpIndex = 0; EpIndex < NumEp; EpIndex++) {
30123012
while (EpDesc->DescriptorType != USB_DESC_TYPE_ENDPOINT) {
30133013
EpDesc = (USB_ENDPOINT_DESCRIPTOR *)((UINTN)EpDesc + EpDesc->Length);
@@ -3213,7 +3213,7 @@ XhcSetConfigCmd (
32133213

32143214
MaxDci = 0;
32153215

3216-
IfDesc = (USB_INTERFACE_DESCRIPTOR *)(ConfigDesc + 1);
3216+
IfDesc = (USB_INTERFACE_DESCRIPTOR *)((UINTN)ConfigDesc + ConfigDesc->Length);
32173217
for (Index = 0; Index < ConfigDesc->NumInterfaces; Index++) {
32183218
while ((IfDesc->DescriptorType != USB_DESC_TYPE_INTERFACE) || (IfDesc->AlternateSetting != 0)) {
32193219
IfDesc = (USB_INTERFACE_DESCRIPTOR *)((UINTN)IfDesc + IfDesc->Length);
@@ -3304,7 +3304,7 @@ XhcSetConfigCmd64 (
33043304

33053305
MaxDci = 0;
33063306

3307-
IfDesc = (USB_INTERFACE_DESCRIPTOR *)(ConfigDesc + 1);
3307+
IfDesc = (USB_INTERFACE_DESCRIPTOR *)((UINTN)ConfigDesc + ConfigDesc->Length);
33083308
for (Index = 0; Index < ConfigDesc->NumInterfaces; Index++) {
33093309
while ((IfDesc->DescriptorType != USB_DESC_TYPE_INTERFACE) || (IfDesc->AlternateSetting != 0)) {
33103310
IfDesc = (USB_INTERFACE_DESCRIPTOR *)((UINTN)IfDesc + IfDesc->Length);
@@ -3588,7 +3588,7 @@ XhcSetInterface (
35883588
IfDescActive = NULL;
35893589
IfDescSet = NULL;
35903590

3591-
IfDesc = (USB_INTERFACE_DESCRIPTOR *)(ConfigDesc + 1);
3591+
IfDesc = (USB_INTERFACE_DESCRIPTOR *)((UINTN)ConfigDesc + ConfigDesc->Length);
35923592
while ((UINTN)IfDesc < ((UINTN)ConfigDesc + ConfigDesc->TotalLength)) {
35933593
if ((IfDesc->DescriptorType == USB_DESC_TYPE_INTERFACE) && (IfDesc->Length >= sizeof (USB_INTERFACE_DESCRIPTOR))) {
35943594
if (IfDesc->InterfaceNumber == (UINT8)Request->Index) {
@@ -3794,7 +3794,7 @@ XhcSetInterface64 (
37943794
IfDescActive = NULL;
37953795
IfDescSet = NULL;
37963796

3797-
IfDesc = (USB_INTERFACE_DESCRIPTOR *)(ConfigDesc + 1);
3797+
IfDesc = (USB_INTERFACE_DESCRIPTOR *)((UINTN)ConfigDesc + ConfigDesc->Length);
37983798
while ((UINTN)IfDesc < ((UINTN)ConfigDesc + ConfigDesc->TotalLength)) {
37993799
if ((IfDesc->DescriptorType == USB_DESC_TYPE_INTERFACE) && (IfDesc->Length >= sizeof (USB_INTERFACE_DESCRIPTOR))) {
38003800
if (IfDesc->InterfaceNumber == (UINT8)Request->Index) {

MdeModulePkg/Bus/Pci/XhciPei/XhciSched.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1708,15 +1708,15 @@ XhcPeiSetConfigCmd (
17081708

17091709
MaxDci = 0;
17101710

1711-
IfDesc = (USB_INTERFACE_DESCRIPTOR *) (ConfigDesc + 1);
1711+
IfDesc = (USB_INTERFACE_DESCRIPTOR *) ((UINTN)ConfigDesc + ConfigDesc->Length);
17121712
for (Index = 0; Index < ConfigDesc->NumInterfaces; Index++) {
17131713
while ((IfDesc->DescriptorType != USB_DESC_TYPE_INTERFACE) || (IfDesc->AlternateSetting != 0)) {
17141714
IfDesc = (USB_INTERFACE_DESCRIPTOR *) ((UINTN) IfDesc + IfDesc->Length);
17151715
}
17161716

17171717
NumEp = IfDesc->NumEndpoints;
17181718

1719-
EpDesc = (USB_ENDPOINT_DESCRIPTOR *) (IfDesc + 1);
1719+
EpDesc = (USB_ENDPOINT_DESCRIPTOR *) ((UINTN)IfDesc + IfDesc->Length);
17201720
for (EpIndex = 0; EpIndex < NumEp; EpIndex++) {
17211721
while (EpDesc->DescriptorType != USB_DESC_TYPE_ENDPOINT) {
17221722
EpDesc = (USB_ENDPOINT_DESCRIPTOR *) ((UINTN) EpDesc + EpDesc->Length);
@@ -1924,15 +1924,15 @@ XhcPeiSetConfigCmd64 (
19241924

19251925
MaxDci = 0;
19261926

1927-
IfDesc = (USB_INTERFACE_DESCRIPTOR *) (ConfigDesc + 1);
1927+
IfDesc = (USB_INTERFACE_DESCRIPTOR *) ((UINTN)ConfigDesc + ConfigDesc->Length);
19281928
for (Index = 0; Index < ConfigDesc->NumInterfaces; Index++) {
19291929
while ((IfDesc->DescriptorType != USB_DESC_TYPE_INTERFACE) || (IfDesc->AlternateSetting != 0)) {
19301930
IfDesc = (USB_INTERFACE_DESCRIPTOR *) ((UINTN) IfDesc + IfDesc->Length);
19311931
}
19321932

19331933
NumEp = IfDesc->NumEndpoints;
19341934

1935-
EpDesc = (USB_ENDPOINT_DESCRIPTOR *) (IfDesc + 1);
1935+
EpDesc = (USB_ENDPOINT_DESCRIPTOR *) ((UINTN)IfDesc + IfDesc->Length);
19361936
for (EpIndex = 0; EpIndex < NumEp; EpIndex++) {
19371937
while (EpDesc->DescriptorType != USB_DESC_TYPE_ENDPOINT) {
19381938
EpDesc = (USB_ENDPOINT_DESCRIPTOR *) ((UINTN) EpDesc + EpDesc->Length);

MdeModulePkg/Core/Dxe/DxeMain/DxeMain.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ EFI_RUNTIME_SERVICES *gDxeCoreRT = &mEfiRuntimeServicesTableTemplate;
202202
EFI_HANDLE gDxeCoreImageHandle = NULL;
203203

204204
BOOLEAN gMemoryMapTerminated = FALSE;
205+
static BOOLEAN mExitBootServicesCalled = FALSE;
205206

206207
//
207208
// EFI Decompress Protocol
@@ -755,6 +756,10 @@ CoreExitBootServices (
755756
// Notify other drivers that ExitBootServices fail
756757
//
757758
CoreNotifySignalList (&gEventExitBootServicesFailedGuid);
759+
if (!mExitBootServicesCalled) {
760+
CoreNotifySignalList (&gEventExitBootServicesFailedGuid);
761+
mExitBootServicesCalled = TRUE;
762+
}
758763
return Status;
759764
}
760765

MdePkg/Include/Protocol/BootManagerPolicy.h

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
to connect devices using platform policy.
66
77
Copyright (c) 2015 - 2018, Intel Corporation. All rights reserved.<BR>
8+
Copyright (c) Microsoft Corporation.<BR>
89
SPDX-License-Identifier: BSD-2-Clause-Patent
910
**/
1011

@@ -31,6 +32,11 @@
3132
0x113B2126, 0xFC8A, 0x11E3, { 0xBD, 0x6C, 0xB8, 0xE8, 0x56, 0x2C, 0xBA, 0xFA } \
3233
}
3334

35+
#define EFI_BOOT_MANAGER_POLICY_STORAGE_GUID \
36+
{ \
37+
0xCD68FE79, 0xD3CB, 0x436E, { 0xA8, 0x50, 0xF4, 0x43, 0xC8, 0x8C, 0xFB, 0x49 } \
38+
}
39+
3440
typedef struct _EFI_BOOT_MANAGER_POLICY_PROTOCOL EFI_BOOT_MANAGER_POLICY_PROTOCOL;
3541

3642
#define EFI_BOOT_MANAGER_POLICY_PROTOCOL_REVISION 0x00010000
@@ -98,6 +104,12 @@ EFI_STATUS
98104
EFI_BOOT_SERVICES.ConnectController(). If the Boot Manager has policy
99105
associated with connect all UEFI drivers this policy will be used.
100106
107+
If Class is EFI_BOOT_MANAGER_POLICY_STORAGE_GUID then the Boot Manager will
108+
connect the protocols associated with the discoverable storage disks. This may include
109+
EFI_BLOCK_IO_PROTOCOL, EFI_SIMPLE_FILE_SYSTEM_PROTOCOL, or other storage protocols
110+
appropriate to the device. Some platforms may choose to restrict the connected
111+
devices to exclude USB or other peripherals.
112+
101113
A platform can also define platform specific Class values as a properly generated
102114
EFI_GUID would never conflict with this specification.
103115
@@ -128,5 +140,6 @@ extern EFI_GUID gEfiBootManagerPolicyProtocolGuid;
128140
extern EFI_GUID gEfiBootManagerPolicyConsoleGuid;
129141
extern EFI_GUID gEfiBootManagerPolicyNetworkGuid;
130142
extern EFI_GUID gEfiBootManagerPolicyConnectAllGuid;
143+
extern EFI_GUID gEfiBootManagerPolicyStorageGuid;
131144

132145
#endif

MdePkg/Include/Register/Amd/Msr.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
#ifndef __AMD_MSR_H__
1818
#define __AMD_MSR_H__
1919

20-
#include <Register/Intel/ArchitecturalMsr.h>
20+
#include <Register/Intel/ArchitecturalMsr.h>
21+
#include <Register/Amd/ArchitecturalMsr.h>
2122
#include <Register/Amd/Fam17Msr.h>
2223

2324
#endif

MdePkg/Library/SmmPciExpressLib/SmmPciExpressLib.inf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
PcdLib
3333
DebugLib
3434
IoLib
35+
UefiBootServicesTableLib
3536

3637
[Pcd]
3738
gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress ## CONSUMES

MdePkg/MdePkg.dec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -629,6 +629,7 @@
629629
gEfiBootManagerPolicyConsoleGuid = { 0xCAB0E94C, 0xE15F, 0x11E3, { 0x91, 0x8D, 0xB8, 0xE8, 0x56, 0x2C, 0xBA, 0xFA }}
630630
gEfiBootManagerPolicyNetworkGuid = { 0xD04159DC, 0xE15F, 0x11E3, { 0xB2, 0x61, 0xB8, 0xE8, 0x56, 0x2C, 0xBA, 0xFA }}
631631
gEfiBootManagerPolicyConnectAllGuid = { 0x113B2126, 0xFC8A, 0x11E3, { 0xBD, 0x6C, 0xB8, 0xE8, 0x56, 0x2C, 0xBA, 0xFA }}
632+
gEfiBootManagerPolicyStorageGuid = { 0xCD68FE79, 0xD3CB, 0x436E, { 0xA8, 0x50, 0xF4, 0x43, 0xC8, 0x8C, 0xFB, 0x49 }}
632633

633634
## Include/Protocol/DevicePath.h
634635
gEfiVirtualDiskGuid = { 0x77AB535A, 0x45FC, 0x624B, {0x55, 0x60, 0xF7, 0xB2, 0x81, 0xD1, 0xF9, 0x6E }}

0 commit comments

Comments
 (0)