2010-11-12 20:40:21 +01:00
|
|
|
/** @file
|
|
|
|
Main file for Reconnect shell Driver1 function.
|
|
|
|
|
2014-12-04 02:18:04 +01:00
|
|
|
Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>
|
2015-09-16 10:20:27 +02:00
|
|
|
(C) Copyright 2015 Hewlett-Packard Development Company, L.P.<BR>
|
|
|
|
(C) Copyright 2015 Hewlett Packard Enterprise Development LP<BR>
|
2010-11-12 20:40:21 +01: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.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include "UefiShellDriver1CommandsLib.h"
|
|
|
|
|
2014-12-04 02:18:04 +01:00
|
|
|
STATIC CONST SHELL_PARAM_ITEM ParamList[] = {
|
|
|
|
{L"-r", TypeFlag},
|
|
|
|
{NULL, TypeMax}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
Connect all the possible console devices.
|
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
ConnectAllConsoles (
|
|
|
|
VOID
|
|
|
|
)
|
|
|
|
{
|
|
|
|
ShellConnectFromDevPaths(L"ConInDev");
|
|
|
|
ShellConnectFromDevPaths(L"ConOutDev");
|
|
|
|
ShellConnectFromDevPaths(L"ErrOutDev");
|
|
|
|
|
|
|
|
ShellConnectFromDevPaths(L"ErrOut");
|
|
|
|
ShellConnectFromDevPaths(L"ConIn");
|
|
|
|
ShellConnectFromDevPaths(L"ConOut");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-03-25 22:13:43 +01:00
|
|
|
/**
|
|
|
|
Function for 'reconnect' command.
|
|
|
|
|
|
|
|
@param[in] ImageHandle Handle to the Image (NULL if Internal).
|
|
|
|
@param[in] SystemTable Pointer to the System Table (NULL if Internal).
|
|
|
|
**/
|
2010-11-12 20:40:21 +01:00
|
|
|
SHELL_STATUS
|
|
|
|
EFIAPI
|
|
|
|
ShellCommandRunReconnect (
|
|
|
|
IN EFI_HANDLE ImageHandle,
|
|
|
|
IN EFI_SYSTEM_TABLE *SystemTable
|
|
|
|
)
|
|
|
|
{
|
|
|
|
SHELL_STATUS ShellStatus;
|
2014-12-04 02:18:04 +01:00
|
|
|
LIST_ENTRY *Package;
|
|
|
|
CHAR16 *ProblemParam;
|
|
|
|
EFI_STATUS Status;
|
2010-11-12 20:40:21 +01:00
|
|
|
|
2011-04-12 23:55:07 +02:00
|
|
|
gInReconnect = TRUE;
|
2014-12-04 02:18:04 +01:00
|
|
|
ShellStatus = SHELL_SUCCESS;
|
|
|
|
|
|
|
|
//
|
|
|
|
// initialize the shell lib (we must be in non-auto-init...)
|
|
|
|
//
|
|
|
|
Status = ShellInitialize();
|
|
|
|
ASSERT_EFI_ERROR(Status);
|
2011-04-12 23:55:07 +02:00
|
|
|
|
2014-12-04 02:18:04 +01:00
|
|
|
Status = CommandInit();
|
|
|
|
ASSERT_EFI_ERROR(Status);
|
|
|
|
|
|
|
|
//
|
|
|
|
// parse the command line
|
|
|
|
//
|
|
|
|
Status = ShellCommandLineParse (ParamList, &Package, &ProblemParam, TRUE);
|
|
|
|
if (EFI_ERROR(Status)) {
|
|
|
|
if (Status == EFI_VOLUME_CORRUPTED && ProblemParam != NULL) {
|
2015-09-16 10:20:27 +02:00
|
|
|
ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_PROBLEM), gShellDriver1HiiHandle, L"reconnect", ProblemParam);
|
2014-12-04 02:18:04 +01:00
|
|
|
FreePool(ProblemParam);
|
|
|
|
ShellStatus = SHELL_INVALID_PARAMETER;
|
|
|
|
} else {
|
|
|
|
ASSERT(FALSE);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ShellStatus = ShellCommandRunDisconnect(ImageHandle, SystemTable);
|
|
|
|
if (ShellStatus == SHELL_SUCCESS) {
|
|
|
|
if (ShellCommandLineGetFlag(Package, L"-r")) {
|
|
|
|
ConnectAllConsoles();
|
|
|
|
}
|
|
|
|
ShellStatus = ShellCommandRunConnect(ImageHandle, SystemTable);
|
|
|
|
}
|
|
|
|
}
|
2011-04-12 23:55:07 +02:00
|
|
|
|
|
|
|
gInReconnect = FALSE;
|
|
|
|
|
2010-11-12 20:40:21 +01:00
|
|
|
return (ShellStatus);
|
|
|
|
}
|
2014-12-04 02:18:04 +01:00
|
|
|
|