Files
slimbootloader/BootloaderCommonPkg/Library/ShellLib/ShellCmds.c
T
James Gutbub 63ba5a4912 Update mm command and remove io command
The 'mm' (formely 'mem') command is being
updated to handle PCI device formatted
addresses and also to support IO device
interfacing. Removing the 'io' command too
since it has been intergrated into the 'mm'
command.

Signed-off-by: James Gutbub <james.gutbub@intel.com>
2019-10-28 12:25:40 -07:00

34 lines
971 B
C

/** @file
Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "ShellCmds.h"
EFI_STATUS
LoadShellCommands (
VOID
)
{
ShellCommandRegister (&ShellCommandExit);
ShellCommandRegister (&ShellCommandHelp);
ShellCommandRegister (&ShellCommandHob);
ShellCommandRegister (&ShellCommandMm);
ShellCommandRegister (&ShellCommandMmap);
ShellCommandRegister (&ShellCommandPerf);
ShellCommandRegister (&ShellCommandBoot);
ShellCommandRegister (&ShellCommandMmcDll);
ShellCommandRegister (&ShellCommandCdata);
ShellCommandRegister (&ShellCommandDmesg);
ShellCommandRegister (&ShellCommandCpuid);
ShellCommandRegister (&ShellCommandMsr);
ShellCommandRegister (&ShellCommandMtrr);
ShellCommandRegister (&ShellCommandPci);
ShellCommandRegister (&ShellCommandReset);
ShellCommandRegister (&ShellCommandUcode);
ShellCommandRegister (&ShellCommandCls);
return EFI_SUCCESS;
}