diff options
author | Christian Kandeler <christian.kandeler@digia.com> | 2014-02-05 14:44:54 +0100 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@digia.com> | 2014-02-06 10:21:13 +0100 |
commit | 0f9827e4a5270fd0f7f6be09a702707ffbe73663 (patch) | |
tree | 75d6aa2372f0531857f703778061308ec4b808f4 /doc/src/linux-mobile | |
parent | fe13d33907764a03571d10acbc17fb2ac5c83de7 (diff) | |
download | qt-creator-0f9827e4a5270fd0f7f6be09a702707ffbe73663.tar.gz |
Device support: Provide SSH connection parameters in internal variables.
Example use case: User is developing for embedded Linux system without
an SFTP server. Now deployment can be done via a custom process step
using scp without the need to duplicate all the connection data.
Change-Id: Ib1f71080d106864e5f5345fd36f7cc226a515916
Reviewed-by: hjk <hjk121@nokiamail.com>
Diffstat (limited to 'doc/src/linux-mobile')
-rw-r--r-- | doc/src/linux-mobile/linuxdev.qdoc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/src/linux-mobile/linuxdev.qdoc b/doc/src/linux-mobile/linuxdev.qdoc index 24bf4a1f8c..7aeb8ce6c8 100644 --- a/doc/src/linux-mobile/linuxdev.qdoc +++ b/doc/src/linux-mobile/linuxdev.qdoc @@ -76,20 +76,28 @@ \li In the \gui {The device's host name or IP address} field, enter the host name or IP address of the device. + This value will be available in the variable \c %{CurrentDevice:HostAddress}. \li In the \gui {The user name to log into the device} field, enter the user name to log into the device and run the application as. + This value will be available in the variable \c %{CurrentDevice:UserName}. \li In the \gui {The authentication type} field, select whether to use \gui Password or \gui Key authentication, and enter the user's password or the file that contains the user's private key. + The latter will be available in the variable \c %{CurrentDevice:PrivateKeyFile}. \li Click \gui {Next} to create the connection. \endlist + All of these parameters can be edited later, as well as additional ones that the + wizard does not show because there are sensible default values. One of these is + the SSH port number, which is available in the variable \c %{CurrentDevice:SshPort}. + + \li Select \gui Tools > \gui Options > \gui {Build & Run} > \gui Kits > \gui Add to add a kit for building for the device. Select the Qt version, compiler, and device that you added above, and choose |