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

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

* Bump base to pickup dropbear changes
This commit is contained in:
NiLuJe
2018-07-25 20:01:55 +02:00
committed by GitHub
parent a8e4ce8b01
commit 7e97030a5c
2 changed files with 3 additions and 3 deletions

2
base

Submodule base updated: 84b7b51cff...7ab1e3b7c8

View File

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