From 22cc4d9fbe39334623ef9fc64b3f4979026ba978 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sat, 5 Mar 2022 16:20:55 +0100 Subject: [PATCH] bin: Remove obsolete stuff --- bin/backup | 3 --- bin/ocd | 1 - bin/st-flash | 5 +---- bin/st-info | 5 +---- 4 files changed, 2 insertions(+), 12 deletions(-) delete mode 100755 bin/backup delete mode 100644 bin/ocd diff --git a/bin/backup b/bin/backup deleted file mode 100755 index 78a3908..0000000 --- a/bin/backup +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash -set -e -rs ~/stm/ campbell:a/stm/ diff --git a/bin/ocd b/bin/ocd deleted file mode 100644 index 3258df1..0000000 --- a/bin/ocd +++ /dev/null @@ -1 +0,0 @@ -openocd -f interface/stlink-v2.cfg -f target/stm32f1x.cfg -c init -c 'arm semihosting enable' -c 'reset halt' -c 'reset run' diff --git a/bin/st-flash b/bin/st-flash index da6239a..3026769 100755 --- a/bin/st-flash +++ b/bin/st-flash @@ -1,5 +1,2 @@ #!/bin/sh -set -e -LD_LIBRARY_PATH=~/stm/stlink -export LD_LIBRARY_PATH -exec ~/stm/stlink/st-flash "$@" +exec ~/stm/stlink/build/Release/bin/st-flash "$@" diff --git a/bin/st-info b/bin/st-info index b23a170..83e9561 100755 --- a/bin/st-info +++ b/bin/st-info @@ -1,5 +1,2 @@ #!/bin/sh -set -e -LD_LIBRARY_PATH=~/stm/stlink -export LD_LIBRARY_PATH -exec ~/stm/stlink/st-info "$@" +exec ~/stm/stlink/build/Release/bin/st-info "$@" -- 2.39.2