]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Universal/FirmwareVolume/UpdateDriverDxe/UpdateDriverDxe.inf
Clean up the private GUID definition in module Level.
[mirror_edk2.git] / IntelFrameworkModulePkg / Universal / FirmwareVolume / UpdateDriverDxe / UpdateDriverDxe.inf
1 ## @file
2 # This driver is intended to be put in a capsule (FV). If all goes well,
3 # then it should be dispatched from the capsule FV, then find the image
4 # in the same FV and program it in a target Firmware Volume device.
5 #
6 # Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
7 #
8 # This program and the accompanying materials are
9 # 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 #
13 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15 #
16 ##
17
18 [Defines]
19 INF_VERSION = 0x00010005
20 BASE_NAME = UpdateDriverDxe
21 FILE_GUID = 0E84FC69-29CC-4C6D-92AC-6D476921850F
22 MODULE_TYPE = DXE_DRIVER
23 VERSION_STRING = 1.0
24 ENTRY_POINT = InitializeUpdateDriver
25
26 #
27 # The following information is for reference only and not required by the build tools.
28 #
29 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
30 #
31
32 [Sources]
33 UpdateDriver.h
34 UpdateStrings.uni
35 UpdateDispatcher.c
36 ParseUpdateProfile.c
37 FlashUpdate.c
38
39 [Packages]
40 MdePkg/MdePkg.dec
41 MdeModulePkg/MdeModulePkg.dec
42 IntelFrameworkPkg/IntelFrameworkPkg.dec
43 IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
44
45 [LibraryClasses]
46 BaseLib
47 PrintLib
48 HiiLib
49 DxeServicesTableLib
50 MemoryAllocationLib
51 UefiLib
52 UefiBootServicesTableLib
53 UefiDriverEntryPoint
54 UefiRuntimeServicesTableLib
55 BaseMemoryLib
56 DebugLib
57 DevicePathLib
58
59 [Guids]
60 gEfiConfigFileNameGuid ## CONSUMES FileName to store ConfigFile
61 gEfiUpdateDataFileGuid ## CONSUMES FileName to store Capsule Data.
62
63 [Protocols]
64 gEfiFaultTolerantWriteProtocolGuid ## CONSUMES
65 gEfiFirmwareVolume2ProtocolGuid ## CONSUMES
66 gEfiFirmwareVolumeBlockProtocolGuid ## CONSUMES
67 gEfiLoadedImageProtocolGuid ## CONSUMES
68
69 [Depex]
70 gEfiFirmwareVolumeBlockProtocolGuid AND gEfiFaultTolerantWriteProtocolGuid
71