/** @file Copyright (c) 2019, Intel Corporation. All rights reserved.
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; }