Remove duplication of code, chroot-deps are in coriolis2-chroot script
[dev-env-setup.git] / hdl-dev-repos
index f570b2a747124f7ddaaca802594424c48c01d9a7..474a6dfa8d10a3a03f1c85646d79482b5e35e7a3 100755 (executable)
@@ -12,19 +12,26 @@ cd /home/$MYNAME
 mkdir src
 cd src
 git clone https://github.com/nmigen/nmigen.git
-git clone https://git.libre-riscv.org/git/nmutil.git
-git clone https://git.libre-riscv.org/git/ieee754fpu.git
-git clone https://git.libre-riscv.org/git/soc.git
+git clone https://git.libre-soc.org/git/nmutil.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 /home/$MYNAME/src/nmigen
 python3 setup.py develop
-python3 setup.py test
 cd ../nmutil
 python3 setup.py develop
 cd ../ieee754fpu
 git submodule update --init --recursive
 python3 setup.py develop
+cd ../nmigen-soc
+python3 setup.py develop
 cd ../soc
 git submodule update --init --recursive
 python3 setup.py develop
 cd ../
+chown -R $MYNAME .
+chgrp -R $MYNAME .
+echo -e "
+\e[1;91mAll Libre-SOC dev dependenices should now be installed.\e[0m
+"