Update Nt32 package to remove UID support .

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9403 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
qhuang8
2009-11-10 13:58:41 +00:00
parent aa11588194
commit 60f3d321ce
5 changed files with 0 additions and 79 deletions

View File

@@ -344,11 +344,6 @@ PlatformBdsPolicyBehavior (
//
PlatformBdsConnectSequence ();
//
// Perform user identification process
//
PlatformBdsUserIdentify ();
//
// Notes: current time out = 0 can not enter the
// front page
@@ -368,10 +363,6 @@ PlatformBdsPolicyBehavior (
PlatformBdsConnectConsole (gPlatformConsole);
PlatformBdsDiagnostics (EXTENSIVE, FALSE, BaseMemoryTest);
BdsLibConnectAll ();
//
// Perform user identification process
//
PlatformBdsUserIdentify ();
ProcessCapsules (BOOT_ON_FLASH_UPDATE);
break;
@@ -383,11 +374,6 @@ PlatformBdsPolicyBehavior (
PlatformBdsConnectConsole (gPlatformConsole);
PlatformBdsDiagnostics (EXTENSIVE, FALSE, BaseMemoryTest);
//
// Perform user identification process
//
PlatformBdsUserIdentify ();
//
// In recovery boot mode, we still enter to the
// frong page now
@@ -417,11 +403,6 @@ PlatformBdsPolicyBehavior (
//
PlatformBdsConnectSequence ();
//
// Perform user identification process
//
PlatformBdsUserIdentify ();
//
// Give one chance to enter the setup if we
// have the time out
@@ -577,49 +558,3 @@ LockKeyboards (
{
return EFI_UNSUPPORTED;
}
EFI_STATUS
PlatformBdsUserIdentify (
VOID
)
/*++
Routine Description:
This function is to identify a valid user, if successed, handle the deferred images.
Arguments:
None.
Returns:
EFI_SUCCESS - User successfully identified.
--*/
{
EFI_STATUS Status;
EFI_USER_MANAGER_PROTOCOL *Manager;
EFI_USER_PROFILE_HANDLE User;
//
// Locate user manager driver
//
Status = gBS->LocateProtocol (
&gEfiUserManagerProtocolGuid,
NULL,
&Manager
);
if (EFI_ERROR (Status)) {
return Status;
}
//
// Identity user
//
Status = Manager->Identify (Manager, &User);
return Status;
}