1
0
mirror of https://github.com/ARM-software/devlib.git synced 2025-09-06 20:11:53 +01:00

utils/ssh: Add paramiko based scp transfers

Using scp over paramiko allows scp transfers to be treated similarly to
sftp transfers, instead of requiring subprocesses, and provides
the ability to monitor an scp transfer using a callback as can be done
using sftp.
This commit is contained in:
Jonathan Paynter
2020-09-10 13:45:20 +01:00
committed by Marc Bonnici
parent 1d1ba7811d
commit ebf1c1a2e1
2 changed files with 22 additions and 12 deletions

View File

@@ -83,6 +83,7 @@ params = dict(
'pexpect>=3.3', # Send/recieve to/from device
'pyserial', # Serial port interface
'paramiko', # SSH connection
'scp', # SSH connection file transfers
'wrapt', # Basic for construction of decorator functions
'future', # Python 2-3 compatibility
'enum34;python_version<"3.4"', # Enums for Python < 3.4