summaryrefslogtreecommitdiffstats
path: root/src/doc/src/shared/detect-sd-card-device-name.qdocinc
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@theqtcompany.com>2016-04-06 13:14:38 +0300
committerSamuli Piippo <samuli.piippo@theqtcompany.com>2016-04-06 13:14:38 +0300
commita0bf675e93bf642b2317805dbe4778afab293f42 (patch)
treeec49043d584c8f1b95c7d7818bd2f4af153da0ea /src/doc/src/shared/detect-sd-card-device-name.qdocinc
parent30fb87376e85d7965ae73a11290d7eb4cb8e2d75 (diff)
parentf10a492c8711d881da99554ca9a9fcd988080d3a (diff)
Merge remote-tracking branch 'origin/5.6' into dev
* origin/5.6: Doc: ChangeLog for 5.6.0 Doc: Fix small inconsistency for tree element separator. Doc: Update which Yocto release is used. Doc: Clarify GPU options in i.MX6 boards Doc: Also support Windows as a development host system. Doc: Remove duplicated file. Revert "Device settings UI." Doc: Add note about resetting U-Boot env. doc: update toradex u-boot commands doc: update kontron board instructions doc: update yocto documentation Doc: List the 3rdparty components used by the Qt add-ons Change-Id: I7850f35fb8f80052517f2e624f0afca61f108a4b
Diffstat (limited to 'src/doc/src/shared/detect-sd-card-device-name.qdocinc')
-rw-r--r--src/doc/src/shared/detect-sd-card-device-name.qdocinc14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/doc/src/shared/detect-sd-card-device-name.qdocinc b/src/doc/src/shared/detect-sd-card-device-name.qdocinc
index dbc1a64..d934c60 100644
--- a/src/doc/src/shared/detect-sd-card-device-name.qdocinc
+++ b/src/doc/src/shared/detect-sd-card-device-name.qdocinc
@@ -19,7 +19,7 @@
/*!
//! [instructions]
Plug in the SD card or reader to the development host,
- and use the following command to find out its device name:
+ and use the following command on Linux to find out its device name:
\badcode
lsblk -d
@@ -28,12 +28,18 @@
Removable devices such as SD cards have the value '1' in
the \e RM column.
- \warning Make sure to select the correct device, because selecting
- the wrong one can result in a wiped hard drive.
-
Typical device names for SD cards include \c {sdb} and
\c {mmcblk0}. The full device path is \c {/dev/} followed by
the name.
+
+ On Windows, use the following command to get the SD cards device name:
+ \badcode
+ wmic logicaldisk where "drivetype=2 and access=0" get deviceid, volumename
+ \endcode
+
+ \warning Make sure to select the correct device, because selecting
+ the wrong one can result in a wiped hard drive.
+
//! [instructions]
//! [unmount]