public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [RFC] PCD: Extended SKU support 1 - inheritance
@ 2017-04-25 12:39 Zeng, Star
  2017-04-26 16:21 ` Tim Lewis
  0 siblings, 1 reply; 28+ messages in thread
From: Zeng, Star @ 2017-04-25 12:39 UTC (permalink / raw)
  To: edk2-devel@lists.01.org
  Cc: Kinney, Michael D, Gao, Liming, Zhu, Yonghong, Zeng, Star

- Requirement
Simplify the PCDs configuring for multiple SKUs in DSC.


- Current limitation
Non-DEFAULT SKU could only derive from DEFAULT SKU, but could not derive from another non-DEFAULT SKU.
For example below, SkuA and SkuB could only derive from DEFAULT, but SkuB could not derive from SkuA.

[SkuIds]
  0 | DEFAULT
  1 | SkuA
  2 | SkuB


- Proposal: One non-DEFAULT SKU could be a derivative of another non-DEFAULT SKU.
This proposal only extends DSC [SkuIds] section syntax and the extension is optional.
This proposal keeps the backward compatibility with current SKU usage.
BaseTools update is needed to support the syntax extension, and no any change in PCD database and driver is required.

DSC syntax:
  [SkuIds]
    SkuValue|SkuName[|ParentSkuName]
      SkuValue: integer, 0 is reserved for DEFAULT SKU.
      SkuName: string
      ParentSkuName: string, optional, it is new introduced in this proposal and defines which SKU the PCD value will derive from for this SKU. The PCD value will derive from DEFAULT SKU for this SKU if the ParentSkuName is absent.


- Example: SkuB is a derivative of SkuA, but not a derivative of DEFAULT.

  [SkuIds]
    0 | DEFAULT
    1 | SkuA
    2 | SkuB | SkuA

  [PcdsDynamicDefault.Common.DEFAULT]
    gXXXPkgTokenSpaceGuid.PcdXXXSignature|"DEFAULT"
    gXXXPkgTokenSpaceGuid.PcdXXXConfig1|FALSE
    gXXXPkgTokenSpaceGuid.PcdXXXConfig2|FALSE
    gXXXPkgTokenSpaceGuid.PcdXXXConfig3|FALSE

  [PcdsDynamicDefault.Common.SkuA]
    gXXXPkgTokenSpaceGuid.PcdXXXSignature|"SkuA"
    gXXXPkgTokenSpaceGuid.PcdXXXConfig1|TRUE
    gXXXPkgTokenSpaceGuid.PcdXXXConfig2|TRUE
    # No need statement for PcdXXXConfig3 whose value will derive from DEFAULT SKU and be FLASE.
 
  [PcdsDynamicDefault.Common.SkuB]
    gXXXPkgTokenSpaceGuid.PcdXXXSignature|" SkuB"
    # No need statement for PcdXXXConfig1 and PcdXXXConfig2 whose values will derive from SkuA SKU and be TRUE.
    gXXXPkgTokenSpaceGuid.PcdXXXConfig3|TRUE


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

end of thread, other threads:[~2017-05-15 16:30 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-25 12:39 [RFC] PCD: Extended SKU support 1 - inheritance Zeng, Star
2017-04-26 16:21 ` Tim Lewis
2017-04-26 18:04   ` Kinney, Michael D
2017-04-26 18:23     ` Tim Lewis
2017-04-26 18:40       ` Kinney, Michael D
2017-04-26 18:46         ` Tim Lewis
2017-04-26 19:04           ` Kinney, Michael D
2017-04-26 19:58             ` Tim Lewis
2017-04-26 22:56               ` Kinney, Michael D
2017-04-26 23:06                 ` Tim Lewis
2017-04-27  0:28                   ` Kinney, Michael D
2017-04-27 16:28                     ` Tim Lewis
2017-04-28  1:00                       ` Zeng, Star
2017-04-28  1:43                         ` Tim Lewis
2017-04-28  1:53                           ` Zeng, Star
2017-04-28  2:02                             ` Andrew Fish
2017-04-28  2:10                               ` Zeng, Star
2017-04-28  2:09                             ` Tim Lewis
2017-04-28  3:25                               ` Kinney, Michael D
2017-05-03 14:02                                 ` Zeng, Star
2017-05-03 18:55                                   ` Tim Lewis
2017-05-04 13:41                                     ` Zeng, Star
2017-05-04 16:35                                       ` Tim Lewis
2017-05-05 10:07                                         ` Zeng, Star
2017-05-05 16:06                                           ` Tim Lewis
2017-05-05 16:06                                           ` Kinney, Michael D
2017-05-15  9:45                                             ` Zeng, Star
2017-05-15 16:30                                               ` Tim Lewis

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