From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) (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 20C6681D1C for ; Tue, 8 Nov 2016 07:39:17 -0800 (PST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga103.fm.intel.com with ESMTP; 08 Nov 2016 07:39:19 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,462,1473145200"; d="scan'208";a="1082332765" Received: from orsmsx106.amr.corp.intel.com ([10.22.225.133]) by fmsmga002.fm.intel.com with ESMTP; 08 Nov 2016 07:39:19 -0800 Received: from orsmsx115.amr.corp.intel.com (10.22.240.11) by ORSMSX106.amr.corp.intel.com (10.22.225.133) with Microsoft SMTP Server (TLS) id 14.3.248.2; Tue, 8 Nov 2016 07:39:19 -0800 Received: from orsmsx113.amr.corp.intel.com ([169.254.9.250]) by ORSMSX115.amr.corp.intel.com ([10.22.240.11]) with mapi id 14.03.0248.002; Tue, 8 Nov 2016 07:39:19 -0800 From: "Kinney, Michael D" To: "Ni, Ruiyu" , "edk2-devel@lists.01.org" , "Kinney, Michael D" Thread-Topic: [PATCH v2 8/9] QuarkPlatformPkg/PlatformBds: Dispatch deferred images after EndOfDxe Thread-Index: AQHSObvT5h4oxWAi+kGnyqjvxvxqiKDPOOvQ Date: Tue, 8 Nov 2016 15:39:18 +0000 Message-ID: References: <20161108122928.53984-1-ruiyu.ni@intel.com> <20161108122928.53984-9-ruiyu.ni@intel.com> In-Reply-To: <20161108122928.53984-9-ruiyu.ni@intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ctpclassification: CTP_IC x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZjY5Mjk2YzgtMGYxNS00NDMwLWJiNDctMmU4ZTA5NDZhMDNjIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6Ik9OZlgrQk53OGlUZHJUcmo4TUxLeVBLMW40TlIxcjZ0WlA3NUVqc1wvYU9ZPSJ9 x-originating-ip: [10.22.254.140] MIME-Version: 1.0 Subject: Re: [PATCH v2 8/9] QuarkPlatformPkg/PlatformBds: Dispatch deferred images after EndOfDxe 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, 08 Nov 2016 15:39:17 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Michael Kinney > -----Original Message----- > From: Ni, Ruiyu > Sent: Tuesday, November 8, 2016 4:29 AM > To: edk2-devel@lists.01.org > Cc: Kinney, Michael D ; Steele, Kelly > > Subject: [PATCH v2 8/9] QuarkPlatformPkg/PlatformBds: Dispatch deferred i= mages after > EndOfDxe >=20 > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Ruiyu Ni > Cc: Michael D Kinney > Cc: Kelly Steele > --- > .../Library/PlatformBootManagerLib/PlatformBootManager.c | 7 += +++++- > 1 file changed, 6 insertions(+), 1 deletion(-) >=20 > diff --git a/QuarkPlatformPkg/Library/PlatformBootManagerLib/PlatformBoot= Manager.c > b/QuarkPlatformPkg/Library/PlatformBootManagerLib/PlatformBootManager.c > index 19ff3d0..eb54ce5 100644 > --- a/QuarkPlatformPkg/Library/PlatformBootManagerLib/PlatformBootManager= .c > +++ b/QuarkPlatformPkg/Library/PlatformBootManagerLib/PlatformBootManager= .c > @@ -2,7 +2,7 @@ > This file include all platform action which can be customized > by IBV/OEM. >=20 > -Copyright (c) 2015, Intel Corporation. All rights reserved.
> +Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.
> This program and the accompanying materials > are licensed and made available under the terms and conditions of the BS= D License > which accompanies this distribution. The full text of the license may b= e found at > @@ -285,6 +285,11 @@ PlatformBootManagerBeforeConsole ( > NULL > ); > ASSERT_EFI_ERROR (Status); > + > + // > + // Dispatch deferred images after EndOfDxe event and ReadyToLock insta= llation. > + // > + EfiBootManagerDispatchDeferredImages (); > } >=20 > /** > -- > 2.9.0.windows.1