From eb49ec217e4ba1136eaef5b18b759f6a38f456a5 Mon Sep 17 00:00:00 2001 From: Vadim Kaushan Date: Fri, 31 Jan 2020 18:53:50 +0300 Subject: [PATCH] Pass --csr-json to the Builder --- litex/soc/integration/builder.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/litex/soc/integration/builder.py b/litex/soc/integration/builder.py index 49951d98..06678bcb 100644 --- a/litex/soc/integration/builder.py +++ b/litex/soc/integration/builder.py @@ -211,5 +211,6 @@ def builder_argdict(args): "compile_software": not args.no_compile_software, "compile_gateware": not args.no_compile_gateware, "gateware_toolchain_path": args.gateware_toolchain_path, - "csr_csv": args.csr_csv + "csr_csv": args.csr_csv, + "csr_json": args.csr_json, } -- 2.30.2