Skip to content
Closed
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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ A simulator for the Linux remoteproc subsystem that creates a fake sysfs interfa
## Build

```bash
go build ./cmd/remoteproc-simulator
mkdir -p dist
go build -o dist/remoteproc-simulator ./cmd/remoteproc-simulator
```

## Test
Expand All @@ -19,7 +20,7 @@ go test ./...
Start the simulator daemon:

```bash
./remoteproc-simulator --root-dir /tmp/fake-root --index 0 --name dsp0
dist/remoteproc-simulator --root-dir /tmp/fake-root --index 0 --name dsp0
```

Control the simulated remote processor via sysfs:
Expand Down
Loading