Skip to content

Commit

Permalink
Generate dictionaries after build
Browse files Browse the repository at this point in the history
  • Loading branch information
Mario Ruiz committed Nov 25, 2021
1 parent 30d2004 commit 06c1d6e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
5 changes: 4 additions & 1 deletion boards/KV260/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

overlay_name := cv_dfx_4_pr

all: vision_ip pynq_hls project version
all: vision_ip pynq_hls project dict version
@echo
@tput setaf 2 ; echo "Built $(overlay_name) successfully!"; tput sgr0;
@echo
Expand Down Expand Up @@ -36,3 +36,6 @@ version:
zip:
cp LICENSE overlay/LICENSE.txt
zip -r overlay.zip overlay/

dict:
python3 ../../pynq_composable/parser.py --hwh overlay/$(overlay_name).hwh
5 changes: 4 additions & 1 deletion boards/Pynq-Z2/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

overlay_name := cv_dfx_4_pr

all: vision_ip pynq_hls project version
all: vision_ip pynq_hls project dict version
@echo
@tput setaf 2 ; echo "Built $(overlay_name) successfully!"; tput sgr0;
@echo
Expand Down Expand Up @@ -36,3 +36,6 @@ zip:
zip:
cp LICENSE overlay/LICENSE.txt
zip -r overlay.zip overlay/

dict:
python3 ../../pynq_composable/parser.py --hwh overlay/$(overlay_name).hwh
7 changes: 5 additions & 2 deletions boards/Pynq-ZU/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

overlay_name := cv_dfx_4_pr

all: vision_ip pynq_hls project version
all: vision_ip pynq_hls project dict version
@echo
@tput setaf 2 ; echo "Built $(overlay_name) successfully!"; tput sgr0;
@echo
Expand Down Expand Up @@ -35,4 +35,7 @@ version:

zip:
cp LICENSE overlay/LICENSE.txt
zip -r overlay.zip overlay/
zip -r overlay.zip overlay/

dict:
python3 ../../pynq_composable/parser.py --hwh overlay/$(overlay_name).hwh

0 comments on commit 06c1d6e

Please sign in to comment.