From patchwork Thu Jan 31 18:12:10 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel,for-1.16,3/3] ssh.py: add example SRC_URI Date: Thu, 31 Jan 2013 18:12:10 -0000 From: Martin Jansa X-Patchwork-Id: 43767 Message-Id: <1359655930-1404-3-git-send-email-Martin.Jansa@gmail.com> To: bitbake-devel@lists.openembedded.org Cc: Martin Jansa From: Martin Jansa Signed-off-by: Martin Jansa Signed-off-by: Richard Purdie --- lib/bb/fetch2/ssh.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/bb/fetch2/ssh.py b/lib/bb/fetch2/ssh.py index 721fb35..8b5acbf 100644 --- a/lib/bb/fetch2/ssh.py +++ b/lib/bb/fetch2/ssh.py @@ -10,6 +10,12 @@ IETF secsh internet draft: Currently does not support the sftp parameters, as this uses scp Also does not support the 'fingerprint' connection parameter. + Please note that '/' is used as host, path separator not ':' as you may + be used to, also '~' can be used to specify user HOME, but again after '/' + + Example SRC_URI: + SRC_URI = "ssh://user@host.example.com/dir/path/file.txt" + SRC_URI = "ssh://user@host.example.com/~/file.txt" ''' # Copyright (C) 2006 OpenedHand Ltd.