mirror of https://github.com/acidanthera/audk.git
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:
parent
01026c709f
commit
54c9f9ed95
|
@ -11,11 +11,6 @@
|
|||
|
||||
@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 .
|
||||
cd Build\DEBUG\MSFT\IA32
|
||||
SecMain.exe
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue