Lines Matching full:node
26 _node: Node object that contains the section definition in device tree
50 def __init__(self, name, parent_section, node, image, test=False): argument
58 self._node = node
77 """Read properties from the section node"""
102 for node in self._node.subnodes:
103 if node.name == 'hash':
105 entry = Entry.Create(self, node)
107 self._entries[node.name] = entry
194 Full path of the node for this image
435 This uses a phandle to look up a node and and find the entry
446 node = self._node.GetFdt().LookupPhandle(phandle)
447 if not node:
448 source_entry.Raise("Cannot find node for phandle %d" % phandle)
450 if entry._node == node:
452 source_entry.Raise("Cannot find entry for node '%s'" % node.name)