summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2013-01-31 19:12:10 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-03 17:02:08 +0000
commit5aa75f8090c04a9ab479e4dca77fcbb9b41cf463 (patch)
treee2c2269b20b64b42a7c492893463bbf340f0a197
parent6437b324a15e2730a12968beb58c2087aa712f46 (diff)
downloadbitbake-5aa75f8090c04a9ab479e4dca77fcbb9b41cf463.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>
-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.