From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 3E121821BA for ; Tue, 20 Dec 2016 08:59:39 -0800 (PST) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga102.fm.intel.com with ESMTP; 20 Dec 2016 08:59:38 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,379,1477983600"; d="scan'208";a="41887187" Received: from orsmsx103.amr.corp.intel.com ([10.22.225.130]) by orsmga004.jf.intel.com with ESMTP; 20 Dec 2016 08:59:38 -0800 Received: from orsmsx111.amr.corp.intel.com (10.22.240.12) by ORSMSX103.amr.corp.intel.com (10.22.225.130) with Microsoft SMTP Server (TLS) id 14.3.248.2; Tue, 20 Dec 2016 08:59:38 -0800 Received: from orsmsx113.amr.corp.intel.com ([169.254.9.227]) by ORSMSX111.amr.corp.intel.com ([10.22.240.12]) with mapi id 14.03.0248.002; Tue, 20 Dec 2016 08:59:38 -0800 From: "Kinney, Michael D" To: "Bi, Dandan" , "edk2-devel@lists.01.org" , "Kinney, Michael D" CC: "Fan, Jeff" Thread-Topic: [patch 1/2] UefiCpuPkg: Add Pcd info to uni file Thread-Index: AQHSWpY2vfvVYTLXTEe+5dNu7v5GMaERD6hQ Date: Tue, 20 Dec 2016 16:59:37 +0000 Message-ID: References: <1482220390-11616-1-git-send-email-dandan.bi@intel.com> In-Reply-To: <1482220390-11616-1-git-send-email-dandan.bi@intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ctpclassification: CTP_IC x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiYjgxYjk2MzMtNGE3My00YThmLTgwYmEtYWE3YWJmN2ZiYTc5IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6Imt2N2JrZUQremlKMXRMa3J0dTVzdjExZjI3OE8weXZlTXRcL1VlSlNDTWNjPSJ9 x-originating-ip: [10.22.254.138] MIME-Version: 1.0 Subject: Re: [patch 1/2] UefiCpuPkg: Add Pcd info to uni file X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Dec 2016 16:59:39 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Michael Kinney > -----Original Message----- > From: Bi, Dandan > Sent: Monday, December 19, 2016 11:53 PM > To: edk2-devel@lists.01.org > Cc: Kinney, Michael D ; Fan, Jeff > > Subject: [patch 1/2] UefiCpuPkg: Add Pcd info to uni file >=20 > Add PcdCpuSmmStmExceptionStackSize/PcdCpuMsegSize prompt and help > string to uni file >=20 > Cc: Michael Kinney > Cc: Jeff Fan > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Dandan Bi > --- > UefiCpuPkg/UefiCpuPkg.uni | 8 ++++++++ > 1 file changed, 8 insertions(+) >=20 > diff --git a/UefiCpuPkg/UefiCpuPkg.uni b/UefiCpuPkg/UefiCpuPkg.uni > index 298ed7e..f4dd339 100644 > --- a/UefiCpuPkg/UefiCpuPkg.uni > +++ b/UefiCpuPkg/UefiCpuPkg.uni > @@ -153,5 +153,13 @@ >=20 > "If enabled, SMM will not use on-demand paging. SMM will build static pag= e table > for all memory.

\n" >=20 > "This flag only impacts X64 build, because SMM alway builds static page t= able for > IA32.\n" >=20 > "TRUE - SMM uses static page table for all memory.
\n" >=20 > "FALSE - SMM uses static page table for below 4G memory and use on-demand= paging > for above 4G memory.
" >=20 > +#string STR_gUefiCpuPkgTokenSpaceGuid_PcdCpuSmmStmExceptionStackSize_PRO= MPT > #language en-US "STM exception stack size." > + > +#string STR_gUefiCpuPkgTokenSpaceGuid_PcdCpuSmmStmExceptionStackSize_HEL= P > #language en-US "Specifies buffer size in bytes for STM exception stack. = The > value should be a multiple of 4KB." > + > +#string STR_gUefiCpuPkgTokenSpaceGuid_PcdCpuMsegSize_PROMPT #language e= n-US > "MSEG size." > + > +#string STR_gUefiCpuPkgTokenSpaceGuid_PcdCpuMsegSize_HELP #language en-= US > "Specifies buffer size in bytes of MSEG. The value should be a multiple o= f 4KB." > + > -- > 1.9.5.msysgit.1