aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/fetch/__init__.py
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2008-12-06 11:32:59 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2008-12-06 11:32:59 +0000
commit4ceea8cbc01c04fc1456b8219caf9c2df3d35fd2 (patch)
treec373fd347f7baae0e78f503deaeafadf5c95e553 /lib/bb/fetch/__init__.py
parent42e57e467b8334230436f24dc4bdfff64b52d2b3 (diff)
downloadbitbake-4ceea8cbc01c04fc1456b8219caf9c2df3d35fd2.tar.gz
Add osc fetcher (from Joshua Lock in Poky)
Diffstat (limited to 'lib/bb/fetch/__init__.py')
-rw-r--r--lib/bb/fetch/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/bb/fetch/__init__.py b/lib/bb/fetch/__init__.py
index 99f4b5821..7fe1b8e8f 100644
--- a/lib/bb/fetch/__init__.py
+++ b/lib/bb/fetch/__init__.py
@@ -558,6 +558,7 @@ import ssh
import perforce
import bzr
import hg
+import osc
methods.append(local.Local())
methods.append(wget.Wget())
@@ -569,3 +570,4 @@ methods.append(ssh.SSH())
methods.append(perforce.Perforce())
methods.append(bzr.Bzr())
methods.append(hg.Hg())
+methods.append(osc.Osc())