From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.43, mailfrom: ray.ni@intel.com) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by groups.io with SMTP; Mon, 03 Jun 2019 00:00:04 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Jun 2019 00:00:02 -0700 X-ExtLoop1: 1 Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by orsmga001.jf.intel.com with ESMTP; 03 Jun 2019 00:00:02 -0700 Received: from fmsmsx119.amr.corp.intel.com (10.18.124.207) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.408.0; Mon, 3 Jun 2019 00:00:02 -0700 Received: from shsmsx101.ccr.corp.intel.com (10.239.4.153) by FMSMSX119.amr.corp.intel.com (10.18.124.207) with Microsoft SMTP Server (TLS) id 14.3.408.0; Mon, 3 Jun 2019 00:00:02 -0700 Received: from shsmsx104.ccr.corp.intel.com ([169.254.5.137]) by SHSMSX101.ccr.corp.intel.com ([169.254.1.10]) with mapi id 14.03.0415.000; Mon, 3 Jun 2019 15:00:00 +0800 From: "Ni, Ray" To: "Gao, Zhichao" , "devel@edk2.groups.io" CC: Bret Barkelew , "Wang, Jian J" , "Wu, Hao A" , "Zeng, Star" , "Gao, Liming" , Sean Brogan , Michael Turner Subject: Re: [PATCH 1/2] MdeModulePkg: Add a pcd to set the OS indications bit Thread-Topic: [PATCH 1/2] MdeModulePkg: Add a pcd to set the OS indications bit Thread-Index: AQHVGde+5C5za+juV0i/a2ZH4qM4waaJf/fw Date: Mon, 3 Jun 2019 06:59:15 +0000 Deferred-Delivery: Mon, 3 Jun 2019 07:00:00 +0000 Message-ID: <734D49CCEBEEF84792F5B80ED585239D5C18AD34@SHSMSX104.ccr.corp.intel.com> References: <20190603064358.13296-1-zhichao.gao@intel.com> <20190603064358.13296-2-zhichao.gao@intel.com> In-Reply-To: <20190603064358.13296-2-zhichao.gao@intel.com> Accept-Language: en-US, zh-CN X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Return-Path: ray.ni@intel.com Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Ray Ni > -----Original Message----- > From: Gao, Zhichao > Sent: Monday, June 3, 2019 2:44 PM > To: devel@edk2.groups.io > Cc: Bret Barkelew ; Wang, Jian J > ; Wu, Hao A ; Ni, Ray > ; Zeng, Star ; Gao, Liming > ; Sean Brogan ; > Michael Turner > Subject: [PATCH 1/2] MdeModulePkg: Add a pcd to set the OS indications bi= t >=20 > From: Bret Barkelew >=20 > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3D1678 >=20 > Add a pcd PcdPlatformRecoverySupport to conditionally set an OS indicatio= ns > bit and set the 'PlatformRecovery####' > variable. This pcd would also control whether the BDS supports platform > recovery or not. >=20 > Cc: Jian J Wang > Cc: Hao Wu > Cc: Ray Ni > Cc: Star Zeng > Cc: Liming Gao > Cc: Sean Brogan > Cc: Michael Turner > Cc: Bret Barkelew > Signed-off-by: Zhichao Gao > --- > MdeModulePkg/MdeModulePkg.dec | 6 ++++++ > 1 file changed, 6 insertions(+) >=20 > diff --git a/MdeModulePkg/MdeModulePkg.dec > b/MdeModulePkg/MdeModulePkg.dec index 0a9fcddecc..da2b85770c > 100644 > --- a/MdeModulePkg/MdeModulePkg.dec > +++ b/MdeModulePkg/MdeModulePkg.dec > @@ -1660,6 +1660,12 @@ > # @Prompt Reset on memory type information change. >=20 > gEfiMdeModulePkgTokenSpaceGuid.PcdResetOnMemoryTypeInformationC > hange|TRUE|BOOLEAN|0x00010056 >=20 > + ## Indicates if the BDS supports Platform Recovery.

> + # TRUE - BDS supports Platform Recovery.
> + # FALSE - BDS does not support Platform Recovery.
> + # @Prompt Support Platform Recovery. > + > + > gEfiMdeModulePkgTokenSpaceGuid.PcdPlatformRecoverySupport|TRUE|B > OOLEAN > + |0x00010078 > + > ## Specify the foreground color for Subtile text in HII Form Browser. = The > default value is EFI_BLUE. > # Only following values defined in UEFI specification are valid:
<= BR> > # 0x00 (EFI_BLACK)
> -- > 2.21.0.windows.1