Skip to content

Commit cff3deb

Browse files
committed
Document executable requirement
1 parent 52c27a0 commit cff3deb

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

docs/USAGE.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,12 @@ Remoteproc Runtime supports several container engines:
5454

5555
1. **Install the shim and runtime**
5656

57-
Copy `containerd-shim-remoteproc-v1` and `remoteproc-runtime` to a directory in `$PATH` (e.g., `/usr/local/bin`). Containerd discovers the shim by name, exposing it as `io.containerd.remoteproc.v1`.
57+
Install both binaries to a directory in `$PATH`. Containerd discovers the shim by name, exposing it as `io.containerd.remoteproc.v1`.
58+
59+
```sh
60+
install -m 0755 containerd-shim-remoteproc-v1 /usr/local/bin/
61+
install -m 0755 remoteproc-runtime /usr/local/bin/
62+
```
5863

5964
1. **Restart the container engine**
6065

@@ -157,7 +162,11 @@ Remoteproc Runtime supports several container engines:
157162
158163
1. **Install the runtime**
159164
160-
Copy `remoteproc-runtime` to a directory in `$PATH` (e.g., `/usr/local/bin`).
165+
Install the binary to a directory in `$PATH`:
166+
167+
```sh
168+
install -m 0755 remoteproc-runtime /usr/local/bin/
169+
```
161170
162171
1. **Run the image**
163172
@@ -173,7 +182,11 @@ Remoteproc Runtime supports several container engines:
173182
174183
1. **Install the runtime**
175184
176-
Copy `remoteproc-runtime` to a directory in `$PATH` (e.g., `/usr/local/bin`).
185+
Install the binary to a directory in `$PATH`:
186+
187+
```sh
188+
install -m 0755 remoteproc-runtime /usr/local/bin/
189+
```
177190
178191
1. **Prepare an OCI bundle**
179192

0 commit comments

Comments
 (0)