diff options
Diffstat (limited to 'stlinkv1_macos_driver/install.sh')
-rw-r--r-- | stlinkv1_macos_driver/install.sh | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/stlinkv1_macos_driver/install.sh b/stlinkv1_macos_driver/install.sh deleted file mode 100644 index 5716281..0000000 --- a/stlinkv1_macos_driver/install.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -ISMACOS=$(sw_vers -productVersion) -case $ISMACOS in -10.14*) - KEXT="stlink_shield_10_14.kext" - ;; -10.15*) - KEXT="stlink_shield_10_15.kext" - ;; -*) - echo "OS X version not supported." - exit 1 - ;; -esac -chown -R root:wheel $KEXT/ -cp -R $KEXT /Library/Extensions/stlink_shield.kext -kextload -v /Library/Extensions/stlink_shield.kext -touch /Library/Extensions |