From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) (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 6BE2721BBC421 for ; Sun, 25 Jun 2017 23:16:39 -0700 (PDT) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 25 Jun 2017 23:18:08 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.39,394,1493708400"; d="scan'208";a="1164618102" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by fmsmga001.fm.intel.com with ESMTP; 25 Jun 2017 23:18:08 -0700 Received: from fmsmsx123.amr.corp.intel.com (10.18.125.38) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.319.2; Sun, 25 Jun 2017 23:18:08 -0700 Received: from shsmsx103.ccr.corp.intel.com (10.239.4.69) by fmsmsx123.amr.corp.intel.com (10.18.125.38) with Microsoft SMTP Server (TLS) id 14.3.319.2; Sun, 25 Jun 2017 23:18:07 -0700 Received: from shsmsx104.ccr.corp.intel.com ([169.254.5.151]) by SHSMSX103.ccr.corp.intel.com ([169.254.4.116]) with mapi id 14.03.0319.002; Mon, 26 Jun 2017 14:18:06 +0800 From: "Ni, Ruiyu" To: "Bi, Dandan" , "edk2-devel@lists.01.org" Thread-Topic: [patch 1/2] MdePkg/PiStatusCode: Add new Status Code for BDS when attempting BootOrder Thread-Index: AQHS7kBA4xspCvl4j0OL2x3+2WhPyaI2qzGQ Date: Mon, 26 Jun 2017 06:18:05 +0000 Deferred-Delivery: Mon, 26 Jun 2017 06:18:00 +0000 Message-ID: <734D49CCEBEEF84792F5B80ED585239D5B9A46A1@SHSMSX104.ccr.corp.intel.com> References: <1498456237-71796-1-git-send-email-dandan.bi@intel.com> <1498456237-71796-2-git-send-email-dandan.bi@intel.com> In-Reply-To: <1498456237-71796-2-git-send-email-dandan.bi@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 Subject: Re: [patch 1/2] MdePkg/PiStatusCode: Add new Status Code for BDS when attempting BootOrder X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jun 2017 06:16:39 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Ruiyu Ni Thanks/Ray > -----Original Message----- > From: Bi, Dandan > Sent: Monday, June 26, 2017 1:51 PM > To: edk2-devel@lists.01.org > Cc: Ni, Ruiyu > Subject: [patch 1/2] MdePkg/PiStatusCode: Add new Status Code for BDS > when attempting BootOrder >=20 > According to new PI spec, add new Status Code to indicate BDS starts > attempting booting from the UEFI BootOrder list. >=20 > Cc: Ruiyu Ni > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Dandan Bi > --- > MdePkg/Include/Pi/PiStatusCode.h | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) >=20 > diff --git a/MdePkg/Include/Pi/PiStatusCode.h > b/MdePkg/Include/Pi/PiStatusCode.h > index 8a5e040..953585c 100644 > --- a/MdePkg/Include/Pi/PiStatusCode.h > +++ b/MdePkg/Include/Pi/PiStatusCode.h > @@ -1,9 +1,9 @@ > /** @file > StatusCode related definitions in PI. >=20 > -Copyright (c) 2009 - 2013, Intel Corporation. All rights reserved.
> +Copyright (c) 2009 - 2017, Intel Corporation. All rights reserved.
> This program and the accompanying materials are licensed and made > available under the terms and conditions of the BSD License that > accompanies this distribution. > The full text of the license may be found at > http://opensource.org/licenses/bsd-license.php. >=20 > @@ -788,10 +788,11 @@ typedef struct { > #define EFI_SW_DXE_BS_PC_LEGACY_OPROM_INIT > (EFI_SUBCLASS_SPECIFIC | 0x00000000) > #define EFI_SW_DXE_BS_PC_READY_TO_BOOT_EVENT > (EFI_SUBCLASS_SPECIFIC | 0x00000001) > #define EFI_SW_DXE_BS_PC_LEGACY_BOOT_EVENT > (EFI_SUBCLASS_SPECIFIC | 0x00000002) > #define EFI_SW_DXE_BS_PC_EXIT_BOOT_SERVICES_EVENT > (EFI_SUBCLASS_SPECIFIC | 0x00000003) > #define EFI_SW_DXE_BS_PC_VIRTUAL_ADDRESS_CHANGE_EVENT > (EFI_SUBCLASS_SPECIFIC | 0x00000004) > +#define EFI_SW_DXE_BS_PC_ATTEMPT_BOOT_ORDER_EVENT > (EFI_SUBCLASS_SPECIFIC | 0x00000007) > ///@} >=20 > // > // Software Class SMM Driver Subclass Progress Code definitions. > // > -- > 1.9.5.msysgit.1