HomeSort by relevance Sort by last modified time
    Searched refs:Ffs (Results 1 - 23 of 23) sorted by null

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
Ffs.py 2 # process FFS generation
20 ## generate FFS
23 class Ffs(FDClassObject):
CompressSection.py 18 from Ffs import Ffs
78 Ffs.SectionSuffix['COMPRESS']
UiSection.py 19 from Ffs import Ffs
60 OutputFile = os.path.join(OutputPath, ModuleName + 'SEC' + SecNum + Ffs.SectionSuffix.get('UI'))
CapsuleData.py 18 import Ffs
42 ## FFS class for capsule data
51 self.Ffs = None
54 ## generate FFS capsule data
60 FfsFile = self.Ffs.GenFfs()
72 self.Ffs = None
104 self.Ffs = None
132 self.Ffs = None
152 self.Ffs = None
VerSection.py 18 from Ffs import Ffs
62 ModuleName + 'SEC' + SecNum + Ffs.SectionSuffix.get('VERSION'))
EfiSection.py 22 from Ffs import Ffs
120 OutputFile = os.path.join( OutputPath, ModuleName + 'SEC' + str(Num) + Ffs.SectionSuffix.get(SectionType))
130 OutputFile = os.path.join(OutputPath, ModuleName + 'SEC' + Num + Ffs.SectionSuffix.get(SectionType))
158 OutputFile = os.path.join( OutputPath, ModuleName + 'SEC' + str(Num) + Ffs.SectionSuffix.get(SectionType))
176 OutputFile = os.path.join( OutputPath, ModuleName + 'SEC' + str(Num) + Ffs.SectionSuffix.get(SectionType))
185 OutputFile = os.path.join(OutputPath, ModuleName + 'SEC' + Num + Ffs.SectionSuffix.get(SectionType))
205 OutputFile = os.path.join( OutputPath, ModuleName + 'SEC' + str(Num) + Ffs.SectionSuffix.get(SectionType))
223 """ Copy Map file to FFS output path """
226 OutputFile = os.path.join( OutputPath, ModuleName + 'SEC' + Num + Ffs.SectionSuffix.get(SectionType))
    [all...]
FvImageSection.py 20 from Ffs import Ffs
77 OutputFile = os.path.join(OutputPath, ModuleName + 'SEC' + Num + Ffs.SectionSuffix.get("FV_IMAGE"))
84 #The max alignment supported by FFS is 64K.
121 #The max alignment supported by FFS is 64K.
135 OutputFile = os.path.join(OutputPath, ModuleName + 'SEC' + SecNum + Ffs.SectionSuffix.get("FV_IMAGE"))
DataSection.py 21 from Ffs import Ffs
68 """Copy Map file to Ffs output"""
112 OutputFile = os.path.join (OutputPath, ModuleName + 'SEC' + SecNum + Ffs.SectionSuffix.get(self.SecType))
DepexSection.py 21 from Ffs import Ffs
FfsFileStatement.py 2 # process FFS generation from FILE statement
18 import Ffs
34 ## generate FFS from FILE
52 # Generate FFS
58 # @retval string Generated FFS file name
165 FfsFileOutput = os.path.join(OutputDir, self.NameGuid + '.ffs')
167 Ffs.Ffs.FdfFvFileTypeToFileType.get(self.FvFileType),
GuidSection.py 20 from Ffs import Ffs
126 Ffs.SectionSuffix['GUIDED']
FdfParser.py     [all...]
Fv.py 23 import Ffs
165 # Update Ffs again
199 #The max alignment supported by FFS is 64K.
FfsInfStatement.py 2 # process FFS generation from INF statement
24 import Ffs
48 ## generate FFS from INF
188 # Set Ffs BaseName, MdouleGuid, ModuleType, Version, OutputPath
327 # Set OutputPath = ${WorkSpace}\Build\Fv\Ffs\${ModuleGuid}+ ${MdouleName}\
406 # Generate FFS
412 # @retval string Generated FFS file name
421 DestFile = os.path.join( self.OutputPath, self.ModuleGuid + '.ffs')
453 # Get the rule of how to generate Ffs file
507 # Get correct rule for generating FFS for this INF
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/VarCheckHiiLib/
VarCheckHiiGenFromFv.c 45 Parse the FFS and find the GUID address.
48 @param Ffs Pointer to the FFS.
50 @param Length The length of FFS.
60 IN VOID *Ffs,
70 if((Ffs == NULL) || (Guid == NULL) || (Length == 0)){
80 if (CompareGuid (Guid, (EFI_GUID *) ((UINT8 *) Ffs + LoopControl))) {
84 // to check whether current FFS includes this Guid or not.
105 According to the known GUID gVfrArrayAttractGuid to get the base address from FFS.
107 @param Ffs Pointer to the FFS.
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/FirmwareVolume/FwVolDxe/
FwVolDxe.inf 38 Ffs.c
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
FirmwareVolumeBufferLib.h 80 IN EFI_FFS_FILE_HEADER *Ffs
85 IN EFI_FFS_FILE_HEADER *Ffs
FirmwareVolumeBuffer.c 102 SourceFfsFile - Input FFS file to replace
152 SourceFfsFile - Input FFS file to replace
238 SourceFfsFile - Input FFS file to update the checksum for
296 SourceFfsFile - Input FFS file to replace
573 Adds a new FFS file
578 File - FFS file to add to Fv
671 Adds a new FFS file. Extends the firmware volume if needed.
725 Adds a new FFS VFT (Volume Top File) file. In other words, adds the
731 File - FFS file to add to Fv
849 IN EFI_FFS_FILE_HEADER *Ffs
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
FvImage.py 221 Ffs = self.UnDispatchedFfsDict[FfsID]
222 if Ffs.Type == 0x03:
225 if Ffs.Type == 0x04:
228 if Ffs.Type == 0x05:
231 if Ffs.Guid.lower() == gPeiAprioriFileNameGuid:
234 if Ffs.Guid.lower() == gAprioriGuid:
350 Ffs = self.UnDispatchedFfsDict[FfsID]
351 if Ffs.Type == 0x07:
354 for Section in Ffs.Sections.values():
381 # Append New Ffs
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/
DxeMain.inf 63 FwVol/Ffs.c
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/build/
BuildReport.py     [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/
Makefile 136 $(BASE_TOOLS_PATH)\Source\Python\GenFds\Ffs.py \
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
FdfParserLite.py     [all...]

Completed in 803 milliseconds