From: Luke Kenneth Casson Leighton Date: Fri, 23 Apr 2021 16:52:40 +0000 (+0100) Subject: update dev-env scripts to include openpower-isa X-Git-Url: https://git.libre-soc.org/?p=dev-env-setup.git;a=commitdiff_plain;h=23b80ea748d5c1a883101e5f06f63403499aeda7 update dev-env scripts to include openpower-isa --- diff --git a/hdl-dev-repos b/hdl-dev-repos index a85d82b..6cd06e4 100755 --- a/hdl-dev-repos +++ b/hdl-dev-repos @@ -11,6 +11,7 @@ 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/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 @@ -21,14 +22,20 @@ cd ../c4m-jtag python3 setup.py develop cd ../nmutil python3 setup.py develop +cd ../openpower-isa +python3 setup.py develop +make svanalysis +make pywriter 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 +make gitupdate python3 setup.py develop +make mkpinmux + cd ../ chown -R $SUDO_USER . chgrp -R $SUDO_USER . diff --git a/hdl-dev-repos-virtualenv b/hdl-dev-repos-virtualenv index 3472ba9..d2cfdff 100755 --- a/hdl-dev-repos-virtualenv +++ b/hdl-dev-repos-virtualenv @@ -6,6 +6,7 @@ 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 @@ -14,6 +15,10 @@ cd nmigen python3 setup.py develop cd ../nmutil python3 setup.py develop +cd ../openpower-isa +python3 setup.py develop +make pywriter +make svanalysis cd ../c4m-jtag python3 setup.py develop cd ../ieee754fpu @@ -26,9 +31,8 @@ python3 setup.py develop cd ../soc make gitupdate python3 setup.py develop -make pywriter make mkpinmux -make svanalysis # comment this out - takes too long. run it manually # nosetests -v --processes=-1 --process-timeout=120 +