Update Hob Instance to remove the unused InternalHobLib.h file.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5710 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
36a975ddbd
commit
6812ef9fea
|
@ -31,10 +31,8 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
[Sources.common]
|
[Sources.common]
|
||||||
InternalHobLib.h
|
|
||||||
HobLib.c
|
HobLib.c
|
||||||
|
|
||||||
|
|
||||||
[Packages]
|
[Packages]
|
||||||
MdePkg/MdePkg.dec
|
MdePkg/MdePkg.dec
|
||||||
|
|
||||||
|
@ -42,4 +40,5 @@
|
||||||
[LibraryClasses]
|
[LibraryClasses]
|
||||||
BaseMemoryLib
|
BaseMemoryLib
|
||||||
DebugLib
|
DebugLib
|
||||||
|
DxeCoreEntryPoint
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
HOB Library.
|
HOB Library implementation for DxeCore driver.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2007, Intel Corporation<BR>
|
Copyright (c) 2006 - 2008, Intel Corporation<BR>
|
||||||
All rights reserved. This program and the accompanying materials
|
All rights reserved. This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -16,12 +16,10 @@
|
||||||
|
|
||||||
#include <PiDxe.h>
|
#include <PiDxe.h>
|
||||||
|
|
||||||
|
|
||||||
#include <Library/HobLib.h>
|
#include <Library/HobLib.h>
|
||||||
#include <Library/DebugLib.h>
|
#include <Library/DebugLib.h>
|
||||||
#include <Library/BaseMemoryLib.h>
|
#include <Library/BaseMemoryLib.h>
|
||||||
|
#include <Library/DxeCoreEntryPoint.h>
|
||||||
#include "InternalHobLib.h"
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Returns the pointer to the HOB list.
|
Returns the pointer to the HOB list.
|
||||||
|
@ -187,6 +185,7 @@ GetBootModeHob (
|
||||||
EFI_HOB_HANDOFF_INFO_TABLE *HandOffHob;
|
EFI_HOB_HANDOFF_INFO_TABLE *HandOffHob;
|
||||||
|
|
||||||
HandOffHob = (EFI_HOB_HANDOFF_INFO_TABLE *) GetHobList ();
|
HandOffHob = (EFI_HOB_HANDOFF_INFO_TABLE *) GetHobList ();
|
||||||
|
ASSERT (HandOffHob != NULL);
|
||||||
|
|
||||||
return HandOffHob->BootMode;
|
return HandOffHob->BootMode;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,20 +0,0 @@
|
||||||
/** @file
|
|
||||||
Internal include file of DXE Entry Point HOB Library.
|
|
||||||
|
|
||||||
Copyright (c) 2006 - 2007, Intel Corporation
|
|
||||||
All rights reserved. This program and the accompanying materials
|
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
|
||||||
http://opensource.org/licenses/bsd-license.php
|
|
||||||
|
|
||||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
||||||
|
|
||||||
**/
|
|
||||||
|
|
||||||
#ifndef __DXE_ENTRY_POINT_HOB_LIB_H__
|
|
||||||
#define __DXE_ENTRY_POINT_HOB_LIB_H__
|
|
||||||
|
|
||||||
extern VOID *gHobList;
|
|
||||||
|
|
||||||
#endif
|
|
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
HOB Library.
|
HOB Library implemenation for Dxe Phase.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2007, Intel Corporation<BR>
|
Copyright (c) 2006 - 2008, Intel Corporation<BR>
|
||||||
All rights reserved. This program and the accompanying materials
|
All rights reserved. This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -22,7 +22,6 @@
|
||||||
#include <Library/UefiLib.h>
|
#include <Library/UefiLib.h>
|
||||||
#include <Library/DebugLib.h>
|
#include <Library/DebugLib.h>
|
||||||
#include <Library/BaseMemoryLib.h>
|
#include <Library/BaseMemoryLib.h>
|
||||||
#include "HobLibInternal.h"
|
|
||||||
|
|
||||||
STATIC VOID *mHobList = NULL;
|
STATIC VOID *mHobList = NULL;
|
||||||
|
|
||||||
|
@ -50,7 +49,8 @@ HobLibConstructor (
|
||||||
Status = EfiGetSystemConfigurationTable (&gEfiHobListGuid, &mHobList);
|
Status = EfiGetSystemConfigurationTable (&gEfiHobListGuid, &mHobList);
|
||||||
ASSERT_EFI_ERROR (Status);
|
ASSERT_EFI_ERROR (Status);
|
||||||
ASSERT (mHobList != NULL);
|
ASSERT (mHobList != NULL);
|
||||||
return Status;
|
|
||||||
|
return EFI_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -201,7 +201,7 @@ GetFirstGuidHob (
|
||||||
Get the Boot Mode from the HOB list.
|
Get the Boot Mode from the HOB list.
|
||||||
|
|
||||||
This function returns the system boot mode information from the
|
This function returns the system boot mode information from the
|
||||||
PHIT HOB in HOB list.
|
PHIT HOB in HOB list. If PHIT HOB is NULL, then ASSERT().
|
||||||
|
|
||||||
@param VOID
|
@param VOID
|
||||||
|
|
||||||
|
@ -217,6 +217,7 @@ GetBootModeHob (
|
||||||
EFI_HOB_HANDOFF_INFO_TABLE *HandOffHob;
|
EFI_HOB_HANDOFF_INFO_TABLE *HandOffHob;
|
||||||
|
|
||||||
HandOffHob = (EFI_HOB_HANDOFF_INFO_TABLE *) GetHobList ();
|
HandOffHob = (EFI_HOB_HANDOFF_INFO_TABLE *) GetHobList ();
|
||||||
|
ASSERT (HandOffHob != NULL);
|
||||||
|
|
||||||
return HandOffHob->BootMode;
|
return HandOffHob->BootMode;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,36 +0,0 @@
|
||||||
/** @file
|
|
||||||
Internal include file of DXE Entry Point HOB Library.
|
|
||||||
|
|
||||||
Copyright (c) 2006 - 2007, Intel Corporation
|
|
||||||
All rights reserved. This program and the accompanying materials
|
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
|
||||||
http://opensource.org/licenses/bsd-license.php
|
|
||||||
|
|
||||||
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
||||||
|
|
||||||
**/
|
|
||||||
|
|
||||||
#ifndef _DXE_HOB_LIB_INTERNAL_H__
|
|
||||||
#define _DXE_HOB_LIB_INTERNAL_H__
|
|
||||||
|
|
||||||
/**
|
|
||||||
|
|
||||||
Initialize Hob list.
|
|
||||||
|
|
||||||
@param ImageHandle ImageHandle of the loaded driver.
|
|
||||||
@param SystemTable Pointer to the EFI System Table.
|
|
||||||
|
|
||||||
@retval EFI_SUCCESS One or more of the drivers returned a success code.
|
|
||||||
@retval !EFI_SUCESS The return status from the last driver entry point in the list.
|
|
||||||
**/
|
|
||||||
EFI_STATUS
|
|
||||||
EFIAPI
|
|
||||||
HobLibConstructor (
|
|
||||||
IN EFI_HANDLE ImageHandle,
|
|
||||||
IN EFI_SYSTEM_TABLE *SystemTable
|
|
||||||
)
|
|
||||||
;
|
|
||||||
|
|
||||||
#endif
|
|
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
HOB Library.
|
Provide Hob Library functions for Pei phase.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2007, Intel Corporation<BR>
|
Copyright (c) 2007 - 2008, Intel Corporation<BR>
|
||||||
All rights reserved. This program and the accompanying materials
|
All rights reserved. This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -176,8 +176,8 @@ GetFirstGuidHob (
|
||||||
/**
|
/**
|
||||||
Get the Boot Mode from the HOB list.
|
Get the Boot Mode from the HOB list.
|
||||||
|
|
||||||
This function returns the system boot mode information from the
|
This function returns the system boot mode information
|
||||||
PHIT HOB in HOB list.
|
by PeiCore GetBootMode Service.
|
||||||
|
|
||||||
@param VOID
|
@param VOID
|
||||||
|
|
||||||
|
@ -443,13 +443,8 @@ BuildFv2Hob (
|
||||||
/**
|
/**
|
||||||
Builds a Capsule Volume HOB.
|
Builds a Capsule Volume HOB.
|
||||||
|
|
||||||
This function builds a Capsule Volume HOB.
|
This function is not supported, because Capsule Volume Hob is the platform
|
||||||
It can only be invoked during PEI phase;
|
specific. It is not the common defintion in PI and UEFI spec.
|
||||||
for DXE phase, it will ASSERT() since PEI HOB is read-only for DXE phase.
|
|
||||||
If there is no additional space for HOB creation, then ASSERT().
|
|
||||||
|
|
||||||
@param BaseAddress The base address of the Capsule Volume.
|
|
||||||
@param Length The size of the Capsule Volume in bytes.
|
|
||||||
|
|
||||||
**/
|
**/
|
||||||
VOID
|
VOID
|
||||||
|
|
Loading…
Reference in New Issue