summaryrefslogtreecommitdiffstats
path: root/src/doc/src/shared/detect-sd-card-device-name.qdocinc
diff options
context:
space:
mode:
authorTopi Reinio <topi.reinio@theqtcompany.com>2016-06-09 14:31:02 +0200
committerTopi Reiniƶ <topi.reinio@theqtcompany.com>2016-06-10 08:47:54 +0000
commit46c917b4ed95b8770d5d5818b84784ed2be38a11 (patch)
tree058cf4bd6e63a4534f509844952a654be78dd3d0 /src/doc/src/shared/detect-sd-card-device-name.qdocinc
parentefdb4637781e703aebce519a71e7eca5fd996ad0 (diff)
Doc: Add documentation for Intel NUC
Task-number: QTBUG-53889 Change-Id: I2698ea1e9ee1e95a8ec863cdf8c5e3737ccb8e81 Reviewed-by: Gatis Paeglis <gatis.paeglis@qt.io> Reviewed-by: Teemu Holappa <teemu.holappa@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.qdocinc22
1 files changed, 22 insertions, 0 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 d934c60..7af98a5 100644
--- a/src/doc/src/shared/detect-sd-card-device-name.qdocinc
+++ b/src/doc/src/shared/detect-sd-card-device-name.qdocinc
@@ -42,6 +42,28 @@
//! [instructions]
+//! [instructions-usbdevice]
+ Plug in the USB storage device to the development host,
+ and use the following command on Linux to find out its device name:
+
+ \badcode
+ lsblk -d
+ \endcode
+
+ Removable devices such as flash drives have the value '1' in
+ the \e RM column. The full device path is \c {/dev/} followed by
+ the name.
+
+ On Windows, use the following command to get the 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-usbdevice]
+
//! [unmount]
\badcode
umount /dev/<device_name>