]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
MdeModulePkg: Add match2 opcode support in SetupBrowserDxe and sample code in DriverS...
[mirror_edk2.git] / MdeModulePkg / Universal / SetupBrowserDxe / SetupBrowserDxe.inf
CommitLineData
6bfbb5f0 1## @file\r
6036e94d 2# The DXE driver produces FORM BROWSER2 protocol defined in UEFI specification.\r
93e3992d 3#\r
6036e94d
SZ
4# It also produces FormBrowserEx(2) protocol to let user register the different Hot key service. \r
5#\r
9bd22b08 6# Copyright (c) 2007 - 2015, Intel Corporation. All rights reserved.<BR>\r
93e3992d 7#\r
e5eed7d3 8# This program and the accompanying materials\r
93e3992d 9# are licensed and made available under the terms and conditions of the BSD License\r
10# which accompanies this distribution. The full text of the license may be found at\r
11# http://opensource.org/licenses/bsd-license.php\r
8b0fc5c1 12#\r
93e3992d 13# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
14# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
15#\r
16#\r
6bfbb5f0 17##\r
93e3992d 18\r
19[Defines]\r
20 INF_VERSION = 0x00010005\r
21 BASE_NAME = SetupBrowser\r
6036e94d 22 MODULE_UNI_FILE = SetupBrowser.uni\r
93e3992d 23 FILE_GUID = EBf342FE-B1D3-4EF8-957C-8048606FF671\r
24 MODULE_TYPE = DXE_DRIVER\r
7c6c064c 25 VERSION_STRING = 2.0\r
93e3992d 26 ENTRY_POINT = InitializeSetup\r
27\r
28#\r
29# The following information is for reference only and not required by the build tools.\r
30#\r
31# VALID_ARCHITECTURES = IA32 X64 IPF EBC\r
32#\r
33\r
6bfbb5f0 34[Sources]\r
93e3992d 35 Setup.c\r
36 Setup.h\r
37 IfrParse.c\r
38 Expression.c\r
93e3992d 39 Presentation.c\r
7c6c064c 40 Expression.h\r
93e3992d 41\r
42[Packages]\r
43 MdePkg/MdePkg.dec\r
44 MdeModulePkg/MdeModulePkg.dec\r
45\r
93e3992d 46[LibraryClasses]\r
47 MemoryAllocationLib\r
48 BaseLib\r
49 UefiBootServicesTableLib\r
50 UefiDriverEntryPoint\r
51 UefiRuntimeServicesTableLib\r
52 BaseMemoryLib\r
53 DebugLib\r
54 PrintLib\r
93e3992d 55 HiiLib\r
cb7d01c0 56 DevicePathLib\r
a326830d 57 PcdLib\r
7c6c064c 58 UefiLib\r
cb7d01c0 59\r
5c526736 60[Guids]\r
6036e94d
SZ
61 gEfiIfrFrameworkGuid ## SOMETIMES_CONSUMES ## GUID\r
62 gEfiHiiPlatformSetupFormsetGuid ## SOMETIMES_CONSUMES ## GUID\r
63 gEfiHiiStandardFormGuid ## SOMETIMES_CONSUMES ## GUID\r
5c526736 64\r
93e3992d 65[Protocols]\r
6036e94d 66 gEfiHiiConfigAccessProtocolGuid ## SOMETIMES_CONSUMES\r
3018ca2d 67 gEfiFormBrowser2ProtocolGuid ## PRODUCES\r
7c6c064c 68 gEdkiiFormBrowserEx2ProtocolGuid ## PRODUCES\r
3018ca2d 69 gEfiHiiConfigRoutingProtocolGuid ## CONSUMES\r
70 gEfiHiiDatabaseProtocolGuid ## CONSUMES\r
6036e94d 71 gEfiUnicodeCollation2ProtocolGuid ## SOMETIMES_CONSUMES\r
cbf73e50 72 gEfiUserManagerProtocolGuid ## SOMETIMES_CONSUMES\r
80a047f0 73 gEfiDevicePathFromTextProtocolGuid ## SOMETIMES_CONSUMES\r
6036e94d
SZ
74 ## CONSUMES\r
75 ## NOTIFY\r
76 gEdkiiFormDisplayEngineProtocolGuid\r
77 gEfiFormBrowserExProtocolGuid ## PRODUCES\r
9bd22b08 78 gEfiRegularExpressionProtocolGuid ## CONSUMES\r
93e3992d 79\r
6bfbb5f0 80[FeaturePcd]\r
f0a1bf11 81 gEfiMdeModulePkgTokenSpaceGuid.PcdFrameworkCompatibilitySupport ## CONSUMES\r
f511d656 82\r
93e3992d 83[Depex]\r
84 gEfiHiiDatabaseProtocolGuid AND gEfiHiiConfigRoutingProtocolGuid\r
85\r
6036e94d
SZ
86[UserExtensions.TianoCore."ExtraFiles"]\r
87 SetupBrowserExtra.uni\r