From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-it0-x229.google.com (mail-it0-x229.google.com [IPv6:2607:f8b0:4001:c0b::229]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 0823D21D2E656 for ; Thu, 24 Aug 2017 07:34:26 -0700 (PDT) Received: by mail-it0-x229.google.com with SMTP id f135so3836868ita.0 for ; Thu, 24 Aug 2017 07:37:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=TI0UmrX3grzeTiZ+TTb2FsicA42mBx424biEQPeDmpY=; b=EFlgs4owCBu5UpDsYXIQbt1QEBwdl/+9wwl8ZNElB3hOE8V0XaAkLOPNYJlgg2HRIc DxXion33pFwy+4d2glJ+iWzn6GhQqmhsPhXUkSPxAYM3Pku147JVdFcT1yiTmaQkUGPC eXHdObKMYZUJoB+R1iRtZV08/xydGeg1E0M7w= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=TI0UmrX3grzeTiZ+TTb2FsicA42mBx424biEQPeDmpY=; b=KVLInAG3S8kS6jfaWOk+DdABHuHdK7sKAPkqxh5F/FM8uf7GjQnpagX6j9vLSyCenB 09SVm7tyJAKBUwmi6aRKXThZI4G7L4k+gTP3eHYRAPSu4BBppjPZ+sHtMibmBYpiSIUT ccfNxEIum3iFBQDUsDI1s8pGIdANwx9gk5e+wfGicVBRVvHT/rq4ws4RG2j/eX5QGMey nMpxEfyyK0oBlTdehpaD0fsOnr4QrpRQfiXcunqSOAX6i5VTFMsT2kqUQgvD+zQhmm/t e55TfD7r+BP3OmPvYT1EYb6qRN8y6b0TVNpjNEumPXoCj+5mBx+YrZ9Lkl5K9en+4fDh pEoQ== X-Gm-Message-State: AHYfb5gxkbLQaNjJFOYjrJ/lDu4h+O6BQK0ZioQEAarPMBW5xWtJbCgl wlLy9KhgZ9hxoFjOpulg0BE3Ux7YrGpv X-Received: by 10.36.43.68 with SMTP id h65mr6096448ita.41.1503585420393; Thu, 24 Aug 2017 07:37:00 -0700 (PDT) MIME-Version: 1.0 Received: by 10.107.162.1 with HTTP; Thu, 24 Aug 2017 07:36:59 -0700 (PDT) In-Reply-To: <5b00f95f-97f1-6792-fe7e-5b52717f10ae@redhat.com> References: <20170824122401.9882-1-ard.biesheuvel@linaro.org> <5b00f95f-97f1-6792-fe7e-5b52717f10ae@redhat.com> From: Ard Biesheuvel Date: Thu, 24 Aug 2017 15:36:59 +0100 Message-ID: To: Laszlo Ersek Cc: "edk2-devel@lists.01.org" , Leif Lindholm , Jordan Justen Subject: Re: [PATCH] OvmfPkg/QemuVideoDxe: remove AARCH64/ARM support 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: Thu, 24 Aug 2017 14:34:26 -0000 Content-Type: text/plain; charset="UTF-8" On 24 August 2017 at 14:48, Laszlo Ersek wrote: > On 08/24/17 14:24, Ard Biesheuvel wrote: >> Now that we have dropped QemuVideoDxe from all QEMU targeted builds >> under ArmVirtPkg, we can revert the ARM specific changes to it. >> >> This partially reverts commits 84a75f70e903 (SVN 16890) and >> 05a537945872. >> >> Contributed-under: TianoCore Contribution Agreement 1.1 >> Signed-off-by: Ard Biesheuvel >> --- >> OvmfPkg/QemuVideoDxe/QemuVideoDxe.inf | 4 ++-- >> 1 file changed, 2 insertions(+), 2 deletions(-) >> >> diff --git a/OvmfPkg/QemuVideoDxe/QemuVideoDxe.inf b/OvmfPkg/QemuVideoDxe/QemuVideoDxe.inf >> index 346a5aed94fa..7c7d429bca27 100644 >> --- a/OvmfPkg/QemuVideoDxe/QemuVideoDxe.inf >> +++ b/OvmfPkg/QemuVideoDxe/QemuVideoDxe.inf >> @@ -26,7 +26,7 @@ [Defines] >> # >> # The following information is for reference only and not required by the build tools. >> # >> -# VALID_ARCHITECTURES = IA32 X64 IPF EBC ARM AARCH64 >> +# VALID_ARCHITECTURES = IA32 X64 IPF EBC >> # >> # DRIVER_BINDING = gQemuVideoDriverBinding >> # COMPONENT_NAME = gQemuVideoComponentName >> @@ -45,7 +45,7 @@ [Sources.Ia32, Sources.X64] >> UnalignedIoMsc.c | MSFT >> UnalignedIoIcc.c | INTEL >> >> -[Sources.IPF, Sources.EBC, Sources.ARM, Sources.AARCH64] >> +[Sources.IPF, Sources.EBC] >> UnalignedIoUnsupported.c >> >> [Packages] >> > > Reviewed-by: Laszlo Ersek > Pushed as bfb0ee0adbb1838a371e9f5b1c1b49e1f354447a Thanks