2010-02-24 01:21:16 +01:00
|
|
|
## @file
|
2008-12-11 07:36:40 +01:00
|
|
|
# The DXE driver produces FORM BROWSER protocols defined in UEFI HII 2.1 specificatin.
|
2008-01-21 15:39:56 +01:00
|
|
|
#
|
2011-02-12 02:51:25 +01:00
|
|
|
# Copyright (c) 2007 - 2011, Intel Corporation. All rights reserved.<BR>
|
2008-01-21 15:39:56 +01:00
|
|
|
#
|
2010-04-24 11:33:45 +02:00
|
|
|
# This program and the accompanying materials
|
2008-01-21 15:39:56 +01:00
|
|
|
# are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
# which accompanies this distribution. The full text of the license may be found at
|
|
|
|
# http://opensource.org/licenses/bsd-license.php
|
2009-10-26 04:05:16 +01:00
|
|
|
#
|
2008-01-21 15:39:56 +01:00
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
#
|
|
|
|
#
|
2010-02-24 01:21:16 +01:00
|
|
|
##
|
2008-01-21 15:39:56 +01:00
|
|
|
|
|
|
|
[Defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = SetupBrowser
|
|
|
|
FILE_GUID = EBf342FE-B1D3-4EF8-957C-8048606FF671
|
|
|
|
MODULE_TYPE = DXE_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
ENTRY_POINT = InitializeSetup
|
|
|
|
|
|
|
|
#
|
|
|
|
# The following information is for reference only and not required by the build tools.
|
|
|
|
#
|
|
|
|
# VALID_ARCHITECTURES = IA32 X64 IPF EBC
|
|
|
|
#
|
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[Sources]
|
2008-01-21 15:39:56 +01:00
|
|
|
SetupBrowserStr.uni
|
|
|
|
Setup.c
|
|
|
|
Setup.h
|
|
|
|
IfrParse.c
|
|
|
|
Expression.c
|
|
|
|
InputHandler.c
|
|
|
|
Print.c
|
|
|
|
Presentation.c
|
|
|
|
ProcessOptions.c
|
|
|
|
Ui.c
|
|
|
|
Ui.h
|
|
|
|
Colors.h
|
|
|
|
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
MemoryAllocationLib
|
|
|
|
BaseLib
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
UefiDriverEntryPoint
|
|
|
|
UefiRuntimeServicesTableLib
|
|
|
|
BaseMemoryLib
|
|
|
|
DebugLib
|
|
|
|
PrintLib
|
|
|
|
HiiLib
|
2009-04-14 12:47:19 +02:00
|
|
|
DevicePathLib
|
|
|
|
|
2009-02-23 16:18:48 +01:00
|
|
|
[Guids]
|
|
|
|
gEfiIfrTianoGuid ## CONSUMES ## GUID
|
|
|
|
gEfiIfrFrameworkGuid ## CONSUMES ## GUID
|
2009-04-22 05:18:37 +02:00
|
|
|
gEfiHiiPlatformSetupFormsetGuid
|
2010-02-25 11:10:59 +01:00
|
|
|
gEfiHiiStandardFormGuid ## SOMETIMES_CONSUMES ## GUID
|
2009-02-23 16:18:48 +01:00
|
|
|
|
2008-01-21 15:39:56 +01:00
|
|
|
[Protocols]
|
2009-02-03 03:23:03 +01:00
|
|
|
gEfiHiiConfigAccessProtocolGuid ## CONSUMES
|
|
|
|
gEfiHiiStringProtocolGuid ## CONSUMES
|
|
|
|
gEfiFormBrowser2ProtocolGuid ## PRODUCES
|
2011-09-13 11:32:54 +02:00
|
|
|
gEfiFormBrowserExProtocolGuid ## PRODUCES
|
2009-02-03 03:23:03 +01:00
|
|
|
gEfiHiiConfigRoutingProtocolGuid ## CONSUMES
|
|
|
|
gEfiHiiDatabaseProtocolGuid ## CONSUMES
|
|
|
|
gEfiUnicodeCollation2ProtocolGuid ## CONSUMES
|
2009-11-26 10:26:42 +01:00
|
|
|
gEfiUserManagerProtocolGuid ## SOMETIMES_CONSUMES
|
2008-01-21 15:39:56 +01:00
|
|
|
|
2010-02-24 01:21:16 +01:00
|
|
|
[FeaturePcd]
|
2011-02-12 02:51:25 +01:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdFrameworkCompatibilitySupport ## CONSUMES
|
2011-03-08 07:55:15 +01:00
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdBrowserGrayOutTextStatement ## CONSUMES
|
2011-02-12 02:51:25 +01:00
|
|
|
|
|
|
|
[Pcd]
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdBrowserSubtitleTextColor ## CONSUMES
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdBrowserFieldTextColor ## CONSUMES
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdBrowserFieldTextHighlightColor ## CONSUMES
|
|
|
|
gEfiMdeModulePkgTokenSpaceGuid.PcdBrowserFieldBackgroundHighlightColor ## CONSUMES
|
2008-08-18 10:10:33 +02:00
|
|
|
|
2008-01-21 15:39:56 +01:00
|
|
|
[Depex]
|
|
|
|
gEfiHiiDatabaseProtocolGuid AND gEfiHiiConfigRoutingProtocolGuid
|
|
|
|
|
2008-05-23 07:30:08 +02:00
|
|
|
|