summaryrefslogtreecommitdiff
path: root/IntelFrameworkModulePkg/Library/GenericBdsLib/BdsBoot.c
diff options
context:
space:
mode:
authortye1 <tye1@6f19259b-4bc3-4df7-8a09-765794883524>2010-01-25 03:05:41 +0000
committertye1 <tye1@6f19259b-4bc3-4df7-8a09-765794883524>2010-01-25 03:05:41 +0000
commita7a523e07b1f804efed99fcf57cf0421904c75a9 (patch)
tree7312d68dd73e292887e7a3c0b2ba27d851b9888a /IntelFrameworkModulePkg/Library/GenericBdsLib/BdsBoot.c
parente4ef0031cd0c6dfd9085576bc09266090899a8ba (diff)
downloadedk2-platforms-a7a523e07b1f804efed99fcf57cf0421904c75a9.tar.xz
1.Change the behavior of BdsBoot, to enumerate Boot Options by EfiLoadFileProtocol, other than EfiManagedNetworkServiceBindingProtocol.
2.Add MSG_IPv4_DP and MSG_IPv6_DP into boot type of BDS_EFI_MESSAGE_MAC_BOOT. 3.Change the file header format of inf file and remove the MNP dependency. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9799 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkModulePkg/Library/GenericBdsLib/BdsBoot.c')
-rw-r--r--IntelFrameworkModulePkg/Library/GenericBdsLib/BdsBoot.c114
1 files changed, 35 insertions, 79 deletions
diff --git a/IntelFrameworkModulePkg/Library/GenericBdsLib/BdsBoot.c b/IntelFrameworkModulePkg/Library/GenericBdsLib/BdsBoot.c
index e6b2fe4d17..e9e3435abd 100644
--- a/IntelFrameworkModulePkg/Library/GenericBdsLib/BdsBoot.c
+++ b/IntelFrameworkModulePkg/Library/GenericBdsLib/BdsBoot.c
@@ -991,8 +991,8 @@ BdsLibEnumerateAllBootOption (
EFI_HANDLE *BlockIoHandles;
EFI_BLOCK_IO_PROTOCOL *BlkIo;
UINTN Index;
- UINTN NumberNetworkHandles;
- EFI_HANDLE *NetworkHandles;
+ UINTN NumOfLoadFileHandles;
+ EFI_HANDLE *LoadFileHandles;
UINTN FvHandleCount;
EFI_HANDLE *FvHandleBuffer;
EFI_FV_FILETYPE Type;
@@ -1171,37 +1171,25 @@ BdsLibEnumerateAllBootOption (
//
// Parse Network Boot Device
//
- NumberNetworkHandles = 0;
+ NumOfLoadFileHandles = 0;
//
- // Search MNP Service Binding protocol for UEFI network stack
+ // Search Load File protocol for PXE boot option.
//
gBS->LocateHandleBuffer (
ByProtocol,
- &gEfiManagedNetworkServiceBindingProtocolGuid,
+ &gEfiLoadFileProtocolGuid,
NULL,
- &NumberNetworkHandles,
- &NetworkHandles
+ &NumOfLoadFileHandles,
+ &LoadFileHandles
);
- if (NumberNetworkHandles == 0) {
- //
- // MNP Service Binding protocol not found, search SNP for EFI network stack
- //
- gBS->LocateHandleBuffer (
- ByProtocol,
- &gEfiSimpleNetworkProtocolGuid,
- NULL,
- &NumberNetworkHandles,
- &NetworkHandles
- );
- }
- for (Index = 0; Index < NumberNetworkHandles; Index++) {
+ for (Index = 0; Index < NumOfLoadFileHandles; Index++) {
UnicodeSPrint (Buffer, sizeof (Buffer), L"%d", Index);
- BdsLibBuildOptionFromHandle (NetworkHandles[Index], BdsBootOptionList, Buffer);
+ BdsLibBuildOptionFromHandle (LoadFileHandles[Index], BdsBootOptionList, Buffer);
}
- if (NumberNetworkHandles != 0) {
- FreePool (NetworkHandles);
+ if (NumOfLoadFileHandles != 0) {
+ FreePool (LoadFileHandles);
}
//
@@ -1556,16 +1544,9 @@ BdsLibNetworkBootWithMediaPresent (
UpdatedDevicePath = DevicePath;
//
- // Locate MNP Service Binding protocol for UEFI network stack first
+ // Locate Load File Protocol for PXE boot option first
//
- Status = gBS->LocateDevicePath (&gEfiManagedNetworkServiceBindingProtocolGuid, &UpdatedDevicePath, &Handle);
- if (EFI_ERROR (Status)) {
- //
- // MNP Service Binding protocol not found, search SNP for EFI network stack
- //
- UpdatedDevicePath = DevicePath;
- Status = gBS->LocateDevicePath (&gEfiSimpleNetworkProtocolGuid, &UpdatedDevicePath, &Handle);
- }
+ Status = gBS->LocateDevicePath (&gEfiLoadFileProtocolGuid, &UpdatedDevicePath, &Handle);
if (EFI_ERROR (Status)) {
//
// Device not present so see if we need to connect it
@@ -1575,11 +1556,7 @@ BdsLibNetworkBootWithMediaPresent (
//
// This one should work after we did the connect
//
- Status = gBS->LocateDevicePath (&gEfiManagedNetworkServiceBindingProtocolGuid, &UpdatedDevicePath, &Handle);
- if (EFI_ERROR (Status)) {
- UpdatedDevicePath = DevicePath;
- Status = gBS->LocateDevicePath (&gEfiSimpleNetworkProtocolGuid, &UpdatedDevicePath, &Handle);
- }
+ Status = gBS->LocateDevicePath (&gEfiLoadFileProtocolGuid, &UpdatedDevicePath, &Handle);
}
}
@@ -1727,6 +1704,8 @@ BdsGetBootTypeFromDevicePath (
case MSG_MAC_ADDR_DP:
case MSG_VLAN_DP:
+ case MSG_IPv4_DP:
+ case MSG_IPv6_DP:
BootType = BDS_EFI_MESSAGE_MAC_BOOT;
break;
@@ -1794,74 +1773,51 @@ BdsLibIsValidEFIBootOptDevicePathExt (
EFI_DEVICE_PATH_PROTOCOL *TempDevicePath;
EFI_DEVICE_PATH_PROTOCOL *LastDeviceNode;
EFI_BLOCK_IO_PROTOCOL *BlockIo;
- EFI_LOAD_FILE_PROTOCOL *LoadFile;
TempDevicePath = DevPath;
LastDeviceNode = DevPath;
//
- // Check if it's a valid boot option for network boot device
- // Check if there is MNP Service Binding Protocol or SimpleNetworkProtocol
- // installed. If yes, that means there is the network card there.
+ // Check if it's a valid boot option for network boot device.
+ // Check if there is EfiLoadFileProtocol installed.
+ // If yes, that means there is a boot option for network.
//
Status = gBS->LocateDevicePath (
- &gEfiManagedNetworkServiceBindingProtocolGuid,
+ &gEfiLoadFileProtocolGuid,
&TempDevicePath,
&Handle
);
if (EFI_ERROR (Status)) {
- TempDevicePath = DevPath;
- Status = gBS->LocateDevicePath (
- &gEfiSimpleNetworkProtocolGuid,
- &TempDevicePath,
- &Handle
- );
- }
- if (EFI_ERROR (Status)) {
//
// Device not present so see if we need to connect it
//
TempDevicePath = DevPath;
BdsLibConnectDevicePath (TempDevicePath);
Status = gBS->LocateDevicePath (
- &gEfiManagedNetworkServiceBindingProtocolGuid,
+ &gEfiLoadFileProtocolGuid,
&TempDevicePath,
&Handle
);
- if (EFI_ERROR (Status)) {
- TempDevicePath = DevPath;
- Status = gBS->LocateDevicePath (
- &gEfiSimpleNetworkProtocolGuid,
- &TempDevicePath,
- &Handle
- );
- }
}
if (!EFI_ERROR (Status)) {
- //
- // Check whether LoadFile protocol is installed
- //
- Status = gBS->HandleProtocol (Handle, &gEfiLoadFileProtocolGuid, (VOID **)&LoadFile);
- if (!EFI_ERROR (Status)) {
- if (!IsDevicePathEnd (TempDevicePath)) {
- //
- // LoadFile protocol is not installed on handle with exactly the same DevPath
- //
- return FALSE;
- }
+ if (!IsDevicePathEnd (TempDevicePath)) {
+ //
+ // LoadFile protocol is not installed on handle with exactly the same DevPath
+ //
+ return FALSE;
+ }
- if (CheckMedia) {
- //
- // Test if it is ready to boot now
- //
- if (BdsLibNetworkBootWithMediaPresent(DevPath)) {
- return TRUE;
- }
- } else {
+ if (CheckMedia) {
+ //
+ // Test if it is ready to boot now
+ //
+ if (BdsLibNetworkBootWithMediaPresent(DevPath)) {
return TRUE;
}
- }
+ } else {
+ return TRUE;
+ }
}
//