ChangeLog 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. Changes in Bitbake 1.8.x:
  2. - Rewrite svn fetcher to make adding extra operations easier
  3. as part of future SRCDATE="now" fixes
  4. (requires new FETCHCMD_svn definition in bitbake.conf)
  5. - Change SVNDIR layout to be more unique (fixes #2644 and #2624)
  6. - Import persistent data store from trunk
  7. - Sync fetcher code with that in trunk, adding SRCREV support for svn
  8. - Add ConfigParsed Event after configuration parsing is complete
  9. - data.emit_var() - only call getVar if we need the variable
  10. - Stop generating the A variable (seems to be legacy code)
  11. - Make sure intertask depends get processed correcting in recursive depends
  12. - Add pn-PN to overrides when evaluating PREFERRED_VERSION
  13. - Improve the progress indicator by skipping tasks that have
  14. already run before starting the build rather than during it
  15. - Add profiling option (-P)
  16. Changes in Bitbake 1.8.6:
  17. - Correctly redirect stdin when forking
  18. - If parsing errors are found, exit, too many users miss the errors
  19. - Remove supriours PREFERRED_PROVIDER warnings
  20. Changes in Bitbake 1.8.4:
  21. - Make sure __inherit_cache is updated before calling include() (from Michael Krelin)
  22. - Fix bug when target was in ASSUME_PROVIDED (#2236)
  23. - Raise ParseError for filenames with multiple underscores instead of infinitely looping (#2062)
  24. - Fix invalid regexp in BBMASK error handling (missing import) (#1124)
  25. - Don't run build sanity checks on incomplete builds
  26. - Promote certain warnings from debug to note 2 level
  27. - Update manual
  28. Changes in Bitbake 1.8.2:
  29. - Catch truncated cache file errors
  30. - Add PE (Package Epoch) support from Philipp Zabel (pH5)
  31. - Add code to handle inter-task dependencies
  32. - Allow operations other than assignment on flag variables
  33. - Fix cache errors when generation dotGraphs
  34. Changes in Bitbake 1.8.0:
  35. - Release 1.7.x as a stable series
  36. Changes in BitBake 1.7.x:
  37. - Major updates of the dependency handling and execution
  38. of tasks. Code from bin/bitbake replaced with runqueue.py
  39. and taskdata.py
  40. - New task execution code supports multithreading with a simplistic
  41. threading algorithm controlled by BB_NUMBER_THREADS
  42. - Change of the SVN Fetcher to keep the checkout around
  43. courtsey of Paul Sokolovsky (#1367)
  44. - PATH fix to bbimage (#1108)
  45. - Allow debug domains to be specified on the commandline (-l)
  46. - Allow 'interactive' tasks
  47. - Logging message improvements
  48. - Drop now uneeded BUILD_ALL_DEPS variable
  49. - Add support for wildcards to -b option
  50. - Major overhaul of the fetchers making a large amount of code common
  51. including mirroring code
  52. - Fetchers now touch md5 stamps upon access (to show activity)
  53. - Fix -f force option when used without -b (long standing bug)
  54. - Add expand_cache to data_cache.py, caching expanded data (speedup)
  55. - Allow version field in DEPENDS (ignored for now)
  56. - Add abort flag support to the shell
  57. - Make inherit fail if the class doesn't exist (#1478)
  58. - Fix data.emit_env() to expand keynames as well as values
  59. - Add ssh fetcher
  60. - Add perforce fetcher
  61. - Make PREFERRED_PROVIDER_foobar defaults to foobar if available
  62. - Share the parser's mtime_cache, reducing the number of stat syscalls
  63. - Compile all anonfuncs at once!
  64. *** Anonfuncs must now use common spacing format ***
  65. - Memorise the list of handlers in __BBHANDLERS and tasks in __BBTASKS
  66. This removes 2 million function calls resulting in a 5-10% speedup
  67. - Add manpage
  68. - Update generateDotGraph to use taskData/runQueue improving accuracy
  69. and also adding a task dependency graph
  70. - Fix/standardise on GPLv2 licence
  71. - Move most functionality from bin/bitbake to cooker.py and split into
  72. separate funcitons
  73. - CVS fetcher: Added support for non-default port
  74. - Add BBINCLUDELOGS_LINES, the number of lines to read from any logfile
  75. - Drop shebangs from lib/bb scripts
  76. Changes in Bitbake 1.6.0:
  77. - Better msg handling
  78. - COW dict implementation from Tim Ansell (mithro) leading
  79. to better performance
  80. - Speed up of -s
  81. Changes in Bitbake 1.4.4:
  82. - SRCDATE now handling courtsey Justin Patrin
  83. - #1017 fix to work with rm_work
  84. Changes in BitBake 1.4.2:
  85. - Send logs to oe.pastebin.com instead of pastebin.com
  86. fixes #856
  87. - Copy the internal bitbake data before building the
  88. dependency graph. This fixes nano not having a
  89. virtual/libc dependency
  90. - Allow multiple TARBALL_STASH entries
  91. - Cache, check if the directory exists before changing
  92. into it
  93. - git speedup cloning by not doing a checkout
  94. - allow to have spaces in filenames (.conf, .bb, .bbclass)
  95. Changes in BitBake 1.4.0:
  96. - Fix to check both RDEPENDS and RDEPENDS_${PN}
  97. - Fix a RDEPENDS parsing bug in utils:explode_deps()
  98. - Update git fetcher behaviour to match git changes
  99. - ASSUME_PROVIDED allowed to include runtime packages
  100. - git fetcher cleanup and efficency improvements
  101. - Change the format of the cache
  102. - Update usermanual to document the Fetchers
  103. - Major changes to caching with a new strategy
  104. giving a major performance increase when reparsing
  105. with few data changes
  106. Changes in BitBake 1.3.3:
  107. - Create a new Fetcher module to ease the
  108. development of new Fetchers.
  109. Issue #438 fixed by rpurdie@openedhand.com
  110. - Make the Subversion fetcher honor the SRC Date
  111. (CVSDATE).
  112. Issue #555 fixed by chris@openedhand.com
  113. - Expand PREFERRED_PROVIDER properly
  114. Issue #436 fixed by rprudie@openedhand.com
  115. - Typo fix for Issue #531 by Philipp Zabel for the
  116. BitBake Shell
  117. - Introduce a new special variable SRCDATE as
  118. a generic naming to replace CVSDATE.
  119. - Introduce a new keyword 'required'. In contrast
  120. to 'include' parsing will fail if a to be included
  121. file can not be found.
  122. - Remove hardcoding of the STAMP directory. Patch
  123. courtsey pHilipp Zabel
  124. - Track the RDEPENDS of each package (rpurdie@openedhand.com)
  125. - Introduce BUILD_ALL_DEPS to build all RDEPENDS. E.g
  126. this is used by the OpenEmbedded Meta Packages.
  127. (rpurdie@openedhand.com).
  128. Changes in BitBake 1.3.2:
  129. - reintegration of make.py into BitBake
  130. - bbread is gone, use bitbake -e
  131. - lots of shell updates and bugfixes
  132. - Introduction of the .= and =. operator
  133. - Sort variables, keys and groups in bitdoc
  134. - Fix regression in the handling of BBCOLLECTIONS
  135. - Update the bitbake usermanual
  136. Changes in BitBake 1.3.0:
  137. - add bitbake interactive shell (bitbake -i)
  138. - refactor bitbake utility in OO style
  139. - kill default arguments in methods in the bb.data module
  140. - kill default arguments in methods in the bb.fetch module
  141. - the http/https/ftp fetcher will fail if the to be
  142. downloaded file was not found in DL_DIR (this is needed
  143. to avoid unpacking the sourceforge mirror page)
  144. - Switch to a cow like data instance for persistent and non
  145. persisting mode (called data_smart.py)
  146. - Changed the callback of bb.make.collect_bbfiles to carry
  147. additional parameters
  148. - Drastically reduced the amount of needed RAM by not holding
  149. each data instance in memory when using a cache/persistent
  150. storage
  151. Changes in BitBake 1.2.1:
  152. The 1.2.1 release is meant as a intermediate release to lay the
  153. ground for more radical changes. The most notable changes are:
  154. - Do not hardcode {}, use bb.data.init() instead if you want to
  155. get a instance of a data class
  156. - bb.data.init() is a factory and the old bb.data methods are delegates
  157. - Do not use deepcopy use bb.data.createCopy() instead.
  158. - Removed default arguments in bb.fetch