-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
For Windows, you can download the latest prebuilt release [here](https://github.com/stacksmashing/openocd-tamarin/releases/tag/latest). | ||
|
||
For macOS, we prepared a custom homebrew tap, and so if you have Homebrew installed you can just run: | ||
|
||
``` | ||
brew tap stacksmashing/homebrew-tap | ||
brew install --HEAD stacksmashing/tap/openocd-tamarin | ||
``` | ||
|
||
If you need to update the openocd version, run: | ||
|
||
``` | ||
brew upgrade stacksmashing/tap/openocd-tamarin --fetch-HEAD | ||
``` | ||
|
||
For Linux, you most probably need to build OpenOCD from source, our Github repository with Faultier compatibility can be found [here](https://github.com/stacksmashing/openocd-tamarin)! | ||
|
||
On Linux you will also need a udev rule so that your user can access Faultier. For example: | ||
|
||
``` | ||
SUBSYSTEM=="usb", ATTR{idVendor}=="2B3E", ATTR{idProduct}=="2343", MODE="0666" | ||
``` | ||
in /etc/udev/rules.d/99-faultier.conf. Reboot after adding this line to make sure the changes take effect. Note that this will grant any user on the system access to Faultier. | ||
|