summaryrefslogtreecommitdiffstats
path: root/src/doc/src/shared/detect-sd-card-device-name.qdocinc
diff options
context:
space:
mode:
authorDavid Schulz <david.schulz@theqtcompany.com>2016-03-07 08:30:16 +0100
committerDavid Schulz <david.schulz@theqtcompany.com>2016-03-10 14:07:24 +0000
commitbd3acc5e0f1214fe164b05d8f0f6d3f609129607 (patch)
tree8311101053469a48a524905b304056a93e2f51c9 /src/doc/src/shared/detect-sd-card-device-name.qdocinc
parent55fdd5ac3bd099dcb098ec07e7b0805b94ae73a1 (diff)
Doc: Also support Windows as a development host system.
Change-Id: Ia8639f5548d6795020f4f3a7dfefabab03760071 Reviewed-by: Topi Reiniƶ <topi.reinio@theqtcompany.com> Reviewed-by: Samuli Piippo <samuli.piippo@theqtcompany.com>
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]