From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2607:f8b0:4001:c0b::231; helo=mail-it0-x231.google.com; envelope-from=ard.biesheuvel@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-it0-x231.google.com (mail-it0-x231.google.com [IPv6:2607:f8b0:4001:c0b::231]) (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 AAFF721290DE6 for ; Tue, 12 Jun 2018 23:58:58 -0700 (PDT) Received: by mail-it0-x231.google.com with SMTP id u4-v6so2444884itg.0 for ; Tue, 12 Jun 2018 23:58:58 -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=h+uisa+qxQYHJ0FTn6kAlNocpS5DlrcpjdD5W6KAhsc=; b=SlaCa1jtRw2PLMg98YhObnsi45Vh8UrOoWSsixxbt/YomeH9Gi/THOHeC6eoWdt0oV krJYR6fi9CMHeSlyD0RIIG0Z7/KKwnAmEHUV0+a3l1OEMTdbBejKsU88O33ta7mupBNx Yz73H5hH2PycVXqUnI5q1uw42C6DTDnR3RXHw= 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=h+uisa+qxQYHJ0FTn6kAlNocpS5DlrcpjdD5W6KAhsc=; b=gDa3BEn3yy+QHZLgN0a7pWsm1CQU9ISScGkPLe3sGwnlBlMOs6pPEfsvqd+pIr3S26 SfVYqXjshrKrO0fd6ZPfyzhXF4mDMKIJ4F5Lna2EkWMB/aKIDiUtIOtVbvrBXwnL45fZ TQAohwM4s/Ijs3JD/y1CkxtFFEEbvdV9ymVjnN3x7OgFDM1qUwKcn7fbiaukw0Tzr8zc xoJ15ecawJTLnRRE4xBfJ3NSh89V//8r+kbRBmLwfgFa/fPskqN3Y5hU4I2YiZIPtr/d pXnpP718xzbk9MHJ+QGucdtAwGku+R39AubMEErbnJkGw6XYpvQqgevJqxkWHgMnNsXd Vlgw== X-Gm-Message-State: APt69E378RwAJ1HEFrSZ+Vc1/MPF+ISLSBwIF7J91m0OVVki3fydW+lN xgoUZEl9ENe5A2LHUx70ZXeAbZ9fw/Hu5EBVHHESVQ== X-Google-Smtp-Source: ADUXVKKyyts+OdmLZcuqTxDoGXoIl6+bgQOwyelyZ2w8T4DNdiSQrTpyhq1+CIbmrLUhyOl0Hhe4RI1Y8id3RICw88M= X-Received: by 2002:a24:3105:: with SMTP id y5-v6mr3563297ity.138.1528873137707; Tue, 12 Jun 2018 23:58:57 -0700 (PDT) MIME-Version: 1.0 Received: by 2002:a6b:bbc7:0:0:0:0:0 with HTTP; Tue, 12 Jun 2018 23:58:57 -0700 (PDT) In-Reply-To: <20180613034316.11776-1-chen.a.chen@intel.com> References: <20180613034316.11776-1-chen.a.chen@intel.com> From: Ard Biesheuvel Date: Wed, 13 Jun 2018 08:58:57 +0200 Message-ID: To: chenc2 Cc: "edk2-devel@lists.01.org" , Leif Lindholm , Michael D Kinney Subject: Re: [PATCH 03/37] ArmPlatformPkg: Removing ipf which is no longer supported from edk2. 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: Wed, 13 Jun 2018 06:58:58 -0000 Content-Type: text/plain; charset="UTF-8" On 13 June 2018 at 05:43, chenc2 wrote: > Removing rules for Ipf sources file: > * Remove the source file which path with "ipf" and also listed in > [Sources.IPF] section of INF file. > * Remove the source file which listed in [Components.IPF] section > of DSC file and not listed in any other [Components] section. > * Remove the embedded Ipf code for MDE_CPU_IPF. > > Removing rules for Inf file: > * Remove IPF from VALID_ARCHITECTURES comments. > * Remove DXE_SAL_DRIVER from LIBRARY_CLASS in [Defines] section. > * Remove the INF which only listed in [Components.IPF] section in DSC. > * Remove statements from [BuildOptions] that provide IPF specific flags. > * Remove any IPF sepcific sections. > > Removing rules for Dec file: > * Remove [Includes.IPF] section from Dec. > > Removing rules for Dsc file: > * Remove IPF from SUPPORTED_ARCHITECTURES in [Defines] section of DSC. > * Remove any IPF specific sections. > * Remove statements from [BuildOptions] that provide IPF specific flags. > > Cc: Leif Lindholm > Cc: Ard Biesheuvel > Cc: Michael D Kinney > Signed-off-by: chenc2 > Contributed-under: TianoCore Contribution Agreement 1.1 Reviewed-by: Ard Biesheuvel > --- > ArmPlatformPkg/MemoryInitPei/MemoryInitPeim.inf | 2 +- > ArmPlatformPkg/PlatformPei/PlatformPeim.inf | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/ArmPlatformPkg/MemoryInitPei/MemoryInitPeim.inf b/ArmPlatformPkg/MemoryInitPei/MemoryInitPeim.inf > index e9b4ea1114..cb477042bd 100644 > --- a/ArmPlatformPkg/MemoryInitPei/MemoryInitPeim.inf > +++ b/ArmPlatformPkg/MemoryInitPei/MemoryInitPeim.inf > @@ -23,7 +23,7 @@ > # > # The following information is for reference only and not required by the build tools. > # > -# VALID_ARCHITECTURES = IA32 X64 IPF EBC ARM > +# VALID_ARCHITECTURES = IA32 X64 EBC ARM > # > > [Sources] > diff --git a/ArmPlatformPkg/PlatformPei/PlatformPeim.inf b/ArmPlatformPkg/PlatformPei/PlatformPeim.inf > index 21701cdc07..4ef26cfd70 100644 > --- a/ArmPlatformPkg/PlatformPei/PlatformPeim.inf > +++ b/ArmPlatformPkg/PlatformPei/PlatformPeim.inf > @@ -24,7 +24,7 @@ > # > # The following information is for reference only and not required by the build tools. > # > -# VALID_ARCHITECTURES = IA32 X64 IPF EBC ARM > +# VALID_ARCHITECTURES = IA32 X64 EBC ARM > # > > [Sources] > -- > 2.16.2.windows.1 >