diff options
| author | Richard Purdie <richard@openedhand.com> | 2007-01-08 23:53:01 +0000 | 
|---|---|---|
| committer | Richard Purdie <richard@openedhand.com> | 2007-01-08 23:53:01 +0000 | 
| commit | f5665d5bfcfb13d01da9e4c7d5046453e80f7baf (patch) | |
| tree | b8908549afaf3006bf3763419711090ac999c2a4 /bitbake/lib/bb/fetch/ssh.py | |
| parent | aec95de5f7dca2afa3a4a0bdb0d4d553c13f680d (diff) | |
| download | poky-f5665d5bfcfb13d01da9e4c7d5046453e80f7baf.tar.gz | |
bitbake: Sync with upstream. 
 * File licence headers were sanitised causing most of the diff. 
 * cooker.py was created from bin/bitbake. 
 * cvs fetcher port option was added
 * The -f force option was fixed to work correctly
 * Multiple entries in rrecrdeps are now handled correctly
   (allows adding do_deploy to image depends)
 
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1129 311d38ba-8fff-0310-9ca6-ca027cbcb966
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 | 
