public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [Patch V2] MdeModulePkg: LzmaCustomDecompressLib.inf don't support EBC anymore
@ 2019-11-22  8:07 Zhiguang Liu
  2019-11-22  9:59 ` Leif Lindholm
  2019-11-22 11:30 ` [edk2-devel] " Philippe Mathieu-Daudé
  0 siblings, 2 replies; 5+ messages in thread
From: Zhiguang Liu @ 2019-11-22  8:07 UTC (permalink / raw)
  To: devel; +Cc: Liming Gao, Jian J Wang, Hao A Wu, Leif Lindholm

V1:

After unifying the definition of size_t, EBC compiler has failure.
So don't compile this inf file for EBC

V2:

Thanks for Leif's comment
Updated VALID_ARCHITECTURES in inf file

REF:https://bugzilla.tianocore.org/show_bug.cgi?id=2338

Cc: Liming Gao <liming.gao@intel.com>
Cc: Jian J Wang <jian.j.wang@intel.com>
Cc: Hao A Wu <hao.a.wu@intel.com>
Cc: Leif Lindholm <leif.lindholm@linaro.org>
Reviewed-by: Liming Gao <liming.gao@intel.com>

Signed-off-by: Zhiguang Liu <zhiguang.liu@intel.com>
---
 MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf | 2 +-
 MdeModulePkg/MdeModulePkg.dsc                                            | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf b/MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
index 42b741c64b..4ed1d83a40 100644
--- a/MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
+++ b/MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
@@ -25,7 +25,7 @@
 #
 # The following information is for reference only and not required by the build tools.
 #
-#  VALID_ARCHITECTURES           = IA32 X64 EBC
+#  VALID_ARCHITECTURES           = IA32 X64 AARCH64 ARM
 #
 
 [Sources]
diff --git a/MdeModulePkg/MdeModulePkg.dsc b/MdeModulePkg/MdeModulePkg.dsc
index 4320839abf..f7dbb27ce2 100644
--- a/MdeModulePkg/MdeModulePkg.dsc
+++ b/MdeModulePkg/MdeModulePkg.dsc
@@ -299,7 +299,6 @@
   MdeModulePkg/Library/PeiDebugPrintHobLib/PeiDebugPrintHobLib.inf
   MdeModulePkg/Library/CpuExceptionHandlerLibNull/CpuExceptionHandlerLibNull.inf
   MdeModulePkg/Library/PlatformHookLibSerialPortPpi/PlatformHookLibSerialPortPpi.inf
-  MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
   MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
   MdeModulePkg/Library/PeiDebugLibDebugPpi/PeiDebugLibDebugPpi.inf
   MdeModulePkg/Library/UefiBootManagerLib/UefiBootManagerLib.inf
@@ -433,6 +432,7 @@
 
 [Components.IA32, Components.X64, Components.ARM, Components.AARCH64]
   MdeModulePkg/Library/BrotliCustomDecompressLib/BrotliCustomDecompressLib.inf
+  MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
   MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf
   MdeModulePkg/Core/Dxe/DxeMain.inf {
     <LibraryClasses>
-- 
2.16.2.windows.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Patch V2] MdeModulePkg: LzmaCustomDecompressLib.inf don't support EBC anymore
  2019-11-22  8:07 [Patch V2] MdeModulePkg: LzmaCustomDecompressLib.inf don't support EBC anymore Zhiguang Liu
@ 2019-11-22  9:59 ` Leif Lindholm
  2019-11-22 11:30 ` [edk2-devel] " Philippe Mathieu-Daudé
  1 sibling, 0 replies; 5+ messages in thread
From: Leif Lindholm @ 2019-11-22  9:59 UTC (permalink / raw)
  To: Zhiguang Liu; +Cc: devel, Liming Gao, Jian J Wang, Hao A Wu

On Fri, Nov 22, 2019 at 16:07:26 +0800, Zhiguang Liu wrote:
> V1:
> 
> After unifying the definition of size_t, EBC compiler has failure.
> So don't compile this inf file for EBC
> 
> V2:
> 
> Thanks for Leif's comment
> Updated VALID_ARCHITECTURES in inf file

Please remove the versioning information from the commit message -
such infofmation goes below ---. The part that is in the V1 section
(minus the "V1:" bit) is a sufficient commit message - please keep
only that.

With that
Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>

> 
> REF:https://bugzilla.tianocore.org/show_bug.cgi?id=2338
> 
> Cc: Liming Gao <liming.gao@intel.com>
> Cc: Jian J Wang <jian.j.wang@intel.com>
> Cc: Hao A Wu <hao.a.wu@intel.com>
> Cc: Leif Lindholm <leif.lindholm@linaro.org>
> Reviewed-by: Liming Gao <liming.gao@intel.com>
> 
> Signed-off-by: Zhiguang Liu <zhiguang.liu@intel.com>
> ---
>  MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf | 2 +-
>  MdeModulePkg/MdeModulePkg.dsc                                            | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf b/MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
> index 42b741c64b..4ed1d83a40 100644
> --- a/MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
> +++ b/MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
> @@ -25,7 +25,7 @@
>  #
>  # The following information is for reference only and not required by the build tools.
>  #
> -#  VALID_ARCHITECTURES           = IA32 X64 EBC
> +#  VALID_ARCHITECTURES           = IA32 X64 AARCH64 ARM
>  #
>  
>  [Sources]
> diff --git a/MdeModulePkg/MdeModulePkg.dsc b/MdeModulePkg/MdeModulePkg.dsc
> index 4320839abf..f7dbb27ce2 100644
> --- a/MdeModulePkg/MdeModulePkg.dsc
> +++ b/MdeModulePkg/MdeModulePkg.dsc
> @@ -299,7 +299,6 @@
>    MdeModulePkg/Library/PeiDebugPrintHobLib/PeiDebugPrintHobLib.inf
>    MdeModulePkg/Library/CpuExceptionHandlerLibNull/CpuExceptionHandlerLibNull.inf
>    MdeModulePkg/Library/PlatformHookLibSerialPortPpi/PlatformHookLibSerialPortPpi.inf
> -  MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
>    MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
>    MdeModulePkg/Library/PeiDebugLibDebugPpi/PeiDebugLibDebugPpi.inf
>    MdeModulePkg/Library/UefiBootManagerLib/UefiBootManagerLib.inf
> @@ -433,6 +432,7 @@
>  
>  [Components.IA32, Components.X64, Components.ARM, Components.AARCH64]
>    MdeModulePkg/Library/BrotliCustomDecompressLib/BrotliCustomDecompressLib.inf
> +  MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
>    MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf
>    MdeModulePkg/Core/Dxe/DxeMain.inf {
>      <LibraryClasses>
> -- 
> 2.16.2.windows.1
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [edk2-devel] [Patch V2] MdeModulePkg: LzmaCustomDecompressLib.inf don't support EBC anymore
  2019-11-22  8:07 [Patch V2] MdeModulePkg: LzmaCustomDecompressLib.inf don't support EBC anymore Zhiguang Liu
  2019-11-22  9:59 ` Leif Lindholm
@ 2019-11-22 11:30 ` Philippe Mathieu-Daudé
  2019-11-22 11:34   ` Leif Lindholm
  1 sibling, 1 reply; 5+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-11-22 11:30 UTC (permalink / raw)
  To: devel, zhiguang.liu; +Cc: Liming Gao, Jian J Wang, Hao A Wu, Leif Lindholm

Hi,

On 11/22/19 9:07 AM, Zhiguang Liu wrote:
> V1:
> 
> After unifying the definition of size_t, EBC compiler has failure.
> So don't compile this inf file for EBC
> 
> V2:
> 
> Thanks for Leif's comment
> Updated VALID_ARCHITECTURES in inf file
> 
> REF:https://bugzilla.tianocore.org/show_bug.cgi?id=2338
> 
> Cc: Liming Gao <liming.gao@intel.com>
> Cc: Jian J Wang <jian.j.wang@intel.com>
> Cc: Hao A Wu <hao.a.wu@intel.com>
> Cc: Leif Lindholm <leif.lindholm@linaro.org>
> Reviewed-by: Liming Gao <liming.gao@intel.com>
> 
> Signed-off-by: Zhiguang Liu <zhiguang.liu@intel.com>
> ---
>   MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf | 2 +-
>   MdeModulePkg/MdeModulePkg.dsc                                            | 2 +-
>   2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf b/MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
> index 42b741c64b..4ed1d83a40 100644
> --- a/MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
> +++ b/MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
> @@ -25,7 +25,7 @@
>   #
>   # The following information is for reference only and not required by the build tools.
>   #
> -#  VALID_ARCHITECTURES           = IA32 X64 EBC
> +#  VALID_ARCHITECTURES           = IA32 X64 AARCH64 ARM

It looks you are doing 2 changes at once:
- Add ARM/Aarch64 which were missing to VALID_ARCHITECTURES
- Remove EBC (BZ#2338)

Do you mind splitting this patch in 2 logical ones?
(Maybe it is cleaner to first fix BZ#2338, then add the missing archs.

>   #
>   
>   [Sources]
> diff --git a/MdeModulePkg/MdeModulePkg.dsc b/MdeModulePkg/MdeModulePkg.dsc
> index 4320839abf..f7dbb27ce2 100644
> --- a/MdeModulePkg/MdeModulePkg.dsc
> +++ b/MdeModulePkg/MdeModulePkg.dsc
> @@ -299,7 +299,6 @@
>     MdeModulePkg/Library/PeiDebugPrintHobLib/PeiDebugPrintHobLib.inf
>     MdeModulePkg/Library/CpuExceptionHandlerLibNull/CpuExceptionHandlerLibNull.inf
>     MdeModulePkg/Library/PlatformHookLibSerialPortPpi/PlatformHookLibSerialPortPpi.inf
> -  MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
>     MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
>     MdeModulePkg/Library/PeiDebugLibDebugPpi/PeiDebugLibDebugPpi.inf
>     MdeModulePkg/Library/UefiBootManagerLib/UefiBootManagerLib.inf
> @@ -433,6 +432,7 @@
>   
>   [Components.IA32, Components.X64, Components.ARM, Components.AARCH64]
>     MdeModulePkg/Library/BrotliCustomDecompressLib/BrotliCustomDecompressLib.inf
> +  MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
>     MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf
>     MdeModulePkg/Core/Dxe/DxeMain.inf {
>       <LibraryClasses>
> 


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [edk2-devel] [Patch V2] MdeModulePkg: LzmaCustomDecompressLib.inf don't support EBC anymore
  2019-11-22 11:30 ` [edk2-devel] " Philippe Mathieu-Daudé
@ 2019-11-22 11:34   ` Leif Lindholm
  2019-11-25  1:29     ` Zhiguang Liu
  0 siblings, 1 reply; 5+ messages in thread
From: Leif Lindholm @ 2019-11-22 11:34 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé
  Cc: devel, zhiguang.liu, Liming Gao, Jian J Wang, Hao A Wu

On Fri, Nov 22, 2019 at 12:30:13 +0100, Philippe Mathieu-Daudé wrote:
> Hi,
> 
> On 11/22/19 9:07 AM, Zhiguang Liu wrote:
> > V1:
> > 
> > After unifying the definition of size_t, EBC compiler has failure.
> > So don't compile this inf file for EBC
> > 
> > V2:
> > 
> > Thanks for Leif's comment
> > Updated VALID_ARCHITECTURES in inf file
> > 
> > REF:https://bugzilla.tianocore.org/show_bug.cgi?id=2338
> > 
> > Cc: Liming Gao <liming.gao@intel.com>
> > Cc: Jian J Wang <jian.j.wang@intel.com>
> > Cc: Hao A Wu <hao.a.wu@intel.com>
> > Cc: Leif Lindholm <leif.lindholm@linaro.org>
> > Reviewed-by: Liming Gao <liming.gao@intel.com>
> > 
> > Signed-off-by: Zhiguang Liu <zhiguang.liu@intel.com>
> > ---
> >   MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf | 2 +-
> >   MdeModulePkg/MdeModulePkg.dsc                                            | 2 +-
> >   2 files changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf b/MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
> > index 42b741c64b..4ed1d83a40 100644
> > --- a/MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
> > +++ b/MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
> > @@ -25,7 +25,7 @@
> >   #
> >   # The following information is for reference only and not required by the build tools.
> >   #
> > -#  VALID_ARCHITECTURES           = IA32 X64 EBC
> > +#  VALID_ARCHITECTURES           = IA32 X64 AARCH64 ARM
> 
> It looks you are doing 2 changes at once:
> - Add ARM/Aarch64 which were missing to VALID_ARCHITECTURES
> - Remove EBC (BZ#2338)

No. ARM/AARCH64 were already supported - but the comment had not been
updated. So I suggested that when the comment was updated, it was
updated to reflect actual reality rather than just drop the EBC.

(This would of course have been more clear in the diffs if the
SetupGit.py script had been executed in the contributor's check-out,
making the diff show the sections being modified.)

/
    Leif

> Do you mind splitting this patch in 2 logical ones?
> (Maybe it is cleaner to first fix BZ#2338, then add the missing archs.
> 
> >   #
> >   [Sources]
> > diff --git a/MdeModulePkg/MdeModulePkg.dsc b/MdeModulePkg/MdeModulePkg.dsc
> > index 4320839abf..f7dbb27ce2 100644
> > --- a/MdeModulePkg/MdeModulePkg.dsc
> > +++ b/MdeModulePkg/MdeModulePkg.dsc
> > @@ -299,7 +299,6 @@
> >     MdeModulePkg/Library/PeiDebugPrintHobLib/PeiDebugPrintHobLib.inf
> >     MdeModulePkg/Library/CpuExceptionHandlerLibNull/CpuExceptionHandlerLibNull.inf
> >     MdeModulePkg/Library/PlatformHookLibSerialPortPpi/PlatformHookLibSerialPortPpi.inf
> > -  MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
> >     MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLibReportStatusCode.inf
> >     MdeModulePkg/Library/PeiDebugLibDebugPpi/PeiDebugLibDebugPpi.inf
> >     MdeModulePkg/Library/UefiBootManagerLib/UefiBootManagerLib.inf
> > @@ -433,6 +432,7 @@
> >   [Components.IA32, Components.X64, Components.ARM, Components.AARCH64]
> >     MdeModulePkg/Library/BrotliCustomDecompressLib/BrotliCustomDecompressLib.inf
> > +  MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompressLib.inf
> >     MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf
> >     MdeModulePkg/Core/Dxe/DxeMain.inf {
> >       <LibraryClasses>
> > 
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [edk2-devel] [Patch V2] MdeModulePkg: LzmaCustomDecompressLib.inf don't support EBC anymore
  2019-11-22 11:34   ` Leif Lindholm
@ 2019-11-25  1:29     ` Zhiguang Liu
  0 siblings, 0 replies; 5+ messages in thread
From: Zhiguang Liu @ 2019-11-25  1:29 UTC (permalink / raw)
  To: Leif Lindholm, Philippe Mathieu-Daudé
  Cc: devel@edk2.groups.io, Gao, Liming, Wang, Jian J, Wu, Hao A

Thanks all for the comments. 
I agree that it will be more clear to split the patch. 
So, I will send a new version later.

Zhiguang

> -----Original Message-----
> From: Leif Lindholm <leif.lindholm@linaro.org>
> Sent: Friday, November 22, 2019 7:34 PM
> To: Philippe Mathieu-Daudé <philmd@redhat.com>
> Cc: devel@edk2.groups.io; Liu, Zhiguang <zhiguang.liu@intel.com>; Gao,
> Liming <liming.gao@intel.com>; Wang, Jian J <jian.j.wang@intel.com>; Wu,
> Hao A <hao.a.wu@intel.com>
> Subject: Re: [edk2-devel] [Patch V2] MdeModulePkg:
> LzmaCustomDecompressLib.inf don't support EBC anymore
> 
> On Fri, Nov 22, 2019 at 12:30:13 +0100, Philippe Mathieu-Daudé wrote:
> > Hi,
> >
> > On 11/22/19 9:07 AM, Zhiguang Liu wrote:
> > > V1:
> > >
> > > After unifying the definition of size_t, EBC compiler has failure.
> > > So don't compile this inf file for EBC
> > >
> > > V2:
> > >
> > > Thanks for Leif's comment
> > > Updated VALID_ARCHITECTURES in inf file
> > >
> > > REF:https://bugzilla.tianocore.org/show_bug.cgi?id=2338
> > >
> > > Cc: Liming Gao <liming.gao@intel.com>
> > > Cc: Jian J Wang <jian.j.wang@intel.com>
> > > Cc: Hao A Wu <hao.a.wu@intel.com>
> > > Cc: Leif Lindholm <leif.lindholm@linaro.org>
> > > Reviewed-by: Liming Gao <liming.gao@intel.com>
> > >
> > > Signed-off-by: Zhiguang Liu <zhiguang.liu@intel.com>
> > > ---
> > >
> MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompr
> essLib.inf | 2 +-
> > >   MdeModulePkg/MdeModulePkg.dsc                                            | 2 +-
> > >   2 files changed, 2 insertions(+), 2 deletions(-)
> > >
> > > diff --git
> > >
> a/MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecom
> pressL
> > > ib.inf
> > >
> b/MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecom
> pressL
> > > ib.inf
> > > index 42b741c64b..4ed1d83a40 100644
> > > ---
> > >
> a/MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecom
> pressL
> > > ib.inf
> > > +++
> b/MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecom
> pr
> > > +++ essLib.inf
> > > @@ -25,7 +25,7 @@
> > >   #
> > >   # The following information is for reference only and not required by the
> build tools.
> > >   #
> > > -#  VALID_ARCHITECTURES           = IA32 X64 EBC
> > > +#  VALID_ARCHITECTURES           = IA32 X64 AARCH64 ARM
> >
> > It looks you are doing 2 changes at once:
> > - Add ARM/Aarch64 which were missing to VALID_ARCHITECTURES
> > - Remove EBC (BZ#2338)
> 
> No. ARM/AARCH64 were already supported - but the comment had not
> been updated. So I suggested that when the comment was updated, it was
> updated to reflect actual reality rather than just drop the EBC.
> 
> (This would of course have been more clear in the diffs if the SetupGit.py
> script had been executed in the contributor's check-out, making the diff
> show the sections being modified.)
> 
> /
>     Leif
> 
> > Do you mind splitting this patch in 2 logical ones?
> > (Maybe it is cleaner to first fix BZ#2338, then add the missing archs.
> >
> > >   #
> > >   [Sources]
> > > diff --git a/MdeModulePkg/MdeModulePkg.dsc
> > > b/MdeModulePkg/MdeModulePkg.dsc index 4320839abf..f7dbb27ce2
> 100644
> > > --- a/MdeModulePkg/MdeModulePkg.dsc
> > > +++ b/MdeModulePkg/MdeModulePkg.dsc
> > > @@ -299,7 +299,6 @@
> > >
> MdeModulePkg/Library/PeiDebugPrintHobLib/PeiDebugPrintHobLib.inf
> > >
> MdeModulePkg/Library/CpuExceptionHandlerLibNull/CpuExceptionHandlerL
> ibNull.inf
> > >
> > >
> MdeModulePkg/Library/PlatformHookLibSerialPortPpi/PlatformHookLibSer
> > > ialPortPpi.inf
> > > -
> MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompr
> essLib.inf
> > >
> MdeModulePkg/Library/PeiDxeDebugLibReportStatusCode/PeiDxeDebugLib
> ReportStatusCode.inf
> > >
> MdeModulePkg/Library/PeiDebugLibDebugPpi/PeiDebugLibDebugPpi.inf
> > >     MdeModulePkg/Library/UefiBootManagerLib/UefiBootManagerLib.inf
> > > @@ -433,6 +432,7 @@
> > >   [Components.IA32, Components.X64, Components.ARM,
> Components.AARCH64]
> > >
> > >
> MdeModulePkg/Library/BrotliCustomDecompressLib/BrotliCustomDecompr
> es
> > > sLib.inf
> > > +
> > > +
> MdeModulePkg/Library/LzmaCustomDecompressLib/LzmaCustomDecompr
> essL
> > > + ib.inf
> > >     MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf
> > >     MdeModulePkg/Core/Dxe/DxeMain.inf {
> > >       <LibraryClasses>
> > >
> >

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-11-25  1:29 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-11-22  8:07 [Patch V2] MdeModulePkg: LzmaCustomDecompressLib.inf don't support EBC anymore Zhiguang Liu
2019-11-22  9:59 ` Leif Lindholm
2019-11-22 11:30 ` [edk2-devel] " Philippe Mathieu-Daudé
2019-11-22 11:34   ` Leif Lindholm
2019-11-25  1:29     ` Zhiguang Liu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox