Skip to content
Open
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 flash/snippets/flash-qdl.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ and verify a successful flashing process.
qdl --storage ufs prog_firehose_ddr.elf rawprogram*.xml patch*.xml
```

```bash EFS
```bash EMMC
qdl --storage emmc prog_firehose_ddr.elf rawprogram*.xml patch*.xml
```
</CodeGroup>
Expand Down
2 changes: 1 addition & 1 deletion flash/snippets/udev.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ when encountering permission issues while detecting the device over USB.
- Run the following command to configure the `udev` USB rules for the
Qualcomm manufacturing vendor ID **05c6** on the Linux host
```bash
sudo echo 'SUBSYSTEMS=="usb", ATTRS{idVendor}=="05c6", ATTRS{idProduct}=="9008", MODE="0666", GROUP="plugdev"' >> /etc/udev/rules.d/51-qcom-usb.rules
echo 'SUBSYSTEMS=="usb", ATTRS{idVendor}=="05c6", ATTRS{idProduct}=="9008", MODE="0666", GROUP="plugdev"' | sudo tee /etc/udev/rules.d/51-qcom-usb.rules
```

- Restart the `udev` service for the changes to take effect
Expand Down
Loading