From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=209.132.183.28; helo=mx1.redhat.com; envelope-from=lersek@redhat.com; receiver=edk2-devel@lists.01.org Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) (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 74D8621959CB2 for ; Mon, 25 Feb 2019 02:55:15 -0800 (PST) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id CBFA530B6F68; Mon, 25 Feb 2019 10:55:14 +0000 (UTC) Received: from lacos-laptop-7.usersys.redhat.com (ovpn-120-217.rdu2.redhat.com [10.10.120.217]) by smtp.corp.redhat.com (Postfix) with ESMTP id 5DE7E5D9CC; Mon, 25 Feb 2019 10:55:13 +0000 (UTC) From: Laszlo Ersek To: edk2-devel@lists.01.org Cc: Hao Wu , Dandan Bi , Jordan Justen , Anthony Perard , Star Zeng References: <20190221104112.14995-1-lersek@redhat.com> Message-ID: Date: Mon, 25 Feb 2019 11:55:12 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1 MIME-Version: 1.0 In-Reply-To: <20190221104112.14995-1-lersek@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.42]); Mon, 25 Feb 2019 10:55:14 +0000 (UTC) Subject: Re: [PATCH v3 0/5] MdeModulePkg, OvmfPkg, ArmVirtPkg: more visible boot progress reporting X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Feb 2019 10:55:15 -0000 Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit On 02/21/19 11:41, Laszlo Ersek wrote: > Repo: https://github.com/lersek/edk2.git > Branch: boot_diags_v3 > > Addressing feedback for v2, which was posted at: > > https://lists.01.org/pipermail/edk2-devel/2019-February/036965.html > http://mid.mail-archive.com/20190220081644.8238-1-lersek@redhat.com > > Changes are noted per patch. > > Cc: Anthony Perard > Cc: Ard Biesheuvel > Cc: Dandan Bi > Cc: Hao Wu > Cc: Jian J Wang > Cc: Jordan Justen > Cc: Julien Grall > Cc: Ray Ni > Cc: Sean Brogan > Cc: Star Zeng > > Thanks! > Laszlo > > Laszlo Ersek (5): > MdeModulePkg/UefiBootManagerLib: fix LoadImage/StartImage status code > rep. > OvmfPkg: add library to track boot option loading/starting on the > console > OvmfPkg/PlatformBootManagerLib: display boot option loading/starting > ArmVirtPkg/ArmVirtQemu*: enable minimal Status Code Routing in DXE > ArmVirtPkg/PlatformBootManagerLib: display boot option > loading/starting > > ArmVirtPkg/ArmVirtQemu.dsc | 11 + > ArmVirtPkg/ArmVirtQemuFvMain.fdf.inc | 5 + > ArmVirtPkg/ArmVirtQemuKernel.dsc | 11 + > ArmVirtPkg/Library/PlatformBootManagerLib/PlatformBm.c | 3 + > ArmVirtPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf | 1 + > MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c | 65 ++-- > MdeModulePkg/Library/UefiBootManagerLib/InternalBm.h | 1 + > OvmfPkg/Include/Library/PlatformBmPrintScLib.h | 41 +++ > OvmfPkg/Library/PlatformBmPrintScLib/PlatformBmPrintScLib.inf | 66 +++++ > OvmfPkg/Library/PlatformBmPrintScLib/StatusCodeHandler.c | 310 ++++++++++++++++++++ > OvmfPkg/Library/PlatformBootManagerLib/BdsPlatform.c | 3 + > OvmfPkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf | 1 + > OvmfPkg/OvmfPkg.dec | 5 + > OvmfPkg/OvmfPkgIa32.dsc | 1 + > OvmfPkg/OvmfPkgIa32X64.dsc | 1 + > OvmfPkg/OvmfPkgX64.dsc | 1 + > 16 files changed, 508 insertions(+), 18 deletions(-) > create mode 100644 OvmfPkg/Include/Library/PlatformBmPrintScLib.h > create mode 100644 OvmfPkg/Library/PlatformBmPrintScLib/PlatformBmPrintScLib.inf > create mode 100644 OvmfPkg/Library/PlatformBmPrintScLib/StatusCodeHandler.c > Series pushed as commit range 2df879827442..1797f32e0a19. Thanks Laszlo