示例#1
0
 def __init__(self, section, etype, node):
     Entry_blob.__init__(self, section, etype, node)
     self._convert_fit = fdt_util.GetBool(self._node, 'convert-fit')
     self._ifwi_entries = OrderedDict()
示例#2
0
 def __init__(self, section, etype, node):
     Entry_blob.__init__(self, section, etype, node)
     self.external = True
示例#3
0
 def __init__(self, section, etype, node):
     Entry_blob.__init__(self, section, etype, node)
     if self.HasSibling('intel-fit') is False:
         self.Raise(
             "'intel-fit-ptr' section must have an 'intel-fit' sibling")
 def __init__(self, section, etype, node, blob_fname):
     Entry_blob.__init__(self, section, etype, node)
     self._filename, = self.GetEntryArgsOrProps(
         [EntryArg('%s-path' % blob_fname, str)])
示例#5
0
 def __init__(self, section, etype, node):
     Entry_blob.__init__(self, section, etype, node)
 def __init__(self, section, etype, node):
     Entry_blob.__init__(self, section, etype, node)
     self.elf_fname = 'u-boot'
     self.target_offset = None
示例#7
0
 def __init__(self, section, etype, node):
     Entry_blob.__init__(self, section, etype, node)
     self.elf_fname = 'spl/u-boot-spl'
示例#8
0
 def __init__(self, section, etype, node):
     Entry_blob.__init__(self, section, etype, node)
     self._regions = []
示例#9
0
 def __init__(self, section, etype, node):
     Entry_blob.__init__(self, section, etype, node)
     self._strip = fdt_util.GetBool(self._node, 'strip')
示例#10
0
    def __init__(self, section, etype, node):
        # Put this here to allow entry-docs and help to work without libfdt
        global state
        from binman import state

        Entry_blob.__init__(self, section, etype, node)