public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH v2 0/3] Add the prompt and help information in .uni files
@ 2019-03-12  2:05 Shenglei Zhang
  2019-03-12  2:05 ` [PATCH v2 1/3] MdePkg/MdePkg.uni: Add the prompt and help information Shenglei Zhang
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Shenglei Zhang @ 2019-03-12  2:05 UTC (permalink / raw)
  To: edk2-devel
  Cc: Eric Dong, Ray Ni, Laszlo Ersek, Chao Zhang, Jiewen Yao,
	Jian Wang, Michael D Kinney, Liming Gao

The prompt and help information are missing in
MdePkg/UefiPkg/SecurityPkg.uni

Cc: Eric Dong <eric.dong@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Cc: Laszlo Ersek <lersek@redhat.com>
Cc: Chao Zhang <chao.b.zhang@intel.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Jian Wang <jian.j.wang@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Shenglei Zhang (3):
  MdePkg/MdePkg.uni: Add the prompt and help information
  SecurityPkg/SecurityPkg.uni: Add the prompt and help information
  UefiCpuPkg/UefiCpuPkg.uni: Add the prompt and help information

 MdePkg/MdePkg.uni           | 7 +++++++
 SecurityPkg/SecurityPkg.uni | 6 ++++++
 UefiCpuPkg/UefiCpuPkg.uni   | 4 ++++
 3 files changed, 17 insertions(+)

-- 
2.18.0.windows.1



^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH v2 1/3] MdePkg/MdePkg.uni: Add the prompt and help information
  2019-03-12  2:05 [PATCH v2 0/3] Add the prompt and help information in .uni files Shenglei Zhang
@ 2019-03-12  2:05 ` Shenglei Zhang
  2019-03-12  3:12   ` Yao, Jiewen
  2019-03-12  2:05 ` [PATCH v2 2/3] SecurityPkg/SecurityPkg.uni: " Shenglei Zhang
  2019-03-12  2:05 ` [PATCH v2 3/3] UefiCpuPkg/UefiCpuPkg.uni: " Shenglei Zhang
  2 siblings, 1 reply; 6+ messages in thread
From: Shenglei Zhang @ 2019-03-12  2:05 UTC (permalink / raw)
  To: edk2-devel; +Cc: Michael D Kinney, Liming Gao

The prompt and help information are missing in MdePkg.uni.
https://bugzilla.tianocore.org/show_bug.cgi?id=1600

v2:Fix the error message of help and prompt information.

Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Shenglei Zhang <shenglei.zhang@intel.com>
---
 MdePkg/MdePkg.uni | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/MdePkg/MdePkg.uni b/MdePkg/MdePkg.uni
index 863a68d025..f5a8ed1618 100644
--- a/MdePkg/MdePkg.uni
+++ b/MdePkg/MdePkg.uni
@@ -148,6 +148,13 @@
                                                                                          "0  - No length check for unicode string.<BR>\n"
                                                                                          ">0 - Maximum length of unicode string.<BR>"
 
+#string STR_gEfiMdePkgTokenSpaceGuid_PcdControlFlowEnforcementPropertyMask_PROMPT  #language en-US "Enable control flow enforcement."
+
+#string STR_gEfiMdePkgTokenSpaceGuid_PcdControlFlowEnforcementPropertyMask_HELP  #language en-US  "Indicates the control flow enforcement enabling state.\n"
+                                                                                                  "If enabled, it uses control flow enforcement technology to prevent ROP or JOP.<BR><BR>\n"
+                                                                                                  " BIT0 - SMM CET Shadow Stack is enabled.<BR>\n"
+                                                                                                  " Other - reserved"
+
 #string STR_gEfiMdePkgTokenSpaceGuid_PcdMaximumAsciiStringLength_PROMPT  #language en-US "Maximum Length of Ascii String"
 
 #string STR_gEfiMdePkgTokenSpaceGuid_PcdMaximumAsciiStringLength_HELP  #language en-US "Sets the maximum number of ASCII characters used for string functions.  This affects the following BaseLib functions: AsciiStrLen(), AsciiStrSize(), AsciiStrCmp(), AsciiStrnCmp(), AsciiStrCpy(), AsciiStrnCpy(). <BR><BR>\n"
-- 
2.18.0.windows.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH v2 2/3] SecurityPkg/SecurityPkg.uni: Add the prompt and help information
  2019-03-12  2:05 [PATCH v2 0/3] Add the prompt and help information in .uni files Shenglei Zhang
  2019-03-12  2:05 ` [PATCH v2 1/3] MdePkg/MdePkg.uni: Add the prompt and help information Shenglei Zhang
@ 2019-03-12  2:05 ` Shenglei Zhang
  2019-03-12  2:05 ` [PATCH v2 3/3] UefiCpuPkg/UefiCpuPkg.uni: " Shenglei Zhang
  2 siblings, 0 replies; 6+ messages in thread
From: Shenglei Zhang @ 2019-03-12  2:05 UTC (permalink / raw)
  To: edk2-devel; +Cc: Chao Zhang, Jiewen Yao, Jian Wang

The prompt and help information are missing in SecurityPkg.uni.
https://bugzilla.tianocore.org/show_bug.cgi?id=1600

Cc: Chao Zhang <chao.b.zhang@intel.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Jian Wang <jian.j.wang@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Shenglei Zhang <shenglei.zhang@intel.com>
---
 SecurityPkg/SecurityPkg.uni | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/SecurityPkg/SecurityPkg.uni b/SecurityPkg/SecurityPkg.uni
index 400fe6015e..5f387672e8 100644
--- a/SecurityPkg/SecurityPkg.uni
+++ b/SecurityPkg/SecurityPkg.uni
@@ -248,6 +248,12 @@
 #string STR_gEfiSecurityPkgTokenSpaceGuid_PcdTpm2PossibleIrqNumBuf_HELP  #language en-US "This PCD defines possible TPM2 interrupt number in a platform reported by _PRS control method.\n"
                                                                                          "If PcdTpm2CurrentIrqNum set to 0, _PRS will not report any possible TPM2 interrupt numbers."
 
+#string STR_gEfiSecurityPkgTokenSpaceGuid_PcdSkipOpalDxeUnlock_PROMPT  #language en-US "Skip Opal DXE driver unlock device flow."
+
+#string STR_gEfiSecurityPkgTokenSpaceGuid_PcdSkipOpalDxeUnlock_HELP  #language en-US "Indicates if Opal DXE driver skip unlock device flow.<BR><BR>\n"
+                                                                                     "TRUE  - Skip unlock device flow.<BR>\n"
+                                                                                     "FALSE - Does not skip unlock device flow.<BR>"
+
 #string STR_gEfiSecurityPkgTokenSpaceGuid_PcdActiveTpmInterfaceType_PROMPT  #language en-US "Current active TPM interface type"
 
 #string STR_gEfiSecurityPkgTokenSpaceGuid_PcdActiveTpmInterfaceType_HELP  #language en-US "This PCD indicates current active TPM interface type.\n"
-- 
2.18.0.windows.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH v2 3/3] UefiCpuPkg/UefiCpuPkg.uni: Add the prompt and help information
  2019-03-12  2:05 [PATCH v2 0/3] Add the prompt and help information in .uni files Shenglei Zhang
  2019-03-12  2:05 ` [PATCH v2 1/3] MdePkg/MdePkg.uni: Add the prompt and help information Shenglei Zhang
  2019-03-12  2:05 ` [PATCH v2 2/3] SecurityPkg/SecurityPkg.uni: " Shenglei Zhang
@ 2019-03-12  2:05 ` Shenglei Zhang
  2019-03-12 14:45   ` Zeng, Star
  2 siblings, 1 reply; 6+ messages in thread
From: Shenglei Zhang @ 2019-03-12  2:05 UTC (permalink / raw)
  To: edk2-devel; +Cc: Eric Dong, Ray Ni, Laszlo Ersek

The prompt and help information are missing in UefiPkg.uni.
https://bugzilla.tianocore.org/show_bug.cgi?id=1600

Cc: Eric Dong <eric.dong@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Cc: Laszlo Ersek <lersek@redhat.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Shenglei Zhang <shenglei.zhang@intel.com>
Reviewed-by: Eric Dong <eric.dong@intel.com>
---
 UefiCpuPkg/UefiCpuPkg.uni | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/UefiCpuPkg/UefiCpuPkg.uni b/UefiCpuPkg/UefiCpuPkg.uni
index b132ce62cf..0e57b6ac98 100644
--- a/UefiCpuPkg/UefiCpuPkg.uni
+++ b/UefiCpuPkg/UefiCpuPkg.uni
@@ -114,6 +114,10 @@
 
 #string STR_gUefiCpuPkgTokenSpaceGuid_PcdCpuSmmStackSize_HELP  #language en-US "Specifies stack size in bytes for each processor in SMM."
 
+#string STR_gUefiCpuPkgTokenSpaceGuid_PcdCpuSmmStackSize_PROMPT  #language en-US "Processor stack size in SMM."
+
+#string STR_gUefiCpuPkgTokenSpaceGuid_PcdCpuSmmStackSize_Help  #language en-US "Specifies stack size in bytes for each processor in SMM."
+
 #string STR_gUefiCpuPkgTokenSpaceGuid_PcdCpuSmmApSyncTimeout_PROMPT  #language en-US "AP synchronization timeout value in SMM"
 
 #string STR_gUefiCpuPkgTokenSpaceGuid_PcdCpuSmmApSyncTimeout_HELP  #language en-US "Specifies timeout value in microseconds for the BSP in SMM to wait for all APs to come into SMM."
-- 
2.18.0.windows.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH v2 1/3] MdePkg/MdePkg.uni: Add the prompt and help information
  2019-03-12  2:05 ` [PATCH v2 1/3] MdePkg/MdePkg.uni: Add the prompt and help information Shenglei Zhang
@ 2019-03-12  3:12   ` Yao, Jiewen
  0 siblings, 0 replies; 6+ messages in thread
From: Yao, Jiewen @ 2019-03-12  3:12 UTC (permalink / raw)
  To: Zhang, Shenglei, edk2-devel@lists.01.org; +Cc: Kinney, Michael D, Gao, Liming

Reviewed-by: Jiewen.yao@intel.com

> -----Original Message-----
> From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of
> Shenglei Zhang
> Sent: Tuesday, March 12, 2019 10:05 AM
> To: edk2-devel@lists.01.org
> Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Gao, Liming
> <liming.gao@intel.com>
> Subject: [edk2] [PATCH v2 1/3] MdePkg/MdePkg.uni: Add the prompt and
> help information
> 
> The prompt and help information are missing in MdePkg.uni.
> https://bugzilla.tianocore.org/show_bug.cgi?id=1600
> 
> v2:Fix the error message of help and prompt information.
> 
> Cc: Michael D Kinney <michael.d.kinney@intel.com>
> Cc: Liming Gao <liming.gao@intel.com>
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Shenglei Zhang <shenglei.zhang@intel.com>
> ---
>  MdePkg/MdePkg.uni | 7 +++++++
>  1 file changed, 7 insertions(+)
> 
> diff --git a/MdePkg/MdePkg.uni b/MdePkg/MdePkg.uni
> index 863a68d025..f5a8ed1618 100644
> --- a/MdePkg/MdePkg.uni
> +++ b/MdePkg/MdePkg.uni
> @@ -148,6 +148,13 @@
> 
> "0  - No length check for unicode string.<BR>\n"
> 
> ">0 - Maximum length of unicode string.<BR>"
> 
> +#string
> STR_gEfiMdePkgTokenSpaceGuid_PcdControlFlowEnforcementPropertyMas
> k_PROMPT  #language en-US "Enable control flow enforcement."
> +
> +#string
> STR_gEfiMdePkgTokenSpaceGuid_PcdControlFlowEnforcementPropertyMas
> k_HELP  #language en-US  "Indicates the control flow enforcement
> enabling state.\n"
> +
> "If enabled, it uses control flow enforcement technology to prevent ROP or
> JOP.<BR><BR>\n"
> +
> " BIT0 - SMM CET Shadow Stack is enabled.<BR>\n"
> +
> " Other - reserved"
> +
>  #string
> STR_gEfiMdePkgTokenSpaceGuid_PcdMaximumAsciiStringLength_PROMPT
> #language en-US "Maximum Length of Ascii String"
> 
>  #string
> STR_gEfiMdePkgTokenSpaceGuid_PcdMaximumAsciiStringLength_HELP
> #language en-US "Sets the maximum number of ASCII characters used for
> string functions.  This affects the following BaseLib functions: AsciiStrLen(),
> AsciiStrSize(), AsciiStrCmp(), AsciiStrnCmp(), AsciiStrCpy(), AsciiStrnCpy().
> <BR><BR>\n"
> --
> 2.18.0.windows.1
> 
> _______________________________________________
> edk2-devel mailing list
> edk2-devel@lists.01.org
> https://lists.01.org/mailman/listinfo/edk2-devel


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2 3/3] UefiCpuPkg/UefiCpuPkg.uni: Add the prompt and help information
  2019-03-12  2:05 ` [PATCH v2 3/3] UefiCpuPkg/UefiCpuPkg.uni: " Shenglei Zhang
@ 2019-03-12 14:45   ` Zeng, Star
  0 siblings, 0 replies; 6+ messages in thread
From: Zeng, Star @ 2019-03-12 14:45 UTC (permalink / raw)
  To: Zhang, Shenglei, edk2-devel@lists.01.org
  Cc: Laszlo Ersek, Dong, Eric, Zeng, Star

Reviewed-by: Star Zeng <star.zeng@intel.com>

-----Original Message-----
From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of Shenglei Zhang
Sent: Tuesday, March 12, 2019 10:05 AM
To: edk2-devel@lists.01.org
Cc: Laszlo Ersek <lersek@redhat.com>; Dong, Eric <eric.dong@intel.com>
Subject: [edk2] [PATCH v2 3/3] UefiCpuPkg/UefiCpuPkg.uni: Add the prompt and help information

The prompt and help information are missing in UefiPkg.uni.
https://bugzilla.tianocore.org/show_bug.cgi?id=1600

Cc: Eric Dong <eric.dong@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Cc: Laszlo Ersek <lersek@redhat.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Shenglei Zhang <shenglei.zhang@intel.com>
Reviewed-by: Eric Dong <eric.dong@intel.com>
---
 UefiCpuPkg/UefiCpuPkg.uni | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/UefiCpuPkg/UefiCpuPkg.uni b/UefiCpuPkg/UefiCpuPkg.uni index b132ce62cf..0e57b6ac98 100644
--- a/UefiCpuPkg/UefiCpuPkg.uni
+++ b/UefiCpuPkg/UefiCpuPkg.uni
@@ -114,6 +114,10 @@
 
 #string STR_gUefiCpuPkgTokenSpaceGuid_PcdCpuSmmStackSize_HELP  #language en-US "Specifies stack size in bytes for each processor in SMM."
 
+#string STR_gUefiCpuPkgTokenSpaceGuid_PcdCpuSmmStackSize_PROMPT  #language en-US "Processor stack size in SMM."
+
+#string STR_gUefiCpuPkgTokenSpaceGuid_PcdCpuSmmStackSize_Help  #language en-US "Specifies stack size in bytes for each processor in SMM."
+
 #string STR_gUefiCpuPkgTokenSpaceGuid_PcdCpuSmmApSyncTimeout_PROMPT  #language en-US "AP synchronization timeout value in SMM"
 
 #string STR_gUefiCpuPkgTokenSpaceGuid_PcdCpuSmmApSyncTimeout_HELP  #language en-US "Specifies timeout value in microseconds for the BSP in SMM to wait for all APs to come into SMM."
--
2.18.0.windows.1

_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-03-12 14:45 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-12  2:05 [PATCH v2 0/3] Add the prompt and help information in .uni files Shenglei Zhang
2019-03-12  2:05 ` [PATCH v2 1/3] MdePkg/MdePkg.uni: Add the prompt and help information Shenglei Zhang
2019-03-12  3:12   ` Yao, Jiewen
2019-03-12  2:05 ` [PATCH v2 2/3] SecurityPkg/SecurityPkg.uni: " Shenglei Zhang
2019-03-12  2:05 ` [PATCH v2 3/3] UefiCpuPkg/UefiCpuPkg.uni: " Shenglei Zhang
2019-03-12 14:45   ` Zeng, Star

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox