mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-12-01 12:53:27 +01:00
25 lines
400 B
C
25 lines
400 B
C
|
/** @file
|
||
|
|
||
|
Copyright (c) 2011-2014, ARM Limited. All rights reserved.
|
||
|
|
||
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
|
||
|
**/
|
||
|
|
||
|
#include <PiPei.h>
|
||
|
|
||
|
#include <Library/ArmPlatformLib.h>
|
||
|
#include <Library/HobLib.h>
|
||
|
#include <Library/PcdLib.h>
|
||
|
|
||
|
EFI_STATUS
|
||
|
EFIAPI
|
||
|
PlatformPeim (
|
||
|
VOID
|
||
|
)
|
||
|
{
|
||
|
BuildFvHob (PcdGet64 (PcdFvBaseAddress), PcdGet32 (PcdFvSize));
|
||
|
|
||
|
return EFI_SUCCESS;
|
||
|
}
|