File: LoadStrings.uni

package info (click to toggle)
edk2 0~20131112.2590861a-3
  • links: PTS, VCS
  • area: non-free
  • in suites: jessie, jessie-kfreebsd
  • size: 125,836 kB
  • ctags: 175,818
  • sloc: ansic: 1,274,042; python: 75,968; asm: 68,082; perl: 22,386; cpp: 22,278; makefile: 14,914; sh: 4,113; pascal: 1,126; xml: 318; lisp: 24
file content (147 lines) | stat: -rw-r--r-- 9,828 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
// *++

//

// Copyright (c) 2005 - 2010, Intel Corporation                                                         

// All rights reserved. This program and the accompanying materials                          

// are licensed and made available under the terms and conditions of the BSD License         

// which accompanies this distribution. The full text of the license may be found at         

// http://opensource.org/licenses/bsd-license.php                                            

//                                                                                           

// THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,                     

// WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.             

// 

// Module Name:

//

//   LoadStrings.uni

// 

// Abstract:

// 

//   String definitions for the Shell load command

// 

// Revision History:

//  

// --*/



/=#



#langdef   eng "English"



#string STR_LOAD_IMAGE_NOT_DRIVER      #language eng  "%Hload%N: Image %hs is not a driver\n"



#string STR_LOAD_IMAGE_LOADED          #language eng  "%Hload%N: Image %hs loaded at %x - %r\n"



#string STR_LOAD_IMAGE_ERROR           #language eng  "%Hload%N: Image %hs error - %r\n"



#string STR_LOAD_NOT_IMAGE             #language eng  "%Hload%N: %hs is not a image\n"



#string STR_LOAD_LINE_HELP             #language eng  "Loads and optionally connects one or more EFI drivers"



#string STR_LOAD_IMAGE_TYPE_UNSUPPORTED    #language eng  "Image type %s is not supported by this %s shell\n"



#string STR_LOAD_VERBOSE_HELP          #language eng  "Loads and optionally connects one or more EFI drivers.\n"

                                                      "\n"

                                                      "LOAD [-nc] file [file...]\n"

                                                      "\n"

                                                      "    -nc      - Loads but does not connect the driver\n"

                                                      "    file     - EFI driver image file (wildcards are permitted)\n"

                                                      "\n"

                                                      "Note:\n"

                                                      "    1. LOAD can deal with multiple files and supports wildcards.\n"

                                                      "    2. If the -nc option is not specified, then the loaded drivers will be\n"

                                                      "       automatically connected. If -nc is specified, then none of the loaded\n"

                                                      "       drivers will be connected. Loading without -nc could cause the\n"

                                                      "       previously loaded drivers to be connected. This is compliant with the\n"

                                                      "       EFI Specification.\n"

                                                      "    3. Use the 'UNLOAD' command to unload a driver.\n"

                                                      "\n"

                                                      "Examples:\n"

                                                      " * To load a driver:\n"

                                                      "   fs0:\\> load Isabus.efi\n"

                                                      "   load: Image 'fs0:\\Isabus.efi' loaded at 18FE000 - Success\n"

                                                      "\n"     

                                                      " * To load multiple drivers:\n"

                                                      "   fs0:\\> load Isabus.efi IsaSerial.efi\n"

                                                      "   load: Image 'fs0:\\Isabus.efi' loaded at 18E5000 - Success\n"

                                                      "   load: Image 'fs0:\\IsaSerial.efi' loaded at 18DC000 - Success\n"

                                                      "\n"    

                                                      " * To load multiple drivers using filename wildcards:\n"

                                                      "   fs0:\\> load Isa*.efi\n"

                                                      "   load: Image 'fs0:\\IsaBus.efi' loaded at 18D4000 - Success\n"

                                                      "   load: Image 'fs0:\\IsaSerial.efi' loaded at 18CB000 - Success\n"

                                                      "\n"

                                                      " * To load a driver without connecting:\n"

                                                      "   fs0:\\> load -nc IsaBus.efi\n"

                                                      "   load: Image 'fs0:\\Isabus.efi' loaded at 18FE000 - Success\n"