From 03c8253076d7f2fb606310f8e27c989dce230ba5 Mon Sep 17 00:00:00 2001 From: Andreea Andrisan Date: Thu, 18 Apr 2024 11:51:03 +0300 Subject: [PATCH] tools:scripts:mcufla.sh: change maxim openocd repository Because Maxim repositories were made private we can no longer use that link to clone the repo, but was added support for maxim controllers in a release of the openocd repo of analogdevices. Signed-off-by: Andreea Andrisan --- tools/scripts/mcufla.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/scripts/mcufla.sh b/tools/scripts/mcufla.sh index bcdd4b66296..edf786369db 100755 --- a/tools/scripts/mcufla.sh +++ b/tools/scripts/mcufla.sh @@ -111,7 +111,7 @@ build_prerequisites_maxim() { fi if [ ! -d ~/.mcuflash/maxim/openocd ]; then - git clone https://github.com/MaximIntegratedMicros/openocd.git ~/.mcuflash/maxim/openocd && + git clone --recursive -b 0.12.0-1.0.0 https://github.com/analogdevicesinc/openocd.git ~/.mcuflash/maxim/openocd && pushd ~/.mcuflash/maxim/openocd && ./bootstrap && ./configure --enable-cmsis-dap &&