Fix scp & sftp on Kobo/Kindle (#4108)

* Update dropbear path for the new, non-multicall binary

* Bump base to pickup dropbear changes
pull/4109/head
NiLuJe 6 years ago committed by GitHub
parent a8e4ce8b01
commit 7e97030a5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1 +1 @@
Subproject commit 84b7b51cff5ad43cab2b95b06f60e4e7b34a5a29 Subproject commit 7ab1e3b7c8aa6187432b2b54d738a78b034781b1

@ -14,7 +14,7 @@ local T = require("ffi/util").template
-- reads the authorized_keys file from the relative path: settings/SSH/authorized_keys -- reads the authorized_keys file from the relative path: settings/SSH/authorized_keys
local path = DataStorage:getFullDataDir() local path = DataStorage:getFullDataDir()
if not util.pathExists("dropbearmulti") then if not util.pathExists("dropbear") then
return { disabled = true, } return { disabled = true, }
end end
@ -31,7 +31,7 @@ end
function SSH:start() function SSH:start()
local cmd = string.format("%s %s %s %s%s %s", local cmd = string.format("%s %s %s %s%s %s",
"./dropbearmulti dropbear", "./dropbear",
"-E", "-E",
"-R", "-R",
"-p", self.SSH_port, "-p", self.SSH_port,

Loading…
Cancel
Save