-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Debian packages (now installs to /usr/local); add install instruc…
…tions to README; consistent version naming; Update to Fedora33 - Fix Debian packages (now installs to /usr/local) - Add install instructions to README - Consistent version naming - Update Fedora to 33
- Loading branch information
Showing
5 changed files
with
53 additions
and
40 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
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 |
---|---|---|
@@ -1,3 +1,35 @@ | ||
# Latest OpenOCD Builds | ||
|
||
Automated weekly builds of the latest OpenOCD from http://openocd.zylin.com/openocd.git. | ||
Automated builds of the latest OpenOCD from http://openocd.zylin.com/openocd.git. | ||
|
||
## Installation | ||
|
||
### Debian/Ubuntu | ||
|
||
Download latest `*.deb` Package from [Releases](https://github.com/rleh/openocd-build/releases) (usually `*.amd64.deb` on x86 computers; `*.arm64.deb` is e.g. for Raspberry Pi). | ||
|
||
```bash | ||
# Install Package (replace the file name with the one you downloaded) | ||
sudo dpkg -i openocd-master-20210327.0054.amd64.deb | ||
|
||
# Install missing dependencies: | ||
sudo apt install -f | ||
``` | ||
|
||
### Fedora/CentOS/... | ||
|
||
Download latest `*.rpm` Package from [Releases](https://github.com/rleh/openocd-build/releases). | ||
|
||
```bash | ||
# Install Package (replace the file name with the one you downloaded) | ||
sudo dnf install openocd-master-20210327.0054.x86_64.rpm | ||
``` | ||
|
||
|
||
## Usage | ||
|
||
You can test the installation by letting OpenOCD display its version: | ||
|
||
```bash | ||
openocd --version | ||
``` |
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
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
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