openlane link pointing to dineshannaya/openlane
diff --git a/README.md b/README.md index 3b02b12..38d9566 100644 --- a/README.md +++ b/README.md
@@ -531,7 +531,7 @@ export CARAVEL_ROOT=<Carvel Installed Path> export OPENLANE_ROOT=<OpenLane Installed Path> export PDK_ROOT=<PDK Installed Path> - export IMAGE_NAME=efabless/openlane:rc7 + export IMAGE_NAME=dineshannayya/openlane:rc7 ``` # Tests preparation @@ -548,7 +548,11 @@ Examples: ``` sh make verify-wb_port - make verify-risc_hello + make verify-risc_boot + make verify-user_uart + make verify-user_spi + make verify-user_i2cm + make verify-user_risc_boot ``` # Tool Sets @@ -592,6 +596,11 @@ * Icarus Verilog version 12.0 (devel) (s20150603-1107-ga446c34d) * Yosys 0.9+4081 (git sha1 b6721aa9, clang 10.0.0-4ubuntu1 -fPIC -Os) +We have modified these openlane changes in our git repo, you can use from these path + git clone https://github.com/dineshannayya/openlane.git + docker pull dineshannayya/openlane:rc7 + + ## Contacts
diff --git a/openlane/Makefile b/openlane/Makefile index c85d10d..99b2d73 100644 --- a/openlane/Makefile +++ b/openlane/Makefile
@@ -18,8 +18,8 @@ CONFIG = $(foreach block,$(BLOCKS), ./$(block)/config.tcl) CLEAN = $(foreach block,$(BLOCKS), clean-$(block)) -OPENLANE_TAG ?= v0.15 -OPENLANE_IMAGE_NAME ?= efabless/openlane:$(OPENLANE_TAG) +OPENLANE_TAG ?= rc7 +OPENLANE_IMAGE_NAME ?= dineshannayya/openlane:$(OPENLANE_TAG) OPENLANE_BASIC_COMMAND = "cd /project/openlane && flow.tcl -design ./$* -save_path .. -save -tag $* -overwrite" OPENLANE_INTERACTIVE_COMMAND = "cd /project/openlane && flow.tcl -it -file ./$*/interactive.tcl -design ./$* -save_path .. -save -tag $* -overwrite" @@ -67,7 +67,7 @@ @echo "Please export OPENLANE_ROOT" @exit 1 endif - git clone https://github.com/efabless/openlane.git --branch=$(OPENLANE_TAG) --depth=1 $(OPENLANE_ROOT) && \ + git clone https://github.com/dineshannayya/openlane.git --branch=$(OPENLANE_TAG) --depth=1 $(OPENLANE_ROOT) && \ cd $(OPENLANE_ROOT) && \ make openlane