diff options
Diffstat (limited to 'bitbake/lib/bb/fetch/ssh.py')
-rw-r--r-- | bitbake/lib/bb/fetch/ssh.py | 46 |
1 files changed, 24 insertions, 22 deletions
diff --git a/bitbake/lib/bb/fetch/ssh.py b/bitbake/lib/bb/fetch/ssh.py index e5f69e33e7..81a9892dcc 100644 --- a/bitbake/lib/bb/fetch/ssh.py +++ b/bitbake/lib/bb/fetch/ssh.py | |||
@@ -1,4 +1,3 @@ | |||
1 | #!/usr/bin/env python | ||
2 | # ex:ts=4:sw=4:sts=4:et | 1 | # ex:ts=4:sw=4:sts=4:et |
3 | # -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- | 2 | # -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- |
4 | ''' | 3 | ''' |
@@ -11,29 +10,32 @@ IETF secsh internet draft: | |||
11 | Currently does not support the sftp parameters, as this uses scp | 10 | Currently does not support the sftp parameters, as this uses scp |
12 | Also does not support the 'fingerprint' connection parameter. | 11 | Also does not support the 'fingerprint' connection parameter. |
13 | 12 | ||
14 | Copyright (C) 2006 OpenedHand Ltd. | 13 | ''' |
15 | |||
16 | Based in part on svk.py: | ||
17 | Copyright (C) 2006 Holger Hans Peter Freyther | ||
18 | Based on svn.py: | ||
19 | Copyright (C) 2003, 2004 Chris Larson | ||
20 | Based on functions from the base bb module: | ||
21 | Copyright 2003 Holger Schurig | ||
22 | |||
23 | |||
24 | This program is free software; you can redistribute it and/or modify it under | ||
25 | the terms of the GNU General Public License as published by the Free Software | ||
26 | Foundation; either version 2 of the License, or (at your option) any later | ||
27 | version. | ||
28 | 14 | ||
29 | This program is distributed in the hope that it will be useful, but WITHOUT | 15 | # Copyright (C) 2006 OpenedHand Ltd. |
30 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | 16 | # |
31 | FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. | 17 | # |
18 | # Based in part on svk.py: | ||
19 | # Copyright (C) 2006 Holger Hans Peter Freyther | ||
20 | # Based on svn.py: | ||
21 | # Copyright (C) 2003, 2004 Chris Larson | ||
22 | # Based on functions from the base bb module: | ||
23 | # Copyright 2003 Holger Schurig | ||
24 | # | ||
25 | # | ||
26 | # This program is free software; you can redistribute it and/or modify | ||
27 | # it under the terms of the GNU General Public License version 2 as | ||
28 | # published by the Free Software Foundation. | ||
29 | # | ||
30 | # This program is distributed in the hope that it will be useful, | ||
31 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
32 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
33 | # GNU General Public License for more details. | ||
34 | # | ||
35 | # You should have received a copy of the GNU General Public License along | ||
36 | # with this program; if not, write to the Free Software Foundation, Inc., | ||
37 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
32 | 38 | ||
33 | You should have received a copy of the GNU General Public License along with | ||
34 | this program; if not, write to the Free Software Foundation, Inc., 59 Temple | ||
35 | Place, Suite 330, Boston, MA 02111-1307 USA. | ||
36 | ''' | ||
37 | import re, os | 39 | import re, os |
38 | import bb | 40 | import bb |
39 | from bb import data | 41 | from bb import data |