blob: d5dbdcae5a2d14a2156f366599d76f3da8906fa3 [file] [log] [blame]
Vishal Bhoj82c80712015-12-15 21:13:33 +05301## @file
2# The DXE driver produces HII protocols defined in UEFI specification.
3#
4# This driver produces all required HII serivces that includes HiiDataBase, HiiString,
5# HiiFont, HiiConfigRouting. To support UEFI HII, this driver is required.
6#
7# Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR>
8#
9# This program and the accompanying materials
10# are 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
20[Defines]
21 INF_VERSION = 0x00010005
22 BASE_NAME = HiiDatabase
23 MODULE_UNI_FILE = HiiDatabase.uni
24 FILE_GUID = 348C4D62-BFBD-4882-9ECE-C80BB1C4783B
25 MODULE_TYPE = DXE_DRIVER
26 VERSION_STRING = 1.0
27 ENTRY_POINT = InitializeHiiDatabase
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 HiiDatabaseEntry.c
37 Image.c
38 HiiDatabase.h
39 ConfigRouting.c
40 String.c
41 Database.c
42 Font.c
43
44[Packages]
45 MdePkg/MdePkg.dec
46 MdeModulePkg/MdeModulePkg.dec
47
48
49[LibraryClasses]
50 MemoryAllocationLib
51 DevicePathLib
52 BaseLib
53 UefiBootServicesTableLib
54 UefiDriverEntryPoint
55 BaseMemoryLib
56 DebugLib
57 UefiLib
58 PcdLib
59 UefiRuntimeServicesTableLib
60 PrintLib
61
62[Protocols]
63 gEfiDevicePathProtocolGuid ## SOMETIMES_CONSUMES
64 gEfiHiiStringProtocolGuid ## PRODUCES
65 gEfiHiiImageProtocolGuid |gEfiMdeModulePkgTokenSpaceGuid.PcdSupportHiiImageProtocol ## SOMETIMES_PRODUCES
66 gEfiHiiConfigRoutingProtocolGuid ## PRODUCES
67 gEfiHiiDatabaseProtocolGuid ## PRODUCES
68 gEfiHiiFontProtocolGuid ## PRODUCES
69 gEfiHiiConfigAccessProtocolGuid ## SOMETIMES_CONSUMES
70
71[FeaturePcd]
72 gEfiMdeModulePkgTokenSpaceGuid.PcdSupportHiiImageProtocol ## CONSUMES
73
74[Pcd]
75 gEfiMdePkgTokenSpaceGuid.PcdUefiVariableDefaultPlatformLang ## CONSUMES
76
77[Guids]
78 #
79 # Event registered to EFI_HII_SET_KEYBOARD_LAYOUT_EVENT_GUID group,
80 # which will be triggered by EFI_HII_DATABASE_PROTOCOL.SetKeyboardLayout().
81 #
82 ## CONSUMES ## Event
83 ## PRODUCES ## Event
84 gEfiHiiKeyBoardLayoutGuid
85
86[Depex]
87 TRUE
88
89[UserExtensions.TianoCore."ExtraFiles"]
90 HiiDatabaseExtra.uni