public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Michael Kinney <michael.d.kinney@intel.com>
To: edk2-devel@lists.01.org
Cc: Liming Gao <liming.gao@intel.com>,
	Yonghong Zhu <yonghong.zhu@intel.com>,
	Kevin W Shaw <kevin.w.shaw@intel.com>
Subject: [ edk2-DecSpecification PATCH 2/4] Update version from 1.25 to 1.26
Date: Mon, 24 Apr 2017 18:10:04 -0700	[thread overview]
Message-ID: <1493082606-9348-3-git-send-email-michael.d.kinney@intel.com> (raw)
In-Reply-To: <1493082606-9348-1-git-send-email-michael.d.kinney@intel.com>

Cc: Liming Gao <liming.gao@intel.com>
Cc: Yonghong Zhu <yonghong.zhu@intel.com>
Cc: Kevin W Shaw <kevin.w.shaw@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Michael Kinney <michael.d.kinney@intel.com>
---
 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



  parent reply	other threads:[~2017-04-25  1:10 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-25  1:10 [ edk2-DecSpecification PATCH 0/4] Add support for Private declarations in a package Michael Kinney
2017-04-25  1:10 ` [ edk2-DecSpecification PATCH 1/4] Remove trailing spaces from README.MD Michael Kinney
2017-04-25  1:10 ` Michael Kinney [this message]
2017-04-25  1:10 ` [ edk2-DecSpecification PATCH 3/4] Add support for Private declarations in a package Michael Kinney
2017-04-25  1:10 ` [ edk2-DecSpecification PATCH 4/4] Declarations not allowed to be both public and private Michael Kinney
2017-04-25  1:40 ` [ edk2-DecSpecification PATCH 0/4] Add support for Private declarations in a package Zhu, Yonghong
2017-04-25 15:21 ` Laszlo Ersek

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1493082606-9348-3-git-send-email-michael.d.kinney@intel.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox