Last change
on this file was 99404, checked in by vboxsync, 21 months ago |
Devices/EFI/FirmwareNew: Update to edk2-stable202302 and make it build, bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
1.8 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # Firmware Block Services to support emulating non-volatile variables
|
---|
3 | # by pretending that a memory buffer is storage for the NV variables.
|
---|
4 | #
|
---|
5 | # Copyright (c) 2008 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
6 | #
|
---|
7 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
8 | #
|
---|
9 | ##
|
---|
10 |
|
---|
11 | [Defines]
|
---|
12 | INF_VERSION = 0x00010005
|
---|
13 | BASE_NAME = EmuVariableFvbRuntimeDxe
|
---|
14 | FILE_GUID = 22dc2b60-fe40-42ac-b01f-3ab1fad9aad8
|
---|
15 | MODULE_TYPE = DXE_RUNTIME_DRIVER
|
---|
16 | VERSION_STRING = 1.0
|
---|
17 | ENTRY_POINT = FvbInitialize
|
---|
18 |
|
---|
19 | #
|
---|
20 | # The following information is for reference only and not required by the build tools.
|
---|
21 | #
|
---|
22 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
23 | #
|
---|
24 |
|
---|
25 | [Sources]
|
---|
26 | Fvb.c
|
---|
27 | Fvb.h
|
---|
28 |
|
---|
29 | [Packages]
|
---|
30 | MdePkg/MdePkg.dec
|
---|
31 | MdeModulePkg/MdeModulePkg.dec
|
---|
32 | OvmfPkg/OvmfPkg.dec
|
---|
33 |
|
---|
34 | [LibraryClasses]
|
---|
35 | BaseLib
|
---|
36 | BaseMemoryLib
|
---|
37 | DebugLib
|
---|
38 | DxeServicesTableLib
|
---|
39 | HobLib
|
---|
40 | MemoryAllocationLib
|
---|
41 | PcdLib
|
---|
42 | PlatformFvbLib
|
---|
43 | UefiBootServicesTableLib
|
---|
44 | UefiDriverEntryPoint
|
---|
45 | UefiLib
|
---|
46 | UefiRuntimeLib
|
---|
47 |
|
---|
48 | [Guids]
|
---|
49 | gEfiEventVirtualAddressChangeGuid # ALWAYS_CONSUMED Create Event: EVENT_GROUP_GUID
|
---|
50 |
|
---|
51 | [Protocols]
|
---|
52 | gEfiFirmwareVolumeBlock2ProtocolGuid # PROTOCOL ALWAYS_PRODUCED
|
---|
53 | gEfiDevicePathProtocolGuid # PROTOCOL ALWAYS_PRODUCED
|
---|
54 |
|
---|
55 | [FixedPcd]
|
---|
56 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize
|
---|
57 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize
|
---|
58 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize
|
---|
59 |
|
---|
60 | [Pcd]
|
---|
61 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64
|
---|
62 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase64
|
---|
63 | gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase64
|
---|
64 | gEfiMdeModulePkgTokenSpaceGuid.PcdEmuVariableNvStoreReserved
|
---|
65 |
|
---|
66 | [Depex]
|
---|
67 | TRUE
|
---|
68 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.