2011-09-02 09:49:32 +02:00
|
|
|
## @file
|
2014-08-28 07:31:09 +02:00
|
|
|
# Produces user manager protocol
|
|
|
|
#
|
|
|
|
# This module manages user information and produces user manager protocol.
|
2011-09-02 09:49:32 +02:00
|
|
|
#
|
2014-08-28 07:31:09 +02:00
|
|
|
# Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR>
|
2011-09-02 09:49:32 +02:00
|
|
|
# This program and the accompanying materials
|
|
|
|
# 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
|
|
|
|
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
#
|
|
|
|
##
|
|
|
|
|
|
|
|
[defines]
|
|
|
|
INF_VERSION = 0x00010005
|
|
|
|
BASE_NAME = UserIdentifyManager
|
2014-08-28 07:31:09 +02:00
|
|
|
MODULE_UNI_FILE = UserIdentifyManager.uni
|
2011-09-02 09:49:32 +02:00
|
|
|
FILE_GUID = C5D3191B-27D5-4873-8DF2-628136991A21
|
|
|
|
MODULE_TYPE = DXE_DRIVER
|
|
|
|
VERSION_STRING = 1.0
|
|
|
|
ENTRY_POINT = UserIdentifyManagerInit
|
|
|
|
|
|
|
|
[sources]
|
|
|
|
UserIdentifyManager.c
|
|
|
|
LoadDeferredImage.c
|
|
|
|
UserIdentifyManager.h
|
|
|
|
UserIdentifyManagerData.h
|
|
|
|
UserIdentifyManagerStrings.uni
|
|
|
|
UserIdentifyManagerVfr.Vfr
|
|
|
|
|
|
|
|
[Packages]
|
|
|
|
MdePkg/MdePkg.dec
|
|
|
|
MdeModulePkg/MdeModulePkg.dec
|
2011-09-18 14:25:27 +02:00
|
|
|
SecurityPkg/SecurityPkg.dec
|
2011-09-02 09:49:32 +02:00
|
|
|
|
|
|
|
[LibraryClasses]
|
|
|
|
UefiRuntimeServicesTableLib
|
|
|
|
UefiBootServicesTableLib
|
|
|
|
UefiDriverEntryPoint
|
|
|
|
MemoryAllocationLib
|
|
|
|
BaseMemoryLib
|
|
|
|
DebugLib
|
|
|
|
HiiLib
|
|
|
|
UefiLib
|
|
|
|
|
|
|
|
[Guids]
|
2014-08-28 07:31:09 +02:00
|
|
|
gEfiIfrTianoGuid ## SOMETIMES_CONSUMES ## GUID
|
|
|
|
gEfiEventUserProfileChangedGuid ## SOMETIMES_PRODUCES ## Event
|
|
|
|
|
|
|
|
## SOMETIMES_PRODUCES ## Variable:L"Userxxxx"
|
|
|
|
## SOMETIMES_CONSUMES ## Variable:L"Userxxxx"
|
|
|
|
## CONSUMES ## HII
|
|
|
|
gUserIdentifyManagerGuid
|
2011-09-02 09:49:32 +02:00
|
|
|
|
|
|
|
[Protocols]
|
|
|
|
gEfiFormBrowser2ProtocolGuid ## CONSUMES
|
|
|
|
gEfiHiiDatabaseProtocolGuid ## CONSUMES
|
2014-08-28 07:31:09 +02:00
|
|
|
gEfiUserCredential2ProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
gEfiDeferredImageLoadProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
gEfiSimpleTextOutProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
gEfiSimpleTextInProtocolGuid ## SOMETIMES_CONSUMES
|
|
|
|
gEfiSimpleTextInputExProtocolGuid ## SOMETIMES_CONSUMES
|
2011-09-02 09:49:32 +02:00
|
|
|
gEfiHiiConfigAccessProtocolGuid ## PRODUCES
|
2014-08-28 07:31:09 +02:00
|
|
|
gEfiDevicePathProtocolGuid ## PRODUCES
|
|
|
|
|
|
|
|
## PRODUCES
|
|
|
|
## SOMETIMES_PRODUCES ## SystemTable
|
|
|
|
gEfiUserManagerProtocolGuid
|
2011-09-02 09:49:32 +02:00
|
|
|
|
|
|
|
[Depex]
|
|
|
|
gEfiHiiDatabaseProtocolGuid AND
|
|
|
|
gEfiHiiStringProtocolGuid AND
|
|
|
|
gEfiFormBrowser2ProtocolGuid
|
2014-08-28 07:31:09 +02:00
|
|
|
|
|
|
|
[UserExtensions.TianoCore."ExtraFiles"]
|
|
|
|
UserIdentifyManagerExtra.uni
|
|
|
|
|