Lines Matching +full:dts +full:- +full:node
1 # SPDX-License-Identifier: GPL-2.0+
28 os.path.join(binman_dir,('test/005_simple.dts')))
30 return dtb.GetNode('/binman/u-boot')
38 entry.Entry.Create(None, self.GetNode(), 'u-boot')
47 entry.Entry.Create(None, self.GetNode(), 'u-boot-spl')
59 Node = collections.namedtuple('Node', ['name', 'path'])
60 node = Node('invalid-name', 'invalid-path')
62 entry.Entry.Create(None, node, node.name)
63 self.assertIn("Unknown entry type 'invalid-name' in node "
64 "'invalid-path'", str(e.exception))
69 Node = collections.namedtuple('Node', ['name', 'parent'])
70 base_node = Node('root', None)
73 sub_node = Node('subnode', base_node)