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

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
Section.py 96 # @param FfsInf FfsInfStatement object that contains this section data
99 def GenSection(self, OutputPath, GuidName, SecNum, keyStringList, FfsInf = None, Dict = {}):
107 # @param FfsInf FfsInfStatement object that contains file list
113 def GetFileList(FfsInf, FileType, FileExtension, Dict = {}):
125 if FfsInf == None:
130 for File in FfsInf.BinFileList:
131 if File.Arch == "COMMON" or FfsInf.CurrentArch == File.Arch:
132 if File.Type == FileType or (int(FfsInf.PiSpecVersion, 16) >= 0x0001000A \
135 if '*' in FfsInf.TargetOverrideList or File.Target == '*' or File.Target in FfsInf.TargetOverrideList or FfsInf.TargetOverrideList == []:
    [all...]
CompressSection.py 52 # @param FfsInf FfsInfStatement object that contains this section data
56 def GenSection(self, OutputPath, ModuleName, SecNum, KeyStringList, FfsInf = None, Dict = {}):
58 if FfsInf != None:
59 self.CompType = FfsInf.__ExtendMacro__(self.CompType)
60 self.Alignment = FfsInf.__ExtendMacro__(self.Alignment)
67 ReturnSectList, AlignValue = Sect.GenSection(OutputPath, ModuleName, SecIndex, KeyStringList, FfsInf, Dict)
UiSection.py 47 # @param FfsInf FfsInfStatement object that contains this section data
51 def GenSection(self, OutputPath, ModuleName, SecNum, KeyStringList, FfsInf=None, Dict={}):
55 if FfsInf != None:
56 self.Alignment = FfsInf.__ExtendMacro__(self.Alignment)
57 self.StringData = FfsInf.__ExtendMacro__(self.StringData)
58 self.FileName = FfsInf.__ExtendMacro__(self.FileName)
VerSection.py 47 # @param FfsInf FfsInfStatement object that contains this section data
51 def GenSection(self, OutputPath, ModuleName, SecNum, KeyStringList, FfsInf=None, Dict={}):
55 if FfsInf != None:
56 self.Alignment = FfsInf.__ExtendMacro__(self.Alignment)
57 self.BuildNum = FfsInf.__ExtendMacro__(self.BuildNum)
58 self.StringData = FfsInf.__ExtendMacro__(self.StringData)
59 self.FileName = FfsInf.__ExtendMacro__(self.FileName)
EfiSection.py 52 # @param FfsInf FfsInfStatement object that contains this section data
56 def GenSection(self, OutputPath, ModuleName, SecNum, KeyStringList, FfsInf = None, Dict = {}) :
61 if FfsInf != None :
62 InfFileName = FfsInf.InfFileName
63 SectionType = FfsInf.__ExtendMacro__(self.SectionType)
64 Filename = FfsInf.__ExtendMacro__(self.FileName)
65 BuildNum = FfsInf.__ExtendMacro__(self.BuildNum)
66 StringData = FfsInf.__ExtendMacro__(self.StringData)
68 if FfsInf.ModuleType in ('SEC', 'PEI_CORE', 'PEIM') and SectionType in ('TE', 'PE32'):
69 if FfsInf.KeepReloc != None:
    [all...]
GuidSection.py 53 # @param FfsInf FfsInfStatement object that contains this section data
57 def GenSection(self, OutputPath, ModuleName, SecNum, KeyStringList, FfsInf=None, Dict={}):
63 if FfsInf != None:
64 self.Alignment = FfsInf.__ExtendMacro__(self.Alignment)
65 self.NameGuid = FfsInf.__ExtendMacro__(self.NameGuid)
66 self.SectionType = FfsInf.__ExtendMacro__(self.SectionType)
67 self.CurrentArchList = [FfsInf.CurrentArch]
97 ReturnSectList, align = Sect.GenSection(OutputPath, ModuleName, SecIndex, KeyStringList, FfsInf, Dict)
FvImageSection.py 49 # @param FfsInf FfsInfStatement object that contains this section data
53 def GenSection(self, OutputPath, ModuleName, SecNum, KeyStringList, FfsInf = None, Dict = {}):
57 FileList, IsSect = Section.Section.GetFileList(FfsInf, self.FvFileType, self.FvFileExtension)

Completed in 556 milliseconds