File: MemmapStrings.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 (161 lines) | stat: -rw-r--r-- 10,994 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
// *++

//

// Copyright (c) 2005 - 2006, 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:

//

//   MemmapStrings.uni

// 

// Abstract:

// 

//   String definitions for the Shell memmap command

// 

// Revision History:

// 

// --*/



/=#



#langdef   eng "English"



#string STR_MEMMAP_TABLE_NOT_FOUND     #language eng  "memmap: Memory map table not found\n"



#string STR_MEMMAP_START_END           #language eng  "\n%HType       Start            End               # Pages          Attributes%N\n"



#string STR_MEMMAP_FIVE_ARGS           #language eng  "%s %lX-%lX  %lX %lX\n"



#string STR_MEMMAP_ENTER_Q             #language eng  "Press ENTER to continue, 'q' to exit: "



#string STR_MEMMAP_TEMPCOLUMN          #language eng  "\r%*a\r"



#string STR_MEMMAP_PAGES               #language eng  "  %s: %,7ld Pages (%,ld)\n"



#string STR_MEMMAP_TOTAL_MEM           #language eng  "Total Memory: %,ld MB (%,ld) Bytes\n"



#string STR_MEMMAP_LINE_HELP           #language eng  "Displays the memory map"



#string STR_MEMMAP_VERBOSE_HELP        #language eng  "Displays the memory map maintained by the EFI environment.\n"

                                                      "\n"

                                                      "MEMMAP [-b]\n"

                                                      "\n"

                                                      "    -b       - Display one screen at a time\n"

                                                      "\n"

                                                      "Note:\n"

                                                      "    1. The EFI environment keeps track all the physical memory in the system\n"

                                                      "       and how it is currently being used.\n"

                                                      "    2. Total memory is the physical memory size not including the MemMapIO\n"

                                                      "       and MemPortIO size.\n"

                                                      "    3. Refer to the EFI specification for memory type definitions.\n"

                                                      "\n"

                                                      "Examples:\n"

                                                      "  * To display the system memory map:\n"

                                                      "    fs0:\\> memmap\n"

                                                      "\n"

                                                      "Type     Start      End         # Pages      Attributes\n"

                                                      "available  0000000000750000-0000000001841FFF  00000000000010F2 0000000000000009\n"

                                                      "LoaderCode 0000000001842000-00000000018A3FFF  0000000000000062 0000000000000009\n"

                                                      "available  00000000018A4000-00000000018C1FFF  000000000000001E 0000000000000009\n"

                                                      "LoaderData 00000000018C2000-00000000018CAFFF  0000000000000009 0000000000000009\n"

                                                      "BS_code    00000000018CB000-0000000001905FFF  000000000000003B 0000000000000009\n"

                                                      "BS_data    0000000001906000-00000000019C9FFF  00000000000000C4 0000000000000009\n"

                                                      "...\n"

                                                      "RT_data    0000000001B2B000-0000000001B2BFFF  0000000000000001 8000000000000009\n"

                                                      "BS_data    0000000001B2C000-0000000001B4FFFF  0000000000000024 0000000000000009\n"

                                                      "reserved   0000000001B50000-0000000001D4FFFF  0000000000000200 0000000000000009\n"

                                                      "\n"

                                                      "  reserved  :     512 Pages (2,097,152)\n"

                                                      "  LoaderCode:      98 Pages (401,408)\n"

                                                      "  LoaderData:      32 Pages (131,072)\n"

                                                      "  BS_code   :     335 Pages (1,372,160)\n"

                                                      "  BS_data   :     267 Pages (1,093,632)\n"

                                                      "  RT_data   :      19 Pages (77,824)\n"

                                                      "  available :   4,369 Pages (17,895,424)\n"

                                                      "Total Memory: 20 MB (20,971,520) Bytes\n"