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