summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2014-04-08 10:20:08 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-04-11 18:22:48 +0100
commit7406f9312166b94dea253e2aaf1c6e3b97e8c80d (patch)
tree95b4d666828ce19cbe2f06dd9898e5d3240d732c /documentation/dev-manual
parent285ffd83077a532abacc97ca7fe5041c7c33de91 (diff)
downloadpoky-7406f9312166b94dea253e2aaf1c6e3b97e8c80d.tar.gz
dev-manual: Updates to the "target" class attribute
Fixes [YOCTO #5554] In the "Class Attributes" section I updated several items. (From yocto-docs rev: 8f97671319c4751885e5ec89423a061dd45c6684) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/dev-manual')
-rw-r--r--documentation/dev-manual/dev-manual-common-tasks.xml37
1 files changed, 11 insertions, 26 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index 4a3c020b83..dc61170fbf 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -6009,35 +6009,20 @@
6009 for copying on the target such as small 6009 for copying on the target such as small
6010 files written in C for compilation. 6010 files written in C for compilation.
6011 </para></listitem> 6011 </para></listitem>
6012 <listitem><para><emphasis><filename>qemu</filename>:</emphasis>
6013 Provides access to the
6014 <filename>QemuRunner</filename> object,
6015 which is the class that boots the image.
6016 The <filename>qemu</filename> attribute
6017 provides the following useful attributes:
6018 <itemizedlist>
6019 <listitem><para><emphasis><filename>ip</filename>:</emphasis>
6020 The machine's IP address.
6021 </para></listitem>
6022 <listitem><para><emphasis><filename>host_ip</filename>:</emphasis>
6023 The host IP address, which is only
6024 used by smart tests.
6025 </para></listitem>
6026 </itemizedlist></para></listitem>
6027 <listitem><para><emphasis><filename>target</filename>:</emphasis> 6012 <listitem><para><emphasis><filename>target</filename>:</emphasis>
6028 The <filename>SSHControl</filename> object, 6013 The target controller object used to deploy
6029 which is used for running the following 6014 and start an image on a particular target
6030 commands on the image: 6015 (e.g. QemuTarget, SimpleRemote, and
6016 GummibootTarget).
6017 Tests usually use the following:
6031 <itemizedlist> 6018 <itemizedlist>
6032 <listitem><para><emphasis><filename>host</filename>:</emphasis> 6019 <listitem><para><emphasis><filename>ip</filename>:</emphasis>
6033 Used internally. 6020 The target's IP address.
6034 The tests do not use this command.
6035 </para></listitem> 6021 </para></listitem>
6036 <listitem><para><emphasis><filename>timeout</filename>:</emphasis> 6022 <listitem><para><emphasis><filename>server_ip</filename>:</emphasis>
6037 A global timeout for commands run on 6023 The host's IP address, which is
6038 the target for the instance of a 6024 usually used by the "smart" test
6039 test. 6025 suite.
6040 The default is 300 seconds.
6041 </para></listitem> 6026 </para></listitem>
6042 <listitem><para><emphasis><filename>run(cmd, timeout=None)</filename>:</emphasis> 6027 <listitem><para><emphasis><filename>run(cmd, timeout=None)</filename>:</emphasis>
6043 The single, most used method. 6028 The single, most used method.