aboutsummaryrefslogtreecommitdiffstats
path: root/host/utils/rfnoc_image_builder.py
diff options
context:
space:
mode:
Diffstat (limited to 'host/utils/rfnoc_image_builder.py')
-rwxr-xr-xhost/utils/rfnoc_image_builder.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/host/utils/rfnoc_image_builder.py b/host/utils/rfnoc_image_builder.py
index 6c41fe6e8..09a26aeb7 100755
--- a/host/utils/rfnoc_image_builder.py
+++ b/host/utils/rfnoc_image_builder.py
@@ -97,6 +97,10 @@ def setup_parser():
help="Open Vivado GUI during the FPGA building process",
action="store_true")
parser.add_argument(
+ "-s", "--save-project",
+ help="Save Vivado project to disk",
+ action="store_true")
+ parser.add_argument(
"-c", "--clean-all",
help="Cleans the IP before a new build",
action="store_true")
@@ -226,6 +230,7 @@ def main():
generate_only=args.generate_only,
clean_all=args.clean_all,
GUI=args.GUI,
+ save_project=args.save_project,
source=source,
source_hash=source_hash.hexdigest(),
output_path=args.image_core_output,