From: Luke Kenneth Casson Leighton Date: Sat, 13 Nov 2021 17:31:44 +0000 (+0000) Subject: replace github download of nmigen with libre-soc. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b7fbbbd210aa8f556a769a2bd9770e576397251d;p=dev-env-setup.git replace github download of nmigen with libre-soc. add nmigen-boards --- diff --git a/hdl-dev-repos b/hdl-dev-repos index d1751d2..cbc6f21 100755 --- a/hdl-dev-repos +++ b/hdl-dev-repos @@ -8,7 +8,8 @@ runuser $SUDO_USER --preserve-environment -c ' cd /home/$SUDO_USER mkdir -p src cd src -git clone https://github.com/nmigen/nmigen.git +git clone https://git.libre-soc.org/git/nmigen-boards.git +git clone https://git.libre-soc.org/git/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 @@ -21,6 +22,11 @@ cd /home/$SUDO_USER/src/nmigen git tag | xargs git tag -d # very annoying python3 setup.py develop +# nmigen-boards +cd /home/$SUDO_USER/src/nmigen-boards +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 @@ -59,3 +65,4 @@ chgrp -R $SUDO_USER . echo -e " \e[1;91mAll Libre-SOC dev dependenices should now be installed.\e[0m " + diff --git a/hdl-dev-repos-virtualenv b/hdl-dev-repos-virtualenv index ff8b2fa..5d67e0a 100755 --- a/hdl-dev-repos-virtualenv +++ b/hdl-dev-repos-virtualenv @@ -3,7 +3,8 @@ python3 -m venv .env . .env/bin/activate pip3 install nose -git clone https://github.com/nmigen/nmigen.git +git clone https://git.libre-soc.org/git/nmigen-boards.git +git clone https://git.libre-soc.org/git/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 @@ -16,6 +17,11 @@ cd /home/$SUDO_USER/src/nmigen git tag | xargs git tag -d # very annoying python3 setup.py develop +# nmigen-boards +cd /home/$SUDO_USER/src/nmigen-boards +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