• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1## @file
2#  FwVolDxe Driver.
3#
4#  This driver produces Firmware Volume2 protocol with full services
5#  (read/write, get/set) based on Firmware Volume Block protocol.
6#
7# Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
8#
9# This program and the accompanying materials are
10# licensed and made available under the terms and conditions of the BSD License
11# which accompanies this distribution.  The full text of the license may be found at
12# http://opensource.org/licenses/bsd-license.php
13#
14# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16#
17##
18
19[Defines]
20  INF_VERSION                    = 0x00010005
21  BASE_NAME                      = FwVolDxe
22  MODULE_UNI_FILE                = FwVolDxe.uni
23  FILE_GUID                      = 233C2592-1CEC-494a-A097-15DC96379777
24  MODULE_TYPE                    = DXE_DRIVER
25  VERSION_STRING                 = 1.0
26
27  ENTRY_POINT                    = FwVolDriverInit
28
29#
30# The following information is for reference only and not required by the build tools.
31#
32#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
33#
34
35[Sources]
36  FwVolDriver.h
37  FwPadFile.c
38  Ffs.c
39  FwVolWrite.c
40  FwVolRead.c
41  FwVolAttrib.c
42  FwVol.c
43
44[Packages]
45  MdePkg/MdePkg.dec
46  MdeModulePkg/MdeModulePkg.dec
47  IntelFrameworkPkg/IntelFrameworkPkg.dec
48
49
50[LibraryClasses]
51  UefiBootServicesTableLib
52  MemoryAllocationLib
53  BaseMemoryLib
54  BaseLib
55  UefiLib
56  UefiDriverEntryPoint
57  DebugLib
58
59
60[Guids]
61  gEfiFirmwareVolumeTopFileGuid                ## CONSUMES ## File # VTF file
62  gEfiFirmwareFileSystem2Guid                  ## CONSUMES ## GUID # File System Guid
63  gEfiFirmwareFileSystem3Guid                  ## CONSUMES ## GUID # File System Guid
64
65[Protocols]
66  gEfiSectionExtractionProtocolGuid            ## CONSUMES
67  gEfiFirmwareVolumeBlockProtocolGuid          ## CONSUMES
68  gEfiFirmwareVolume2ProtocolGuid              ## PRODUCES
69
70[Depex]
71  gEfiFirmwareVolumeBlockProtocolGuid AND gEfiSectionExtractionProtocolGuid
72
73[UserExtensions.TianoCore."ExtraFiles"]
74  FwVolDxeExtra.uni
75