From 11ca56717ef76174f67f330ce9c5873f7300a6ca Mon Sep 17 00:00:00 2001 From: Travis Geiselbrecht Date: Mon, 30 Nov 2020 23:22:59 -0800 Subject: [PATCH] [scripts][do-sifive-e] point the script at the current versions of the sifive-e sdk Not ideal to have these hard coded but it beats building them from scratch. --- scripts/do-sifive-e | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/do-sifive-e b/scripts/do-sifive-e index 6b4df718..04017ae6 100755 --- a/scripts/do-sifive-e +++ b/scripts/do-sifive-e @@ -11,11 +11,11 @@ TARGET=`pwd`/build-${PROJECT}/lk.elf $DIR/make-parallel SDK_DIR=${HOME}/src/freedom-e-sdk -OPENOCD_DIR=${SDK_DIR}/riscv-openocd-0.10.0-2018.12.0-x86_64-linux-ubuntu14/bin +OPENOCD_DIR=${SDK_DIR}/riscv-openocd-0.10.0-2020.04.6-x86_64-linux-ubuntu14/bin ${OPENOCD_DIR}/openocd -f ${SDK_DIR}/bsp/sifive-hifive1/openocd.cfg & -${SDK_DIR}/riscv64-unknown-elf-gcc-8.1.0-2019.01.0-x86_64-linux-ubuntu14/bin/riscv64-unknown-elf-gdb \ +${SDK_DIR}/riscv64-unknown-elf-gcc-8.3.0-2020.04.1-x86_64-linux-ubuntu14/bin/riscv64-unknown-elf-gdb \ ${TARGET} \ --batch -ex "set remotetimeout 240" \ -ex "target extended-remote localhost:3333" \