diff --git a/flash/snippets/flash-qdl.mdx b/flash/snippets/flash-qdl.mdx index 3b523d4..df7a7af 100644 --- a/flash/snippets/flash-qdl.mdx +++ b/flash/snippets/flash-qdl.mdx @@ -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 ``` diff --git a/flash/snippets/udev.mdx b/flash/snippets/udev.mdx index aaa7b74..34582c7 100644 --- a/flash/snippets/udev.mdx +++ b/flash/snippets/udev.mdx @@ -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