summaryrefslogtreecommitdiffstats
path: root/lib/bb/__init__.py
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2006-04-15 22:52:28 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2006-04-15 22:52:28 +0000
commitb03a424879367fd4118f60abda7f78bc5f27b957 (patch)
tree22bb4fe4d2a558db0a78d86f2be8492b280c0e77 /lib/bb/__init__.py
parent67e3bddeb1dc82ab58a856b9d763b21858b1c819 (diff)
downloadbitbake-b03a424879367fd4118f60abda7f78bc5f27b957.tar.gz
bitbake/lib/bb/data.py:
bitbake/lib/bb/__init__.py: bitbake/lib/bb/data_smart.py: bitbake/lib/bb/cache.py: bitbake/lib/bb/shell.py: bitbake/bin/bitbake: * Major cache refactoring. Change the cache to store only the data bitbake needs for dependency calculations instead of all the metadata. * Separate the cache code into its own file. * Update the rest of the code to work with the cache changes. * Temporarily break the shell's poke command.
Diffstat (limited to 'lib/bb/__init__.py')
-rw-r--r--lib/bb/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/bb/__init__.py b/lib/bb/__init__.py
index 1206905af..449f3bc81 100644
--- a/lib/bb/__init__.py
+++ b/lib/bb/__init__.py
@@ -61,7 +61,8 @@ __all__ = [
"build",
"fetch",
"manifest",
- "methodpool"
+ "methodpool",
+ "cache",
]
whitespace = '\t\n\x0b\x0c\r '