diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-07 06:19:08 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-07 06:19:08 +0000 |
commit | 54c9f9ed9591fcff7a201447a2c41a58c35f8fef (patch) | |
tree | a346a089d081ba79b429304a4c77a88368155475 /ReleaseNotes.txt | |
parent | 01026c709f6bfcb3a612e5002be82c09624cf062 (diff) | |
download | edk2-platforms-54c9f9ed9591fcff7a201447a2c41a58c35f8fef.tar.xz |
1, Rollback run.cmd because the concat work in NT32.fpd is work correctly now.
2, Fix some bugs in ReleaseNotes.txt
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@816 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ReleaseNotes.txt')
-rw-r--r-- | ReleaseNotes.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/ReleaseNotes.txt b/ReleaseNotes.txt index d1866b3794..045e4102a7 100644 --- a/ReleaseNotes.txt +++ b/ReleaseNotes.txt @@ -488,20 +488,23 @@ Example Ppi Entries (NOTE: The Guid entry is a single line in the SPD file): element as described above.
---------------------------------------
-7) Define a new PCD entry in a package:
+7) Declare a new PCD entry in a package:
- This release requires manual editing of the SPD file to include the new
PCD. New Pcd entries are added to the PcdDefinitions section of the
<PackageName>.spd file using the following example for the format:
NOTE: The hex <Token> value must be unique.
-<PcdDefinitions>
+<PcdDeclarations>
<PcdEntry ItemType="FIXED_AT_BUILD">
<C_Name>PcdMaximumUnicodeStringLength</C_Name>
<Token>0x00000001</Token>
+ <TokenSpaceGuidCName>gEfiMdePkgTokenSpaceGuid</TokenSpaceGuidCName>
<DatumType>UINT32</DatumType>
+ <ValidUsage>FIXED_AT_BUILD</ValidUsage>
<DefaultValue>1000000</DefaultValue>
+ <HelpText>The maximum lengh for unicode string.</HelpText>
</PcdEntry>
-</PcdDefinition>
+</PcdDeclarations>
------------------------------
8) Declare a new Library Class:
|