Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

README: Add installation instructions for Fedora #192

Merged
merged 1 commit into from
May 10, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@ To install `probe-run`, use `cargo install probe-run`.
On Linux, you might have to install `libudev` and `libusb` from your package
manager before installing `probe-run`.

``` console
# ubuntu
$ sudo apt install -y libusb-dev libusb-1.0 libftdi1-dev

# fedora
$ sudo dnf install -y libusbx-devel systemd-devel
```

## Setup

### 1. Set the Cargo runner
Expand Down Expand Up @@ -53,7 +61,7 @@ the --probe option to the `runner` or setting the `${PROBE_RUN_PROBE}` environme
variable with a value containing either `${VID}:${PID}` or `${VID}:${PID}:${SERIAL}`:

```console
probe-run --probe '0483:3748' --chip ${PROBE_RUN_CHIP}
$ probe-run --probe '0483:3748' --chip ${PROBE_RUN_CHIP}
PROBE_RUN_PROBE='1366:0101:123456' cargo run
```

Expand Down