public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of CapsuleImageSize on EFI_CAPSULE_HEADER
       [not found] <cover.1703232567.git.suqiangx.ren@intel.com>
@ 2023-12-22  8:11 ` Ren, Suqiang
  2023-12-23  2:01   ` 回复: " gaoliming via groups.io
       [not found]   ` <BN8PR11MB371356E2B4FF57218346308C9799A@BN8PR11MB3713.namprd11.prod.outlook.com>
  0 siblings, 2 replies; 7+ messages in thread
From: Ren, Suqiang @ 2023-12-22  8:11 UTC (permalink / raw)
  To: devel; +Cc: Michael D Kinney, Liming Gao, Zhiguang Liu, Yi Li

Add the description of CapsuleImageSize to align with UEFI spec 2.10.

REF: UEFI spec 2.10 Table 8.5.3.1

Signed-off-by: RenSuqiang <suqiangx.ren@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Zhiguang Liu <zhiguang.liu@intel.com>
Cc: Yi Li <yi1.li@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 5de00e8ea2af..ad80afbe3499 100644
--- a/MdePkg/Include/Uefi/UefiSpec.h
+++ b/MdePkg/Include/Uefi/UefiSpec.h
@@ -1663,7 +1663,7 @@ typedef struct {
   ///
   UINT32      Flags;
   ///
-  /// Size in bytes of the capsule.
+  /// Size in bytes of the capsule (including capsule header).
   ///
   UINT32      CapsuleImageSize;
 } EFI_CAPSULE_HEADER;
-- 
2.26.2.windows.1



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#112839): https://edk2.groups.io/g/devel/message/112839
Mute This Topic: https://groups.io/mt/103315328/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] 7+ messages in thread

* 回复: [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of CapsuleImageSize on EFI_CAPSULE_HEADER
  2023-12-22  8:11 ` [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of CapsuleImageSize on EFI_CAPSULE_HEADER Ren, Suqiang
@ 2023-12-23  2:01   ` gaoliming via groups.io
  2024-01-02  2:30     ` Ren, Suqiang
       [not found]   ` <BN8PR11MB371356E2B4FF57218346308C9799A@BN8PR11MB3713.namprd11.prod.outlook.com>
  1 sibling, 1 reply; 7+ messages in thread
From: gaoliming via groups.io @ 2023-12-23  2:01 UTC (permalink / raw)
  To: devel, suqiangx.ren
  Cc: 'Michael D Kinney', 'Zhiguang Liu',
	'Yi Li'

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

> -----邮件原件-----
> 发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 Ren, Suqiang
> 发送时间: 2023年12月22日 16:11
> 收件人: devel@edk2.groups.io
> 抄送: Michael D Kinney <michael.d.kinney@intel.com>; Liming Gao
> <gaoliming@byosoft.com.cn>; Zhiguang Liu <zhiguang.liu@intel.com>; Yi Li
> <yi1.li@intel.com>
> 主题: [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of
> CapsuleImageSize on EFI_CAPSULE_HEADER
> 
> Add the description of CapsuleImageSize to align with UEFI spec 2.10.
> 
> REF: UEFI spec 2.10 Table 8.5.3.1
> 
> Signed-off-by: RenSuqiang <suqiangx.ren@intel.com>
> Cc: Michael D Kinney <michael.d.kinney@intel.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> Cc: Zhiguang Liu <zhiguang.liu@intel.com>
> Cc: Yi Li <yi1.li@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 5de00e8ea2af..ad80afbe3499 100644
> --- a/MdePkg/Include/Uefi/UefiSpec.h
> +++ b/MdePkg/Include/Uefi/UefiSpec.h
> @@ -1663,7 +1663,7 @@ typedef struct {
>    ///
>    UINT32      Flags;
>    ///
> -  /// Size in bytes of the capsule.
> +  /// Size in bytes of the capsule (including capsule header).
>    ///
>    UINT32      CapsuleImageSize;
>  } EFI_CAPSULE_HEADER;
> --
> 2.26.2.windows.1
> 
> 
> 
> 
> 





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



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

* Re: [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of CapsuleImageSize on EFI_CAPSULE_HEADER
       [not found]     ` <BN0PR10MB49813707FC133BE26B5350B2DE9FA@BN0PR10MB4981.namprd10.prod.outlook.com>
@ 2023-12-29 21:27       ` Felix Polyudov via groups.io
  0 siblings, 0 replies; 7+ messages in thread
From: Felix Polyudov via groups.io @ 2023-12-29 21:27 UTC (permalink / raw)
  To: devel@edk2.groups.io

Reviewed by: Felix Polyudov <felixp@ami.com>

-----Original Message-----
From: Tan, Ming <ming.tan@intel.com>
Sent: Monday, December 25, 2023 3:25 AM
To: Felix Polyudov <Felixp@ami.com>
Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Gao, Liming <gaoliming@byosoft.com.cn>; Liu, Zhiguang <zhiguang.liu@intel.com>; Li, Yi1 <yi1.li@intel.com>; Ren, SuqiangX <suqiangx.ren@intel.com>
Subject: [EXTERNAL] RE: [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of CapsuleImageSize on EFI_CAPSULE_HEADER


**CAUTION: The e-mail below is from an external source. Please exercise caution before opening attachments, clicking links, or following guidance.**

Hi:
  Would you like to review this patch?
  It is for your request: https://mantis.uefi.org/mantis/view.php?id=1902

  Thank you.
  Tan Ming.


-----Original Message-----
From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Ren, Suqiang
Sent: Friday, December 22, 2023 4:11 PM
To: devel@edk2.groups.io
Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Gao, Liming <gaoliming@byosoft.com.cn>; Liu, Zhiguang <zhiguang.liu@intel.com>; Li, Yi1 <yi1.li@intel.com>
Subject: [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of CapsuleImageSize on EFI_CAPSULE_HEADER

Add the description of CapsuleImageSize to align with UEFI spec 2.10.

REF: UEFI spec 2.10 Table 8.5.3.1

Signed-off-by: RenSuqiang <suqiangx.ren@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Zhiguang Liu <zhiguang.liu@intel.com>
Cc: Yi Li <yi1.li@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 5de00e8ea2af..ad80afbe3499 100644
--- a/MdePkg/Include/Uefi/UefiSpec.h
+++ b/MdePkg/Include/Uefi/UefiSpec.h
@@ -1663,7 +1663,7 @@ typedef struct {
   ///
   UINT32      Flags;
   ///
-  /// Size in bytes of the capsule.
+  /// Size in bytes of the capsule (including capsule header).
   ///
   UINT32      CapsuleImageSize;
 } EFI_CAPSULE_HEADER;
--
2.26.2.windows.1






-The information contained in this message may be confidential and proprietary to American Megatrends (AMI). This communication is intended to be read only by the individual or entity to whom it is addressed or by their designee. If the reader of this message is not the intended recipient, you are on notice that any distribution of this message, in any form, is strictly prohibited. Please promptly notify the sender by reply e-mail or by telephone at 770-246-8600, and then delete or destroy all copies of the transmission.


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



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

* Re: [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of CapsuleImageSize on EFI_CAPSULE_HEADER
  2023-12-23  2:01   ` 回复: " gaoliming via groups.io
@ 2024-01-02  2:30     ` Ren, Suqiang
  2024-01-03  0:49       ` 回复: " gaoliming via groups.io
  0 siblings, 1 reply; 7+ messages in thread
From: Ren, Suqiang @ 2024-01-02  2:30 UTC (permalink / raw)
  To: Gao, Liming, devel@edk2.groups.io
  Cc: Kinney, Michael D, Liu, Zhiguang, Li, Yi1

Hi Liming,

	This patch has also reviewed by Felix Polyudov: https://edk2.groups.io/g/devel/message/113003

	Could you help to merge this patch?

Thanks
Ren, Suqiang

-----Original Message-----
From: gaoliming <gaoliming@byosoft.com.cn> 
Sent: Saturday, December 23, 2023 10:01 AM
To: devel@edk2.groups.io; Ren, SuqiangX <suqiangx.ren@intel.com>
Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Liu, Zhiguang <zhiguang.liu@intel.com>; Li, Yi1 <yi1.li@intel.com>
Subject: 回复: [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of CapsuleImageSize on EFI_CAPSULE_HEADER

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

> -----邮件原件-----
> 发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 Ren, Suqiang
> 发送时间: 2023年12月22日 16:11
> 收件人: devel@edk2.groups.io
> 抄送: Michael D Kinney <michael.d.kinney@intel.com>; Liming Gao 
> <gaoliming@byosoft.com.cn>; Zhiguang Liu <zhiguang.liu@intel.com>; Yi 
> Li <yi1.li@intel.com>
> 主题: [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of 
> CapsuleImageSize on EFI_CAPSULE_HEADER
> 
> Add the description of CapsuleImageSize to align with UEFI spec 2.10.
> 
> REF: UEFI spec 2.10 Table 8.5.3.1
> 
> Signed-off-by: RenSuqiang <suqiangx.ren@intel.com>
> Cc: Michael D Kinney <michael.d.kinney@intel.com>
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> Cc: Zhiguang Liu <zhiguang.liu@intel.com>
> Cc: Yi Li <yi1.li@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 5de00e8ea2af..ad80afbe3499 
> 100644
> --- a/MdePkg/Include/Uefi/UefiSpec.h
> +++ b/MdePkg/Include/Uefi/UefiSpec.h
> @@ -1663,7 +1663,7 @@ typedef struct {
>    ///
>    UINT32      Flags;
>    ///
> -  /// Size in bytes of the capsule.
> +  /// Size in bytes of the capsule (including capsule header).
>    ///
>    UINT32      CapsuleImageSize;
>  } EFI_CAPSULE_HEADER;
> --
> 2.26.2.windows.1
> 
> 
> 
> 
> 





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



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

* 回复: [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of CapsuleImageSize on EFI_CAPSULE_HEADER
  2024-01-02  2:30     ` Ren, Suqiang
@ 2024-01-03  0:49       ` gaoliming via groups.io
  2024-01-03 12:35         ` Ren, Suqiang
  0 siblings, 1 reply; 7+ messages in thread
From: gaoliming via groups.io @ 2024-01-03  0:49 UTC (permalink / raw)
  To: 'Ren, SuqiangX', devel
  Cc: 'Kinney, Michael D', 'Liu, Zhiguang',
	'Li, Yi1'

Sure. Can you help create Pull Request to make sure it can pass CI first?

Thanks
Liming
> -----邮件原件-----
> 发件人: Ren, SuqiangX <suqiangx.ren@intel.com>
> 发送时间: 2024年1月2日 10:30
> 收件人: Gao, Liming <gaoliming@byosoft.com.cn>; devel@edk2.groups.io
> 抄送: Kinney, Michael D <michael.d.kinney@intel.com>; Liu, Zhiguang
> <zhiguang.liu@intel.com>; Li, Yi1 <yi1.li@intel.com>
> 主题: RE: [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of
> CapsuleImageSize on EFI_CAPSULE_HEADER
> 
> Hi Liming,
> 
> 	This patch has also reviewed by Felix Polyudov:
> https://edk2.groups.io/g/devel/message/113003
> 
> 	Could you help to merge this patch?
> 
> Thanks
> Ren, Suqiang
> 
> -----Original Message-----
> From: gaoliming <gaoliming@byosoft.com.cn>
> Sent: Saturday, December 23, 2023 10:01 AM
> To: devel@edk2.groups.io; Ren, SuqiangX <suqiangx.ren@intel.com>
> Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Liu, Zhiguang
> <zhiguang.liu@intel.com>; Li, Yi1 <yi1.li@intel.com>
> Subject: 回复: [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of
> CapsuleImageSize on EFI_CAPSULE_HEADER
> 
> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
> 
> > -----邮件原件-----
> > 发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 Ren,
> Suqiang
> > 发送时间: 2023年12月22日 16:11
> > 收件人: devel@edk2.groups.io
> > 抄送: Michael D Kinney <michael.d.kinney@intel.com>; Liming Gao
> > <gaoliming@byosoft.com.cn>; Zhiguang Liu <zhiguang.liu@intel.com>; Yi
> > Li <yi1.li@intel.com>
> > 主题: [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of
> > CapsuleImageSize on EFI_CAPSULE_HEADER
> >
> > Add the description of CapsuleImageSize to align with UEFI spec 2.10.
> >
> > REF: UEFI spec 2.10 Table 8.5.3.1
> >
> > Signed-off-by: RenSuqiang <suqiangx.ren@intel.com>
> > Cc: Michael D Kinney <michael.d.kinney@intel.com>
> > Cc: Liming Gao <gaoliming@byosoft.com.cn>
> > Cc: Zhiguang Liu <zhiguang.liu@intel.com>
> > Cc: Yi Li <yi1.li@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 5de00e8ea2af..ad80afbe3499
> > 100644
> > --- a/MdePkg/Include/Uefi/UefiSpec.h
> > +++ b/MdePkg/Include/Uefi/UefiSpec.h
> > @@ -1663,7 +1663,7 @@ typedef struct {
> >    ///
> >    UINT32      Flags;
> >    ///
> > -  /// Size in bytes of the capsule.
> > +  /// Size in bytes of the capsule (including capsule header).
> >    ///
> >    UINT32      CapsuleImageSize;
> >  } EFI_CAPSULE_HEADER;
> > --
> > 2.26.2.windows.1
> >
> >
> >
> > 
> >
> 
> 





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



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

* Re: [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of CapsuleImageSize on EFI_CAPSULE_HEADER
  2024-01-03  0:49       ` 回复: " gaoliming via groups.io
@ 2024-01-03 12:35         ` Ren, Suqiang
  2024-01-08  1:24           ` 回复: " gaoliming via groups.io
  0 siblings, 1 reply; 7+ messages in thread
From: Ren, Suqiang @ 2024-01-03 12:35 UTC (permalink / raw)
  To: Gao, Liming, devel@edk2.groups.io
  Cc: Kinney, Michael D, Liu, Zhiguang, Li, Yi1

Hi Liming,

	Thanks for reminding me. Here are the PR for test CI: https://github.com/tianocore/edk2/pull/5189.

	Could you help to merge this patch?

Thanks
Ren, Suqiang

-----Original Message-----
From: gaoliming <gaoliming@byosoft.com.cn> 
Sent: Wednesday, January 3, 2024 8:50 AM
To: Ren, SuqiangX <suqiangx.ren@intel.com>; devel@edk2.groups.io
Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Liu, Zhiguang <zhiguang.liu@intel.com>; Li, Yi1 <yi1.li@intel.com>
Subject: 回复: [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of CapsuleImageSize on EFI_CAPSULE_HEADER

Sure. Can you help create Pull Request to make sure it can pass CI first?

Thanks
Liming
> -----邮件原件-----
> 发件人: Ren, SuqiangX <suqiangx.ren@intel.com>
> 发送时间: 2024年1月2日 10:30
> 收件人: Gao, Liming <gaoliming@byosoft.com.cn>; devel@edk2.groups.io
> 抄送: Kinney, Michael D <michael.d.kinney@intel.com>; Liu, Zhiguang 
> <zhiguang.liu@intel.com>; Li, Yi1 <yi1.li@intel.com>
> 主题: RE: [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of 
> CapsuleImageSize on EFI_CAPSULE_HEADER
> 
> Hi Liming,
> 
> 	This patch has also reviewed by Felix Polyudov:
> https://edk2.groups.io/g/devel/message/113003
> 
> 	Could you help to merge this patch?
> 
> Thanks
> Ren, Suqiang
> 
> -----Original Message-----
> From: gaoliming <gaoliming@byosoft.com.cn>
> Sent: Saturday, December 23, 2023 10:01 AM
> To: devel@edk2.groups.io; Ren, SuqiangX <suqiangx.ren@intel.com>
> Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Liu, Zhiguang 
> <zhiguang.liu@intel.com>; Li, Yi1 <yi1.li@intel.com>
> Subject: 回复: [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of 
> CapsuleImageSize on EFI_CAPSULE_HEADER
> 
> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
> 
> > -----邮件原件-----
> > 发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 Ren,
> Suqiang
> > 发送时间: 2023年12月22日 16:11
> > 收件人: devel@edk2.groups.io
> > 抄送: Michael D Kinney <michael.d.kinney@intel.com>; Liming Gao 
> > <gaoliming@byosoft.com.cn>; Zhiguang Liu <zhiguang.liu@intel.com>; 
> > Yi Li <yi1.li@intel.com>
> > 主题: [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of 
> > CapsuleImageSize on EFI_CAPSULE_HEADER
> >
> > Add the description of CapsuleImageSize to align with UEFI spec 2.10.
> >
> > REF: UEFI spec 2.10 Table 8.5.3.1
> >
> > Signed-off-by: RenSuqiang <suqiangx.ren@intel.com>
> > Cc: Michael D Kinney <michael.d.kinney@intel.com>
> > Cc: Liming Gao <gaoliming@byosoft.com.cn>
> > Cc: Zhiguang Liu <zhiguang.liu@intel.com>
> > Cc: Yi Li <yi1.li@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 5de00e8ea2af..ad80afbe3499
> > 100644
> > --- a/MdePkg/Include/Uefi/UefiSpec.h
> > +++ b/MdePkg/Include/Uefi/UefiSpec.h
> > @@ -1663,7 +1663,7 @@ typedef struct {
> >    ///
> >    UINT32      Flags;
> >    ///
> > -  /// Size in bytes of the capsule.
> > +  /// Size in bytes of the capsule (including capsule header).
> >    ///
> >    UINT32      CapsuleImageSize;
> >  } EFI_CAPSULE_HEADER;
> > --
> > 2.26.2.windows.1
> >
> >
> >
> > 
> >
> 
> 





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



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

* 回复: [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of CapsuleImageSize on EFI_CAPSULE_HEADER
  2024-01-03 12:35         ` Ren, Suqiang
@ 2024-01-08  1:24           ` gaoliming via groups.io
  0 siblings, 0 replies; 7+ messages in thread
From: gaoliming via groups.io @ 2024-01-08  1:24 UTC (permalink / raw)
  To: devel, suqiangx.ren
  Cc: 'Kinney, Michael D', 'Liu, Zhiguang',
	'Li, Yi1'

I just add push label for this PR. 

Thanks
Liming
> -----邮件原件-----
> 发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 Ren, Suqiang
> 发送时间: 2024年1月3日 20:35
> 收件人: Gao, Liming <gaoliming@byosoft.com.cn>; devel@edk2.groups.io
> 抄送: Kinney, Michael D <michael.d.kinney@intel.com>; Liu, Zhiguang
> <zhiguang.liu@intel.com>; Li, Yi1 <yi1.li@intel.com>
> 主题: Re: [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of
> CapsuleImageSize on EFI_CAPSULE_HEADER
> 
> Hi Liming,
> 
> 	Thanks for reminding me. Here are the PR for test CI:
> https://github.com/tianocore/edk2/pull/5189.
> 
> 	Could you help to merge this patch?
> 
> Thanks
> Ren, Suqiang
> 
> -----Original Message-----
> From: gaoliming <gaoliming@byosoft.com.cn>
> Sent: Wednesday, January 3, 2024 8:50 AM
> To: Ren, SuqiangX <suqiangx.ren@intel.com>; devel@edk2.groups.io
> Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Liu, Zhiguang
> <zhiguang.liu@intel.com>; Li, Yi1 <yi1.li@intel.com>
> Subject: 回复: [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of
> CapsuleImageSize on EFI_CAPSULE_HEADER
> 
> Sure. Can you help create Pull Request to make sure it can pass CI first?
> 
> Thanks
> Liming
> > -----邮件原件-----
> > 发件人: Ren, SuqiangX <suqiangx.ren@intel.com>
> > 发送时间: 2024年1月2日 10:30
> > 收件人: Gao, Liming <gaoliming@byosoft.com.cn>; devel@edk2.groups.io
> > 抄送: Kinney, Michael D <michael.d.kinney@intel.com>; Liu, Zhiguang
> > <zhiguang.liu@intel.com>; Li, Yi1 <yi1.li@intel.com>
> > 主题: RE: [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of
> > CapsuleImageSize on EFI_CAPSULE_HEADER
> >
> > Hi Liming,
> >
> > 	This patch has also reviewed by Felix Polyudov:
> > https://edk2.groups.io/g/devel/message/113003
> >
> > 	Could you help to merge this patch?
> >
> > Thanks
> > Ren, Suqiang
> >
> > -----Original Message-----
> > From: gaoliming <gaoliming@byosoft.com.cn>
> > Sent: Saturday, December 23, 2023 10:01 AM
> > To: devel@edk2.groups.io; Ren, SuqiangX <suqiangx.ren@intel.com>
> > Cc: Kinney, Michael D <michael.d.kinney@intel.com>; Liu, Zhiguang
> > <zhiguang.liu@intel.com>; Li, Yi1 <yi1.li@intel.com>
> > Subject: 回复: [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of
> > CapsuleImageSize on EFI_CAPSULE_HEADER
> >
> > Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
> >
> > > -----邮件原件-----
> > > 发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 Ren,
> > Suqiang
> > > 发送时间: 2023年12月22日 16:11
> > > 收件人: devel@edk2.groups.io
> > > 抄送: Michael D Kinney <michael.d.kinney@intel.com>; Liming Gao
> > > <gaoliming@byosoft.com.cn>; Zhiguang Liu <zhiguang.liu@intel.com>;
> > > Yi Li <yi1.li@intel.com>
> > > 主题: [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of
> > > CapsuleImageSize on EFI_CAPSULE_HEADER
> > >
> > > Add the description of CapsuleImageSize to align with UEFI spec 2.10.
> > >
> > > REF: UEFI spec 2.10 Table 8.5.3.1
> > >
> > > Signed-off-by: RenSuqiang <suqiangx.ren@intel.com>
> > > Cc: Michael D Kinney <michael.d.kinney@intel.com>
> > > Cc: Liming Gao <gaoliming@byosoft.com.cn>
> > > Cc: Zhiguang Liu <zhiguang.liu@intel.com>
> > > Cc: Yi Li <yi1.li@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 5de00e8ea2af..ad80afbe3499
> > > 100644
> > > --- a/MdePkg/Include/Uefi/UefiSpec.h
> > > +++ b/MdePkg/Include/Uefi/UefiSpec.h
> > > @@ -1663,7 +1663,7 @@ typedef struct {
> > >    ///
> > >    UINT32      Flags;
> > >    ///
> > > -  /// Size in bytes of the capsule.
> > > +  /// Size in bytes of the capsule (including capsule header).
> > >    ///
> > >    UINT32      CapsuleImageSize;
> > >  } EFI_CAPSULE_HEADER;
> > > --
> > > 2.26.2.windows.1
> > >
> > >
> > >
> > >
> > >
> >
> >
> 
> 
> 
> 
> 
> 
> 





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



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

end of thread, other threads:[~2024-01-08  1:25 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <cover.1703232567.git.suqiangx.ren@intel.com>
2023-12-22  8:11 ` [edk2-devel] [PATCH 1/1] MdePkg: Update the definition of CapsuleImageSize on EFI_CAPSULE_HEADER Ren, Suqiang
2023-12-23  2:01   ` 回复: " gaoliming via groups.io
2024-01-02  2:30     ` Ren, Suqiang
2024-01-03  0:49       ` 回复: " gaoliming via groups.io
2024-01-03 12:35         ` Ren, Suqiang
2024-01-08  1:24           ` 回复: " gaoliming via groups.io
     [not found]   ` <BN8PR11MB371356E2B4FF57218346308C9799A@BN8PR11MB3713.namprd11.prod.outlook.com>
     [not found]     ` <BN0PR10MB49813707FC133BE26B5350B2DE9FA@BN0PR10MB4981.namprd10.prod.outlook.com>
2023-12-29 21:27       ` Felix Polyudov via groups.io

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