]> git.proxmox.com Git - mirror_edk2.git/blobdiff - EmbeddedPkg/EblExternCmd/Main.c
MdeModulePkg Variable: Update GetNextVariableName to follow UEFI 2.7
[mirror_edk2.git] / EmbeddedPkg / EblExternCmd / Main.c
index 04f1eab600299d86d18ed426173e30dc393ed344..dbfe336899c77e55cf625719a54514064ddf3e51 100644 (file)
@@ -1,18 +1,18 @@
 /** @file\r
-  Example of an external EBL command. It's loaded via EBL start command. \r
+  Example of an external EBL command. It's loaded via EBL start command.\r
   Argc and Argv are passed in via "" of the EBL command line.\r
 \r
   Start fs0:\EdkExternCmd.efi "Argv[0] Argv[1] 2"\r
 \r
-  will launch this command with \r
+  will launch this command with\r
     Argv[0] = "Argv[0]"\r
     Argv[1] = "Argv[2]"\r
     Argv[2] = "3"\r
 \r
-  Copyright (c) 2007, Intel Corporation<BR>\r
-  Portions copyright (c) 2008-2009, Apple Inc. All rights reserved.\r
+  Copyright (c) 2007, Intel Corporation. All rights reserved.<BR>\r
+  Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>\r
 \r
-  All rights reserved. This program and the accompanying materials\r
+  This program and the accompanying materials\r
   are licensed and made available under the terms and conditions of the BSD License\r
   which accompanies this distribution.  The full text of the license may be found at\r
   http://opensource.org/licenses/bsd-license.php\r
 \r
 **/\r
 \r
+#include "Ebl.h"\r
 \r
 /**\r
   Entry point with Argc, Argv. Put your code here.\r
 \r
   @param  Argc   Number of command arguments in Argv\r
-  @param  Argv   Array of strings that represent the parsed command line. \r
-                 Argv[0] is the comamnd name\r
+  @param  Argv   Array of strings that represent the parsed command line.\r
+                 Argv[0] is the command name\r
 \r
   @return EFI_SUCCESS\r
 \r
@@ -46,7 +47,7 @@ EblMain (
   for (Index = 0; Index < Argc; Index++) {\r
     AsciiPrint ("Argv[%d] = %a\n", Index, Argv[Index]);\r
   }\r
-  \r
+\r
   return EFI_SUCCESS;\r
 }\r
 \r