]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPlatformPkg/Library/ArmShellCmdRunAxf/ArmShellCmdRunAxf.uni
6b7296079175b7eadca6667c25c7f3737ba6a4e5
[mirror_edk2.git] / ArmPlatformPkg / Library / ArmShellCmdRunAxf / ArmShellCmdRunAxf.uni
1 // *++
2 //
3 // Copyright (c) 2014, ARM Ltd. All rights reserved.<BR>
4 //
5 // This program and the accompanying materials are licensed and made available
6 // under the terms and conditions of the BSD License which accompanies this
7 // distribution. The full text of the license may be found at
8 // http://opensource.org/licenses/bsd-license.php
9 //
10 // THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 //
13 //
14 // Module Name:
15 //
16 // RunAxfStrings.uni
17 //
18 // Abstract:
19 //
20 // String definitions for the Shell 'runaxf' command
21 //
22 // Revision History:
23 //
24 // --*/
25
26 /=#
27
28 #langdef en-US "English"
29
30 #string STR_RUNAXF_BAD_FILE #language en-US "File type not supported\n"
31 #string STR_RUNAXF_BAD_ARCH #language en-US "Architecture not supported\n"
32 #string STR_RUNAXF_INVALID_ARG #language en-US "Invalid argument(s)\n"
33 #string STR_RUNAXF_FILE_NOT_FOUND #language en-US "File not found : %s\n"
34 #string STR_RUNAXF_NO_MEM #language en-US "Out of Memory\n"
35 #string STR_RUNAXF_READ_FAIL #language en-US "Failed to read file\n"
36
37 #string STR_RUNAXF_ELFMAGIC #language en-US "Wrong magic number. The file is either not an ELF binary or it is corrupted.\n"
38 #string STR_RUNAXF_ELFNOTEXEC #language en-US "Wrong ELF file type, expected an executable file.\n"
39 #string STR_RUNAXF_ELFNOPROG #language en-US "No program header table found in ELF file.\n"
40 #string STR_RUNAXF_ELFWRONGCLASS #language en-US "Invalid ELF Class type.\n"
41 #string STR_RUNAXF_ELFBADFORMAT #language en-US "ELF file format is incorrect (filesize > memorysize).\n"
42 #string STR_RUNAXF_ELFBADHEADER #language en-US "Invalid ELF header.\n"
43 #string STR_RUNAXF_ELFFAILSEG #language en-US "Failed to load segment from ELF file.\n
44 #string STR_RUNAXF_ELFNOSEG #language en-US "The ELF file must have at least 1 loadable segment.\n"
45
46 #string STR_RUNAXF_ELFWRONGCLASS_32 #language en-US "Wrong file class, expected 32-bit ELF file.\n"
47 #string STR_RUNAXF_ELFWRONGCLASS_64 #language en-US "Wrong file class, expected 64-bit ELF file.\n"
48 #string STR_RUNAXF_ELFWRONGMACH_32 #language en-US "Wrong machine type, expected ARM.\n"
49 #string STR_RUNAXF_ELFWRONGMACH_64 #language en-US "Wrong machine type, expected AARCH64.\n"
50
51 #string STR_GET_HELP_RUNAXF #language en-US ""
52 ".TH runaxf 0 "load and execute AXF binary"\r\n"
53 ".SH NAME\r\n"
54 "Loads and executes ARM Executable File (AXF).\r\n"
55 ".SH SYNOPSIS\r\n"
56 "runaxf file\r\n"
57 ".SH OPTIONS\r\n"
58 "file AXF binary to load and execute.\r\n"
59 ".SH DESCRIPTION\r\n"
60 "Loads and executes ARM Executable File (AXF). This function is not expected to return.\r\n"
61
62 ".SH RETURNVALUES\r\n"
63 "SHELL_DEVICE_ERROR The operation failed to complete.\r\n"
64 "SHELL_INVALID_PARAMETER One of the passed in parameters was incorrectly formatted or its value was out of bounds.\r\n"
65 "SHELL_UNSUPPORTED The action as requested was unsupported.\r\n"
66 "SHELL_OUT_OF_RESOURCES There was insufficient free space for the request to be completed.\r\n"
67 ".SH EXAMPLES\r\n"
68 " fs0:\> runaxf file.axf\r\n"