From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mx.groups.io with SMTP id smtpd.web11.2840.1573732101728913286 for ; Thu, 14 Nov 2019 03:48:21 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.136, mailfrom: shenglei.zhang@intel.com) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 14 Nov 2019 03:46:56 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,304,1569308400"; d="scan'208";a="203041250" Received: from shenglei-mobl.ccr.corp.intel.com ([10.67.162.167]) by fmsmga008.fm.intel.com with ESMTP; 14 Nov 2019 03:46:55 -0800 From: "Zhang, Shenglei" To: devel@edk2.groups.io Cc: Shenglei Zhang , Jian J Wang , Hao A Wu Subject: [PATCH 1/3] MdeModulePkg/MdeModulePkg.uni: Add missing strings for PCD Date: Thu, 14 Nov 2019 17:16:40 +0530 Message-Id: <20191114114644.5504-2-shenglei.zhang@intel.com> X-Mailer: git-send-email 2.18.0.windows.1 In-Reply-To: <20191114114644.5504-1-shenglei.zhang@intel.com> References: <20191114114644.5504-1-shenglei.zhang@intel.com> From: Shenglei Zhang Cc: Jian J Wang Cc: Hao A Wu Signed-off-by: Shenglei Zhang --- MdeModulePkg/MdeModulePkg.uni | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/MdeModulePkg/MdeModulePkg.uni b/MdeModulePkg/MdeModulePkg.uni index a2c7a7ded3e8..d9c7b1ac6cf0 100644 --- a/MdeModulePkg/MdeModulePkg.uni +++ b/MdeModulePkg/MdeModulePkg.uni @@ -660,6 +660,18 @@ "TRUE - Device Path From Text Protocol will be produced.
\n" "FALSE - Device Path From Text Protocol will not be produced.
" +#string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdEnableVariableRuntimeCache_PROMPT #language en-US "Enable the UEFI variable runtime cache." + +#string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdEnableVariableRuntimeCache_HELP #language en-US "Indicates if the UEFI variable runtime cache should be enabled.

\n" + "This setting only applies if SMM variables are enabled. When enabled, all variable
\n" + "data for Runtime Service GetVariable () and GetNextVariableName () calls is retrieved
\n" + "from a runtime data buffer referred to as the "runtime cache". An SMI is not triggered
\n" + "at all for these requests. Variables writes still trigger an SMI. This can greatly
\n" + "reduce overall system SMM usage as most boots tend to issue far more variable reads
\n" + "than writes.
\n" + "TRUE - The UEFI variable runtime cache is enabled.
\n" + "FALSE - The UEFI variable runtime cache is disabled.
" + #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdVariableCollectStatistics_PROMPT #language en-US "Enable variable statistics collection" #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdVariableCollectStatistics_HELP #language en-US "Indicates if the statistics about variable usage will be collected. This information is stored as a vendor configuration table into the EFI system table. Set this PCD to TRUE to use VariableInfo application in MdeModulePkg\Application directory to get variable usage info. VariableInfo application will not output information if not set to TRUE.

\n" -- 2.18.0.windows.1