mirror of
				https://github.com/ARM-software/devlib.git
				synced 2025-11-04 16:01:20 +00:00 
			
		
		
		
	utils/ssh: Fix paramiko stdin
Ensure that we open the stdin stream for writing instead of read only.
This commit is contained in:
		@@ -660,7 +660,7 @@ class SshConnection(SshConnectionBase):
 | 
			
		||||
            # Read are not buffered so we will always get the data as soon as
 | 
			
		||||
            # they arrive
 | 
			
		||||
            return (
 | 
			
		||||
                channel.makefile_stdin(),
 | 
			
		||||
                channel.makefile_stdin('w', 0),
 | 
			
		||||
                channel.makefile(),
 | 
			
		||||
                channel.makefile_stderr(),
 | 
			
		||||
            )
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user