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.py154 def copy_to(self, localpath, remotepath): argument
157 command = self.scp + [localpath, '%s@%s:%s' % (self.user, self.ip, remotepath)]
160 def copy_from(self, remotepath, localpath): argument
161 command = self.scp + ['%s@%s:%s' % (self.user, self.ip, remotepath), localpath]
164 def copy_dir_to(self, localpath, remotepath): argument
173 new_dir = os.path.join(remotepath, tmp_dir.lstrip("/"))
180 dst_file = os.path.join(remotepath, tmp_file.lstrip("/"))
185 def delete_files(self, remotepath, files): argument
195 cmd = "%s %s" % (cmd, os.path.join(remotepath, f))
200 def delete_dir(self, remotepath): argument
[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/test-manual/
H A Druntime-testing.rst526 - *copy_to(localpath, remotepath):*
527 ``scp localpath root@ip:remotepath``.
529 - *copy_from(remotepath, localpath):*
530 ``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"