make the cache also work when you use softlinks to the packages - patch courtesy...
[vuplus_bitbake] / ChangeLog
1 Changes in bitbake 1.3.0:
2         - add bitbake interactive shell (bitbake -i)
3         - refactor bitbake utility in OO style
4         - kill default arguments in methods in the bb.data module
5         - kill default arguments in methods in the bb.fetch module
6         - the http/https/ftp fetcher will fail if the to be 
7           downloaded file was not found in DL_DIR (this is needed
8           to avoid unpacking the sourceforge mirror page)
9         - Switch to a cow like data instance for persistent and non
10           persisting mode (called data_smart.py)
11         - Changed the callback of bb.make.collect_bbfiles to carry
12           additional parameters
13         - Drastically reduced the amount of needed RAM by not holding
14           each data instance in memory when using a cache/persistent
15           storage
16
17 Changes in bitbake 1.2.1:
18         The 1.2.1 release is meant as a intermediate release to lay the
19 ground for more radical changes. The most notable changes are:
20
21         -Do not hardcode {}, use bb.data.init() instead if you want to
22 get a instance of a data class
23         -bb.data.init() is a factory and the old bb.data methods are delegates
24         -Do not use deepcopy use bb.data.createCopy() instead.
25         -Removed default arguments in bb.fetch
26