public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH v2 0/1] Fix GUID in PrePiHobLib
@ 2021-03-16 19:53 Matthew Carlson
  2021-03-16 19:53 ` [PATCH v2 1/1] EmbeddedPkg: fix guid for PrePiHobLib Matthew Carlson
  0 siblings, 1 reply; 3+ messages in thread
From: Matthew Carlson @ 2021-03-16 19:53 UTC (permalink / raw)
  To: devel; +Cc: Matthew Carlson, Leif Lindholm, Ard Biesheuvel

Currently there is a duplicate GUID shared by two INFs.
This rolls the INF for the PrePiHobLib.
Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=2381

Cc: Leif Lindholm <leif@nuviainc.com>
Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: devel@edk2.groups.io

Matthew Carlson (1):
  EmbeddedPkg: fix guid for PrePiHobLib

 EmbeddedPkg/Library/PrePiHobLib/PrePiHobLib.inf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.30.1.windows.1


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

* [PATCH v2 1/1] EmbeddedPkg: fix guid for PrePiHobLib
  2021-03-16 19:53 [PATCH v2 0/1] Fix GUID in PrePiHobLib Matthew Carlson
@ 2021-03-16 19:53 ` Matthew Carlson
  2021-03-16 20:38   ` Ard Biesheuvel
  0 siblings, 1 reply; 3+ messages in thread
From: Matthew Carlson @ 2021-03-16 19:53 UTC (permalink / raw)
  To: devel; +Cc: Matthew Carlson, Leif Lindholm, Ard Biesheuvel

Currently there is a duplicate GUID shared by two INFs.
This rolls the INF for the PrePiHobLib.
Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=2381

Cc: Leif Lindholm <leif@nuviainc.com>
Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>
Cc: devel@edk2.groups.io

Signed-off-by: Matthew Carlson <matthewfcarlson@gmail.com>
---
 EmbeddedPkg/Library/PrePiHobLib/PrePiHobLib.inf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/EmbeddedPkg/Library/PrePiHobLib/PrePiHobLib.inf b/EmbeddedPkg/Library/PrePiHobLib/PrePiHobLib.inf
index b2c4c04bfd76..55de4511fc98 100644
--- a/EmbeddedPkg/Library/PrePiHobLib/PrePiHobLib.inf
+++ b/EmbeddedPkg/Library/PrePiHobLib/PrePiHobLib.inf
@@ -12,7 +12,7 @@
 [Defines]
   INF_VERSION                    = 0x00010005
   BASE_NAME                      = PrePiHobLib
-  FILE_GUID                      = 1F3A3278-82EB-4C0D-86F1-5BCDA5846CB2
+  FILE_GUID                      = AEF7D85A-6A91-4ACD-9A28-193DEFB325FB
   MODULE_TYPE                    = BASE
   VERSION_STRING                 = 1.0
   LIBRARY_CLASS                  = HobLib
-- 
2.30.1.windows.1


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

* Re: [PATCH v2 1/1] EmbeddedPkg: fix guid for PrePiHobLib
  2021-03-16 19:53 ` [PATCH v2 1/1] EmbeddedPkg: fix guid for PrePiHobLib Matthew Carlson
@ 2021-03-16 20:38   ` Ard Biesheuvel
  0 siblings, 0 replies; 3+ messages in thread
From: Ard Biesheuvel @ 2021-03-16 20:38 UTC (permalink / raw)
  To: Matthew Carlson; +Cc: devel, Leif Lindholm, Ard Biesheuvel

On Tue, 16 Mar 2021 at 20:53, Matthew Carlson <matthewfcarlson@gmail.com> wrote:
>
> Currently there is a duplicate GUID shared by two INFs.
> This rolls the INF for the PrePiHobLib.
> Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=2381
>
> Cc: Leif Lindholm <leif@nuviainc.com>
> Cc: Ard Biesheuvel <ardb+tianocore@kernel.org>
> Cc: devel@edk2.groups.io
>
> Signed-off-by: Matthew Carlson <matthewfcarlson@gmail.com>

Reviewed-by: Ard Biesheuvel <ardb@kernel.org>

Thanks for the patch

PR submitted, this should appear on master shortly.


> ---
>  EmbeddedPkg/Library/PrePiHobLib/PrePiHobLib.inf | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/EmbeddedPkg/Library/PrePiHobLib/PrePiHobLib.inf b/EmbeddedPkg/Library/PrePiHobLib/PrePiHobLib.inf
> index b2c4c04bfd76..55de4511fc98 100644
> --- a/EmbeddedPkg/Library/PrePiHobLib/PrePiHobLib.inf
> +++ b/EmbeddedPkg/Library/PrePiHobLib/PrePiHobLib.inf
> @@ -12,7 +12,7 @@
>  [Defines]
>    INF_VERSION                    = 0x00010005
>    BASE_NAME                      = PrePiHobLib
> -  FILE_GUID                      = 1F3A3278-82EB-4C0D-86F1-5BCDA5846CB2
> +  FILE_GUID                      = AEF7D85A-6A91-4ACD-9A28-193DEFB325FB
>    MODULE_TYPE                    = BASE
>    VERSION_STRING                 = 1.0
>    LIBRARY_CLASS                  = HobLib
> --
> 2.30.1.windows.1
>

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

end of thread, other threads:[~2021-03-16 20:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-16 19:53 [PATCH v2 0/1] Fix GUID in PrePiHobLib Matthew Carlson
2021-03-16 19:53 ` [PATCH v2 1/1] EmbeddedPkg: fix guid for PrePiHobLib Matthew Carlson
2021-03-16 20:38   ` Ard Biesheuvel

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