From: Luke Kenneth Casson Leighton Date: Wed, 6 Jul 2022 19:28:29 +0000 (+0100) Subject: env-var $KESTREL, keep (as much as possible) to 80 chars X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fcfa5bf828b86c4106372fd45d04aa1d9ee7ff99;p=dev-env-setup.git env-var $KESTREL, keep (as much as possible) to 80 chars --- diff --git a/build_kestrel b/build_kestrel index 5fa50eb..eef4c69 100755 --- a/build_kestrel +++ b/build_kestrel @@ -8,11 +8,20 @@ set -e +export KESTREL=/home/$SUDO_USER/src/kestrel echo "Refreshing Python data files from current LibreSoC sources..." cd /home/$SUDO_USER/src/soc -python3 src/soc/simple/issuer_verilog.py --fabric-compat --enable-core --enable-mmu --enable-xics --disable-svp64 --disable-pll --debug dmi external_core_top.v -cp -Rp external_core_top.v /home/src/kestrel/pythondata-cpu-libresoc/pythondata_cpu_libresoc/hdl/external_core_top.v +python3 src/soc/simple/issuer_verilog.py --fabric-compat --enable-core \ + --enable-mmu --enable-xics \ + --disable-svp64 --disable-pll \ + --debug dmi external_core_top.v +cp -Rp external_core_top.v \ + $KESTREL/pythondata-cpu-libresoc/pythondata_cpu_libresoc/hdl/external_core_top.v echo "Building Kestrel..." -cd /home/$SUDO_USER/src/kestrel/litex-boards/litex_boards/targets -./rcs_arctic_tern_bmc_card.py --device=LFE5UM --cpu-type=libresoc --cpu-variant=standard+irq --with-ethernet --with-video --build --nextpnr-seed 1 --sys-clk-freq=50e6 --remote-ip 192.168.1.1 +cd $KESTREL/litex-boards/litex_boards/targets +./rcs_arctic_tern_bmc_card.py --device=LFE5UM --cpu-type=libresoc \ + --cpu-variant=standard+irq \ + --with-ethernet --with-video \ + --build --nextpnr-seed 1 \ + --sys-clk-freq=50e6 --remote-ip 192.168.1.1