]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Source/Python/BPDG/StringTable.py
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / BaseTools / Source / Python / BPDG / StringTable.py
1 ## @file
2 # This file is used to define strings used in the BPDG tool
3 #
4 # Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR>
5 # SPDX-License-Identifier: BSD-2-Clause-Patent
6 ##
7
8
9 #string table starts here...
10
11 #strings are classified as following types
12 # MSG_...: it is a message string
13 # ERR_...: it is a error string
14 # WRN_...: it is a warning string
15 # LBL_...: it is a UI label (window title, control label, etc.)
16 # MNU_...: it is a menu item label
17 # HLP_...: it is a help string
18 # CFG_...: it is a config string used in module. Do not need to translate it.
19 # XRC_...: it is a user visible string from xrc file
20
21 MAP_FILE_COMMENT_TEMPLATE = \
22 """
23 ## @file
24 #
25 # THIS IS AUTO-GENERATED FILE BY BPDG TOOLS AND PLEASE DO NOT MAKE MODIFICATION.
26 #
27 # This file lists all VPD informations for a platform fixed/adjusted by BPDG tool.
28 #
29 # Copyright (c) 2010 -2018, Intel Corporation. All rights reserved.<BR>
30 # This program and the accompanying materials
31 # are licensed and made available under the terms and conditions of the BSD License
32 # which accompanies this distribution. The full text of the license may be found at
33 # http://opensource.org/licenses/bsd-license.php
34 #
35 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
36 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
37 #
38 """
39
40
41
42 LBL_BPDG_LONG_UNI = (u"Intel(r) Binary Product Data Generation Tool (Intel(r) BPDG)")
43 LBL_BPDG_VERSION = (u"1.0")
44 LBL_BPDG_USAGE = \
45 (
46 """BPDG options -o Filename.bin -m Filename.map Filename.txt
47 Copyright (c) 2010 - 2018, Intel Corporation All Rights Reserved.
48
49 Intel(r) Binary Product Data Generation Tool (Intel(r) BPDG)
50
51 Required Flags:
52 -o BIN_FILENAME, --vpd-filename=BIN_FILENAME
53 Specify the file name for the VPD binary file
54 -m FILENAME, --map-filename=FILENAME
55 Generate file name for consumption during the build that contains
56 the mapping of Pcd name, offset, datum size and value derived
57 from the input file and any automatic calculations.
58 """
59 )
60
61 MSG_OPTION_HELP = ("Show this help message and exit.")
62 MSG_OPTION_DEBUG_LEVEL = ("Print DEBUG statements, where DEBUG_LEVEL is 0-9.")
63 MSG_OPTION_VERBOSE = ("Print informational statements.")
64 MSG_OPTION_QUIET = ("Returns the exit code and will display only error messages.")
65 MSG_OPTION_VPD_FILENAME = ("Specify the file name for the VPD binary file.")
66 MSG_OPTION_MAP_FILENAME = ("Generate file name for consumption during the build that contains the mapping of Pcd name, offset, datum size and value derived from the input file and any automatic calculations.")
67 MSG_OPTION_FORCE = ("Will force overwriting existing output files rather than returning an error message.")
68
69 ERR_INVALID_DEBUG_LEVEL = ("Invalid level for debug message. Only "
70 "'DEBUG', 'INFO', 'WARNING', 'ERROR', "
71 "'CRITICAL' are supported for debugging "
72 "messages.")