From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=66.187.233.73; helo=mx1.redhat.com; envelope-from=lersek@redhat.com; receiver=edk2-devel@lists.01.org Received: from mx1.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) (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 7AB84226CD785 for ; Wed, 11 Apr 2018 17:55:45 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.rdu2.redhat.com [10.11.54.3]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 019C4EB6F6; Thu, 12 Apr 2018 00:55:44 +0000 (UTC) Received: from lacos-laptop-7.usersys.redhat.com (ovpn-120-97.rdu2.redhat.com [10.10.120.97]) by smtp.corp.redhat.com (Postfix) with ESMTP id C1EAA1208F81; Thu, 12 Apr 2018 00:55:42 +0000 (UTC) From: Laszlo Ersek To: edk2-devel@lists.01.org Cc: Ard Biesheuvel , Leif Lindholm , Steve Capper , Supreeth Venkatesh Date: Thu, 12 Apr 2018 02:55:30 +0200 Message-Id: <20180412005540.26651-1-lersek@redhat.com> X-Scanned-By: MIMEDefang 2.78 on 10.11.54.3 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.11.55.1]); Thu, 12 Apr 2018 00:55:44 +0000 (UTC) X-Greylist: inspected by milter-greylist-4.5.16 (mx1.redhat.com [10.11.55.1]); Thu, 12 Apr 2018 00:55:44 +0000 (UTC) for IP:'10.11.54.3' DOMAIN:'int-mx03.intmail.prod.int.rdu2.redhat.com' HELO:'smtp.corp.redhat.com' FROM:'lersek@redhat.com' RCPT:'' Subject: [PATCH 00/10] ArmPkg, ArmPlatformPkg, ArmVirtPkg, EmbeddedPkg, Omap35xxPkg: depex fixes X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Apr 2018 00:55:45 -0000 Repo: https://github.com/lersek/edk2.git Branch: depex_fixes ArmVirtQemu boots again, it just took a few more patches than I expected :) Some of these patches will have to be ported to edk2-platforms, I think. Cc: Ard Biesheuvel Cc: Leif Lindholm Cc: Steve Capper Cc: Supreeth Venkatesh Thanks, Laszlo Laszlo Ersek (10): Omap35xxPkg/InterruptDxe: replace CPU Arch Protocol depex with notify ArmPkg/ArmGicDxe: annotate protocol usage in "ArmGicDxe.inf" ArmPkg/CpuDxe: order CpuDxe after ArmGicDxe via protocol depex EmbeddedPkg: introduce NvVarStoreFormattedLib ArmPlatformPkg/NorFlashDxe: initialize varstore headers eagerly ArmPlatformPkg/NorFlashDxe: cue the variable driver with NvVarStoreFormatted ArmPlatformPkg/NorFlashDxe: depend on gEfiCpuArchProtocolGuid ArmPlatformPkg/PL031RealTimeClockLib: depend on gEfiCpuArchProtocolGuid ArmVirtPkg/PlatformHasAcpiDtDxe: depend on gEfiVariableArchProtocolGuid ArmVirtPkg/ArmVirtQemu: hook NvVarStoreFormattedLib into VariableRuntimeDxe ArmPkg/ArmPkg.dec | 2 - ArmPkg/Drivers/ArmGic/ArmGicDxe.inf | 8 +- ArmPkg/Drivers/CpuDxe/CpuDxe.inf | 2 +- ArmPlatformPkg/ArmPlatformPkg.dec | 4 - ArmPlatformPkg/Drivers/NorFlashDxe/NorFlashDxe.c | 13 +--- ArmPlatformPkg/Drivers/NorFlashDxe/NorFlashDxe.h | 6 -- ArmPlatformPkg/Drivers/NorFlashDxe/NorFlashDxe.inf | 7 +- ArmPlatformPkg/Drivers/NorFlashDxe/NorFlashFvbDxe.c | 22 +++--- ArmPlatformPkg/Library/PL031RealTimeClockLib/PL031RealTimeClockLib.inf | 5 +- ArmVirtPkg/ArmVirtQemu.dsc | 1 + ArmVirtPkg/ArmVirtQemuKernel.dsc | 1 + ArmVirtPkg/PlatformHasAcpiDtDxe/PlatformHasAcpiDtDxe.inf | 2 +- EmbeddedPkg/EmbeddedPkg.dec | 3 + EmbeddedPkg/Include/Guid/NvVarStoreFormatted.h | 39 ++++++++++ EmbeddedPkg/Library/NvVarStoreFormattedLib/NvVarStoreFormattedLib.c | 41 ++++++++++ EmbeddedPkg/Library/NvVarStoreFormattedLib/NvVarStoreFormattedLib.inf | 52 +++++++++++++ Omap35xxPkg/InterruptDxe/HardwareInterrupt.c | 81 +++++++++++++++----- Omap35xxPkg/InterruptDxe/InterruptDxe.inf | 6 +- 18 files changed, 230 insertions(+), 65 deletions(-) create mode 100644 EmbeddedPkg/Library/NvVarStoreFormattedLib/NvVarStoreFormattedLib.inf create mode 100644 EmbeddedPkg/Include/Guid/NvVarStoreFormatted.h create mode 100644 EmbeddedPkg/Library/NvVarStoreFormattedLib/NvVarStoreFormattedLib.c -- 2.14.1.3.gb7cf6e02401b