public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Pete Batard" <pete@akeo.ie>
To: Dandan Bi <dandan.bi@intel.com>, devel@edk2.groups.io
Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>,
	Leif Lindholm <leif@nuviainc.com>
Subject: Re: [edk2-platforms] [patch V2 19/35] Platform/RaspberryPi: Consume MdeLibs.dsc.inc for RegisterFilterLib
Date: Mon, 22 Mar 2021 12:56:18 +0000	[thread overview]
Message-ID: <fc2394d2-d331-0886-dfb5-51e7c9cf7666@akeo.ie> (raw)
In-Reply-To: <20210322085401.19012-10-dandan.bi@intel.com>

On 2021.03.22 08:53, Dandan Bi wrote:
> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3246
> 
> MdeLibs.dsc.inc was added for some basic/default library
> instances provided by MdePkg and RegisterFilterLibNull Library
> was also added into it as the first version of MdeLibs.dsc.inc.
> 
> So update platform dsc to consume MdeLibs.dsc.inc for
> RegisterFilterLibNull which will be consumed by IoLib and BaseLib.
> 
> Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>
> Cc: Leif Lindholm <leif@nuviainc.com>
> Cc: Pete Batard <pete@akeo.ie>
> Signed-off-by: Dandan Bi <dandan.bi@intel.com>
> ---
>   Platform/RaspberryPi/RPi3/RPi3.dsc | 4 +++-
>   Platform/RaspberryPi/RPi4/RPi4.dsc | 4 +++-
>   2 files changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/Platform/RaspberryPi/RPi3/RPi3.dsc b/Platform/RaspberryPi/RPi3/RPi3.dsc
> index 107cbda297..969d723af1 100644
> --- a/Platform/RaspberryPi/RPi3/RPi3.dsc
> +++ b/Platform/RaspberryPi/RPi3/RPi3.dsc
> @@ -1,10 +1,10 @@
>   # @file
>   #
>   #  Copyright (c) 2011 - 2020, ARM Limited. All rights reserved.
>   #  Copyright (c) 2014, Linaro Limited. All rights reserved.
> -#  Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.
> +#  Copyright (c) 2015 - 2021, Intel Corporation. All rights reserved.
>   #  Copyright (c) 2017 - 2018, Andrei Warkentin <andrey.warkentin@gmail.com>
>   #
>   #  SPDX-License-Identifier: BSD-2-Clause-Patent
>   #
>   ##
> @@ -53,10 +53,12 @@ [Defines]
>   #
>   # Library Class section - list of all Library Classes needed by this Platform.
>   #
>   ################################################################################
>   [LibraryClasses.common]
> +  !include MdePkg/MdeLibs.dsc.inc
> +
>   !if $(TARGET) == RELEASE
>     DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
>   !else
>     DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
>   !endif
> diff --git a/Platform/RaspberryPi/RPi4/RPi4.dsc b/Platform/RaspberryPi/RPi4/RPi4.dsc
> index e0fad6f744..ef1224b1f7 100644
> --- a/Platform/RaspberryPi/RPi4/RPi4.dsc
> +++ b/Platform/RaspberryPi/RPi4/RPi4.dsc
> @@ -1,10 +1,10 @@
>   # @file
>   #
>   #  Copyright (c) 2011 - 2020, ARM Limited. All rights reserved.
>   #  Copyright (c) 2017 - 2018, Andrei Warkentin <andrey.warkentin@gmail.com>
> -#  Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.
> +#  Copyright (c) 2015 - 2021, Intel Corporation. All rights reserved.
>   #  Copyright (c) 2014, Linaro Limited. All rights reserved.
>   #
>   #  SPDX-License-Identifier: BSD-2-Clause-Patent
>   #
>   ##
> @@ -51,10 +51,12 @@ [Defines]
>   #
>   # Library Class section - list of all Library Classes needed by this Platform.
>   #
>   ################################################################################
>   [LibraryClasses.common]
> +  !include MdePkg/MdeLibs.dsc.inc
> +
>   !if $(TARGET) == RELEASE
>     DebugLib|MdePkg/Library/BaseDebugLibNull/BaseDebugLibNull.inf
>   !else
>     DebugLib|MdePkg/Library/BaseDebugLibSerialPort/BaseDebugLibSerialPort.inf
>   !endif
> 

Reviewed-by: Pete Batard <pete@akeo.ie>


  reply	other threads:[~2021-03-22 12:56 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-22  8:53 [edk2-platforms] [patch V2 10/35] Platform/AMD: Consume MdeLibs.dsc.inc for RegisterFilterLib Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 11/35] Platform/ARM: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 12/35] Platform/BeagleBoard: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 13/35] Platform/BoardModulePkg: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 14/35] Platform/MinPlatformPkg: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 15/35] Platform/QuarkPlatformPkg: " Dandan Bi
2021-03-25 17:27   ` Steele, Kelly
2021-03-22  8:53 ` [edk2-platforms] [patch V2 16/35] Platform/Vlv2TbltDevicePkg: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 17/35] Platform/LeMaker: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 18/35] Platform/Qemu: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 19/35] Platform/RaspberryPi: " Dandan Bi
2021-03-22 12:56   ` Pete Batard [this message]
2021-03-22  8:53 ` [edk2-platforms] [patch V2 20/35] Platform/RISC-V: " Dandan Bi
2021-03-23  2:19   ` Abner Chang
2021-03-22  8:53 ` [edk2-platforms] [patch V2 21/35] Platform/SiFive: " Dandan Bi
2021-03-23  2:19   ` Abner Chang
2021-03-22  8:53 ` [edk2-platforms] [patch V2 22/35] Platform/Socionext: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 23/35] Platform/SoftIron: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 24/35] Silicon/Hisilicon: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 25/35] Silicon/CoffeelakeSiliconPkg: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 26/35] Silicon/IntelSiliconPkg: " Dandan Bi
2021-03-25 23:32   ` [edk2-devel] " Ni, Ray
2021-03-22  8:53 ` [edk2-platforms] [patch V2 27/35] Silicon/KabylakeSiliconPkg: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 28/35] Silicon/QuarkSocPkg: " Dandan Bi
2021-03-25 17:26   ` Steele, Kelly
2021-03-22  8:53 ` [edk2-platforms] [patch V2 29/35] Silicon/TigerlakeSiliconPkg: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 30/35] Silicon/Marvell: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 31/35] Silicon/NXP: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 32/35] Silicon/Openmoko: " Dandan Bi
2021-03-22  8:53 ` [edk2-platforms] [patch V2 33/35] Silicon/RISC_V: " Dandan Bi
2021-03-23  2:19   ` Abner Chang
2021-03-22  8:54 ` [edk2-platforms] [patch V2 34/35] Silicon/Synopsys/DesignWare: " Dandan Bi
2021-03-22  8:54 ` [edk2-platforms] [patch V2 35/35] Silicon/TexasInstruments: " Dandan Bi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=fc2394d2-d331-0886-dfb5-51e7c9cf7666@akeo.ie \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox