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
This commit is contained in:
klu2 2006-07-07 06:19:08 +00:00
parent 01026c709f
commit 54c9f9ed95
2 changed files with 6 additions and 8 deletions

View File

@ -11,11 +11,6 @@
@echo off @echo off
:create_fd
if not exist Build\Debug\Fv mkdir Build\Debug\Fv
copy Build\Debug\Msft\Fv\FV_RECOVERY.fv /B + Build\Debug\Msft\Fv\NV_STORAGE.fv /B Build\Debug\Fv\Fv_Recovery.fd /B
:start_secmain
pushd . pushd .
cd Build\DEBUG\MSFT\IA32 cd Build\DEBUG\MSFT\IA32
SecMain.exe SecMain.exe

View File

@ -488,20 +488,23 @@ Example Ppi Entries (NOTE: The Guid entry is a single line in the SPD file):
element as described above. 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 - 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 PCD. New Pcd entries are added to the PcdDefinitions section of the
<PackageName>.spd file using the following example for the format: <PackageName>.spd file using the following example for the format:
NOTE: The hex <Token> value must be unique. NOTE: The hex <Token> value must be unique.
<PcdDefinitions> <PcdDeclarations>
<PcdEntry ItemType="FIXED_AT_BUILD"> <PcdEntry ItemType="FIXED_AT_BUILD">
<C_Name>PcdMaximumUnicodeStringLength</C_Name> <C_Name>PcdMaximumUnicodeStringLength</C_Name>
<Token>0x00000001</Token> <Token>0x00000001</Token>
<TokenSpaceGuidCName>gEfiMdePkgTokenSpaceGuid</TokenSpaceGuidCName>
<DatumType>UINT32</DatumType> <DatumType>UINT32</DatumType>
<ValidUsage>FIXED_AT_BUILD</ValidUsage>
<DefaultValue>1000000</DefaultValue> <DefaultValue>1000000</DefaultValue>
<HelpText>The maximum lengh for unicode string.</HelpText>
</PcdEntry> </PcdEntry>
</PcdDefinition> </PcdDeclarations>
------------------------------ ------------------------------
8) Declare a new Library Class: 8) Declare a new Library Class: