From 7db660511e5a0668f244f6a2bffd8a87277bdc12 Mon Sep 17 00:00:00 2001 From: Nikolay Date: Fri, 8 Apr 2016 03:12:48 +0300 Subject: [PATCH 1/3] Beautify + El Capitan confirmation --- stlinkv1_macosx_driver/README | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/stlinkv1_macosx_driver/README b/stlinkv1_macosx_driver/README index 0c78948..b789d24 100644 --- a/stlinkv1_macosx_driver/README +++ b/stlinkv1_macosx_driver/README @@ -17,21 +17,30 @@ Attached to this mail you'll find the osx folder with the source code of the dri invoke the install.sh. First, unpack the osx.tar.gz contents: +```bash tar xzvf osx.tar.gz +``` Then, install the driver using: +```bash sudo make osx_stlink_shield +``` 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: -``` +```bash < ISOSXLION=$(sw_vers -productVersion) --- > ISOSXLION=$(sw_vers -productVersion | sed -e 's:.[[:digit:]]*$::') ``` + FOR OS X 10.10 Yosemite you must force the system to load unsigned kernelextensions +```bash sudo nvram boot-args="kext-dev-mode=1“ +``` reboot the system! + +(Update from another user) FOR OS X 10.11 El Capitan: the Yosemite kext works for my 10.11.4. From 438eafffd51bc90ec433a95db8edfdd2be137e0d Mon Sep 17 00:00:00 2001 From: Nikolay Date: Fri, 8 Apr 2016 03:16:59 +0300 Subject: [PATCH 2/3] renaming the README file to README.md --- stlinkv1_macosx_driver/{README => README.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename stlinkv1_macosx_driver/{README => README.md} (100%) diff --git a/stlinkv1_macosx_driver/README b/stlinkv1_macosx_driver/README.md similarity index 100% rename from stlinkv1_macosx_driver/README rename to stlinkv1_macosx_driver/README.md From 217e854010fde251321d907c0f4a3d48c1d68f87 Mon Sep 17 00:00:00 2001 From: Nikolay Date: Fri, 8 Apr 2016 03:26:30 +0300 Subject: [PATCH 3/3] driver README minor edits --- stlinkv1_macosx_driver/README.md | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/stlinkv1_macosx_driver/README.md b/stlinkv1_macosx_driver/README.md index b789d24..4e6b8c6 100644 --- a/stlinkv1_macosx_driver/README.md +++ b/stlinkv1_macosx_driver/README.md @@ -1,4 +1,5 @@ from: marco.cassinerio@gmail.com + to: texane@gmail.com Hi, @@ -14,9 +15,9 @@ version as well. Attached to this mail you'll find the osx folder with the source code of the driver, both drivers (for 10.6.x and 10.7.x), an install.sh script and the modified Makefile, i only added a line at the end which -invoke the install.sh. +invoke the `install.sh`. -First, unpack the osx.tar.gz contents: +First, unpack the `osx.tar.gz` contents: ```bash tar xzvf osx.tar.gz ``` @@ -35,7 +36,9 @@ P.S. If error `OS X version not supported` occurs. For the latest versions of Ma > ISOSXLION=$(sw_vers -productVersion | sed -e 's:.[[:digit:]]*$::') ``` -FOR OS X 10.10 Yosemite you must force the system to load unsigned kernelextensions +### OS X 10.10 Yosemite + +For OS X 10.10 Yosemite you must force the system to load unsigned kernelextensions ```bash sudo nvram boot-args="kext-dev-mode=1“ @@ -43,4 +46,8 @@ sudo nvram boot-args="kext-dev-mode=1“ reboot the system! -(Update from another user) FOR OS X 10.11 El Capitan: the Yosemite kext works for my 10.11.4. +### OS X 10.11 El Capitan + +(Update from another user) + +For OS X 10.11 El Capitan: the Yosemite kext seems to work (tested on 10.11.04).