Searched refs:remotepath (Results 1 – 5 of 5) sorted by relevance
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/ |
| H A D | sshcontrol.py | 152 def copy_to(self, localpath, remotepath): argument 155 command = self.scp + [localpath, '%s@%s:%s' % (self.user, self.ip, remotepath)] 158 def copy_from(self, remotepath, localpath): argument 159 command = self.scp + ['%s@%s:%s' % (self.user, self.ip, remotepath), localpath] 162 def copy_dir_to(self, localpath, remotepath): argument 171 new_dir = os.path.join(remotepath, tmp_dir.lstrip("/")) 178 dst_file = os.path.join(remotepath, tmp_file.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 [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/ |
| H A D | runexported.py | 61 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 D | targetcontrol.py | 83 def copy_to(self, localpath, remotepath): argument 84 return self.connection.copy_to(localpath, remotepath) 86 def copy_from(self, remotepath, localpath): argument 87 return self.connection.copy_from(remotepath, localpath)
|
| /OK3568_Linux_fs/yocto/poky/bitbake/doc/bitbake-user-manual/ |
| H A D | bitbake-user-manual-fetching.rst | 617 - *"remotepath":* 630 Here is an example use of the the ``remotepath`` parameter:: 632 SRC_URI = "p4://user:passwd@example-depot/main;module=source/...;remotepath=keep"
|
| /OK3568_Linux_fs/yocto/poky/documentation/dev-manual/ |
| H A D | common-tasks.rst | 9090 - *copy_to(localpath, remotepath):* 9091 ``scp localpath root@ip:remotepath``. 9093 - *copy_from(remotepath, localpath):* 9094 ``scp root@host:remotepath localpath``.
|