public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH edk2-platforms] Platform/Comcast/RDKQemu: incorporating ArmVirtQemu changes
@ 2018-06-04 14:04 Moorthy Baskaravenkatraman
  2018-06-04 14:04 ` Moorthy Baskaravenkatraman
  0 siblings, 1 reply; 3+ messages in thread
From: Moorthy Baskaravenkatraman @ 2018-06-04 14:04 UTC (permalink / raw)
  To: moorthy.baskaravenkatraman-sambamoorthy, edk2-devel
  Cc: peter.griffin, KalyanKumar.Nagabhirava

Incorporating ArmVirtQemu latest changes into RDK Qemu platform

Moorthy Baskaravenkatraman (1):
  Platform/Comcast/RDKQemu: EDK2 dependencies resolved for RDK Qemu platform
     - DevicePathLib library class added in DxeMain
     - NvVarStoreFormattedLib added in VariableRuntimeDxe
     - DevicePathLib and PcdLib library classes added in DevicePathExe

 Platform/Comcast/RDKQemu/RDKQemu.dsc | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

-- 
2.17.0



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

* [PATCH edk2-platforms] Platform/Comcast/RDKQemu: incorporating ArmVirtQemu changes
  2018-06-04 14:04 [PATCH edk2-platforms] Platform/Comcast/RDKQemu: incorporating ArmVirtQemu changes Moorthy Baskaravenkatraman
@ 2018-06-04 14:04 ` Moorthy Baskaravenkatraman
  2018-07-13  6:54   ` Ard Biesheuvel
  0 siblings, 1 reply; 3+ messages in thread
From: Moorthy Baskaravenkatraman @ 2018-06-04 14:04 UTC (permalink / raw)
  To: moorthy.baskaravenkatraman-sambamoorthy, edk2-devel
  Cc: peter.griffin, KalyanKumar.Nagabhirava

Incorporated ArmVirtQemu latest changes into RDK Qemu platform
     - DevicePathLib library class added in Dxe Core
     - NvVarStoreFormattedLib added in VariableRuntimeDxe
     - DevicePathLib and PcdLib library classes added in DevicePathExe

Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Moorthy Baskaravenkatraman <moorthy.baskaravenkatraman-sambamoorthy@linaro.org>
---
 Platform/Comcast/RDKQemu/RDKQemu.dsc | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/Platform/Comcast/RDKQemu/RDKQemu.dsc b/Platform/Comcast/RDKQemu/RDKQemu.dsc
index 45feeec8764b..1301c5555efe 100644
--- a/Platform/Comcast/RDKQemu/RDKQemu.dsc
+++ b/Platform/Comcast/RDKQemu/RDKQemu.dsc
@@ -251,6 +251,7 @@ [Components.common]
   MdeModulePkg/Core/Dxe/DxeMain.inf {
     <LibraryClasses>
       NULL|MdeModulePkg/Library/DxeCrc32GuidedSectionExtractLib/DxeCrc32GuidedSectionExtractLib.inf
+      DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
   }
   MdeModulePkg/Universal/PCD/Dxe/Pcd.inf {
     <LibraryClasses>
@@ -265,6 +266,7 @@ [Components.common]
   MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf {
     <LibraryClasses>
       NULL|MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf
+      NULL|EmbeddedPkg/Library/NvVarStoreFormattedLib/NvVarStoreFormattedLib.inf
       # don't use unaligned CopyMem () on the UEFI varstore NOR flash region
       BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
   }
@@ -326,7 +328,11 @@ [Components.common]
   #
   # Bds
   #
-  MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
+  MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf {
+    <LibraryClasses>
+      DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
+      PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
+  }
   MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf
   MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
   MdeModulePkg/Universal/DriverHealthManagerDxe/DriverHealthManagerDxe.inf
-- 
2.17.0



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

* Re: [PATCH edk2-platforms] Platform/Comcast/RDKQemu: incorporating ArmVirtQemu changes
  2018-06-04 14:04 ` Moorthy Baskaravenkatraman
@ 2018-07-13  6:54   ` Ard Biesheuvel
  0 siblings, 0 replies; 3+ messages in thread
From: Ard Biesheuvel @ 2018-07-13  6:54 UTC (permalink / raw)
  To: Moorthy Baskaravenkatraman
  Cc: edk2-devel@lists.01.org, Kalyan Kumar Nagabhirava

On 12 July 2018 at 07:54, Moorthy Baskaravenkatraman
<moorthy.baskaravenkatraman-sambamoorthy@linaro.org> wrote:
> Incorporated ArmVirtQemu latest changes into RDK Qemu platform
>      - DevicePathLib library class added in Dxe Core
>      - NvVarStoreFormattedLib added in VariableRuntimeDxe
>      - DevicePathLib and PcdLib library classes added in DevicePathExe
>
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Moorthy Baskaravenkatraman <moorthy.baskaravenkatraman-sambamoorthy@linaro.org>

Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>

Pushed as 80f6be6eb12b

Thanks.


> ---
>  Platform/Comcast/RDKQemu/RDKQemu.dsc | 8 +++++++-
>  1 file changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/Platform/Comcast/RDKQemu/RDKQemu.dsc b/Platform/Comcast/RDKQemu/RDKQemu.dsc
> index 45feeec8764b..1301c5555efe 100644
> --- a/Platform/Comcast/RDKQemu/RDKQemu.dsc
> +++ b/Platform/Comcast/RDKQemu/RDKQemu.dsc
> @@ -251,6 +251,7 @@ [Components.common]
>    MdeModulePkg/Core/Dxe/DxeMain.inf {
>      <LibraryClasses>
>        NULL|MdeModulePkg/Library/DxeCrc32GuidedSectionExtractLib/DxeCrc32GuidedSectionExtractLib.inf
> +      DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
>    }
>    MdeModulePkg/Universal/PCD/Dxe/Pcd.inf {
>      <LibraryClasses>
> @@ -265,6 +266,7 @@ [Components.common]
>    MdeModulePkg/Universal/Variable/RuntimeDxe/VariableRuntimeDxe.inf {
>      <LibraryClasses>
>        NULL|MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf
> +      NULL|EmbeddedPkg/Library/NvVarStoreFormattedLib/NvVarStoreFormattedLib.inf
>        # don't use unaligned CopyMem () on the UEFI varstore NOR flash region
>        BaseMemoryLib|MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf
>    }
> @@ -326,7 +328,11 @@ [Components.common]
>    #
>    # Bds
>    #
> -  MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf
> +  MdeModulePkg/Universal/DevicePathDxe/DevicePathDxe.inf {
> +    <LibraryClasses>
> +      DevicePathLib|MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf
> +      PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
> +  }
>    MdeModulePkg/Universal/DisplayEngineDxe/DisplayEngineDxe.inf
>    MdeModulePkg/Universal/SetupBrowserDxe/SetupBrowserDxe.inf
>    MdeModulePkg/Universal/DriverHealthManagerDxe/DriverHealthManagerDxe.inf
> --
> 2.17.0
>


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

end of thread, other threads:[~2018-07-13  6:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-04 14:04 [PATCH edk2-platforms] Platform/Comcast/RDKQemu: incorporating ArmVirtQemu changes Moorthy Baskaravenkatraman
2018-06-04 14:04 ` Moorthy Baskaravenkatraman
2018-07-13  6:54   ` Ard Biesheuvel

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