1 | ## @file
|
---|
2 | # Driver Health Manager DXE driver.
|
---|
3 | #
|
---|
4 | # This module produces two driver health manager forms.
|
---|
5 | # One will be used by BDS core to configure the Configured Required
|
---|
6 | # driver health instances, the other will be automatically included by
|
---|
7 | # firmware setup (UI).
|
---|
8 | #
|
---|
9 | # Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR>
|
---|
10 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
11 | #
|
---|
12 | ##
|
---|
13 | ################################################################################
|
---|
14 | #
|
---|
15 | # Defines Section - statements that will be processed to create a Makefile.
|
---|
16 | #
|
---|
17 | ################################################################################
|
---|
18 | [Defines]
|
---|
19 | INF_VERSION = 0x00010005
|
---|
20 | BASE_NAME = DriverHealthManagerDxe
|
---|
21 | MODULE_UNI_FILE = DriverHealthManagerDxe.uni
|
---|
22 | FILE_GUID = EBF8ED7C-0DD1-4787-84F1-F48D537DCACF
|
---|
23 | MODULE_TYPE = DXE_DRIVER
|
---|
24 | VERSION_STRING = 1.0
|
---|
25 | ENTRY_POINT = InitializeDriverHealthManager
|
---|
26 |
|
---|
27 | #
|
---|
28 | # The following information is for reference only and not required by the build tools.
|
---|
29 | #
|
---|
30 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
31 | #
|
---|
32 |
|
---|
33 |
|
---|
34 | [Sources.common]
|
---|
35 | DriverHealthManagerDxe.h
|
---|
36 | DriverHealthManagerDxe.c
|
---|
37 | DriverHealthManagerStrings.uni
|
---|
38 | DriverHealthManagerVfr.Vfr
|
---|
39 | DriverHealthManagerVfr.h
|
---|
40 | DriverHealthConfigureVfr.Vfr
|
---|
41 |
|
---|
42 | [Packages]
|
---|
43 | MdePkg/MdePkg.dec
|
---|
44 | MdeModulePkg/MdeModulePkg.dec
|
---|
45 |
|
---|
46 | [LibraryClasses]
|
---|
47 | UefiBootServicesTableLib
|
---|
48 | UefiRuntimeServicesTableLib
|
---|
49 | MemoryAllocationLib
|
---|
50 | BaseMemoryLib
|
---|
51 | BaseLib
|
---|
52 | UefiLib
|
---|
53 | UefiDriverEntryPoint
|
---|
54 | DebugLib
|
---|
55 | HiiLib
|
---|
56 | UefiBootManagerLib
|
---|
57 | PcdLib
|
---|
58 | DevicePathLib
|
---|
59 |
|
---|
60 | [Protocols]
|
---|
61 | gEfiHiiConfigAccessProtocolGuid ## PRODUCES
|
---|
62 |
|
---|
63 | [Guids]
|
---|
64 | gEfiHiiDriverHealthFormsetGuid ## CONSUMES ## GUID
|
---|
65 | gEfiIfrTianoGuid ## CONSUMES ## HII
|
---|
66 |
|
---|
67 | [Pcd]
|
---|
68 | gEfiMdeModulePkgTokenSpaceGuid.PcdDriverHealthConfigureForm ## CONSUMES
|
---|
69 |
|
---|
70 | [Depex]
|
---|
71 | gEfiHiiDatabaseProtocolGuid AND gEfiFormBrowser2ProtocolGuid
|
---|
72 |
|
---|
73 | [UserExtensions.TianoCore."ExtraFiles"]
|
---|
74 | DriverHealthManagerDxeExtra.uni
|
---|