]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/EmuVariableFvbRuntimeDxe/Fvb.inf
c015116e8cc490bbe8b9273f777e1a1466eb3792
[mirror_edk2.git] / OvmfPkg / EmuVariableFvbRuntimeDxe / Fvb.inf
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 - 2009, Intel Corporation
6 #
7 # All rights reserved. This program and the accompanying materials
8 # are licensed and made available under the terms and conditions of the BSD License
9 # which accompanies this distribution. The full text of the license may be found at
10 # http://opensource.org/licenses/bsd-license.php
11 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13 #
14 #**/
15
16 [Defines]
17 INF_VERSION = 0x00010005
18 BASE_NAME = EmuVariableFvbRuntimeDxe
19 FILE_GUID = 22dc2b60-fe40-42ac-b01f-3ab1fad9aad8
20 MODULE_TYPE = DXE_RUNTIME_DRIVER
21 VERSION_STRING = 1.0
22 EDK_RELEASE_VERSION = 0x00020000
23 EFI_SPECIFICATION_VERSION = 0x00020000
24
25 ENTRY_POINT = FvbInitialize
26
27 #
28 # The following information is for reference only and not required by the build tools.
29 #
30 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
31 #
32
33 [Sources.common]
34 Fvb.c
35
36
37 [Packages]
38 MdePkg/MdePkg.dec
39 MdeModulePkg/MdeModulePkg.dec
40 OvmfPkg/OvmfPkg.dec
41
42
43 [LibraryClasses]
44 BaseLib
45 BaseMemoryLib
46 DebugLib
47 DxeServicesTableLib
48 HobLib
49 MemoryAllocationLib
50 PcdLib
51 PlatformFvbLib
52 UefiBootServicesTableLib
53 UefiDriverEntryPoint
54 UefiLib
55 UefiRuntimeLib
56
57
58 [Guids]
59 gEfiEventVirtualAddressChangeGuid # ALWAYS_CONSUMED Create Event: EVENT_GROUP_GUID
60
61
62 [Protocols]
63 gEfiFirmwareVolumeBlockProtocolGuid # PROTOCOL ALWAYS_PRODUCED
64 gEfiDevicePathProtocolGuid # PROTOCOL ALWAYS_PRODUCED
65
66
67 [FixedPcd]
68 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize
69 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize
70 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize
71 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize
72
73
74 [Pcd]
75 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase
76 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase
77 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase
78 gEfiMdeModulePkgTokenSpaceGuid.PcdEmuVariableNvStoreReserved
79
80
81 [Depex]
82 TRUE
83