ChangeLog 12 KB

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