From: orangeudav Date: Sun, 25 May 2014 21:36:59 +0000 (+0400) Subject: Fix OS X's version detecting X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=bf3d7a0dddb6db7e12f711c7ad8c0ebcf30d64fe;p=fw%2Fstlink Fix OS X's version detecting --- diff --git a/stlinkv1_macosx_driver/README b/stlinkv1_macosx_driver/README index adf3cca..7b47f41 100644 --- a/stlinkv1_macosx_driver/README +++ b/stlinkv1_macosx_driver/README @@ -22,4 +22,11 @@ tar xzvf osx.tar.gz Then, install the driver using: sudo make osx_stlink_shield -no reboot required. \ No newline at end of file +no reboot required. + +P.S. If error `OS X version not supported` occurs. For the latest versions of Mac OS X you may need to change the `osx/install.sh` as follows: +``` +< ISOSXLION=$(sw_vers -productVersion) +--- +> ISOSXLION=$(sw_vers -productVersion | sed -e 's:.[[:digit:]]*$::') +```