add c4m-jtag to required dependencies
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Thu, 4 Mar 2021 10:02:32 +0000 (10:02 +0000)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Thu, 4 Mar 2021 10:02:32 +0000 (10:02 +0000)
hdl-dev-repos
hdl-dev-repos-virtualenv

index 255692bd91bdcd42b18ebd608787de77a23e01eb..4116609363e15544369631108174159cf22e774c 100755 (executable)
@@ -9,6 +9,7 @@ cd /home/$SUDO_USER
 mkdir src
 cd src
 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/ieee754fpu.git
 git clone https://git.libre-soc.org/git/nmigen-soc.git
@@ -16,6 +17,8 @@ git clone https://git.libre-soc.org/git/soc.git
 '
 cd /home/$SUDO_USER/src/nmigen
 python3 setup.py develop
+cd ../c4m-jtag
+python3 setup.py develop
 cd ../nmutil
 python3 setup.py develop
 cd ../ieee754fpu
index 2dde08af068f5f96836b0a8785f0d7b3fa017716..ab287bfabca6e26ee2c928a878d3208cb798b99c 100755 (executable)
@@ -4,6 +4,7 @@ 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/ieee754fpu.git
 git clone https://git.libre-soc.org/git/nmigen-soc.git
@@ -13,6 +14,8 @@ cd nmigen
 python3 setup.py develop
 cd ../nmutil
 python3 setup.py develop
+cd ../c4m-jtag
+python3 setup.py develop
 cd ../ieee754fpu
 git submodule update --init --recursive
 python3 setup.py develop