summaryrefslogtreecommitdiffstats
path: root/lib/bb/fetch2/ssh.py
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2013-01-28 16:56:42 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-01-31 12:46:04 +0000
commitf838af8e7afebf279ffb00a3afa6592f061b703f (patch)
tree4abad6189beff4c36ea2394a95c4a6099420b0da /lib/bb/fetch2/ssh.py
parent88e565855b52e905156d85c3f45b341cddfe2f55 (diff)
downloadbitbake-f838af8e7afebf279ffb00a3afa6592f061b703f.tar.gz
ssh.py: add example SRC_URI
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/fetch2/ssh.py')
-rw-r--r--lib/bb/fetch2/ssh.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/bb/fetch2/ssh.py b/lib/bb/fetch2/ssh.py
index 721fb358b..8b5acbf6d 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.