]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/FirmwareVolume/FaultTolerantWriteDxe/FtwLite.inf
32dbadbc0f2d22db39c847f2e379d94c5b0036a5
[mirror_edk2.git] / MdeModulePkg / Universal / FirmwareVolume / FaultTolerantWriteDxe / FtwLite.inf
1 #/** @file
2 # This driver provides lite version of fault tolerant capability for writing operation on flash devices.
3 # Its implementation depends on the full functionality FVB protocol that support read, write/erase flash access.
4 #
5 # Copyright (c) 2006 - 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 = FtwLite
19 FILE_GUID = 4C862FC6-0E54-4e36-8C8F-FF6F3167951F
20 MODULE_TYPE = DXE_DRIVER
21 VERSION_STRING = 1.0
22 ENTRY_POINT = InitializeFtwLite
23
24 #
25 # The following information is for reference only and not required by the build tools.
26 #
27 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
28 #
29
30 [Sources.common]
31 FtwWorkSpace.c
32 FtwMisc.c
33 FtwLite.c
34 FtwLite.h
35
36 [Packages]
37 MdePkg/MdePkg.dec
38 MdeModulePkg/MdeModulePkg.dec
39
40 [LibraryClasses]
41 UefiBootServicesTableLib
42 MemoryAllocationLib
43 BaseMemoryLib
44 UefiDriverEntryPoint
45 DebugLib
46 PcdLib
47 DevicePathLib
48
49 [Guids]
50 gEfiSystemNvDataFvGuid ## CONSUMED ## FV Signature of Working Space Header
51
52 [Protocols]
53 gEfiFirmwareVolumeBlockProtocolGuid ## CONSUMED
54 gEfiFaultTolerantWriteLiteProtocolGuid ## PRODUCED
55
56 [Pcd.common]
57 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingSize
58 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwWorkingBase
59 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareSize
60 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageFtwSpareBase
61
62 [Depex]
63 gEfiFirmwareVolumeBlockProtocolGuid AND gEfiAlternateFvBlockGuid ## gEfiAlternateFvBlockGuid specifies FVB protocol with read, write/erase flash access.
64