From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=134.134.136.20; helo=mga02.intel.com; envelope-from=yonghong.zhu@intel.com; receiver=edk2-devel@lists.01.org Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 327F42233376C for ; Mon, 22 Jan 2018 19:12:17 -0800 (PST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 22 Jan 2018 19:17:43 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,398,1511856000"; d="scan'208";a="24601581" Received: from shwdeopenpsi168.ccr.corp.intel.com ([10.239.158.129]) by fmsmga001.fm.intel.com with ESMTP; 22 Jan 2018 19:17:42 -0800 From: Yonghong Zhu To: edk2-devel@lists.01.org Cc: Liming Gao , Michael Kinney , Kevin W Shaw Date: Tue, 23 Jan 2018 11:17:40 +0800 Message-Id: <1516677460-9832-1-git-send-email-yonghong.zhu@intel.com> X-Mailer: git-send-email 2.6.1.windows.1 Subject: [Patch] DSC spec: Update Skuid value to support Hex number X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jan 2018 03:12:17 -0000 Original Skuid value only support to use integer, this patch extend it to also support hex number. Cc: Liming Gao Cc: Michael Kinney Cc: Kevin W Shaw Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Yonghong Zhu --- 2_dsc_overview/25_[skuids]_section_processing.md | 2 +- 3_edk_ii_dsc_file_format/37_[skuids]_section.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/2_dsc_overview/25_[skuids]_section_processing.md b/2_dsc_overview/25_[skuids]_section_processing.md index 428f7cf..afd102e 100644 --- a/2_dsc_overview/25_[skuids]_section_processing.md +++ b/2_dsc_overview/25_[skuids]_section_processing.md @@ -35,11 +35,11 @@ The contents of this section are used to define valid `SKUID_IDENTIFIER` names. Since a platform may support different SKUs, and different SKUs may implement different methods for handing platform configuration data (PCD) the user can define, in this section, tag names to use. Use `0` for the `DEFAULT` SKU identifier. Each entry below the section header is of the form: -`integer | word` +`Number | word` The following is an example of a `[SkuIds]` section: ``` [SkuIds] diff --git a/3_edk_ii_dsc_file_format/37_[skuids]_section.md b/3_edk_ii_dsc_file_format/37_[skuids]_section.md index 97642e9..756ded2 100644 --- a/3_edk_ii_dsc_file_format/37_[skuids]_section.md +++ b/3_edk_ii_dsc_file_format/37_[skuids]_section.md @@ -42,18 +42,18 @@ recommended that a ".txt" extension be used. If this section is not specified, the parsing tools will assume a SkuId of 0, with a `UiName` of "DEFAULT". The default entry must not be re-defined. The `!include` file can only contain an ASCII (not Unicode) list of -"integer|UiSkuName" statements. +"Number|UiSkuName" statements. #### Prototype ```c ::= "[SkuIds]" {*} {} - ::= + ::= ::= ``` #### Example -- 2.6.1.windows.1