public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [edk2-platforms][0/3] Update Readme and Maintainers.txt
@ 2019-05-13 14:09 Liming Gao
  2019-05-13 14:09 ` [edk2-platforms][ 1/3] Update Platform/Intel/Readme.md to specify master instead of devel-MinPlatform branch Liming Gao
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Liming Gao @ 2019-05-13 14:09 UTC (permalink / raw)
  To: devel

After devel-MinPlatform branch is merged into master branch, Intel platforms
information and maintainers are also added. 

Liming Gao (3):
  Update Platform/Intel/Readme.md to specify master instead of
    devel-MinPlatform branch
  Merge Maintainers.txt in Platform\Intel and Silicon\Intel to root
    directory
  Update Readme.md to list Intel MinPlatform systems

 Maintainers.txt                | 41 +++++++++++++++++++++++++++++
 Platform/Intel/Maintainers.txt | 60 ------------------------------------------
 Platform/Intel/Readme.md       | 12 ++++-----
 Readme.md                      | 11 ++++++++
 Silicon/Intel/Maintainers.txt  | 58 ----------------------------------------
 5 files changed, 58 insertions(+), 124 deletions(-)
 delete mode 100644 Platform/Intel/Maintainers.txt
 delete mode 100644 Silicon/Intel/Maintainers.txt

-- 
2.13.0.windows.1


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

* [edk2-platforms][ 1/3] Update Platform/Intel/Readme.md to specify master instead of devel-MinPlatform branch
  2019-05-13 14:09 [edk2-platforms][0/3] Update Readme and Maintainers.txt Liming Gao
@ 2019-05-13 14:09 ` Liming Gao
  2019-05-13 19:07   ` [edk2-devel] " Kubacki, Michael A
  2019-05-13 14:09 ` [edk2-platforms][ 2/3] Merge Maintainers.txt in Platform\Intel and Silicon\Intel to root directory Liming Gao
  2019-05-13 14:09 ` [edk2-platforms][ 3/3] Update Readme.md to list Intel MinPlatform systems Liming Gao
  2 siblings, 1 reply; 8+ messages in thread
From: Liming Gao @ 2019-05-13 14:09 UTC (permalink / raw)
  To: devel

Signed-off-by: Liming Gao <liming.gao@intel.com>
---
 Platform/Intel/Readme.md | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/Platform/Intel/Readme.md b/Platform/Intel/Readme.md
index fbf735173f..1da5d0ad29 100644
--- a/Platform/Intel/Readme.md
+++ b/Platform/Intel/Readme.md
@@ -8,7 +8,7 @@ Package maintainers for the Minimum Platform projects are listed in Maintainers.
 ## Overview
 The key elements of the architecture are organized into a staged boot approach where each stage has requirements and
 functionality for specific use cases. The generic control flow through the boot process is implemented in the
-[`MinPlatformPkg`](https://github.com/tianocore/edk2-platforms/tree/devel-MinPlatform/Platform/Intel/MinPlatformPkg).
+[`MinPlatformPkg`](https://github.com/tianocore/edk2-platforms/tree/master/Platform/Intel/MinPlatformPkg).
 The generic nature of the tasks performed in MinPlatformPkg lends to reuse across all Intel platforms with no
 source modification. Details for any particular board are made accessible to the MinPlatformPkg through a well-defined
 statically linked board API. A complete platform solution then consists of the MinPlatformPkg and a compatible board
@@ -16,13 +16,13 @@ package.
 
 ## Board Naming Convention
 The board packages supported by Intel follow the naming convention \<xxx\>OpenBoardPkg where xxx refers to the
-encompassing platform name for a particular platform generation. For example, the [`KabylakeOpenBoardPkg`](https://github.com/tianocore/edk2-platforms/tree/devel-MinPlatform/Platform/Intel/KabylakeOpenBoardPkg) contains the
+encompassing platform name for a particular platform generation. For example, the [`KabylakeOpenBoardPkg`](https://github.com/tianocore/edk2-platforms/tree/master/Platform/Intel/KabylakeOpenBoardPkg) contains the
 board code for Intel Kaby Lake reference systems. Intel uses the moniker "OpenBoardPkg" to indicate that this package
 is the open source board code. A closed source counterpart may exist which simply uses "BoardPkg". Both directly use
 the MinPlatformPkg from edk2-platforms.
 
 ## Stage Selection
-Stage selection is controlled via the PCD `gMinPlatformPkgTokenSpaceGuid.PcdBootStage` in [`MinPlatformPkg.dec`](https://github.com/tianocore/edk2-platforms/blob/devel-MinPlatform/Platform/Intel/MinPlatformPkg/MinPlatformPkg.dec).
+Stage selection is controlled via the PCD `gMinPlatformPkgTokenSpaceGuid.PcdBootStage` in [`MinPlatformPkg.dec`](https://github.com/tianocore/edk2-platforms/tree/master/Platform/Intel/MinPlatformPkg/MinPlatformPkg.dec).
 The stage should be configured in the board package DSC file to the appropriate value. For example, a board may disable
 all advanced features by setting this value to 4 instead of 6. This may be used to improve boot time for a particular
 use case. Decrementing the stage can also be used for debug since only the actions required for that stage objective
@@ -46,8 +46,8 @@ A UEFI firmware implementation using MinPlatformPkg is constructed using the fol
 |------------------------------------|
 | [EDK II](https://github.com/tianocore/edk2)                                                                              |
 | [Intel(r) FSP](https://github.com/IntelFsp/FSP)                                                                            |
-| [Minimum Platform (`MinPlatformPkg`)](https://github.com/tianocore/edk2-platforms/tree/devel-MinPlatform/Platform/Intel/MinPlatformPkg)                        |
-| [Board Support (\<xxx\>OpenBoardPkg)](https://github.com/tianocore/edk2-platforms/tree/devel-MinPlatform/Platform/Intel)  |
+| [Minimum Platform (`MinPlatformPkg`)](https://github.com/tianocore/edk2-platforms/tree/master/Platform/Intel/MinPlatformPkg)                        |
+| [Board Support (\<xxx\>OpenBoardPkg)](https://github.com/tianocore/edk2-platforms/tree/master/Platform/Intel)  |
 
 
 ## Board Support
@@ -95,7 +95,7 @@ return back to the minimum platform caller.
   * ``git clone https://github.com/tianocore/edk2.git``
 
 * edk2-platforms repository
-  * ``git clone https://github.com/tianocore/edk2-platforms.git -b devel-MinPlatform``
+  * ``git clone https://github.com/tianocore/edk2-platforms.git``
 
 * edk2-non-osi repository
   * ``git clone https://github.com/tianocore/edk2-non-osi.git -b devel-MinPlatform``
-- 
2.13.0.windows.1


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

* [edk2-platforms][ 2/3] Merge Maintainers.txt in Platform\Intel and Silicon\Intel to root directory
  2019-05-13 14:09 [edk2-platforms][0/3] Update Readme and Maintainers.txt Liming Gao
  2019-05-13 14:09 ` [edk2-platforms][ 1/3] Update Platform/Intel/Readme.md to specify master instead of devel-MinPlatform branch Liming Gao
@ 2019-05-13 14:09 ` Liming Gao
  2019-05-13 19:07   ` [edk2-devel] " Kubacki, Michael A
  2019-05-13 14:09 ` [edk2-platforms][ 3/3] Update Readme.md to list Intel MinPlatform systems Liming Gao
  2 siblings, 1 reply; 8+ messages in thread
From: Liming Gao @ 2019-05-13 14:09 UTC (permalink / raw)
  To: devel

Signed-off-by: Liming Gao <liming.gao@intel.com>
---
 Maintainers.txt                | 41 +++++++++++++++++++++++++++++
 Platform/Intel/Maintainers.txt | 60 ------------------------------------------
 Silicon/Intel/Maintainers.txt  | 58 ----------------------------------------
 3 files changed, 41 insertions(+), 118 deletions(-)
 delete mode 100644 Platform/Intel/Maintainers.txt
 delete mode 100644 Silicon/Intel/Maintainers.txt

diff --git a/Maintainers.txt b/Maintainers.txt
index 6477591e68..324bd0ab92 100644
--- a/Maintainers.txt
+++ b/Maintainers.txt
@@ -43,7 +43,48 @@ M: Ard Biesheuvel <ard.biesheuvel@linaro.org>
 M: Leif Lindholm <leif.lindholm@linaro.org>
 M: Michael D Kinney <michael.d.kinney@intel.com>
 
+Platform/Intel/AdvancedFeaturePkg
+M: Michael Kubacki <michael.a.kubacki@intel.com>
+M: Sai Chaganty <rangasai.v.chaganty@intel.com>
+
+Platform/Intel/ClevoOpenBoardPkg
+M: Michael Kubacki <michael.a.kubacki@intel.com>
+M: Ankit Sinha <ankit.sinha@intel.com>
+R: Nate DeSimone <nathaniel.l.desimone@intel.com>
+
+Platform/Intel/KabylakeOpenBoardPkg
+M: Chasel Chiu <chasel.chiu@intel.com>
+M: Michael Kubacki <michael.a.kubacki@intel.com>
+
+Platform/Intel/MinPlatformPkg
+M: Michael Kubacki <michael.a.kubacki@intel.com>
+R: Chasel Chiu <chasel.chiu@intel.com>
+
+Platform/Intel/PurleyOpenBoardPkg
+M: Shifei A Lu <shifei.a.lu@intel.com>
+M: Xiaohu Zhou <bowen.zhou@intel.com>
+M: Isaac W Oram <isaac.w.oram@intel.com>
+
 Silicon
 M: Ard Biesheuvel <ard.biesheuvel@linaro.org>
 M: Leif Lindholm <leif.lindholm@linaro.org>
 M: Michael D Kinney <michael.d.kinney@intel.com>
+
+Silicon/Intel/KabylakeSiliconPkg
+M: Chasel Chiu <chasel.chiu@intel.com>
+M: Michael A Kubacki <michael.a.kubacki@intel.com>
+
+Silicon/Intel/LewisburgPkg
+M: Piwko, Maciej <maciej.piwko@intel.com>
+M: Bu, Daocheng <daocheng.bu@intel.com>
+M: Oram, Isaac W <isaac.w.oram@intel.com>
+
+Silicon/Intel/PurleyRcPkg
+M: Gillispie, Thad <thad.gillispie@intel.com>
+M: Bu, Daocheng <daocheng.bu@intel.com>
+M: Oram, Isaac W <isaac.w.oram@intel.com>
+
+Silicon/Intel/PurleySktPkg
+M: Gillispie, Thad <thad.gillispie@intel.com>
+M: Bu, Daocheng <daocheng.bu@intel.com>
+M: Oram, Isaac W <isaac.w.oram@intel.com>
diff --git a/Platform/Intel/Maintainers.txt b/Platform/Intel/Maintainers.txt
deleted file mode 100644
index 0004f6a829..0000000000
--- a/Platform/Intel/Maintainers.txt
+++ /dev/null
@@ -1,60 +0,0 @@
-EDK II Maintainers
-==================
-
-This file provides information about the primary maintainers for
-EDK II.
-
-In general, you should not privately email the maintainer. You should
-email the edk2-devel list, but you can also Cc the maintainer.
-
-Descriptions of section entries:
-
-  L: Mailing list that is relevant to this area (default is edk2-devel)
-     Patches and questions should be sent to the email list.
-  M: Cc address for patches and questions (ie, the package maintainer)
-  W: Web-page with status/info
-  T: SCM tree type and location.  Type is one of: git, svn.
-  S: Status, one of the following:
-     Supported:  Someone is actually paid to look after this.
-     Maintained: Someone actually looks after it.
-     Odd Fixes:  It has a maintainer but they don't have time to do
-                 much other than throw the odd patch in. See below.
-     Orphan:     No current maintainer [but maybe you could take the
-                 role as you write your new code].
-     Obsolete:   Old code. Something tagged obsolete generally means
-                 it has been replaced by a better system and you
-                 should be using that.
-
-EDK II
-------
-W: http://www.tianocore.org/edk2/
-L: https://lists.sourceforge.net/lists/listinfo/edk2-devel
-T: git - https://github.com/tianocore/edk2-platforms.git
-
-Responsible Disclosure, Reporting Security Issues
--------------------------------------------------
-W: https://github.com/tianocore/tianocore.github.io/wiki/Security
-
-EDK II Packages:
-----------------
-AdvancedFeaturePkg
-M: Michael Kubacki <michael.a.kubacki@intel.com>
-M: Sai Chaganty <rangasai.v.chaganty@intel.com>
-
-ClevoOpenBoardPkg
-M: Michael Kubacki <michael.a.kubacki@intel.com>
-M: Ankit Sinha <ankit.sinha@intel.com>
-R: Nate DeSimone <nathaniel.l.desimone@intel.com>
-
-KabylakeOpenBoardPkg
-M: Chasel Chiu <chasel.chiu@intel.com>
-M: Michael Kubacki <michael.a.kubacki@intel.com>
-
-MinPlatformPkg
-M: Michael Kubacki <michael.a.kubacki@intel.com>
-R: Chasel Chiu <chasel.chiu@intel.com>
-
-PurleyOpenBoardPkg
-M: Shifei A Lu <shifei.a.lu@intel.com>
-M: Xiaohu Zhou <bowen.zhou@intel.com>
-M: Isaac W Oram <isaac.w.oram@intel.com>
diff --git a/Silicon/Intel/Maintainers.txt b/Silicon/Intel/Maintainers.txt
deleted file mode 100644
index 8fa53c9008..0000000000
--- a/Silicon/Intel/Maintainers.txt
+++ /dev/null
@@ -1,58 +0,0 @@
-EDK II Maintainers
-==================
-
-This file provides information about the primary maintainers for
-EDK II.
-
-In general, you should not privately email the maintainer. You should
-email the edk2-devel list, but you can also Cc the maintainer.
-
-Descriptions of section entries:
-
-  L: Mailing list that is relevant to this area (default is edk2-devel)
-     Patches and questions should be sent to the email list.
-  M: Cc address for patches and questions (ie, the package maintainer)
-  W: Web-page with status/info
-  T: SCM tree type and location.  Type is one of: git, svn.
-  S: Status, one of the following:
-     Supported:  Someone is actually paid to look after this.
-     Maintained: Someone actually looks after it.
-     Odd Fixes:  It has a maintainer but they don't have time to do
-                 much other than throw the odd patch in. See below.
-     Orphan:     No current maintainer [but maybe you could take the
-                 role as you write your new code].
-     Obsolete:   Old code. Something tagged obsolete generally means
-                 it has been replaced by a better system and you
-                 should be using that.
-
-EDK II
-------
-W: http://www.tianocore.org/edk2/
-L: https://lists.sourceforge.net/lists/listinfo/edk2-devel
-T: git - https://github.com/tianocore/edk2-platforms.git
-
-Responsible Disclosure, Reporting Security Issues
--------------------------------------------------
-W: https://github.com/tianocore/tianocore.github.io/wiki/Security
-
-EDK II Packages:
-----------------
-KabylakeSiliconPkg
-M: Chasel Chiu <chasel.chiu@intel.com>
-M: Michael A Kubacki <michael.a.kubacki@intel.com>
-
-LewisburgPkg
-M: Piwko, Maciej <maciej.piwko@intel.com>
-M: Bu, Daocheng <daocheng.bu@intel.com>
-M: Oram, Isaac W <isaac.w.oram@intel.com>
-
-PurleyRcPkg
-M: Gillispie, Thad <thad.gillispie@intel.com>
-M: Bu, Daocheng <daocheng.bu@intel.com>
-M: Oram, Isaac W <isaac.w.oram@intel.com>
-
-PurleySktPkg
-M: Gillispie, Thad <thad.gillispie@intel.com>
-M: Bu, Daocheng <daocheng.bu@intel.com>
-M: Oram, Isaac W <isaac.w.oram@intel.com>
-
-- 
2.13.0.windows.1


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

* [edk2-platforms][ 3/3] Update Readme.md to list Intel MinPlatform systems
  2019-05-13 14:09 [edk2-platforms][0/3] Update Readme and Maintainers.txt Liming Gao
  2019-05-13 14:09 ` [edk2-platforms][ 1/3] Update Platform/Intel/Readme.md to specify master instead of devel-MinPlatform branch Liming Gao
  2019-05-13 14:09 ` [edk2-platforms][ 2/3] Merge Maintainers.txt in Platform\Intel and Silicon\Intel to root directory Liming Gao
@ 2019-05-13 14:09 ` Liming Gao
  2019-05-15 15:58   ` [edk2-devel] " Kubacki, Michael A
  2 siblings, 1 reply; 8+ messages in thread
From: Liming Gao @ 2019-05-13 14:09 UTC (permalink / raw)
  To: devel

Signed-off-by: Liming Gao <liming.gao@intel.com>
---
 Readme.md | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/Readme.md b/Readme.md
index 95c0c14522..0d1b6f3ed6 100644
--- a/Readme.md
+++ b/Readme.md
@@ -223,6 +223,17 @@ they will be documented with the platform.
 ## Socionext
 * [SynQuacer](Platform/Socionext/DeveloperBox)
 
+## [MinPlatform](Platform/Intel/Readme.md)
+
+## Intel(R) Kaby Lake systems
+* [Kabylake](Platform/Intel/KabylakeOpenBoardPkg)
+
+## Intel(R) Purley systems
+* [Purley](Platform/Intel/PurleyOpenBoardPkg)
+
+## Intel(R) Clevo systems
+* [Clevo](Platform/Intel/ClevoOpenBoardPkg)
+
 # Maintainers
 
 See [Maintainers.txt](Maintainers.txt).
-- 
2.13.0.windows.1


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

* Re: [edk2-devel] [edk2-platforms][ 1/3] Update Platform/Intel/Readme.md to specify master instead of devel-MinPlatform branch
  2019-05-13 14:09 ` [edk2-platforms][ 1/3] Update Platform/Intel/Readme.md to specify master instead of devel-MinPlatform branch Liming Gao
@ 2019-05-13 19:07   ` Kubacki, Michael A
  0 siblings, 0 replies; 8+ messages in thread
From: Kubacki, Michael A @ 2019-05-13 19:07 UTC (permalink / raw)
  To: devel@edk2.groups.io, Gao, Liming

Reviewed-by: Michael Kubacki <michael.a.kubacki@intel.com>

> -----Original Message-----
> From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
> Liming Gao
> Sent: Monday, May 13, 2019 7:09 AM
> To: devel@edk2.groups.io
> Subject: [edk2-devel] [edk2-platforms][ 1/3] Update
> Platform/Intel/Readme.md to specify master instead of devel-MinPlatform
> branch
> 
> Signed-off-by: Liming Gao <liming.gao@intel.com>
> ---
>  Platform/Intel/Readme.md | 12 ++++++------
>  1 file changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/Platform/Intel/Readme.md b/Platform/Intel/Readme.md index
> fbf735173f..1da5d0ad29 100644
> --- a/Platform/Intel/Readme.md
> +++ b/Platform/Intel/Readme.md
> @@ -8,7 +8,7 @@ Package maintainers for the Minimum Platform projects
> are listed in Maintainers.
>  ## Overview
>  The key elements of the architecture are organized into a staged boot
> approach where each stage has requirements and  functionality for specific
> use cases. The generic control flow through the boot process is implemented
> in the -[`MinPlatformPkg`](https://github.com/tianocore/edk2-
> platforms/tree/devel-MinPlatform/Platform/Intel/MinPlatformPkg).
> +[`MinPlatformPkg`](https://github.com/tianocore/edk2-
> platforms/tree/master/Platform/Intel/MinPlatformPkg).
>  The generic nature of the tasks performed in MinPlatformPkg lends to reuse
> across all Intel platforms with no  source modification. Details for any
> particular board are made accessible to the MinPlatformPkg through a well-
> defined  statically linked board API. A complete platform solution then
> consists of the MinPlatformPkg and a compatible board @@ -16,13 +16,13
> @@ package.
> 
>  ## Board Naming Convention
>  The board packages supported by Intel follow the naming convention
> \<xxx\>OpenBoardPkg where xxx refers to the -encompassing platform
> name for a particular platform generation. For example, the
> [`KabylakeOpenBoardPkg`](https://github.com/tianocore/edk2-
> platforms/tree/devel-MinPlatform/Platform/Intel/KabylakeOpenBoardPkg)
> contains the
> +encompassing platform name for a particular platform generation. For
> +example, the
> +[`KabylakeOpenBoardPkg`](https://github.com/tianocore/edk2-
> platforms/tr
> +ee/master/Platform/Intel/KabylakeOpenBoardPkg) contains the
>  board code for Intel Kaby Lake reference systems. Intel uses the moniker
> "OpenBoardPkg" to indicate that this package  is the open source board
> code. A closed source counterpart may exist which simply uses "BoardPkg".
> Both directly use  the MinPlatformPkg from edk2-platforms.
> 
>  ## Stage Selection
> -Stage selection is controlled via the PCD
> `gMinPlatformPkgTokenSpaceGuid.PcdBootStage` in
> [`MinPlatformPkg.dec`](https://github.com/tianocore/edk2-
> platforms/blob/devel-
> MinPlatform/Platform/Intel/MinPlatformPkg/MinPlatformPkg.dec).
> +Stage selection is controlled via the PCD
> `gMinPlatformPkgTokenSpaceGuid.PcdBootStage` in
> [`MinPlatformPkg.dec`](https://github.com/tianocore/edk2-
> platforms/tree/master/Platform/Intel/MinPlatformPkg/MinPlatformPkg.dec)
> .
>  The stage should be configured in the board package DSC file to the
> appropriate value. For example, a board may disable  all advanced features
> by setting this value to 4 instead of 6. This may be used to improve boot time
> for a particular  use case. Decrementing the stage can also be used for debug
> since only the actions required for that stage objective @@ -46,8 +46,8 @@
> A UEFI firmware implementation using MinPlatformPkg is constructed using
> the fol  |------------------------------------|
>  | [EDK II](https://github.com/tianocore/edk2)
> |
>  | [Intel(r) FSP](https://github.com/IntelFsp/FSP)
> |
> -| [Minimum Platform
> (`MinPlatformPkg`)](https://github.com/tianocore/edk2-
> platforms/tree/devel-MinPlatform/Platform/Intel/MinPlatformPkg)
> |
> -| [Board Support
> -| (\<xxx\>OpenBoardPkg)](https://github.com/tianocore/edk2-platforms/tr
> -| ee/devel-MinPlatform/Platform/Intel)  |
> +| [Minimum Platform
> (`MinPlatformPkg`)](https://github.com/tianocore/edk2-
> platforms/tree/master/Platform/Intel/MinPlatformPkg)                        |
> +| [Board Support
> +| (\<xxx\>OpenBoardPkg)](https://github.com/tianocore/edk2-platforms/tr
> +| ee/master/Platform/Intel)  |
> 
> 
>  ## Board Support
> @@ -95,7 +95,7 @@ return back to the minimum platform caller.
>    * ``git clone https://github.com/tianocore/edk2.git``
> 
>  * edk2-platforms repository
> -  * ``git clone https://github.com/tianocore/edk2-platforms.git -b devel-
> MinPlatform``
> +  * ``git clone https://github.com/tianocore/edk2-platforms.git``
> 
>  * edk2-non-osi repository
>    * ``git clone https://github.com/tianocore/edk2-non-osi.git -b devel-
> MinPlatform``
> --
> 2.13.0.windows.1
> 
> 
> 


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

* Re: [edk2-devel] [edk2-platforms][ 2/3] Merge Maintainers.txt in Platform\Intel and Silicon\Intel to root directory
  2019-05-13 14:09 ` [edk2-platforms][ 2/3] Merge Maintainers.txt in Platform\Intel and Silicon\Intel to root directory Liming Gao
@ 2019-05-13 19:07   ` Kubacki, Michael A
  0 siblings, 0 replies; 8+ messages in thread
From: Kubacki, Michael A @ 2019-05-13 19:07 UTC (permalink / raw)
  To: devel@edk2.groups.io, Gao, Liming

Reviewed-by: Michael Kubacki <michael.a.kubacki@intel.com>

> -----Original Message-----
> From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
> Liming Gao
> Sent: Monday, May 13, 2019 7:09 AM
> To: devel@edk2.groups.io
> Subject: [edk2-devel] [edk2-platforms][ 2/3] Merge Maintainers.txt in
> Platform\Intel and Silicon\Intel to root directory
> 
> Signed-off-by: Liming Gao <liming.gao@intel.com>
> ---
>  Maintainers.txt                | 41 +++++++++++++++++++++++++++++
>  Platform/Intel/Maintainers.txt | 60 ------------------------------------------
>  Silicon/Intel/Maintainers.txt  | 58 ----------------------------------------
>  3 files changed, 41 insertions(+), 118 deletions(-)  delete mode 100644
> Platform/Intel/Maintainers.txt  delete mode 100644
> Silicon/Intel/Maintainers.txt
> 
> diff --git a/Maintainers.txt b/Maintainers.txt index 6477591e68..324bd0ab92
> 100644
> --- a/Maintainers.txt
> +++ b/Maintainers.txt
> @@ -43,7 +43,48 @@ M: Ard Biesheuvel <ard.biesheuvel@linaro.org>
>  M: Leif Lindholm <leif.lindholm@linaro.org>
>  M: Michael D Kinney <michael.d.kinney@intel.com>
> 
> +Platform/Intel/AdvancedFeaturePkg
> +M: Michael Kubacki <michael.a.kubacki@intel.com>
> +M: Sai Chaganty <rangasai.v.chaganty@intel.com>
> +
> +Platform/Intel/ClevoOpenBoardPkg
> +M: Michael Kubacki <michael.a.kubacki@intel.com>
> +M: Ankit Sinha <ankit.sinha@intel.com>
> +R: Nate DeSimone <nathaniel.l.desimone@intel.com>
> +
> +Platform/Intel/KabylakeOpenBoardPkg
> +M: Chasel Chiu <chasel.chiu@intel.com>
> +M: Michael Kubacki <michael.a.kubacki@intel.com>
> +
> +Platform/Intel/MinPlatformPkg
> +M: Michael Kubacki <michael.a.kubacki@intel.com>
> +R: Chasel Chiu <chasel.chiu@intel.com>
> +
> +Platform/Intel/PurleyOpenBoardPkg
> +M: Shifei A Lu <shifei.a.lu@intel.com>
> +M: Xiaohu Zhou <bowen.zhou@intel.com>
> +M: Isaac W Oram <isaac.w.oram@intel.com>
> +
>  Silicon
>  M: Ard Biesheuvel <ard.biesheuvel@linaro.org>
>  M: Leif Lindholm <leif.lindholm@linaro.org>
>  M: Michael D Kinney <michael.d.kinney@intel.com>
> +
> +Silicon/Intel/KabylakeSiliconPkg
> +M: Chasel Chiu <chasel.chiu@intel.com>
> +M: Michael A Kubacki <michael.a.kubacki@intel.com>
> +
> +Silicon/Intel/LewisburgPkg
> +M: Piwko, Maciej <maciej.piwko@intel.com>
> +M: Bu, Daocheng <daocheng.bu@intel.com>
> +M: Oram, Isaac W <isaac.w.oram@intel.com>
> +
> +Silicon/Intel/PurleyRcPkg
> +M: Gillispie, Thad <thad.gillispie@intel.com>
> +M: Bu, Daocheng <daocheng.bu@intel.com>
> +M: Oram, Isaac W <isaac.w.oram@intel.com>
> +
> +Silicon/Intel/PurleySktPkg
> +M: Gillispie, Thad <thad.gillispie@intel.com>
> +M: Bu, Daocheng <daocheng.bu@intel.com>
> +M: Oram, Isaac W <isaac.w.oram@intel.com>
> diff --git a/Platform/Intel/Maintainers.txt b/Platform/Intel/Maintainers.txt
> deleted file mode 100644 index 0004f6a829..0000000000
> --- a/Platform/Intel/Maintainers.txt
> +++ /dev/null
> @@ -1,60 +0,0 @@
> -EDK II Maintainers
> -==================
> -
> -This file provides information about the primary maintainers for -EDK II.
> -
> -In general, you should not privately email the maintainer. You should -email
> the edk2-devel list, but you can also Cc the maintainer.
> -
> -Descriptions of section entries:
> -
> -  L: Mailing list that is relevant to this area (default is edk2-devel)
> -     Patches and questions should be sent to the email list.
> -  M: Cc address for patches and questions (ie, the package maintainer)
> -  W: Web-page with status/info
> -  T: SCM tree type and location.  Type is one of: git, svn.
> -  S: Status, one of the following:
> -     Supported:  Someone is actually paid to look after this.
> -     Maintained: Someone actually looks after it.
> -     Odd Fixes:  It has a maintainer but they don't have time to do
> -                 much other than throw the odd patch in. See below.
> -     Orphan:     No current maintainer [but maybe you could take the
> -                 role as you write your new code].
> -     Obsolete:   Old code. Something tagged obsolete generally means
> -                 it has been replaced by a better system and you
> -                 should be using that.
> -
> -EDK II
> -------
> -W: http://www.tianocore.org/edk2/
> -L: https://lists.sourceforge.net/lists/listinfo/edk2-devel
> -T: git - https://github.com/tianocore/edk2-platforms.git
> -
> -Responsible Disclosure, Reporting Security Issues
> --------------------------------------------------
> -W: https://github.com/tianocore/tianocore.github.io/wiki/Security
> -
> -EDK II Packages:
> -----------------
> -AdvancedFeaturePkg
> -M: Michael Kubacki <michael.a.kubacki@intel.com>
> -M: Sai Chaganty <rangasai.v.chaganty@intel.com>
> -
> -ClevoOpenBoardPkg
> -M: Michael Kubacki <michael.a.kubacki@intel.com>
> -M: Ankit Sinha <ankit.sinha@intel.com>
> -R: Nate DeSimone <nathaniel.l.desimone@intel.com>
> -
> -KabylakeOpenBoardPkg
> -M: Chasel Chiu <chasel.chiu@intel.com>
> -M: Michael Kubacki <michael.a.kubacki@intel.com>
> -
> -MinPlatformPkg
> -M: Michael Kubacki <michael.a.kubacki@intel.com>
> -R: Chasel Chiu <chasel.chiu@intel.com>
> -
> -PurleyOpenBoardPkg
> -M: Shifei A Lu <shifei.a.lu@intel.com>
> -M: Xiaohu Zhou <bowen.zhou@intel.com>
> -M: Isaac W Oram <isaac.w.oram@intel.com> diff --git
> a/Silicon/Intel/Maintainers.txt b/Silicon/Intel/Maintainers.txt deleted file
> mode 100644 index 8fa53c9008..0000000000
> --- a/Silicon/Intel/Maintainers.txt
> +++ /dev/null
> @@ -1,58 +0,0 @@
> -EDK II Maintainers
> -==================
> -
> -This file provides information about the primary maintainers for -EDK II.
> -
> -In general, you should not privately email the maintainer. You should -email
> the edk2-devel list, but you can also Cc the maintainer.
> -
> -Descriptions of section entries:
> -
> -  L: Mailing list that is relevant to this area (default is edk2-devel)
> -     Patches and questions should be sent to the email list.
> -  M: Cc address for patches and questions (ie, the package maintainer)
> -  W: Web-page with status/info
> -  T: SCM tree type and location.  Type is one of: git, svn.
> -  S: Status, one of the following:
> -     Supported:  Someone is actually paid to look after this.
> -     Maintained: Someone actually looks after it.
> -     Odd Fixes:  It has a maintainer but they don't have time to do
> -                 much other than throw the odd patch in. See below.
> -     Orphan:     No current maintainer [but maybe you could take the
> -                 role as you write your new code].
> -     Obsolete:   Old code. Something tagged obsolete generally means
> -                 it has been replaced by a better system and you
> -                 should be using that.
> -
> -EDK II
> -------
> -W: http://www.tianocore.org/edk2/
> -L: https://lists.sourceforge.net/lists/listinfo/edk2-devel
> -T: git - https://github.com/tianocore/edk2-platforms.git
> -
> -Responsible Disclosure, Reporting Security Issues
> --------------------------------------------------
> -W: https://github.com/tianocore/tianocore.github.io/wiki/Security
> -
> -EDK II Packages:
> -----------------
> -KabylakeSiliconPkg
> -M: Chasel Chiu <chasel.chiu@intel.com>
> -M: Michael A Kubacki <michael.a.kubacki@intel.com>
> -
> -LewisburgPkg
> -M: Piwko, Maciej <maciej.piwko@intel.com>
> -M: Bu, Daocheng <daocheng.bu@intel.com>
> -M: Oram, Isaac W <isaac.w.oram@intel.com>
> -
> -PurleyRcPkg
> -M: Gillispie, Thad <thad.gillispie@intel.com>
> -M: Bu, Daocheng <daocheng.bu@intel.com>
> -M: Oram, Isaac W <isaac.w.oram@intel.com>
> -
> -PurleySktPkg
> -M: Gillispie, Thad <thad.gillispie@intel.com>
> -M: Bu, Daocheng <daocheng.bu@intel.com>
> -M: Oram, Isaac W <isaac.w.oram@intel.com>
> -
> --
> 2.13.0.windows.1
> 
> 
> 


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

* Re: [edk2-devel] [edk2-platforms][ 3/3] Update Readme.md to list Intel MinPlatform systems
  2019-05-13 14:09 ` [edk2-platforms][ 3/3] Update Readme.md to list Intel MinPlatform systems Liming Gao
@ 2019-05-15 15:58   ` Kubacki, Michael A
  2019-05-16  0:03     ` Liming Gao
  0 siblings, 1 reply; 8+ messages in thread
From: Kubacki, Michael A @ 2019-05-15 15:58 UTC (permalink / raw)
  To: devel@edk2.groups.io, Gao, Liming

Can you please remove the Clevo package from the Readme.md until we remove it outside the Intel directory?

Thanks,
Michael

> -----Original Message-----
> From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
> Liming Gao
> Sent: Monday, May 13, 2019 7:09 AM
> To: devel@edk2.groups.io
> Subject: [edk2-devel] [edk2-platforms][ 3/3] Update Readme.md to list Intel
> MinPlatform systems
> 
> Signed-off-by: Liming Gao <liming.gao@intel.com>
> ---
>  Readme.md | 11 +++++++++++
>  1 file changed, 11 insertions(+)
> 
> diff --git a/Readme.md b/Readme.md
> index 95c0c14522..0d1b6f3ed6 100644
> --- a/Readme.md
> +++ b/Readme.md
> @@ -223,6 +223,17 @@ they will be documented with the platform.
>  ## Socionext
>  * [SynQuacer](Platform/Socionext/DeveloperBox)
> 
> +## [MinPlatform](Platform/Intel/Readme.md)
> +
> +## Intel(R) Kaby Lake systems
> +* [Kabylake](Platform/Intel/KabylakeOpenBoardPkg)
> +
> +## Intel(R) Purley systems
> +* [Purley](Platform/Intel/PurleyOpenBoardPkg)
> +
> +## Intel(R) Clevo systems
> +* [Clevo](Platform/Intel/ClevoOpenBoardPkg)
> +
>  # Maintainers
> 
>  See [Maintainers.txt](Maintainers.txt).
> --
> 2.13.0.windows.1
> 
> 
> 


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

* Re: [edk2-devel] [edk2-platforms][ 3/3] Update Readme.md to list Intel MinPlatform systems
  2019-05-15 15:58   ` [edk2-devel] " Kubacki, Michael A
@ 2019-05-16  0:03     ` Liming Gao
  0 siblings, 0 replies; 8+ messages in thread
From: Liming Gao @ 2019-05-16  0:03 UTC (permalink / raw)
  To: Kubacki, Michael A, devel@edk2.groups.io

You mean this patch doesn't need to include Clevo platform?

After move Clevo platform to Clevo directory, I can add it later. Right?

>-----Original Message-----
>From: Kubacki, Michael A
>Sent: Wednesday, May 15, 2019 11:58 PM
>To: devel@edk2.groups.io; Gao, Liming <liming.gao@intel.com>
>Subject: RE: [edk2-devel] [edk2-platforms][ 3/3] Update Readme.md to list
>Intel MinPlatform systems
>
>Can you please remove the Clevo package from the Readme.md until we
>remove it outside the Intel directory?
>
>Thanks,
>Michael
>
>> -----Original Message-----
>> From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
>> Liming Gao
>> Sent: Monday, May 13, 2019 7:09 AM
>> To: devel@edk2.groups.io
>> Subject: [edk2-devel] [edk2-platforms][ 3/3] Update Readme.md to list
>Intel
>> MinPlatform systems
>>
>> Signed-off-by: Liming Gao <liming.gao@intel.com>
>> ---
>>  Readme.md | 11 +++++++++++
>>  1 file changed, 11 insertions(+)
>>
>> diff --git a/Readme.md b/Readme.md
>> index 95c0c14522..0d1b6f3ed6 100644
>> --- a/Readme.md
>> +++ b/Readme.md
>> @@ -223,6 +223,17 @@ they will be documented with the platform.
>>  ## Socionext
>>  * [SynQuacer](Platform/Socionext/DeveloperBox)
>>
>> +## [MinPlatform](Platform/Intel/Readme.md)
>> +
>> +## Intel(R) Kaby Lake systems
>> +* [Kabylake](Platform/Intel/KabylakeOpenBoardPkg)
>> +
>> +## Intel(R) Purley systems
>> +* [Purley](Platform/Intel/PurleyOpenBoardPkg)
>> +
>> +## Intel(R) Clevo systems
>> +* [Clevo](Platform/Intel/ClevoOpenBoardPkg)
>> +
>>  # Maintainers
>>
>>  See [Maintainers.txt](Maintainers.txt).
>> --
>> 2.13.0.windows.1
>>
>>
>> 


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

end of thread, other threads:[~2019-05-16  0:03 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-05-13 14:09 [edk2-platforms][0/3] Update Readme and Maintainers.txt Liming Gao
2019-05-13 14:09 ` [edk2-platforms][ 1/3] Update Platform/Intel/Readme.md to specify master instead of devel-MinPlatform branch Liming Gao
2019-05-13 19:07   ` [edk2-devel] " Kubacki, Michael A
2019-05-13 14:09 ` [edk2-platforms][ 2/3] Merge Maintainers.txt in Platform\Intel and Silicon\Intel to root directory Liming Gao
2019-05-13 19:07   ` [edk2-devel] " Kubacki, Michael A
2019-05-13 14:09 ` [edk2-platforms][ 3/3] Update Readme.md to list Intel MinPlatform systems Liming Gao
2019-05-15 15:58   ` [edk2-devel] " Kubacki, Michael A
2019-05-16  0:03     ` Liming Gao

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