Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/docs/avocado-linux/guides/sideloading.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ Make sure your SD card is **NOT** inserted before running the provisioning comma
#### Command

```bash
avocado provision --provision-profile sd -r dev
avocado provision --profile sd -r dev
```

#### Interactive process
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ Build the project and execute the provisioning procedure. This will build the sy

<CodeBlock language="bash" title="Host machine">
{`avocado build
avocado provision -r dev --provision-profile tegraflash`}
avocado provision -r dev --profile tegraflash`}
</CodeBlock>

The procedure will advance through a few steps:
Expand Down
2 changes: 1 addition & 1 deletion src/src/components/ProvisionGuide/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ avocado install --force`

const provisionCommand = resolvedProvisionProfile
? `avocado build
avocado provision -r dev --provision-profile ${resolvedProvisionProfile}`
avocado provision -r dev --profile ${resolvedProvisionProfile}`
: `avocado build
avocado provision -r dev`

Expand Down
Loading