rm-deb-chroot: Added a script for removing the configuration files and the root files...
[dev-env-setup.git] / hdl-dev-repos-virtualenv
index 2dde08af068f5f96836b0a8785f0d7b3fa017716..ff8b2facbefbb2469acb69befc1e1eba5cb0b164 100755 (executable)
@@ -4,22 +4,50 @@ python3 -m venv .env
 pip3 install nose
 
 git clone https://github.com/nmigen/nmigen.git
+git clone https://git.libre-soc.org/git/c4m-jtag.git
 git clone https://git.libre-soc.org/git/nmutil.git
+git clone https://git.libre-soc.org/git/openpower-isa.git
 git clone https://git.libre-soc.org/git/ieee754fpu.git
 git clone https://git.libre-soc.org/git/nmigen-soc.git
 git clone https://git.libre-soc.org/git/soc.git
 
-cd nmigen
+# nmigen
+cd /home/$SUDO_USER/src/nmigen
+git tag | xargs git tag -d # very annoying
 python3 setup.py develop
+
+# nmigen-soc
+cd ../nmigen-soc
+git tag | xargs git tag -d # very annoying
+python3 setup.py develop
+
+# c4m-jtag
+cd ../c4m-jtag
+git tag | xargs git tag -d # very annoying
+python3 setup.py develop
+
+# nmutil
 cd ../nmutil
 python3 setup.py develop
+
+# openpower-isa
+cd ../openpower-isa
+python3 setup.py develop
+make svanalysis
+make pywriter
+make pyfnwriter
+
+# ieee754fpy
 cd ../ieee754fpu
 git submodule update --init --recursive
 python3 setup.py develop
-cd ../nmigen-soc
-python3 setup.py develop
+
+# soc
 cd ../soc
 make gitupdate
 python3 setup.py develop
-python src/soc/decoder/pseudo/pywriter.py
-nosetests -v --processes=-1 --process-timeout=120
+make mkpinmux
+
+# comment this out - takes too long.  run it manually
+# nosetests -v --processes=-1 --process-timeout=120
+