ChangeLog 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. Changes in BitBake 1.8.x:
  2. - Psyco is available only for x86 - do not use it on other architectures.
  3. - Fix a bug in bb.decodeurl where http://some.where.com/somefile.tgz decoded to host="" (#1530)
  4. - Warn about malformed PREFERRED_PROVIDERS (#1072)
  5. - Add support for BB_NICE_LEVEL option (#1627)
  6. - Sort initial providers list by default preference (#1145, #2024)
  7. - Improve provider sorting so prefered versions have preference over latest versions (#768)
  8. - Detect builds of tasks with overlapping providers and warn (will become a fatal error) (#1359)
  9. - Add MULTI_PROVIDER_WHITELIST variable to allow known safe multiple providers to be listed
  10. - Handle paths in svn fetcher module parameter
  11. - Support the syntax "export VARIABLE"
  12. - Add bzr fetcher
  13. - Add support for cleaning directories before a task in the form:
  14. do_taskname[cleandirs] = "dir"
  15. - bzr fetcher tweaks from Robert Schuster (#2913)
  16. - Add mercurial (hg) fetcher from Robert Schuster (#2913)
  17. - Fix bogus preferred_version return values
  18. - Fix 'depends' flag splitting
  19. - Fix unexport handling (#3135)
  20. - Add bb.copyfile function similar to bb.movefile (and improve movefile error reporting)
  21. - Allow multiple options for deptask flag
  22. - Use git-fetch instead of git-pull removing any need for merges when
  23. fetching (we don't care about the index). Fixes fetch errors.
  24. - Add BB_GENERATE_MIRROR_TARBALLS option, set to 0 to make git fetches
  25. faster at the expense of not creating mirror tarballs.
  26. - SRCREV handling updates, improvements and fixes from Poky
  27. - Add bb.utils.lockfile() and bb.utils.unlockfile() from Poky
  28. - Add support for task selfstamp and lockfiles flags
  29. - Disable task number acceleration since it can allow the tasks to run
  30. out of sequence
  31. - Improve runqueue code comments
  32. - Add task scheduler abstraction and some example schedulers
  33. - Improve circular dependency chain debugging code and user feedback
  34. - Don't give a stacktrace for invalid tasks, have a user friendly message (#3431)
  35. - Add support for "-e target" (#3432)
  36. - Fix shell showdata command (#3259)
  37. - Fix shell data updating problems (#1880)
  38. Changes in Bitbake 1.8.8:
  39. - Rewrite svn fetcher to make adding extra operations easier
  40. as part of future SRCDATE="now" fixes
  41. (requires new FETCHCMD_svn definition in bitbake.conf)
  42. - Change SVNDIR layout to be more unique (fixes #2644 and #2624)
  43. - Import persistent data store from trunk
  44. - Sync fetcher code with that in trunk, adding SRCREV support for svn
  45. - Add ConfigParsed Event after configuration parsing is complete
  46. - data.emit_var() - only call getVar if we need the variable
  47. - Stop generating the A variable (seems to be legacy code)
  48. - Make sure intertask depends get processed correcting in recursive depends
  49. - Add pn-PN to overrides when evaluating PREFERRED_VERSION
  50. - Improve the progress indicator by skipping tasks that have
  51. already run before starting the build rather than during it
  52. - Add profiling option (-P)
  53. - Add BB_SRCREV_POLICY variable (clear or cache) to control SRCREV cache
  54. - Add SRCREV_FORMAT support
  55. - Fix local fetcher's localpath return values
  56. - Apply OVERRIDES before performing immediate expansions
  57. - Allow the -b -e option combination to take regular expressions
  58. - Add plain message function to bb.msg
  59. - Sort the list of providers before processing so dependency problems are
  60. reproducible rather than effectively random
  61. - Add locking for fetchers so only one tries to fetch a given file at a given time
  62. - Fix int(0)/None confusion in runqueue.py which causes random gaps in dependency chains
  63. - Fix handling of variables with expansion in the name using _append/_prepend
  64. e.g. RRECOMMENDS_${PN}_append_xyz = "abc"
  65. - Expand data in addtasks
  66. - Print the list of missing DEPENDS,RDEPENDS for the "No buildable providers available for required...."
  67. error message.
  68. - Rework add_task to be more efficient (6% speedup, 7% number of function calls reduction)
  69. - Sort digraph output to make builds more reproducible
  70. - Split expandKeys into two for loops to benefit from the expand_cache (12% speedup)
  71. - runqueue.py: Fix idepends handling to avoid dependency errors
  72. - Clear the terminal TOSTOP flag if set (and warn the user)
  73. - Fix regression from r653 and make SRCDATE/CVSDATE work for packages again
  74. Changes in Bitbake 1.8.6:
  75. - Correctly redirect stdin when forking
  76. - If parsing errors are found, exit, too many users miss the errors
  77. - Remove supriours PREFERRED_PROVIDER warnings
  78. Changes in Bitbake 1.8.4:
  79. - Make sure __inherit_cache is updated before calling include() (from Michael Krelin)
  80. - Fix bug when target was in ASSUME_PROVIDED (#2236)
  81. - Raise ParseError for filenames with multiple underscores instead of infinitely looping (#2062)
  82. - Fix invalid regexp in BBMASK error handling (missing import) (#1124)
  83. - Don't run build sanity checks on incomplete builds
  84. - Promote certain warnings from debug to note 2 level
  85. - Update manual
  86. Changes in Bitbake 1.8.2:
  87. - Catch truncated cache file errors
  88. - Add PE (Package Epoch) support from Philipp Zabel (pH5)
  89. - Add code to handle inter-task dependencies
  90. - Allow operations other than assignment on flag variables
  91. - Fix cache errors when generation dotGraphs
  92. Changes in Bitbake 1.8.0:
  93. - Release 1.7.x as a stable series
  94. Changes in BitBake 1.7.x:
  95. - Major updates of the dependency handling and execution
  96. of tasks. Code from bin/bitbake replaced with runqueue.py
  97. and taskdata.py
  98. - New task execution code supports multithreading with a simplistic
  99. threading algorithm controlled by BB_NUMBER_THREADS
  100. - Change of the SVN Fetcher to keep the checkout around
  101. courtsey of Paul Sokolovsky (#1367)
  102. - PATH fix to bbimage (#1108)
  103. - Allow debug domains to be specified on the commandline (-l)
  104. - Allow 'interactive' tasks
  105. - Logging message improvements
  106. - Drop now uneeded BUILD_ALL_DEPS variable
  107. - Add support for wildcards to -b option
  108. - Major overhaul of the fetchers making a large amount of code common
  109. including mirroring code
  110. - Fetchers now touch md5 stamps upon access (to show activity)
  111. - Fix -f force option when used without -b (long standing bug)
  112. - Add expand_cache to data_cache.py, caching expanded data (speedup)
  113. - Allow version field in DEPENDS (ignored for now)
  114. - Add abort flag support to the shell
  115. - Make inherit fail if the class doesn't exist (#1478)
  116. - Fix data.emit_env() to expand keynames as well as values
  117. - Add ssh fetcher
  118. - Add perforce fetcher
  119. - Make PREFERRED_PROVIDER_foobar defaults to foobar if available
  120. - Share the parser's mtime_cache, reducing the number of stat syscalls
  121. - Compile all anonfuncs at once!
  122. *** Anonfuncs must now use common spacing format ***
  123. - Memorise the list of handlers in __BBHANDLERS and tasks in __BBTASKS
  124. This removes 2 million function calls resulting in a 5-10% speedup
  125. - Add manpage
  126. - Update generateDotGraph to use taskData/runQueue improving accuracy
  127. and also adding a task dependency graph
  128. - Fix/standardise on GPLv2 licence
  129. - Move most functionality from bin/bitbake to cooker.py and split into
  130. separate funcitons
  131. - CVS fetcher: Added support for non-default port
  132. - Add BBINCLUDELOGS_LINES, the number of lines to read from any logfile
  133. - Drop shebangs from lib/bb scripts
  134. Changes in Bitbake 1.6.0:
  135. - Better msg handling
  136. - COW dict implementation from Tim Ansell (mithro) leading
  137. to better performance
  138. - Speed up of -s
  139. Changes in Bitbake 1.4.4:
  140. - SRCDATE now handling courtsey Justin Patrin
  141. - #1017 fix to work with rm_work
  142. Changes in BitBake 1.4.2:
  143. - Send logs to oe.pastebin.com instead of pastebin.com
  144. fixes #856
  145. - Copy the internal bitbake data before building the
  146. dependency graph. This fixes nano not having a
  147. virtual/libc dependency
  148. - Allow multiple TARBALL_STASH entries
  149. - Cache, check if the directory exists before changing
  150. into it
  151. - git speedup cloning by not doing a checkout
  152. - allow to have spaces in filenames (.conf, .bb, .bbclass)
  153. Changes in BitBake 1.4.0:
  154. - Fix to check both RDEPENDS and RDEPENDS_${PN}
  155. - Fix a RDEPENDS parsing bug in utils:explode_deps()
  156. - Update git fetcher behaviour to match git changes
  157. - ASSUME_PROVIDED allowed to include runtime packages
  158. - git fetcher cleanup and efficency improvements
  159. - Change the format of the cache
  160. - Update usermanual to document the Fetchers
  161. - Major changes to caching with a new strategy
  162. giving a major performance increase when reparsing
  163. with few data changes
  164. Changes in BitBake 1.3.3:
  165. - Create a new Fetcher module to ease the
  166. development of new Fetchers.
  167. Issue #438 fixed by rpurdie@openedhand.com
  168. - Make the Subversion fetcher honor the SRC Date
  169. (CVSDATE).
  170. Issue #555 fixed by chris@openedhand.com
  171. - Expand PREFERRED_PROVIDER properly
  172. Issue #436 fixed by rprudie@openedhand.com
  173. - Typo fix for Issue #531 by Philipp Zabel for the
  174. BitBake Shell
  175. - Introduce a new special variable SRCDATE as
  176. a generic naming to replace CVSDATE.
  177. - Introduce a new keyword 'required'. In contrast
  178. to 'include' parsing will fail if a to be included
  179. file can not be found.
  180. - Remove hardcoding of the STAMP directory. Patch
  181. courtsey pHilipp Zabel
  182. - Track the RDEPENDS of each package (rpurdie@openedhand.com)
  183. - Introduce BUILD_ALL_DEPS to build all RDEPENDS. E.g
  184. this is used by the OpenEmbedded Meta Packages.
  185. (rpurdie@openedhand.com).
  186. Changes in BitBake 1.3.2:
  187. - reintegration of make.py into BitBake
  188. - bbread is gone, use bitbake -e
  189. - lots of shell updates and bugfixes
  190. - Introduction of the .= and =. operator
  191. - Sort variables, keys and groups in bitdoc
  192. - Fix regression in the handling of BBCOLLECTIONS
  193. - Update the bitbake usermanual
  194. Changes in BitBake 1.3.0:
  195. - add bitbake interactive shell (bitbake -i)
  196. - refactor bitbake utility in OO style
  197. - kill default arguments in methods in the bb.data module
  198. - kill default arguments in methods in the bb.fetch module
  199. - the http/https/ftp fetcher will fail if the to be
  200. downloaded file was not found in DL_DIR (this is needed
  201. to avoid unpacking the sourceforge mirror page)
  202. - Switch to a cow like data instance for persistent and non
  203. persisting mode (called data_smart.py)
  204. - Changed the callback of bb.make.collect_bbfiles to carry
  205. additional parameters
  206. - Drastically reduced the amount of needed RAM by not holding
  207. each data instance in memory when using a cache/persistent
  208. storage
  209. Changes in BitBake 1.2.1:
  210. The 1.2.1 release is meant as a intermediate release to lay the
  211. ground for more radical changes. The most notable changes are:
  212. - Do not hardcode {}, use bb.data.init() instead if you want to
  213. get a instance of a data class
  214. - bb.data.init() is a factory and the old bb.data methods are delegates
  215. - Do not use deepcopy use bb.data.createCopy() instead.
  216. - Removed default arguments in bb.fetch