Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit 2f4d7f3a authored by Aven Arlington's avatar Aven Arlington
Browse files

Adding a check for device tree compiler

parent 42e49cfd
Branches
Tags
No related merge requests found
......@@ -121,6 +121,10 @@ def check_tool_status_linux():
"The path to the RISC-V toolchain needs to be set in PATH to run this script")
exit()
if shutil.which("dtc") is None:
print("Error: dtc (device-tree-compiler) not found in path")
exit()
# Creates required folders and removes artifacts before beginning
def init_workspace():
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment