Exemplo n.º 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()
Exemplo n.º 2
0
 def __init__(self, section, etype, node):
     Entry_blob.__init__(self, section, etype, node)
     self.external = True
Exemplo n.º 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")
Exemplo n.º 4
0
 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)])
Exemplo n.º 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
Exemplo n.º 7
0
 def __init__(self, section, etype, node):
     Entry_blob.__init__(self, section, etype, node)
     self.elf_fname = 'spl/u-boot-spl'
Exemplo n.º 8
0
 def __init__(self, section, etype, node):
     Entry_blob.__init__(self, section, etype, node)
     self._regions = []
Exemplo n.º 9
0
 def __init__(self, section, etype, node):
     Entry_blob.__init__(self, section, etype, node)
     self._strip = fdt_util.GetBool(self._node, 'strip')
Exemplo n.º 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)