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