]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/FaultTolerantWriteDxe/FaultTolerantWriteDxe.inf
Update the copyright notice format
[mirror_edk2.git] / MdeModulePkg / Universal / FaultTolerantWriteDxe / FaultTolerantWriteDxe.inf
1 ## @file
2 # This driver installs Fault Tolerant Write (FTW) protocol,
3 # which provides fault tolerant write capability for block devices.
4 # Its implementation depends on the full functionality FVB protocol that support read, write/erase flash access.
5 #
6 # Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
7 #
8 # This program and the accompanying materials
9 # are licensed and made available under the terms and conditions of the BSD License
10 # which accompanies this distribution. The full text of the license may be found at
11 # http://opensource.org/licenses/bsd-license.php
12 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14 #
15 ##
16
17 [Defines]
18 INF_VERSION = 0x00010005
19 BASE_NAME = FaultTolerantWriteDxe
20 FILE_GUID = FE5CEA76-4F72-49e8-986F-2CD899DFFE5D
21 MODULE_TYPE = DXE_DRIVER
22 VERSION_STRING = 1.0
23 ENTRY_POINT = InitializeFaultTolerantWrite
24
25 #
26 # The following information is for reference only and not required by the build tools.
27 #
28 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
29 #
30
31 [Sources]
32 FtwMisc.c
33 UpdateWorkingBlock.c
34 FaultTolerantWrite.c
35 FaultTolerantWrite.h
36
37 [Packages]
38 MdePkg/MdePkg.dec
39 MdeModulePkg/MdeModulePkg.dec
40
41 [LibraryClasses]
42 UefiBootServicesTableLib
43 MemoryAllocationLib
44 BaseMemoryLib
45 UefiDriverEntryPoint
46 DebugLib
47 UefiLib
48
49 [Guids]
50 gEfiSystemNvDataFvGuid ## CONSUMES ## FV Signature of Working Space Header
51
52 [Protocols]
53 gEfiSwapAddressRangeProtocolGuid | PcdFullFtwServiceEnable ## CONSUMES
54 gEfiFirmwareVolumeBlockProtocolGuid ## CONSUMES
55 gEfiFaultTolerantWriteProtocolGuid ## PRODUCES
56
57 [FeaturePcd]
58 gEfiMdeModulePkgTokenSpaceGuid.PcdFullFtwServiceEnable
59
60 [Pcd]
61 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase
62 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize
63 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase
64 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize
65
66 [Depex]
67 gEfiFirmwareVolumeBlockProtocolGuid
68