1 /** @file 2 Add custom commands for BeagleBoard development. 3 4 Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR> 5 6 This program and the accompanying materials 7 are licensed and made available under the terms and conditions of the BSD License 8 which accompanies this distribution. The full text of the license may be found at 9 http://opensource.org/licenses/bsd-license.php 10 11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 13 14 **/ 15 16 #include <PiDxe.h> 17 #include <Library/ArmLib.h> 18 #include <Library/CacheMaintenanceLib.h> 19 #include <Library/EblCmdLib.h> 20 #include <Library/BaseLib.h> 21 #include <Library/DebugLib.h> 22 #include <Library/UefiBootServicesTableLib.h> 23 #include <Library/UefiRuntimeServicesTableLib.h> 24 #include <Library/MemoryAllocationLib.h> 25 #include <Library/UefiLib.h> 26 #include <Library/PcdLib.h> 27 #include <Library/EfiFileLib.h> 28 29 30 //PcdEmbeddedFdBaseAddress 31 32 /** 33 Fill Me In 34 35 Argv[0] - "%CommandName%" 36 37 @param Argc Number of command arguments in Argv 38 @param Argv Array of strings that represent the parsed command line. 39 Argv[0] is the command name 40 41 @return EFI_SUCCESS 42 43 **/ 44 EFI_STATUS EblEdk2Cmd(IN UINTN Argc,IN CHAR8 ** Argv)45EblEdk2Cmd ( 46 IN UINTN Argc, 47 IN CHAR8 **Argv 48 ) 49 { 50 return EFI_SUCCESS; 51 } 52 53 54 GLOBAL_REMOVE_IF_UNREFERENCED const EBL_COMMAND_TABLE mLibCmdTemplate[] = 55 { 56 { 57 "edk2", 58 " filename ; Load FD into memory and boot from it", 59 NULL, 60 EblEdk2Cmd 61 } 62 }; 63 64 65 VOID EblInitializeExternalCmd(VOID)66EblInitializeExternalCmd ( 67 VOID 68 ) 69 { 70 EblAddCommands (mLibCmdTemplate, sizeof (mLibCmdTemplate)/sizeof (EBL_COMMAND_TABLE)); 71 return; 72 } 73