Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit 41142b41 authored by Vauban's avatar Vauban
Browse files

Build scripts: Device tree overlay: fix gateware path.

Correct the location of the gateware source code in the script that
generates the device tree overlay for the gateware.
parent 1c8c9d04
No related merge requests found
......@@ -137,7 +137,7 @@ def generate_device_tree_overlays(overlay_dir_path, build_options_list):
print(" Generate Device Tree Overlays")
print("================================================================================\r\n", flush=True)
bitstream_builder_root = os.getcwd()
gateware_dir = os.path.join(bitstream_builder_root, 'sources', 'gateware')
gateware_dir = os.path.join(bitstream_builder_root, 'sources', 'FPGA-design')
work_dir = os.path.join(bitstream_builder_root, 'work')
gather_dtso(gateware_dir, work_dir, build_options_list)
compile_dtso(work_dir)
......
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