diff options
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/core/target/ssh.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oeqa/core/target/ssh.py b/meta/lib/oeqa/core/target/ssh.py index aefb576805..461448dbc5 100644 --- a/meta/lib/oeqa/core/target/ssh.py +++ b/meta/lib/oeqa/core/target/ssh.py | |||
@@ -88,6 +88,8 @@ class OESSHTarget(OETarget): | |||
88 | 88 | ||
89 | status, output = self._run(sshCmd, processTimeout, True) | 89 | status, output = self._run(sshCmd, processTimeout, True) |
90 | self.logger.debug('Command: %s\nOutput: %s\n' % (command, output)) | 90 | self.logger.debug('Command: %s\nOutput: %s\n' % (command, output)) |
91 | if (status == 255) and (('No route to host') in output): | ||
92 | self.target_dumper.dump_target() | ||
91 | return (status, output) | 93 | return (status, output) |
92 | 94 | ||
93 | def copyTo(self, localSrc, remoteDst): | 95 | def copyTo(self, localSrc, remoteDst): |