summaryrefslogtreecommitdiffstats
path: root/bitbake
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:22 +0000
commit2278a98429585cfcc630da73cc31b4d9c6d2aa14 (patch)
tree7a2c911d5dbad6536d4c4bf4868bf31e0035d646 /bitbake
parent6e9776042b7ae58b1b38924933dbd5d0e7426029 (diff)
downloadpoky-2278a98429585cfcc630da73cc31b4d9c6d2aa14.tar.gz
bitbake: ssh.py: add example SRC_URI
(Bitbake rev: 5aa75f8090c04a9ab479e4dca77fcbb9b41cf463) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/fetch2/ssh.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch2/ssh.py b/bitbake/lib/bb/fetch2/ssh.py
index 721fb358ba..8b5acbf6db 100644
--- a/bitbake/lib/bb/fetch2/ssh.py
+++ b/bitbake/lib/bb/fetch2/ssh.py
@@ -10,6 +10,12 @@ IETF secsh internet draft:
10 Currently does not support the sftp parameters, as this uses scp 10 Currently does not support the sftp parameters, as this uses scp
11 Also does not support the 'fingerprint' connection parameter. 11 Also does not support the 'fingerprint' connection parameter.
12 12
13 Please note that '/' is used as host, path separator not ':' as you may
14 be used to, also '~' can be used to specify user HOME, but again after '/'
15
16 Example SRC_URI:
17 SRC_URI = "ssh://user@host.example.com/dir/path/file.txt"
18 SRC_URI = "ssh://user@host.example.com/~/file.txt"
13''' 19'''
14 20
15# Copyright (C) 2006 OpenedHand Ltd. 21# Copyright (C) 2006 OpenedHand Ltd.