diff --git a/example_designs/make.py b/example_designs/make.py index 724ab9e..cd15ecc 100644 --- a/example_designs/make.py +++ b/example_designs/make.py @@ -127,7 +127,6 @@ System Clk: {} MHz if actions["build-bitstream"]: actions["build-csr-csv"] = True actions["build-bitstream"] = True - actions["load-bitstream"] = True if actions["clean"]: subprocess.call(["rm", "-rf", "build/*"]) diff --git a/test/Makefile b/test/Makefile index 1682923..702512a 100644 --- a/test/Makefile +++ b/test/Makefile @@ -31,3 +31,9 @@ icmp_tb: etherbone_tb: $(CMD) etherbone_tb.py + +example_designs: + cd ../example_designs && $(PYTHON) make.py -t base -p kc705 -Ob run False build-bitstream + cd ../example_designs && $(PYTHON) make.py -t udp -p kc705 -Ob run False build-bitstream + cd ../example_designs && $(PYTHON) make.py -t etherbone -p kc705 -Ob run False build-bitstream + cd ../example_designs && $(PYTHON) make.py -t tty -p kc705 -Ob run False build-bitstream