]> git.proxmox.com Git - mirror_edk2.git/blame - ShellPkg/Library/UefiShellLevel1CommandsLib/NoOpScriptCommand.c
Added SecDispatchTable library to allow custom PPIs to be passed up to into PEI Core...
[mirror_edk2.git] / ShellPkg / Library / UefiShellLevel1CommandsLib / NoOpScriptCommand.c
CommitLineData
a405b86d 1/** @file\r
2 Main file for else and endif shell level 1 functions. Does nothing really...\r
3\r
4 Copyright (c) 2009-2010, Intel Corporation. All rights reserved.<BR>\r
5 This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
15#include "UefiShellLevel1CommandsLib.h"\r
16\r
17SHELL_STATUS\r
18EFIAPI\r
19ShellCommandRunNoOpScriptCommand (\r
20 VOID *RESERVED\r
21 )\r
22{\r
23 EFI_STATUS Status;\r
24 //\r
25 // ASSERT that we can init...\r
26 //\r
27 Status = CommandInit();\r
28 ASSERT_EFI_ERROR(Status);\r
29\r
30 //\r
31 // We best be in a script...\r
32 //\r
33 ASSERT(gEfiShellProtocol->BatchIsActive());\r
34\r
35 //\r
36 // Do nothing...\r
37 //\r
38 return (SHELL_SUCCESS);\r
39}\r
40\r