* [PATCH 1/2] BeagleBoardPkg: drop unused PcdCacheEnabled dependency
@ 2018-02-08 19:19 Leif Lindholm
2018-02-08 19:19 ` [PATCH 2/2] EmbeddedPkg: _really_ delete PcdCacheEnable from .dec Leif Lindholm
2018-02-08 19:22 ` [PATCH 1/2] BeagleBoardPkg: drop unused PcdCacheEnabled dependency Ard Biesheuvel
0 siblings, 2 replies; 4+ messages in thread
From: Leif Lindholm @ 2018-02-08 19:19 UTC (permalink / raw)
To: edk2-devel; +Cc: ard.biesheuvel
Commit f72df138 got rid of the use of PcdCacheEnabled, but failed to
actually drop it as a dependency for BeagleBoardLib.
Get rid of it, so the module will still build when the Pcd is _really_
removed.
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
---
BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoardLib.inf | 3 ---
1 file changed, 3 deletions(-)
diff --git a/BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoardLib.inf b/BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoardLib.inf
index e004d6f10b..3b62f3cbf7 100644
--- a/BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoardLib.inf
+++ b/BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoardLib.inf
@@ -44,9 +44,6 @@ [Sources.common]
BeagleBoardHelper.S | GCC
BeagleBoardHelper.asm | RVCT
-[FeaturePcd]
- gEmbeddedTokenSpaceGuid.PcdCacheEnable
-
[FixedPcd]
gArmTokenSpaceGuid.PcdFdBaseAddress
gArmTokenSpaceGuid.PcdFdSize
--
2.11.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] EmbeddedPkg: _really_ delete PcdCacheEnable from .dec
2018-02-08 19:19 [PATCH 1/2] BeagleBoardPkg: drop unused PcdCacheEnabled dependency Leif Lindholm
@ 2018-02-08 19:19 ` Leif Lindholm
2018-02-08 19:22 ` [PATCH 1/2] BeagleBoardPkg: drop unused PcdCacheEnabled dependency Ard Biesheuvel
1 sibling, 0 replies; 4+ messages in thread
From: Leif Lindholm @ 2018-02-08 19:19 UTC (permalink / raw)
To: edk2-devel; +Cc: ard.biesheuvel
Commit e537d878 meant to, but failed to, remove PcdCacheEnable.
Address this, and get rid of this obsolete flag.
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
---
EmbeddedPkg/EmbeddedPkg.dec | 1 -
1 file changed, 1 deletion(-)
diff --git a/EmbeddedPkg/EmbeddedPkg.dec b/EmbeddedPkg/EmbeddedPkg.dec
index 7cb04d61b1..e48ce2e95b 100644
--- a/EmbeddedPkg/EmbeddedPkg.dec
+++ b/EmbeddedPkg/EmbeddedPkg.dec
@@ -86,7 +86,6 @@ [Ppis]
[PcdsFeatureFlag.common]
gEmbeddedTokenSpaceGuid.PcdPrePiProduceMemoryTypeInformationHob|FALSE|BOOLEAN|0x0000001b
- gEmbeddedTokenSpaceGuid.PcdCacheEnable|FALSE|BOOLEAN|0x00000042
gEmbeddedTokenSpaceGuid.PcdGdbSerial|FALSE|BOOLEAN|0x00000053
gEmbeddedTokenSpaceGuid.PcdSataSiI3132FeaturePMPSupport|FALSE|BOOLEAN|0x00000050
--
2.11.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] BeagleBoardPkg: drop unused PcdCacheEnabled dependency
2018-02-08 19:19 [PATCH 1/2] BeagleBoardPkg: drop unused PcdCacheEnabled dependency Leif Lindholm
2018-02-08 19:19 ` [PATCH 2/2] EmbeddedPkg: _really_ delete PcdCacheEnable from .dec Leif Lindholm
@ 2018-02-08 19:22 ` Ard Biesheuvel
2018-02-09 9:41 ` Leif Lindholm
1 sibling, 1 reply; 4+ messages in thread
From: Ard Biesheuvel @ 2018-02-08 19:22 UTC (permalink / raw)
To: Leif Lindholm; +Cc: edk2-devel@lists.01.org
On 8 February 2018 at 19:19, Leif Lindholm <leif.lindholm@linaro.org> wrote:
> Commit f72df138 got rid of the use of PcdCacheEnabled, but failed to
> actually drop it as a dependency for BeagleBoardLib.
>
> Get rid of it, so the module will still build when the Pcd is _really_
> removed.
>
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
For the series:
Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
> ---
> BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoardLib.inf | 3 ---
> 1 file changed, 3 deletions(-)
>
> diff --git a/BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoardLib.inf b/BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoardLib.inf
> index e004d6f10b..3b62f3cbf7 100644
> --- a/BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoardLib.inf
> +++ b/BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoardLib.inf
> @@ -44,9 +44,6 @@ [Sources.common]
> BeagleBoardHelper.S | GCC
> BeagleBoardHelper.asm | RVCT
>
> -[FeaturePcd]
> - gEmbeddedTokenSpaceGuid.PcdCacheEnable
> -
> [FixedPcd]
> gArmTokenSpaceGuid.PcdFdBaseAddress
> gArmTokenSpaceGuid.PcdFdSize
> --
> 2.11.0
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] BeagleBoardPkg: drop unused PcdCacheEnabled dependency
2018-02-08 19:22 ` [PATCH 1/2] BeagleBoardPkg: drop unused PcdCacheEnabled dependency Ard Biesheuvel
@ 2018-02-09 9:41 ` Leif Lindholm
0 siblings, 0 replies; 4+ messages in thread
From: Leif Lindholm @ 2018-02-09 9:41 UTC (permalink / raw)
To: Ard Biesheuvel; +Cc: edk2-devel@lists.01.org
On Thu, Feb 08, 2018 at 07:22:33PM +0000, Ard Biesheuvel wrote:
> On 8 February 2018 at 19:19, Leif Lindholm <leif.lindholm@linaro.org> wrote:
> > Commit f72df138 got rid of the use of PcdCacheEnabled, but failed to
> > actually drop it as a dependency for BeagleBoardLib.
> >
> > Get rid of it, so the module will still build when the Pcd is _really_
> > removed.
> >
> > Contributed-under: TianoCore Contribution Agreement 1.1
> > Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
>
> For the series:
> Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Thanks!
Pushed as ce2818e418..6791175f05.
> > ---
> > BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoardLib.inf | 3 ---
> > 1 file changed, 3 deletions(-)
> >
> > diff --git a/BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoardLib.inf b/BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoardLib.inf
> > index e004d6f10b..3b62f3cbf7 100644
> > --- a/BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoardLib.inf
> > +++ b/BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoardLib.inf
> > @@ -44,9 +44,6 @@ [Sources.common]
> > BeagleBoardHelper.S | GCC
> > BeagleBoardHelper.asm | RVCT
> >
> > -[FeaturePcd]
> > - gEmbeddedTokenSpaceGuid.PcdCacheEnable
> > -
> > [FixedPcd]
> > gArmTokenSpaceGuid.PcdFdBaseAddress
> > gArmTokenSpaceGuid.PcdFdSize
> > --
> > 2.11.0
> >
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-02-09 9:36 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-08 19:19 [PATCH 1/2] BeagleBoardPkg: drop unused PcdCacheEnabled dependency Leif Lindholm
2018-02-08 19:19 ` [PATCH 2/2] EmbeddedPkg: _really_ delete PcdCacheEnable from .dec Leif Lindholm
2018-02-08 19:22 ` [PATCH 1/2] BeagleBoardPkg: drop unused PcdCacheEnabled dependency Ard Biesheuvel
2018-02-09 9:41 ` Leif Lindholm
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox