Lines Matching full:path
35 dt_prop(compat PATH "/soc" PROPERTY compatible INDEX 0)
48 sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'python-devicetree',
73 help="path to write the CMake property file")
75 help="path to read the pickled edtlib.EDT object from")
105 path = chosen_nodes[node].path
106 cmake_props.append(f'"DT_CHOSEN|{node}" "{path}"')
111 path = node.path
113 cmake_props.append(f'"DT_ALIAS|{alias}" "{path}"')
117 cmake_props.append(f'"DT_NODE|{node.path}" TRUE')
120 cmake_props.append(f'"DT_NODELABEL|{label}" "{node.path}"')
134 # with a name like 'DT_PROP|<path>|<property>'.
135 cmake_prop = f'DT_PROP|{node.path}|{item}'
141 compatible2paths[comp].append(node.path)
144 cmake_props.append(f'"DT_REG|{node.path}|NUM" "{len(node.regs)}"')
159 cmake_props.append(f'"DT_REG|{node.path}|ADDR" "{cmake_addr}"')
160 cmake_props.append(f'"DT_REG|{node.path}|SIZE" "{cmake_size}"')
164 for path in compatible2paths[comp]:
165 cmake_path = f'{cmake_path}{path};'