public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [edk2-devel] [PATCH] MdePkg: Define the DevicePath argument from LoadImage as optional
@ 2023-12-07  8:47 ManickamX Srinivasan
  0 siblings, 0 replies; 3+ messages in thread
From: ManickamX Srinivasan @ 2023-12-07  8:47 UTC (permalink / raw)
  To: devel
  Cc: ManickamX Srinivasan, Michael D Kinney, Liming Gao, Zhiguang Liu,
	T V Krishnamoorthy

Update the EFI LoadImage API in accordance with the UEFI 2.9
specification.

Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Zhiguang Liu <zhiguang.liu@intel.com>
Cc: T V Krishnamoorthy <krishnamoorthy.t.v@intel.com>
Signed-off-by: ManickamX Srinivasan <manickamx.srinivasan@intel.com>
---
 MdePkg/Include/Uefi/UefiSpec.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MdePkg/Include/Uefi/UefiSpec.h b/MdePkg/Include/Uefi/UefiSpec.h
index 7dfe35b499..08db17e674 100644
--- a/MdePkg/Include/Uefi/UefiSpec.h
+++ b/MdePkg/Include/Uefi/UefiSpec.h
@@ -898,7 +898,7 @@ EFI_STATUS
 (EFIAPI *EFI_IMAGE_LOAD)(
   IN  BOOLEAN                      BootPolicy,
   IN  EFI_HANDLE                   ParentImageHandle,
-  IN  EFI_DEVICE_PATH_PROTOCOL     *DevicePath,
+  IN  EFI_DEVICE_PATH_PROTOCOL     *DevicePath OPTIONAL,
   IN  VOID                         *SourceBuffer OPTIONAL,
   IN  UINTN                        SourceSize,
   OUT EFI_HANDLE                   *ImageHandle
-- 
2.30.2.windows.1



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#112170): https://edk2.groups.io/g/devel/message/112170
Mute This Topic: https://groups.io/mt/103030914/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



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

* [edk2-devel] [PATCH] MdePkg: Define the DevicePath argument from LoadImage as optional
@ 2023-12-08  7:28 ManickamX Srinivasan
  2023-12-12  0:26 ` 回复: " gaoliming via groups.io
  0 siblings, 1 reply; 3+ messages in thread
From: ManickamX Srinivasan @ 2023-12-08  7:28 UTC (permalink / raw)
  To: devel
  Cc: ManickamX Srinivasan, Zhiguang Liu, Michael D Kinney, Liming Gao,
	T V Krishnamoorthy

Define the DevicePath argument from LoadImage as optional as per
the UEFI 2.9A specification.

Reviewed-by: Zhiguang Liu <zhiguang.liu@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: T V Krishnamoorthy <krishnamoorthy.t.v@intel.com>
Signed-off-by: ManickamX Srinivasan <manickamx.srinivasan@intel.com>
---
 MdePkg/Include/Uefi/UefiSpec.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MdePkg/Include/Uefi/UefiSpec.h b/MdePkg/Include/Uefi/UefiSpec.h
index 7dfe35b499..e83e14d347 100644
--- a/MdePkg/Include/Uefi/UefiSpec.h
+++ b/MdePkg/Include/Uefi/UefiSpec.h
@@ -898,7 +898,7 @@ EFI_STATUS
 (EFIAPI *EFI_IMAGE_LOAD)(
   IN  BOOLEAN                      BootPolicy,
   IN  EFI_HANDLE                   ParentImageHandle,
-  IN  EFI_DEVICE_PATH_PROTOCOL     *DevicePath,
+  IN  EFI_DEVICE_PATH_PROTOCOL     *DevicePath   OPTIONAL,
   IN  VOID                         *SourceBuffer OPTIONAL,
   IN  UINTN                        SourceSize,
   OUT EFI_HANDLE                   *ImageHandle
-- 
2.30.2.windows.1



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#112213): https://edk2.groups.io/g/devel/message/112213
Mute This Topic: https://groups.io/mt/103030914/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



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

* 回复: [edk2-devel] [PATCH] MdePkg: Define the DevicePath argument from LoadImage as optional
  2023-12-08  7:28 [edk2-devel] [PATCH] MdePkg: Define the DevicePath argument from LoadImage as optional ManickamX Srinivasan
@ 2023-12-12  0:26 ` gaoliming via groups.io
  0 siblings, 0 replies; 3+ messages in thread
From: gaoliming via groups.io @ 2023-12-12  0:26 UTC (permalink / raw)
  To: devel, manickamx.srinivasan
  Cc: 'Zhiguang Liu', 'Michael D Kinney',
	'T V Krishnamoorthy'

Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>

> -----邮件原件-----
> 发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 ManickamX
> Srinivasan
> 发送时间: 2023年12月8日 15:29
> 收件人: devel@edk2.groups.io
> 抄送: ManickamX Srinivasan <manickamx.srinivasan@intel.com>; Zhiguang
> Liu <zhiguang.liu@intel.com>; Michael D Kinney
> <michael.d.kinney@intel.com>; Liming Gao <gaoliming@byosoft.com.cn>; T
> V Krishnamoorthy <krishnamoorthy.t.v@intel.com>
> 主题: [edk2-devel] [PATCH] MdePkg: Define the DevicePath argument from
> LoadImage as optional
> 
> Define the DevicePath argument from LoadImage as optional as per
> the UEFI 2.9A specification.
> 
> Reviewed-by: Zhiguang Liu <zhiguang.liu@intel.com>
> Cc: Michael D Kinney <michael.d.kinney@intel.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> Cc: T V Krishnamoorthy <krishnamoorthy.t.v@intel.com>
> Signed-off-by: ManickamX Srinivasan <manickamx.srinivasan@intel.com>
> ---
>  MdePkg/Include/Uefi/UefiSpec.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/MdePkg/Include/Uefi/UefiSpec.h
> b/MdePkg/Include/Uefi/UefiSpec.h
> index 7dfe35b499..e83e14d347 100644
> --- a/MdePkg/Include/Uefi/UefiSpec.h
> +++ b/MdePkg/Include/Uefi/UefiSpec.h
> @@ -898,7 +898,7 @@ EFI_STATUS
>  (EFIAPI *EFI_IMAGE_LOAD)(
>    IN  BOOLEAN                      BootPolicy,
>    IN  EFI_HANDLE                   ParentImageHandle,
> -  IN  EFI_DEVICE_PATH_PROTOCOL     *DevicePath,
> +  IN  EFI_DEVICE_PATH_PROTOCOL     *DevicePath   OPTIONAL,
>    IN  VOID                         *SourceBuffer OPTIONAL,
>    IN  UINTN                        SourceSize,
>    OUT EFI_HANDLE                   *ImageHandle
> --
> 2.30.2.windows.1
> 
> 
> 
> 
> 





-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#112343): https://edk2.groups.io/g/devel/message/112343
Mute This Topic: https://groups.io/mt/103121251/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



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

end of thread, other threads:[~2023-12-12  0:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-08  7:28 [edk2-devel] [PATCH] MdePkg: Define the DevicePath argument from LoadImage as optional ManickamX Srinivasan
2023-12-12  0:26 ` 回复: " gaoliming via groups.io
  -- strict thread matches above, loose matches on Subject: below --
2023-12-07  8:47 ManickamX Srinivasan

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