Home
last modified time | relevance | path

Searched refs:FfsInf (Results 1 – 7 of 7) sorted by relevance

/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
DSection.py99 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 …]
DEfiSection.py56 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 …]
DVerSection.py51 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)
DCompressSection.py56 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)
DUiSection.py51 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)
DGuidSection.py56 def GenSection(self, OutputPath, ModuleName, SecNum, KeyStringList, FfsInf=None, Dict={}): argument
62 if FfsInf != None:
63 self.Alignment = FfsInf.__ExtendMacro__(self.Alignment)
64 self.NameGuid = FfsInf.__ExtendMacro__(self.NameGuid)
65 self.SectionType = FfsInf.__ExtendMacro__(self.SectionType)
66 self.CurrentArchList = [FfsInf.CurrentArch]
96 …urnSectList, align = Sect.GenSection(OutputPath, ModuleName, SecIndex, KeyStringList, FfsInf, Dict)
DFvImageSection.py53 def GenSection(self, OutputPath, ModuleName, SecNum, KeyStringList, FfsInf = None, Dict = {}): argument
57 … FileList, IsSect = Section.Section.GetFileList(FfsInf, self.FvFileType, self.FvFileExtension)