Home
last modified time | relevance | path

Searched refs:remotepath (Results 1 – 5 of 5) sorted by relevance

/openbmc/openbmc/poky/meta/lib/oeqa/utils/
H A Dsshcontrol.py152 def copy_to(self, localpath, remotepath): argument
158 def copy_from(self, remotepath, localpath): argument
162 def copy_dir_to(self, localpath, remotepath): argument
171 new_dir = os.path.join(remotepath, tmp_dir.lstrip("/"))
183 def delete_files(self, remotepath, files): argument
193 cmd = "%s %s" % (cmd, os.path.join(remotepath, f))
198 def delete_dir(self, remotepath): argument
203 cmd = "rmdir %s" % remotepath
207 def delete_dir_structure(self, localpath, remotepath): argument
236 remotedir = os.path.join(remotepath, tmpdir.lstrip("/"))
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/
H A Drunexported.py61 def copy_to(self, localpath, remotepath): argument
62 return self.connection.copy_to(localpath, remotepath)
64 def copy_from(self, remotepath, localpath): argument
65 return self.connection.copy_from(remotepath, localpath)
H A Dtargetcontrol.py79 def copy_to(self, localpath, remotepath): argument
80 return self.connection.copy_to(localpath, remotepath)
82 def copy_from(self, remotepath, localpath): argument
83 return self.connection.copy_from(remotepath, localpath)
/openbmc/openbmc/poky/documentation/dev-manual/
H A Druntime-testing.rst525 - *copy_to(localpath, remotepath):*
526 ``scp localpath root@ip:remotepath``.
528 - *copy_from(remotepath, localpath):*
529 ``scp root@host:remotepath localpath``.
/openbmc/openbmc/poky/bitbake/doc/bitbake-user-manual/
H A Dbitbake-user-manual-fetching.rst625 - *"remotepath":*
638 Here is an example use of the the ``remotepath`` parameter::
640 SRC_URI = "p4://user:passwd@example-depot/main;module=source/...;remotepath=keep"