public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [Wiki V2] Add update notes for incomaptible patches that fix typos in SmBios.h
@ 2021-02-03  8:17 Zhiguang Liu
  2021-02-18  1:44 ` 回复: [edk2-devel] " gaoliming
  0 siblings, 1 reply; 2+ messages in thread
From: Zhiguang Liu @ 2021-02-03  8:17 UTC (permalink / raw)
  To: devel; +Cc: Liming Gao

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=^[[A^[[BUTF-8, Size: 1689 bytes --]

Cc: Liming Gao <gaoliming@byosoft.com.cn>
Signed-off-by: Zhiguang Liu <zhiguang.liu@intel.com>
---
 EDK-II-Release-Planning.md | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/EDK-II-Release-Planning.md b/EDK-II-Release-Planning.md
index 336d8d2..7d75bea 100644
--- a/EDK-II-Release-Planning.md
+++ b/EDK-II-Release-Planning.md
@@ -32,6 +32,16 @@
 * If the user has the windows bat script that calls Split in it,it needs to change to "call Split" because Split will be a bat script but not an executable file.
 * Shell depends on library class OrderedCollectionLib. Platform DSC needs to configure it in [LibraryClasses]
 OrderedCollectionLib|MdePkg/Library/BaseOrderedCollectionRedBlackTreeLib/BaseOrderedCollectionRedBlackTreeLib.inf
+* Some struct fields in SmBios.h have typos and get fixed in these code change [0db8](https://github.com/tianocore/edk2/commit/0db89a661f38b10012ff4f62e1853bfc48efd462), [bd9d](https://github.com/tianocore/edk2/commit/bd9da7b1da2639fcea8a156fa92a32bbc4209367), [e157](https://github.com/tianocore/edk2/commit/e157c8f9ed173a390d2c9d29069a46e9662e0d04). Details are listed below.
+In struct ```SMBIOS_TABLE_TYPE17```:
+&nbsp;```FirwareVersion ==> FirmwareVersion```
+In struct ```SMBIOS_TABLE_TYPE4```:
+&nbsp;```ProcessorManufacture ==> ProcessorManufacturer```
+In struct ```PROCESSOR_CHARACTERISTIC_FLAGS```:
+&nbsp;```Processor64BitCapble ==> Processor64BitCapable```
+&nbsp;```ProcessorEnhancedVirtulization ==> ProcessorEnhancedVirtualization```
+&nbsp;```Processor128bitCapble ==> Processor128BitCapable```
+Platform code that uses those fields need modifications.
 * TBD
 
 # edk2-stable202105 tag planning
-- 
2.30.0.windows.2


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

* 回复: [edk2-devel] [Wiki V2] Add update notes for incomaptible patches that fix typos in SmBios.h
  2021-02-03  8:17 [Wiki V2] Add update notes for incomaptible patches that fix typos in SmBios.h Zhiguang Liu
@ 2021-02-18  1:44 ` gaoliming
  0 siblings, 0 replies; 2+ messages in thread
From: gaoliming @ 2021-02-18  1:44 UTC (permalink / raw)
  To: devel, zhiguang.liu

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="gb2312", Size: 2328 bytes --]

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

The change has been merged into edk2 wiki. 

Thanks
Liming
> -----ÓʼþÔ­¼þ-----
> ·¢¼þÈË: bounce+27952+71098+4905953+8761045@groups.io
> <bounce+27952+71098+4905953+8761045@groups.io> ´ú±í Zhiguang Liu
> ·¢ËÍʱ¼ä: 2021Äê2ÔÂ3ÈÕ 16:18
> ÊÕ¼þÈË: devel@edk2.groups.io
> ³­ËÍ: Liming Gao <gaoliming@byosoft.com.cn>
> Ö÷Ìâ: [edk2-devel] [Wiki V2] Add update notes for incomaptible patches
that
> fix typos in SmBios.h
> 
> Cc: Liming Gao <gaoliming@byosoft.com.cn>
> Signed-off-by: Zhiguang Liu <zhiguang.liu@intel.com>
> ---
>  EDK-II-Release-Planning.md | 10 ++++++++++
>  1 file changed, 10 insertions(+)
> 
> diff --git a/EDK-II-Release-Planning.md b/EDK-II-Release-Planning.md
> index 336d8d2..7d75bea 100644
> --- a/EDK-II-Release-Planning.md
> +++ b/EDK-II-Release-Planning.md
> @@ -32,6 +32,16 @@
>  * If the user has the windows bat script that calls Split in it,it
needs to
> change to "call Split" because Split will be a bat script but not an
executable
> file.
>  * Shell depends on library class OrderedCollectionLib. Platform DSC needs
to
> configure it in [LibraryClasses]
> 
> OrderedCollectionLib|MdePkg/Library/BaseOrderedCollectionRedBlackTreeLi
> b/BaseOrderedCollectionRedBlackTreeLib.inf
> +* Some struct fields in SmBios.h have typos and get fixed in these code
> change
> [0db8](https://github.com/tianocore/edk2/commit/0db89a661f38b10012ff4f
> 62e1853bfc48efd462),
> [bd9d](https://github.com/tianocore/edk2/commit/bd9da7b1da2639fcea8a1
> 56fa92a32bbc4209367),
> [e157](https://github.com/tianocore/edk2/commit/e157c8f9ed173a390d2c9
> d29069a46e9662e0d04). Details are listed below.
> +In struct ```SMBIOS_TABLE_TYPE17```:
> +&nbsp;```FirwareVersion ==> FirmwareVersion```
> +In struct ```SMBIOS_TABLE_TYPE4```:
> +&nbsp;```ProcessorManufacture ==> ProcessorManufacturer```
> +In struct ```PROCESSOR_CHARACTERISTIC_FLAGS```:
> +&nbsp;```Processor64BitCapble ==> Processor64BitCapable```
> +&nbsp;```ProcessorEnhancedVirtulization ==>
> ProcessorEnhancedVirtualization```
> +&nbsp;```Processor128bitCapble ==> Processor128BitCapable```
> +Platform code that uses those fields need modifications.
>  * TBD
> 
>  # edk2-stable202105 tag planning
> --
> 2.30.0.windows.2
> 
> 
> 
> 
> 




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

end of thread, other threads:[~2021-02-18  1:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-02-03  8:17 [Wiki V2] Add update notes for incomaptible patches that fix typos in SmBios.h Zhiguang Liu
2021-02-18  1:44 ` 回复: [edk2-devel] " gaoliming

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