From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) (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 BACF721954084 for ; Mon, 24 Apr 2017 18:10:10 -0700 (PDT) Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 Apr 2017 18:10:10 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.37,247,1488873600"; d="scan'208";a="93697952" Received: from mdkinney-mobl.amr.corp.intel.com ([10.241.98.36]) by fmsmga006.fm.intel.com with ESMTP; 24 Apr 2017 18:10:10 -0700 From: Michael Kinney To: edk2-devel@lists.01.org Cc: Liming Gao , Yonghong Zhu , Kevin W Shaw Date: Mon, 24 Apr 2017 18:10:04 -0700 Message-Id: <1493082606-9348-3-git-send-email-michael.d.kinney@intel.com> X-Mailer: git-send-email 2.6.3.windows.1 In-Reply-To: <1493082606-9348-1-git-send-email-michael.d.kinney@intel.com> References: <1493082606-9348-1-git-send-email-michael.d.kinney@intel.com> Subject: [ edk2-DecSpecification PATCH 2/4] Update version from 1.25 to 1.26 X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Apr 2017 01:10:11 -0000 Cc: Liming Gao Cc: Yonghong Zhu Cc: Kevin W Shaw Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Michael Kinney --- 2_dec_file_overview/24_[defines]_usage.md | 2 +- 3_edk_ii_dec_file_format/34_[defines]_section.md | 28 ++++++++++++++++-------- README.md | 3 ++- 3 files changed, 22 insertions(+), 11 deletions(-) diff --git a/2_dec_file_overview/24_[defines]_usage.md b/2_dec_file_overview/24_[defines]_usage.md index 3729902..fe97c25 100644 --- a/2_dec_file_overview/24_[defines]_usage.md +++ b/2_dec_file_overview/24_[defines]_usage.md @@ -66,7 +66,7 @@ The following is an example of this section. ```ini [Defines] - DEC_SPECIFICATION = 0x00010019 + DEC_SPECIFICATION = 0x0001001A PACKAGE_NAME = MdePkg PACKAGE_GUID = 1E73767F-8F52-4603-AEB4-F29B510B6766 PACKAGE_VERSION = 1.02 diff --git a/3_edk_ii_dec_file_format/34_[defines]_section.md b/3_edk_ii_dec_file_format/34_[defines]_section.md index f84db5f..d249ab7 100644 --- a/3_edk_ii_dec_file_format/34_[defines]_section.md +++ b/3_edk_ii_dec_file_format/34_[defines]_section.md @@ -40,9 +40,9 @@ This file is created during installation of a UEFI distribution package or by the developer and is an input to the EDK II build tool parsing utilities. Elements may appear in any order within this section. -The code for this specification is `"00010019`" and new versions of this -specification must increment the minor (0019) portion of the specification -code. This value may also be specified as a decimal value, 1.25. +The code for this specification is `"0001001A`" and new versions of this +specification must increment the minor (001A) portion of the specification +code. This value may also be specified as a decimal value, 1.26. Existing DEC files are not required to update the `DEC_SPECIFICATION` version value. This value may be used by tools to identify any new functionality @@ -83,11 +83,11 @@ characters are not permitted. **_SpecVer_** -For new DEC files, the version value must be set to 0x00010019 Tools that +For new DEC files, the version value must be set to 0x0001001A Tools that process this version of the DEC file can successfully process earlier versions of the DEC file (this is a backward compatible update). There is no requirement to change the value in existing DEC files if no other content changes. This may -also be specified as decimal value, 1.25. +also be specified as decimal value, 1.26. **_Filename_** @@ -97,13 +97,23 @@ permitted. Use of an absolute path is not permitted. The file name specified in the `PACKAGE_UNI_FILE` entry must be a Unicode file with an extension of .uni, .UNI or .Uni. -#### Example +#### Example 1 ```ini [DEFINES] - DEC_SPECIFICATION = 0x00010019 + DEC_SPECIFICATION = 0x0001001A PACKAGE_NAME = MdePkg - PACKAGE_GUID = 5e0e9358-46b6-4ae2-8218-4ab8b9bbdcec - PACKAGE_VERSION = 0.3 + PACKAGE_GUID = 1E73767F-8F52-4603-AEB4-F29B510B6766 + PACKAGE_VERSION = 1.06 PACKAGE_UNI_FILE = MdePkg.uni ``` + +#### Example 2 + +```ini +[DEFINES] + DEC_SPECIFICATION = 1.26 + PACKAGE_NAME = IntelFspPkg + PACKAGE_GUID = 444C6CDF-55BD-4744-8F74-AE98B003B955 + PACKAGE_VERSION = 0.1 +``` diff --git a/README.md b/README.md index 8f37a7e..b489cb1 100644 --- a/README.md +++ b/README.md @@ -164,4 +164,5 @@ Copyright (c) 2007-2017, Intel Corporation. All rights reserved. | | packages located outside of the WORKSPACE directory tree (refer to | | | | the TianoCore.org EDKII website for additional instructions on setting | | | | up a development environment). | | -| 1.26 | Reformat for GitBook | March 2017 | +| 1.26 | Reformat for GitBook | April 2017 | +| | Updated `DEC_SPECIFICATION` to `0x0001001A` or `1.26` | | -- 2.6.3.windows.1