Searched refs:FfsInf (Results 1 – 7 of 7) sorted by relevance
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/ |
D | Section.py | 99 def GenSection(self, OutputPath, GuidName, SecNum, keyStringList, FfsInf = None, Dict = {}): argument 113 def GetFileList(FfsInf, FileType, FileExtension, Dict = {}): argument 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.TargetOverrideL… 136 FileList.append(FfsInf.PatchEfiFile(File.Path, File.Type)) 138 …of %s specified by INF %s in FDF" %(File.Target, File.File, FfsInf.TargetOverrideList, FfsInf.InfF… 140 …not same with file type \'%s\' from Rule in FDF" %(File.Type, File.File, FfsInf.InfFileName, FileT… [all …]
|
D | EfiSection.py | 56 def GenSection(self, OutputPath, ModuleName, SecNum, KeyStringList, FfsInf = None, Dict = {}) : argument 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: 70 NoStrip = FfsInf.KeepReloc [all …]
|
D | VerSection.py | 51 def GenSection(self, OutputPath, ModuleName, SecNum, KeyStringList, FfsInf=None, Dict={}): argument 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)
|
D | UiSection.py | 51 def GenSection(self, OutputPath, ModuleName, SecNum, KeyStringList, FfsInf=None, Dict={}): argument 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)
|
D | CompressSection.py | 56 def GenSection(self, OutputPath, ModuleName, SecNum, KeyStringList, FfsInf = None, Dict = {}): argument 58 if FfsInf != None: 59 self.CompType = FfsInf.__ExtendMacro__(self.CompType) 60 self.Alignment = FfsInf.__ExtendMacro__(self.Alignment) 67 …ctList, AlignValue = Sect.GenSection(OutputPath, ModuleName, SecIndex, KeyStringList, FfsInf, Dict)
|
D | GuidSection.py | 57 def GenSection(self, OutputPath, ModuleName, SecNum, KeyStringList, FfsInf=None, Dict={}): argument 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 …urnSectList, align = Sect.GenSection(OutputPath, ModuleName, SecIndex, KeyStringList, FfsInf, Dict)
|
D | FvImageSection.py | 53 def GenSection(self, OutputPath, ModuleName, SecNum, KeyStringList, FfsInf = None, Dict = {}): argument 57 … FileList, IsSect = Section.Section.GetFileList(FfsInf, self.FvFileType, self.FvFileExtension)
|