news.html 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724
  1. <!--#include file="header.html" -->
  2. <link href="css/timeline.css" rel="stylesheet">
  3. <div class="container">
  4. <div class="row nh">
  5. <div class="col-lg-10 col-lg-offset-1 col-md-12 col-sm-12 col-xs-12">
  6. <h2>News</h2>
  7. <ul class="timeline">
  8. <li>
  9. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  10. <div class="timeline-panel">
  11. <div class="timeline-heading">
  12. <h4 class="timeline-title">2015.11-rc2 released</h4>
  13. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>19 November 2015</small></p>
  14. </div>
  15. <div class="timeline-body">
  16. <p>Another week, another release candidate with more cleanups
  17. and build fixes. See the
  18. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.11-rc2">CHANGES</a>
  19. file for details.</p>
  20. <p>Head to the <a href="/downloads/">downloads page</a> to
  21. pick up
  22. the <a href="/downloads/buildroot-2015.11-rc2.tar.bz2">2015.11-rc2
  23. release candidate</a>, and report any problems found to
  24. the <a href="support.html">mailing list</a>
  25. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  26. </div>
  27. </div>
  28. </li>
  29. <li class="timeline-inverted">
  30. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  31. <div class="timeline-panel">
  32. <div class="timeline-heading">
  33. <h4 class="timeline-title">2015.11-rc1 released</h4>
  34. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>7 November 2015</small></p>
  35. </div>
  36. <div class="timeline-body">
  37. <p>We have a new release candidate! Lots of
  38. changes all over the tree, see
  39. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.11-rc1">CHANGES</a>
  40. file for details. See also
  41. the <a href="http://lists.busybox.net/pipermail/buildroot/2015-November/144026.html">announcement
  42. e-mail</a>.</p>
  43. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  44. <a href="/downloads/buildroot-2015.11-rc1.tar.bz2">2015.11-rc1
  45. release candidate</a>, and report any
  46. problems found to the
  47. <a href="support.html">mailing list</a> or
  48. <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  49. </div>
  50. </div>
  51. </li>
  52. <li>
  53. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  54. <div class="timeline-panel">
  55. <div class="timeline-heading">
  56. <h4 class="timeline-title">2015.08.1 released</h4>
  57. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>6 September 2015</small></p>
  58. </div>
  59. <div class="timeline-body">
  60. <p>The 2015.08.1 bugfix release is out - Thanks to everyone
  61. contributing. This release fixes critical issues discovered since
  62. the 2015.08 release. See the
  63. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.08.1">CHANGES</a>
  64. file for more details,
  65. and go to the <a href="/downloads/">downloads page</a> to pick up the
  66. <a href="/downloads/buildroot-2015.08.1.tar.bz2">2015.08.1 release</a>.</p>
  67. </div>
  68. </div>
  69. </li>
  70. <li class="timeline-inverted">
  71. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  72. <div class="timeline-panel">
  73. <div class="timeline-heading">
  74. <h4 class="timeline-title">2015.08 released</h4>
  75. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>31 August 2015</small></p>
  76. </div>
  77. <div class="timeline-body">
  78. <p>The stable 2015.08 release is out - Thanks to everyone
  79. contributing and testing the release candidates. See the
  80. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.08">CHANGES</a>
  81. file for more details, read the
  82. <a href="http://lists.buildroot.org/pipermail/buildroot/2015-August/138336.html">announcement</a>
  83. and go to the <a href="/downloads/">downloads page</a> to pick up the
  84. <a href="/downloads/buildroot-2015.08.tar.bz2">2015.08 release</a>.</p>
  85. </div>
  86. </div>
  87. </li>
  88. <li>
  89. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  90. <div class="timeline-panel">
  91. <div class="timeline-heading">
  92. <h4 class="timeline-title">2015.08-rc2 released</h4>
  93. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>24 August 2015</small></p>
  94. </div>
  95. <div class="timeline-body">
  96. <p>We have a new release candidate! Lots of changes all over the
  97. tree, see
  98. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.08-rc2">CHANGES</a>
  99. file for details, and
  100. the <a href="http://lists.buildroot.org/pipermail/buildroot/2015-August/137879.html">release
  101. announcement</a>.</p>
  102. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  103. <a href="/downloads/buildroot-2015.08-rc2.tar.bz2">2015.08-rc2
  104. release candidate</a>, and report any problems found to the
  105. <a href="support.html">mailing list</a> or
  106. <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  107. </div>
  108. </div>
  109. </li>
  110. <li class="timeline-inverted">
  111. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  112. <div class="timeline-panel">
  113. <div class="timeline-heading">
  114. <h4 class="timeline-title">2015.08-rc1 released</h4>
  115. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>5 August 2015</small></p>
  116. </div>
  117. <div class="timeline-body">
  118. <p>We have a new release candidate! Lots of changes all over the tree, see
  119. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.08-rc1">CHANGES</a>
  120. file for details, read
  121. the <a href="http://lists.buildroot.org/pipermail/buildroot/2015-August/135417.html">announcement</a>.</p>
  122. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  123. <a href="/downloads/buildroot-2015.08-rc1.tar.bz2">2015.08-rc1
  124. release candidate</a>, and report any problems found to the
  125. <a href="support.html">mailing list</a> or
  126. <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  127. </div>
  128. </div>
  129. </li>
  130. <li>
  131. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  132. <div class="timeline-panel">
  133. <div class="timeline-heading">
  134. <h4 class="timeline-title">2015.05 released</h4>
  135. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>31 May 2015</small></p>
  136. </div>
  137. <div class="timeline-body">
  138. <p>The stable 2015.05 release is out - Thanks to everyone
  139. contributing and testing the release candidates. See the
  140. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.05">CHANGES</a>
  141. file for more details, read the
  142. <a href="http://lists.buildroot.org/pipermail/buildroot/2015-May/129209.html">announcement</a>
  143. and go to the <a href="/downloads/">downloads page</a> to pick up the
  144. <a href="/downloads/buildroot-2015.05.tar.bz2">2015.05 release</a>.</p>
  145. </div>
  146. </div>
  147. </li>
  148. <li class="timeline-inverted">
  149. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  150. <div class="timeline-panel">
  151. <div class="timeline-heading">
  152. <h4 class="timeline-title">2015.05-rc3 released</h4>
  153. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>22 May 2015</small></p>
  154. </div>
  155. <div class="timeline-body">
  156. <p>Release candidate 3 is out with more cleanups and security
  157. / build fixes. See
  158. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.05-rc3">CHANGES</a>
  159. file for details.</p>
  160. <p>Head to the <a href="/downloads/">downloads page</a> to
  161. pick up
  162. the <a href="/downloads/buildroot-2015.02-rc5.tar.bz2">2015.05-rc3
  163. release candidate</a>, and report any problems found to
  164. the <a href="lists.html">mailing list</a>
  165. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  166. </div>
  167. </div>
  168. </li>
  169. <li>
  170. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  171. <div class="timeline-panel">
  172. <div class="timeline-heading">
  173. <h4 class="timeline-title">2015.05-rc2 released</h4>
  174. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>11 May 2015</small></p>
  175. </div>
  176. <div class="timeline-body">
  177. <p>Another week, another release candidate with more cleanups
  178. and build fixes. See
  179. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.05-rc2">CHANGES</a>
  180. file for details.</p>
  181. <p>Head to the <a href="/downloads/">downloads page</a> to
  182. pick up the
  183. <a href="/downloads/buildroot-2015.05-rc2.tar.bz2">2015.05-rc2
  184. release candidate</a>, and report any problems found to
  185. the <a href="support.html">mailing list</a>
  186. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  187. </div>
  188. </div>
  189. </li>
  190. <li class="timeline-inverted">
  191. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  192. <div class="timeline-panel">
  193. <div class="timeline-heading">
  194. <h4 class="timeline-title">2015.05-rc1 released</h4>
  195. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>4 May 2015</small></p>
  196. </div>
  197. <div class="timeline-body">
  198. <p>We have a new release candidate! Lots of changes all over the
  199. tree, see the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.05-rc1">CHANGES</a>
  200. file for details, and read the
  201. <a href="http://lists.buildroot.org/pipermail/buildroot/2015-May/127794.html">announcement</a>.</p>
  202. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  203. <a href="/downloads/buildroot-2015.05-rc1.tar.bz2">2015.05-rc1
  204. release candidate</a>, and report any problems found to the
  205. <a href="support.html">mailing list</a> or
  206. <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  207. </div>
  208. </div>
  209. </li>
  210. <li>
  211. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  212. <div class="timeline-panel">
  213. <div class="timeline-heading">
  214. <h4 class="timeline-title">2015.02 released</h4>
  215. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>1 March 2015</small></p>
  216. </div>
  217. <div class="timeline-body">
  218. <p>The stable 2015.02 release is out - Thanks to everyone
  219. contributing and testing the release candidates. See the
  220. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.02">CHANGES</a>
  221. file for more details, read the
  222. <a href="http://lists.buildroot.org/pipermail/buildroot/2015-March/120396.html">announcement</a>
  223. and go to the <a href="/downloads/">downloads page</a> to pick up the
  224. <a href="/downloads/buildroot-2015.02.tar.bz2">2015.02 release</a>.</p>
  225. </div>
  226. </div>
  227. </li>
  228. <li class="timeline-inverted">
  229. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  230. <div class="timeline-panel">
  231. <div class="timeline-heading">
  232. <h4 class="timeline-title">2015.02-rc3 released</h4>
  233. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>24 February 2015</small></p>
  234. </div>
  235. <div class="timeline-body">
  236. <p>Release candidate 3 is out with more cleanups and security
  237. / build fixes. See
  238. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.02-rc3">CHANGES</a>
  239. file for details.</p>
  240. <p>Head to the <a href="/downloads/">downloads page</a> to
  241. pick up the
  242. <a href="/downloads/buildroot-2015.02-rc3.tar.bz2">2015.02-rc3
  243. release candidate</a>, and report any problems found to
  244. the <a href="lists.html">mailing list</a>
  245. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  246. </div>
  247. </div>
  248. </li>
  249. <li>
  250. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  251. <div class="timeline-panel">
  252. <div class="timeline-heading">
  253. <h4 class="timeline-title">2015.02-rc2 released</h4>
  254. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>15 February 2015</small></p>
  255. </div>
  256. <div class="timeline-body">
  257. <p>Another week, another release candidate with more cleanups
  258. and build fixes. See
  259. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.02-rc2">CHANGES</a>
  260. file for details.</p>
  261. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  262. <a href="/downloads/buildroot-2015.02-rc2.tar.bz2">2015.02-rc2
  263. release candidate</a>, and report any problems found to
  264. the <a href="support.html">mailing list</a>
  265. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  266. </div>
  267. </div>
  268. </li>
  269. <li class="timeline-inverted">
  270. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  271. <div class="timeline-panel">
  272. <div class="timeline-heading">
  273. <h4 class="timeline-title">2015.02-rc1 released</h4>
  274. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>8 February 2015</small></p>
  275. </div>
  276. <div class="timeline-body">
  277. <p>We have a new release candidate! Lots of changes all over
  278. the tree, see
  279. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.02-rc1">CHANGES</a>
  280. file for details, and read the
  281. <a href="http://lists.buildroot.org/pipermail/buildroot/2015-February/118982.html">announcement</a>.</p>
  282. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  283. <a href="/downloads/buildroot-2015.02-rc1.tar.bz2">2015.02-rc1
  284. release candidate</a>, and report any problems found to
  285. the
  286. <a href="support.html">mailing list</a> or
  287. <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  288. </div>
  289. </div>
  290. </li>
  291. <li>
  292. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  293. <div class="timeline-panel">
  294. <div class="timeline-heading">
  295. <h4 class="timeline-title">2014.11 released</h4>
  296. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>1 December 2014</small></p>
  297. </div>
  298. <div class="timeline-body">
  299. <p>The stable 2014.11 release is out - Thanks to everyone
  300. contributing and testing the release candidates. See the
  301. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.11">CHANGES</a>
  302. file for more details,
  303. and go to the <a href="/downloads/">downloads page</a> to pick up the
  304. <a href="/downloads/buildroot-2014.11.tar.bz2">2014.11 release</a>.</p>
  305. </div>
  306. </div>
  307. </li>
  308. <li class="timeline-inverted">
  309. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  310. <div class="timeline-panel">
  311. <div class="timeline-heading">
  312. <h4 class="timeline-title">2014.11-rc3 released</h4>
  313. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>28 November 2014</small></p>
  314. </div>
  315. <div class="timeline-body">
  316. <p>Release candidate 3 is out with more cleanups and build
  317. fixes. See
  318. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.11-rc3">CHANGES</a>
  319. file for details.</p>
  320. <p>Head to the <a href="/downloads/">downloads page</a> to
  321. pick up the
  322. <a href="/downloads/buildroot-2014.11-rc3.tar.bz2">2014.11-rc3
  323. release candidate</a>, and report any problems found to
  324. the <a href="lists.html">mailing list</a>
  325. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  326. </div>
  327. </div>
  328. </li>
  329. <li>
  330. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  331. <div class="timeline-panel">
  332. <div class="timeline-heading">
  333. <h4 class="timeline-title">2014.11-rc2 released</h4>
  334. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>21 November 2014</small></p>
  335. </div>
  336. <div class="timeline-body">
  337. <p>Another week, another release candidate with more cleanups
  338. and build fixes. See
  339. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.11-rc2">CHANGES</a>
  340. file for details.</p>
  341. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  342. <a href="/downloads/buildroot-2014.11-rc2.tar.bz2">2014.11-rc2
  343. release candidate</a>, and report any problems found to
  344. the <a href="support.html">mailing list</a>
  345. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  346. </div>
  347. </div>
  348. </li>
  349. <li class="timeline-inverted">
  350. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  351. <div class="timeline-panel">
  352. <div class="timeline-heading">
  353. <h4 class="timeline-title">Report from Buildroot Developers Meeting</h4>
  354. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>13 November 2014</small></p>
  355. </div>
  356. <div class="timeline-body">
  357. <p>A report from the recent
  358. <a href="http://elinux.org/Buildroot:DeveloperDaysELCE2014">
  359. Buildroot Developers Meeting</a> is now
  360. <a href="http://lists.buildroot.org/pipermail/buildroot/2014-October/109966.html">available</a>.</p>
  361. <p>Once again, thanks to all the participants and to
  362. <a href="http://www.mind.be">Mind</a> for sponsoring the event.</p>
  363. <p>The next Developer Days will take place on February 2nd and
  364. 3rd in Brussels, Belgium, right
  365. after <a href="http://fosdem.org">FOSDEM</a>. See
  366. the <a href="http://elinux.org/Buildroot:DeveloperDaysFOSDEM2015">wiki</a>
  367. for more details.</p>
  368. </div>
  369. </div>
  370. </li>
  371. <li>
  372. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  373. <div class="timeline-panel">
  374. <div class="timeline-heading">
  375. <h4 class="timeline-title">2014.11-rc1 released</h4>
  376. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>12 November 2014</small></p>
  377. </div>
  378. <div class="timeline-body">
  379. <p>We have a new release candidate! Lots of changes all over the
  380. tree, see the <a
  381. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.11-rc1">CHANGES</a>
  382. file for details, and read the
  383. <a href="http://lists.buildroot.org/pipermail/buildroot/2014-November/111946.html">announcement</a>.</p>
  384. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  385. <a href="/downloads/buildroot-2014.11-rc1.tar.bz2">2014.11-rc1
  386. release candidate</a>, and report any problems found to the
  387. <a href="support.html">mailing list</a> or
  388. <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  389. </div>
  390. </div>
  391. </li>
  392. <li class="timeline-inverted">
  393. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  394. <div class="timeline-panel">
  395. <div class="timeline-heading">
  396. <h4 class="timeline-title">2014.08 released</h4>
  397. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>1 September 2014</small></p>
  398. </div>
  399. <div class="timeline-body">
  400. <p>The stable 2014.08 release is out - Thanks to everyone
  401. contributing and testing the release candidates. See the
  402. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.08">CHANGES</a>
  403. file for more details, read the
  404. <a href="http://lists.buildroot.org/pipermail/buildroot/2014-September/105257.html">announcement</a>
  405. and go to the <a href="/downloads/">downloads page</a> to pick up the
  406. <a href="/downloads/buildroot-2014.08.tar.bz2">2014.08 release</a>.</p>
  407. </div>
  408. </div>
  409. </li>
  410. <li>
  411. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  412. <div class="timeline-panel">
  413. <div class="timeline-heading">
  414. <h4 class="timeline-title">2014.08-rc3 released</h4>
  415. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>26 August 2014</small></p>
  416. </div>
  417. <div class="timeline-body">
  418. <p>Release candidate 3 is out with more cleanups and build
  419. fixes. See
  420. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.08-rc3">CHANGES</a>
  421. file for details.</p>
  422. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  423. <a href="/downloads/buildroot-2014.08-rc3.tar.bz2">2014.08-rc3
  424. release candidate</a>, and report any problems found to
  425. the <a href="lists.html">mailing list</a>
  426. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  427. </div>
  428. </div>
  429. </li>
  430. <li class="timeline-inverted">
  431. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  432. <div class="timeline-panel">
  433. <div class="timeline-heading">
  434. <h4 class="timeline-title">2014.08-rc2 released</h4>
  435. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>18 August 2014</small></p>
  436. </div>
  437. <div class="timeline-body">
  438. <p>Another week, another release candidate with more cleanups
  439. and build fixes. See
  440. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.08-rc2">CHANGES</a>
  441. file for details.</p>
  442. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  443. <a href="/downloads/buildroot-2014.08-rc2.tar.bz2">2014.08-rc2
  444. release candidate</a>, and report any problems found to
  445. the <a href="support.html">mailing list</a>
  446. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  447. </div>
  448. </div>
  449. </li>
  450. <li>
  451. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  452. <div class="timeline-panel">
  453. <div class="timeline-heading">
  454. <h4 class="timeline-title">2014.08-rc1 released</h4>
  455. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>8 August 2014</small></p>
  456. </div>
  457. <div class="timeline-body">
  458. <p>We have a new release candidate! Lots of changes all over the
  459. tree, see the <a
  460. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.08-rc1">CHANGES</a>
  461. file for details, and read the
  462. <a href="http://lists.buildroot.org/pipermail/buildroot/2014-August/103972.html">announcement</a>.</p>
  463. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  464. <a href="/downloads/buildroot-2014.08-rc1.tar.bz2">2014.08-rc1
  465. release candidate</a>, and report any problems found to the
  466. <a href="support.html">mailing list</a> or
  467. <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  468. </div>
  469. </div>
  470. </li>
  471. <li class="timeline-inverted">
  472. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  473. <div class="timeline-panel">
  474. <div class="timeline-heading">
  475. <h4 class="timeline-title">2014.05 released</h4>
  476. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>31 May 2014</small></p>
  477. </div>
  478. <div class="timeline-body">
  479. <p>The stable 2014.05 release is out - Thanks to everyone
  480. contributing and testing the release candidates. See the
  481. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.05">CHANGES</a>
  482. file for more details, read the
  483. <a href="http://lists.buildroot.org/pipermail/buildroot/2014-May/097863.html">announcement</a>
  484. and go to the <a href="/downloads/">downloads page</a> to pick up the
  485. <a href="/downloads/buildroot-2014.05.tar.bz2">2014.05 release</a>.</p>
  486. </div>
  487. </div>
  488. </li>
  489. <li>
  490. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  491. <div class="timeline-panel">
  492. <div class="timeline-heading">
  493. <h4 class="timeline-title">2014.05-rc3 released</h4>
  494. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>28 May 2014</small></p>
  495. </div>
  496. <div class="timeline-body">
  497. <p>Release candidate 3 is out with more cleanups and build
  498. fixes. See
  499. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.05-rc3">CHANGES</a>
  500. file for details.</p>
  501. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  502. <a href="/downloads/buildroot-2014.05-rc3.tar.bz2">2014.05-rc3
  503. release candidate</a>, and report any problems found to
  504. the <a href="lists.html">mailing list</a>
  505. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  506. </div>
  507. </div>
  508. </li>
  509. <li class="timeline-inverted">
  510. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  511. <div class="timeline-panel">
  512. <div class="timeline-heading">
  513. <h4 class="timeline-title">2014.05-rc2 released</h4>
  514. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>21 May 2014</small></p>
  515. </div>
  516. <div class="timeline-body">
  517. <p>Another week, another release candidate with more cleanups
  518. and build fixes. See
  519. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.05-rc2">CHANGES</a>
  520. file for details.</p>
  521. <p>Head to the <a href="/downloads/">downloads page</a> to
  522. pick up the
  523. <a href="/downloads/buildroot-2014.05-rc2.tar.bz2">2014.05-rc2
  524. release candidate</a>, and report any problems found to
  525. the <a href="support.html">mailing list</a>
  526. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  527. </div>
  528. </div>
  529. </li>
  530. <li>
  531. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  532. <div class="timeline-panel">
  533. <div class="timeline-heading">
  534. <h4 class="timeline-title">2014.05-rc1 released</h4>
  535. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>13 May 2014</small></p>
  536. </div>
  537. <div class="timeline-body">
  538. <p>We have a new release candidate! Lots of changes all over the
  539. tree, see the <a
  540. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.05-rc1">CHANGES</a>
  541. file for details, and read the
  542. <a href="http://lists.buildroot.org/pipermail/buildroot/2014-May/096492.html">announcement</a>.</p>
  543. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  544. <a href="/downloads/buildroot-2014.05-rc1.tar.bz2">2014.05-rc1
  545. release candidate</a>, and report any problems found to the
  546. <a href="support.html">mailing list</a> or
  547. <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  548. </div>
  549. </div>
  550. </li>
  551. <li class="timeline-inverted">
  552. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  553. <div class="timeline-panel">
  554. <div class="timeline-heading">
  555. <h4 class="timeline-title">27 February 2014</h4>
  556. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>2014.02 released</small></p>
  557. </div>
  558. <div class="timeline-body">
  559. <p>The stable 2014.02 release is out - Thanks to everyone
  560. contributing and testing the release candidates. See the
  561. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.02">CHANGES</a>
  562. file for more details,
  563. and go to the <a href="/downloads/">downloads page</a> to pick up the
  564. <a href="/downloads/buildroot-2014.02.tar.bz2">2014.02 release</a>.</p>
  565. </div>
  566. </div>
  567. </li>
  568. <li>
  569. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  570. <div class="timeline-panel">
  571. <div class="timeline-heading">
  572. <h4 class="timeline-title">25 February 2014</h4>
  573. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>2014.02-rc3 released</small></p>
  574. </div>
  575. <div class="timeline-body">
  576. <p>Release candidate 3 is out with more cleanups and build
  577. fixes. See
  578. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.02-rc3">CHANGES</a>
  579. file for details.</p>
  580. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  581. <a href="/downloads/buildroot-2014.02-rc3.tar.bz2">2014.02-rc3
  582. release candidate</a>, and report any problems found to
  583. the <a href="lists.html">mailing list</a>
  584. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  585. </div>
  586. </div>
  587. </li>
  588. <li class="timeline-inverted">
  589. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  590. <div class="timeline-panel">
  591. <div class="timeline-heading">
  592. <h4 class="timeline-title">20 February 2014</h4>
  593. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>2014.02-rc2 released</small></p>
  594. </div>
  595. <div class="timeline-body">
  596. <p>Another week, another release candidate with more cleanups
  597. and build fixes. See
  598. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.02-rc2">CHANGES</a>
  599. file for details.</p>
  600. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  601. <a href="/downloads/buildroot-2014.02-rc2.tar.bz2">2014.02-rc2
  602. release candidate</a>, and report any problems found to
  603. the <a href="lists.html">mailing list</a>
  604. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  605. </div>
  606. </div>
  607. </li>
  608. <li>
  609. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  610. <div class="timeline-panel">
  611. <div class="timeline-heading">
  612. <h4 class="timeline-title">2014.02-rc1 released</h4>
  613. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>11 February 2014</small></p>
  614. </div>
  615. <div class="timeline-body">
  616. <p>We have a new release candidate! Lots of changes all over the
  617. tree, see the <a
  618. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.02-rc1">CHANGES</a>
  619. file for details, and read the
  620. <a href="http://lists.buildroot.org/pipermail/buildroot/2014-February/089055.html">announcement</a>.</p>
  621. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  622. <a href="/downloads/buildroot-2014.02-rc1.tar.bz2">2014.02-rc1
  623. release candidate</a>, and report any problems found to the
  624. <a href="support.html">mailing list</a> or
  625. <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  626. </div>
  627. </div>
  628. </li>
  629. <li class="timeline-inverted">
  630. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  631. <div class="timeline-panel">
  632. <div class="timeline-heading">
  633. <h4 class="timeline-title">9 February 2014</h4>
  634. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>Report from Buildroot Developers Meeting</small></p>
  635. </div>
  636. <div class="timeline-body">
  637. <p>A report from the recent
  638. <a href="http://elinux.org/Buildroot:DeveloperDaysFOSDEM2014">
  639. Buildroot Developers Meeting</a> is now
  640. <a href="http://lists.buildroot.org/pipermail/buildroot/2014-February/088373.html">available</a>.</p>
  641. <p>Once again, thanks to all the participants and to
  642. <a href="http://www.google.com">Google</a> and
  643. <a href="http://www.mind.be">Mind</a> for sponsoring the event.</p>
  644. </div>
  645. </div>
  646. </li>
  647. <li>
  648. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  649. <div class="timeline-panel">
  650. <div class="timeline-heading">
  651. <h4 class="timeline-title">Upcoming Buildroot Developers meeting</h4>
  652. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 January 2014</small></p>
  653. </div>
  654. <div class="timeline-body">
  655. <p>The upcoming Buildroot Developers meeting will take place in
  656. Brussels on February, 3rd and 4th, after the
  657. <a href="http://www.fosdem.org">FOSDEM</a> conference. Additional
  658. details about the meeting can be found on the corresponding
  659. <a href="http://elinux.org/Buildroot:DeveloperDaysFOSDEM2014">
  660. wiki page</a>.</p>
  661. <p>Persons not able to join the meeting in Brussels can participate
  662. remotely using Google Hangouts. Simply give your Google address to
  663. <code>thomas.petazzoni@free-electrons.com</code>.</p>
  664. <p>This meeting is sponsored by
  665. <a href="http://www.google.com">Google</a> (for the meeting room)
  666. and <a href="http://www.mind.be">Mind</a> (for the dinner).
  667. Thanks to our sponsors!</p>
  668. </div>
  669. </div>
  670. </li>
  671. <li class="timeline-inverted">
  672. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  673. <div class="timeline-panel">
  674. <div class="timeline-heading">
  675. <h4 class="timeline-title">2013.11 released</h4>
  676. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 November 2013</small></p>
  677. </div>
  678. <div class="timeline-body">
  679. <p>The stable 2013.11 release is out - Thanks to everyone
  680. contributing and testing the release candidates. See the
  681. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.11">CHANGES</a>
  682. file for more details, read the <a href="http://lists.buildroot.org/pipermail/buildroot/2013-November/083600.html">announcement</a>
  683. and go to the <a href="/downloads/">downloads page</a> to pick up the
  684. <a href="/downloads/buildroot-2013.11.tar.bz2">2013.11 release</a>.</p>
  685. </div>
  686. </div>
  687. </li>
  688. <li>
  689. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  690. <div class="timeline-panel">
  691. <div class="timeline-heading">
  692. <h4 class="timeline-title">Slides from Embedded Linux Conference Europe</h4>
  693. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 November 2013</small></p>
  694. </div>
  695. <div class="timeline-body">
  696. <p>The slides from the Buildroot presentation at the recent
  697. <a href="http://events.linuxfoundation.org/events/embedded-linux-conference-europe">Embedded Linux Conference Europe 2013</a>
  698. are now
  699. <a href="http://elinux.org/images/2/23/Buildroot-whats-new-elce2013.pdf">available</a>.</p>
  700. </div>
  701. </div>
  702. </li>
  703. <li class="timeline-inverted">
  704. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  705. <div class="timeline-panel">
  706. <div class="timeline-heading">
  707. <h4 class="timeline-title">2013.11-rc3 released</h4>
  708. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>18 November 2013</small></p>
  709. </div>
  710. <div class="timeline-body">
  711. <p>Another week, another release candidate with more
  712. fixes. See
  713. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.11-rc3">CHANGES</a>
  714. file for details.</p>
  715. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  716. <a href="/downloads/buildroot-2013.11-rc3.tar.bz2">2013.11-rc3
  717. release candidate</a>, and report any problems found to
  718. the <a href="support.html">mailing list</a>
  719. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  720. </div>
  721. </div>
  722. </li>
  723. <li>
  724. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  725. <div class="timeline-panel">
  726. <div class="timeline-heading">
  727. <h4 class="timeline-title">2013.11-rc2 released</h4>
  728. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>18 November 2013</small></p>
  729. </div>
  730. <div class="timeline-body">
  731. <p>Another week, another release candidate with more cleanups
  732. and build fixes. See
  733. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.11-rc2">CHANGES</a>
  734. file for details.</p>
  735. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  736. <a href="/downloads/buildroot-2013.11-rc2.tar.bz2">2013.11-rc2
  737. release candidate</a>, and report any problems found to
  738. the <a href="support.html">mailing list</a>
  739. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  740. </div>
  741. </div>
  742. </li>
  743. <li class="timeline-inverted">
  744. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  745. <div class="timeline-panel">
  746. <div class="timeline-heading">
  747. <h4 class="timeline-title">Announcement of the next Buildroot Developer Days</h4>
  748. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>13 November 2013</small></p>
  749. </div>
  750. <div class="timeline-body">
  751. <p>The next <i>Buildroot Developer Days</i> meeting will take
  752. place on Monday 3rd and Tuesday 4th February 2014 in Brussels,
  753. Belgium - Just after
  754. <a href="http://www.fosdem.org">FOSDEM</a> (February
  755. 1st/2nd). This two days meeting is mainly open to Buildroot
  756. developers and contributors, or Buildroot users having a prior
  757. experience with the tool. It will allow developers to work on
  758. Buildroot and discuss current issues, the future directions, and
  759. more.</p>
  760. <p>In addition to the Buildroot event, we encourage embedded Linux
  761. developers to propose talks for the Embedded and Mobile Developer
  762. Room at FOSDEM. See
  763. the <a href="https://lists.fosdem.org/pipermail/fosdem/2013-October/001870.html">CFP</a>.</p>
  764. <p>We would like to thank our
  765. sponsor <a href="http://www.google.com">Google</a> for sponsoring
  766. the event by providing all the needed logistics.</p>
  767. <p>For more details, see the
  768. <a href="http://www.elinux.org/Buildroot:DeveloperDaysFOSDEM2014">wiki
  769. page</a> dedicated to the meeting.</p>
  770. </div>
  771. </div>
  772. </li>
  773. <li>
  774. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  775. <div class="timeline-panel">
  776. <div class="timeline-heading">
  777. <h4 class="timeline-title">2013.11-rc1 released</h4>
  778. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>12 November 2013</small></p>
  779. </div>
  780. <div class="timeline-body">
  781. <p>We have a new release candidate! Lots of changes all over the
  782. tree, see the <a
  783. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.11_rc1">CHANGES</a>
  784. file for details, and read the
  785. <a href="http://lists.buildroot.org/pipermail/buildroot/2013-November/082514.html">announcement</a>.</p>
  786. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  787. <a href="/downloads/buildroot-2013.11-rc1.tar.bz2">2013.11-rc1
  788. release candidate</a>, and report any problems found to
  789. the <a href="support.html">mailing list</a>
  790. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  791. </div>
  792. </div>
  793. </li>
  794. <li class="timeline-inverted">
  795. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  796. <div class="timeline-panel">
  797. <div class="timeline-heading">
  798. <h4 class="timeline-title">Report from Buildroot Developers Meeting</h4>
  799. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>11 November 2013</small></p>
  800. </div>
  801. <div class="timeline-body">
  802. <p>A report from the recent
  803. <a href="http://elinux.org/Buildroot:DeveloperDaysELCE2013">
  804. Buildroot Developers Meeting</a> is now
  805. <a href="http://lists.buildroot.org/pipermail/buildroot/2013-November/082401.html">available</a>.</p>
  806. <p>Once again, thanks to all the participants and to
  807. <a href="http://www.imgtec.com/">Imagination Technologies</a>
  808. for sponsoring the event.</p>
  809. </div>
  810. </div>
  811. </li>
  812. <li>
  813. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  814. <div class="timeline-panel">
  815. <div class="timeline-heading">
  816. <h4 class="timeline-title">2013.08.1 released</h4>
  817. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>17 September 2013</small></p>
  818. </div>
  819. <div class="timeline-body">
  820. <p>The 2013.08.1 bugfix release is out - Thanks to everyone
  821. contributing. This release fixes critical issues discovered since
  822. the 2013.08 release. See the
  823. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.08.1">CHANGES</a>
  824. file for more details,
  825. and go to the <a href="/downloads/">downloads page</a> to pick up the
  826. <a href="/downloads/buildroot-2013.08.1.tar.bz2">2013.08.1 release</a>.</p>
  827. </div>
  828. </div>
  829. </li>
  830. <li class="timeline-inverted">
  831. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  832. <div class="timeline-panel">
  833. <div class="timeline-heading">
  834. <h4 class="timeline-title">Buildroot Developer Days</h4>
  835. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>16 September 2013</small></p>
  836. </div>
  837. <div class="timeline-body">
  838. <p>The next <i>Buildroot Developer Days</i> meeting will take
  839. place on Saturday October 26th and Sunday October 27th 2013 in
  840. Edinburgh, UK - Just after the <a
  841. href="https://events.linuxfoundation.org/events/embedded-linux-conference-europe">
  842. Embedded Linux Conference Europe</a> (October 23th-24th). This two
  843. days meeting is mainly open to Buildroot developers and
  844. contributors, or Buildroot users having a prior experience with
  845. the tool. It will allow developers to work on Buildroot and
  846. discuss current issues, the future directions, and more.</p>
  847. <p>For more details, see the
  848. <a href="http://www.elinux.org/Buildroot:DeveloperDaysELCE2013">wiki
  849. page</a> dedicated to the meeting.</p>
  850. </div>
  851. </div>
  852. </li>
  853. <li>
  854. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  855. <div class="timeline-panel">
  856. <div class="timeline-heading">
  857. <h4 class="timeline-title">2013.08 released</h4>
  858. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>31 August 2013</small></p>
  859. </div>
  860. <div class="timeline-body">
  861. <p>The stable 2013.08 release is out - Thanks to everyone
  862. contributing and testing the release candidates. See the
  863. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.08">CHANGES</a>
  864. file for more details, read the <a href="http://lists.buildroot.org/pipermail/buildroot/2013-August/077224.html">announcement</a>
  865. and go to the <a href="/downloads/">downloads page</a> to pick up the
  866. <a href="/downloads/buildroot-2013.08.tar.bz2">2013.08 release</a>.</p>
  867. </div>
  868. </div>
  869. </li>
  870. <li class="timeline-inverted">
  871. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  872. <div class="timeline-panel">
  873. <div class="timeline-heading">
  874. <h4 class="timeline-title">2013.08-rc3 released</h4>
  875. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>29 August 2013</small></p>
  876. </div>
  877. <div class="timeline-body">
  878. <p>Another week, another release candidate with more cleanups and
  879. build fixes. See the <a
  880. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.08_rc3">CHANGES</a>
  881. file for details.</p>
  882. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  883. <a href="/downloads/buildroot-2013.08-rc3.tar.bz2">2013.08-rc3
  884. release candidate</a>, and report any problems found to the <a
  885. href="support.html">mailing list</a> or <a
  886. href="https://bugs.uclibc.org">bug tracker</a>.</p>
  887. </div>
  888. </div>
  889. </li>
  890. <li>
  891. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  892. <div class="timeline-panel">
  893. <div class="timeline-heading">
  894. <h4 class="timeline-title">2013.08-rc2 released</h4>
  895. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>16 August 2013</small></p>
  896. </div>
  897. <div class="timeline-body">
  898. <p>We have a new release candidate! Lots of changes all over the
  899. tree, see
  900. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.08_rc2">CHANGES</a>
  901. file for details.</p>
  902. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  903. <a href="/downloads/buildroot-2013.08-rc2.tar.bz2">2013.08-rc2
  904. release candidate</a>, and report any problems found to
  905. the <a href="support.html">mailing list</a>
  906. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  907. </div>
  908. </div>
  909. </li>
  910. <li class="timeline-inverted">
  911. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  912. <div class="timeline-panel">
  913. <div class="timeline-heading">
  914. <h4 class="timeline-title">2013.08-rc1 released</h4>
  915. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>5 August 2013</small></p>
  916. </div>
  917. <div class="timeline-body">
  918. <p>We have a new release candidate! Lots of changes all over the
  919. tree, see
  920. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.08_rc1">CHANGES</a>
  921. file for details.</p>
  922. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  923. <a href="/downloads/buildroot-2013.08-rc1.tar.bz2">2013.08-rc1
  924. release candidate</a>, and report any problems found to
  925. the <a href="support.html">mailing list</a>
  926. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  927. </div>
  928. </div>
  929. </li>
  930. <li>
  931. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  932. <div class="timeline-panel">
  933. <div class="timeline-heading">
  934. <h4 class="timeline-title">2013.05 released</h4>
  935. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>31 May 2013</small></p>
  936. </div>
  937. <div class="timeline-body">
  938. <p>The stable 2013.05 release is out - Thanks to everyone
  939. contributing and testing the release candidates. See the
  940. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.05">CHANGES</a>
  941. file for more details, read the
  942. <a href="http://lists.buildroot.org/pipermail/buildroot/2013-May/073121.html">announcement</a>
  943. and go to the <a href="/downloads/">downloads page</a> to pick up the
  944. <a href="/downloads/buildroot-2013.05.tar.bz2">2013.05 release</a>.</p>
  945. </div>
  946. </div>
  947. </li>
  948. <li class="timeline-inverted">
  949. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  950. <div class="timeline-panel">
  951. <div class="timeline-heading">
  952. <h4 class="timeline-title">2013.05-rc3 released</h4>
  953. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>25 May 2013</small></p>
  954. </div>
  955. <div class="timeline-body">
  956. <p>Another week, another release candidate with more cleanups and
  957. build fixes. See the <a
  958. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.05_rc3">CHANGES</a>
  959. file for details.</p>
  960. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  961. <a href="/downloads/buildroot-2013.05-rc3.tar.bz2">2013.05-rc3
  962. release candidate</a>, and report any problems found to
  963. the <a href="support.html">mailing list</a>
  964. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  965. </div>
  966. </div>
  967. </li>
  968. <li>
  969. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  970. <div class="timeline-panel">
  971. <div class="timeline-heading">
  972. <h4 class="timeline-title">2013.05-rc2 released</h4>
  973. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>15 May 2013</small></p>
  974. </div>
  975. <div class="timeline-body">
  976. <p>Another week, another release candidate with more cleanups and
  977. build fixes. See the <a
  978. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.05_rc2">CHANGES</a>
  979. file for details.</p>
  980. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  981. <a href="/downloads/buildroot-2013.05-rc2.tar.bz2">2013.05-rc2
  982. release candidate</a>, and report any problems found to
  983. the <a href="support.html">mailing list</a>
  984. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  985. </div>
  986. </div>
  987. </li>
  988. <li class="timeline-inverted">
  989. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  990. <div class="timeline-panel">
  991. <div class="timeline-heading">
  992. <h4 class="timeline-title">2013.05-rc1 released</h4>
  993. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>8 May 2013</small></p>
  994. </div>
  995. <div class="timeline-body">
  996. <p>We have a new release candidate! Lots of changes all over the
  997. tree, see the <a
  998. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.05_rc1">CHANGES</a>
  999. file for details, and read the
  1000. <a href="http://lists.buildroot.org/pipermail/buildroot/2013-May/071737.html">announcement</a>.</p>
  1001. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1002. <a href="/downloads/buildroot-2013.05-rc1.tar.bz2">2013.05-rc1
  1003. release candidate</a>, and report any problems found to
  1004. the <a href="support.html">mailing list</a>
  1005. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1006. </div>
  1007. </div>
  1008. </li>
  1009. <li>
  1010. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1011. <div class="timeline-panel">
  1012. <div class="timeline-heading">
  1013. <h4 class="timeline-title">2013.02 released</h4>
  1014. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>28 February 2013</small></p>
  1015. </div>
  1016. <div class="timeline-body">
  1017. <p>The stable 2013.02 release is out - Thanks to everyone
  1018. contributing and testing the release candidates. See the
  1019. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.02">CHANGES</a>
  1020. file for more details
  1021. and go to the <a href="/downloads/">downloads page</a> to pick up the
  1022. <a href="/downloads/buildroot-2013.02.tar.bz2">2013.02 release</a>.</p>
  1023. </div>
  1024. </div>
  1025. </li>
  1026. <li class="timeline-inverted">
  1027. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1028. <div class="timeline-panel">
  1029. <div class="timeline-heading">
  1030. <h4 class="timeline-title">2013.02-rc3 released</h4>
  1031. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>26 February 2013</small></p>
  1032. </div>
  1033. <div class="timeline-body">
  1034. <p>Another week, another release candidate with more cleanups
  1035. and build fixes. See
  1036. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.02_rc3">CHANGES</a>
  1037. file for details.</p>
  1038. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1039. <a href="/downloads/buildroot-2013.02-rc3.tar.bz2">2013.02-rc3
  1040. release candidate</a>, and report any problems found to
  1041. the <a href="support.html">mailing list</a>
  1042. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1043. </div>
  1044. </div>
  1045. </li>
  1046. <li>
  1047. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1048. <div class="timeline-panel">
  1049. <div class="timeline-heading">
  1050. <h4 class="timeline-title">2013.02-rc2 released</h4>
  1051. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>19 February 2013</small></p>
  1052. </div>
  1053. <div class="timeline-body">
  1054. <p>Another week, another release candidate with more cleanups and
  1055. build fixes. See the <a
  1056. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.02_rc2">CHANGES</a>
  1057. file for details.</p>
  1058. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1059. <a href="/downloads/buildroot-2013.02-rc2.tar.bz2">2013.02-rc2
  1060. release candidate</a>, and report any problems found to
  1061. the <a href="support.html">mailing list</a>
  1062. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1063. </div>
  1064. </div>
  1065. </li>
  1066. <li class="timeline-inverted">
  1067. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1068. <div class="timeline-panel">
  1069. <div class="timeline-heading">
  1070. <h4 class="timeline-title">2013.02-rc1 released</h4>
  1071. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>10 February 2013</small></p>
  1072. </div>
  1073. <div class="timeline-body">
  1074. <p>We have a new release candidate! Lots of changes all over the
  1075. tree, see the <a
  1076. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.02_rc1">CHANGES</a>
  1077. file for details, and read the
  1078. <a href="http://lists.buildroot.org/pipermail/buildroot/2013-February/067148.html">announcement</a>.</p>
  1079. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1080. <a href="/downloads/buildroot-2013.02-rc1.tar.bz2">2013.02-rc1
  1081. release candidate</a>, and report any problems found to
  1082. the <a href="support.html">mailing list</a>
  1083. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1084. </div>
  1085. </div>
  1086. </li>
  1087. <li>
  1088. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1089. <div class="timeline-panel">
  1090. <div class="timeline-heading">
  1091. <h4 class="timeline-title">Report from Buildroot Developers Meeting</h4>
  1092. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>10 February 2013</small></p>
  1093. </div>
  1094. <div class="timeline-body">
  1095. <p>A report from the recent Buildroot Developers Meeting is now
  1096. <a href="http://lists.buildroot.org/pipermail/buildroot/2013-February/067105.html">available</a>.
  1097. <a href="http://emlinews.net">Embedded Linux News</a> also has a
  1098. <a href="http://www.emlinews.net/2013/02/buildroot-developers-meeting-report/">
  1099. writeup about the event</a>, including photos.</p>
  1100. <p>Once again, thanks to all the participants and to
  1101. <a href="http://www.google.com">Google</a> for sponsoring the event.</p>
  1102. </div>
  1103. </div>
  1104. </li>
  1105. <li class="timeline-inverted">
  1106. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1107. <div class="timeline-panel">
  1108. <div class="timeline-heading">
  1109. <h4 class="timeline-title">Next Buildroot Developers Meeting next to FOSDEM, Brussels</h4>
  1110. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>12 January 2013</small></p>
  1111. </div>
  1112. <div class="timeline-body">
  1113. <p>The next Buildroot Developers Meeting will take place on Monday
  1114. 4th February 2013 and Tuesday 5th February 2013 in Brussels,
  1115. Belgium. Those dates have been chosen to immediately follow the
  1116. great <a href="http://www.fosdem.org">FOSDEM</a> conference.</p>
  1117. <p>Attending this meeting is free, after registration by
  1118. contacting <a href="mailto:thomas.petazzoni@free-electrons.com">Thomas
  1119. Petazzoni</a>. For more details about the meeting, please see
  1120. the <a href="http://elinux.org/Buildroot:DeveloperDaysFOSDEM2013">related
  1121. Wiki page</a>.</p>
  1122. <p>We would like to
  1123. thank <a href="http://www.google.com">Google</a> for providing the
  1124. meeting location and the Internet connection, and offering free
  1125. lunch and refreshments to the participants.</p>
  1126. </div>
  1127. </div>
  1128. </li>
  1129. <li>
  1130. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1131. <div class="timeline-panel">
  1132. <div class="timeline-heading">
  1133. <h4 class="timeline-title">2012.11.1 released</h4>
  1134. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>3 January 2013</small></p>
  1135. </div>
  1136. <div class="timeline-body">
  1137. <p>The 2012.11.1 bugfix release is out - Thanks to everyone
  1138. contributing. This release fixes critical issues discovered since
  1139. the 2012.11 release, most importantly with non-largefile builds on
  1140. recent Ubuntu versions. See the
  1141. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.11.1">CHANGES</a>
  1142. file for more details,
  1143. and go to the <a href="/downloads/">downloads page</a> to pick up the
  1144. <a href="/downloads/buildroot-2012.11.1.tar.bz2">2012.11.1 release</a>.</p>
  1145. </div>
  1146. </div>
  1147. </li>
  1148. <li class="timeline-inverted">
  1149. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1150. <div class="timeline-panel">
  1151. <div class="timeline-heading">
  1152. <h4 class="timeline-title">2012.11 released</h4>
  1153. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>2 December 2012</small></p>
  1154. </div>
  1155. <div class="timeline-body">
  1156. <p>The stable 2012.11 release is out - Thanks to everyone
  1157. contributing and testing the release candidates. See the
  1158. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.11">CHANGES</a>
  1159. file for more details
  1160. and go to the <a href="/downloads/">downloads page</a> to pick up the
  1161. <a href="/downloads/buildroot-2012.11.tar.bz2">2012.11 release</a>.</p>
  1162. </div>
  1163. </div>
  1164. </li>
  1165. <li>
  1166. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1167. <div class="timeline-panel">
  1168. <div class="timeline-heading">
  1169. <h4 class="timeline-title">2012.11-rc2 released</h4>
  1170. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 November 2012</small></p>
  1171. </div>
  1172. <div class="timeline-body">
  1173. <p>RC2 is out with more bugfixes - See
  1174. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.11_rc2">CHANGES</a>
  1175. file for details.
  1176. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1177. <a href="/downloads/buildroot-2012.11-rc2.tar.bz2">2012.11-rc2
  1178. release candidate</a>, and report any problems found to
  1179. the <a href="support.html">mailing list</a>
  1180. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1181. </div>
  1182. </div>
  1183. </li>
  1184. <li class="timeline-inverted">
  1185. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1186. <div class="timeline-panel">
  1187. <div class="timeline-heading">
  1188. <h4 class="timeline-title">2012.11-rc1 released</h4>
  1189. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>17 November 2012</small></p>
  1190. </div>
  1191. <div class="timeline-body">
  1192. <p>We have a new release candidate! Lots of changes all over the
  1193. tree, see the <a
  1194. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.11_rc1">CHANGES</a>
  1195. file for details, and read the
  1196. <a href="http://lists.buildroot.org/pipermail/buildroot/2012-November/061995.html">announcement</a>.</p>
  1197. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1198. <a href="/downloads/buildroot-2012.11-rc1.tar.bz2">2012.11-rc1
  1199. release candidate</a>, and report any problems found to
  1200. the <a href="support.html">mailing list</a>
  1201. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1202. </div>
  1203. </div>
  1204. </li>
  1205. <li>
  1206. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1207. <div class="timeline-panel">
  1208. <div class="timeline-heading">
  1209. <h4 class="timeline-title">Buildroot Developer Day</h4>
  1210. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>17 November 2012</small></p>
  1211. </div>
  1212. <div class="timeline-body">
  1213. <p>A report from the recent <i>Buildroot Developer Days</i>
  1214. meeting in Barcelona, Spain is
  1215. now <a href="http://lists.buildroot.org/pipermail/buildroot/2012-November/061558.html">available</a>.
  1216. Many thanks to all the participants, and a special thanks to
  1217. Arnout Vandecappelle from <a href="http://mind.be/">mind</a>
  1218. for taking notes and Thomas Petazzoni
  1219. from <a href="http://free-electrons.com/">Free Electrons</a>
  1220. for handling all the practical arrangements, and naturally
  1221. our sponsors, <a href="http://www.fluendo.com/">Fluendo</a>
  1222. and <a href="http://www.synopsys.com/">Synopsis</a>.
  1223. </p>
  1224. <p>The next Developer Days will take place on February 4th and
  1225. 5th in Brussels, Belgium, right
  1226. after <a href="http://fosdem.org">FOSDEM</a>.</p>
  1227. </div>
  1228. </div>
  1229. </li>
  1230. <li class="timeline-inverted">
  1231. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1232. <div class="timeline-panel">
  1233. <div class="timeline-heading">
  1234. <h4 class="timeline-title">2012.08 released</h4>
  1235. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>31 August 2012</small></p>
  1236. </div>
  1237. <div class="timeline-body">
  1238. <p>The stable 2012.08 release is out - Thanks to everyone
  1239. contributing and testing the release candidates. See the
  1240. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.08">CHANGES</a>
  1241. file for more details and go to the <a href="/downloads/">downloads page</a> to pick up the
  1242. <a href="/downloads/buildroot-2012.08.tar.bz2">2012.08 release</a>.</p>
  1243. </div>
  1244. </div>
  1245. </li>
  1246. <li>
  1247. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1248. <div class="timeline-panel">
  1249. <div class="timeline-heading">
  1250. <h4 class="timeline-title">2012.08-rc3 released</h4>
  1251. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>25 August 2012</small></p>
  1252. </div>
  1253. <div class="timeline-body">
  1254. <p>We have a new release candidate! Various fixes, and
  1255. addition of licensing informations on many
  1256. packages. See <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.08_rc3">CHANGES</a>
  1257. file for details</p>
  1258. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1259. <a href="/downloads/buildroot-2012.08-rc3.tar.bz2">2012.08-rc3
  1260. release candidate</a>, and report any problems found to
  1261. the <a href="support.html">mailing list</a>
  1262. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1263. </div>
  1264. </div>
  1265. </li>
  1266. <li class="timeline-inverted">
  1267. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1268. <div class="timeline-panel">
  1269. <div class="timeline-heading">
  1270. <h4 class="timeline-title">2012.08-rc2 released</h4>
  1271. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>15 August 2012</small></p>
  1272. </div>
  1273. <div class="timeline-body">
  1274. <p>We have a new release candidate! Various fixes, and addition
  1275. of licensing informations on many
  1276. packages. See <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.08_rc2">CHANGES</a>
  1277. file for details</p>
  1278. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1279. <a href="/downloads/buildroot-2012.08-rc2.tar.bz2">2012.08-rc2
  1280. release candidate</a>, and report any problems found to the <a
  1281. href="support.html">mailing list</a> or <a
  1282. href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1283. </div>
  1284. </div>
  1285. </li>
  1286. <li>
  1287. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1288. <div class="timeline-panel">
  1289. <div class="timeline-heading">
  1290. <h4 class="timeline-title">2012.08-rc1 released</h4>
  1291. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>1 August 2012</small></p>
  1292. </div>
  1293. <div class="timeline-body">
  1294. <p>We have a new release candidate! Lots of changes all over
  1295. the tree, see
  1296. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.08_rc1">CHANGES</a>
  1297. file for details</p>
  1298. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1299. <a href="/downloads/buildroot-2012.08-rc1.tar.bz2">2012.08-rc1
  1300. release candidate</a>, and report any problems found to
  1301. the <a href="support.html">mailing list</a>
  1302. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1303. </div>
  1304. </div>
  1305. </li>
  1306. <li class="timeline-inverted">
  1307. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1308. <div class="timeline-panel">
  1309. <div class="timeline-heading">
  1310. <h4 class="timeline-title">Buildroot Developer Day</h4>
  1311. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>22 July 2012</small></p>
  1312. </div>
  1313. <div class="timeline-body">
  1314. <p>The next <i>Buildroot Developer Day</i> meeting will take place
  1315. on Saturday November 3th and Sunday November 4th 2012 in
  1316. Barcelona, Spain, just before
  1317. the <a href="https://events.linuxfoundation.org/events/embedded-linux-conference-europe">Embedded
  1318. Linux Conference Europe</a> (November 5th-7th). This two days
  1319. meeting is mainly opened to Buildroot developers and contributors,
  1320. or Buildroot users having a prior experience with the tool. This
  1321. meeting will allow developers to work and Buildroot, and discuss
  1322. current issues, the future directions, and more.</p>
  1323. <p>For more details, see
  1324. the <a href="http://elinux.org/Buildroot#Buildroot_Developers_Meeting.2C_3-4_November_2012.2C_Barcelona_Spain">wiki
  1325. page</a> dedicated to the meeting.</p>
  1326. </div>
  1327. </div>
  1328. </li>
  1329. <li>
  1330. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1331. <div class="timeline-panel">
  1332. <div class="timeline-heading">
  1333. <h4 class="timeline-title">2012.05 released</h4>
  1334. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 May 2012</small></p>
  1335. </div>
  1336. <div class="timeline-body">
  1337. <p>The stable 2012.05 release is out - Thanks to everyone
  1338. contributing and testing the release candidates. See the
  1339. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.05">CHANGES</a>
  1340. file for more details, read the
  1341. <a href="http://lists.buildroot.org/pipermail/buildroot/2012-May/054342.html">announcement</a>
  1342. and go to the <a href="/downloads/">downloads page</a> to pick up the
  1343. <a href="/downloads/buildroot-2012.05.tar.bz2">2012.05 release</a>.</p>
  1344. </div>
  1345. </div>
  1346. </li>
  1347. <li class="timeline-inverted">
  1348. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1349. <div class="timeline-panel">
  1350. <div class="timeline-heading">
  1351. <h4 class="timeline-title">2012.05-rc3 released</h4>
  1352. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>25 May 2012</small></p>
  1353. </div>
  1354. <div class="timeline-body">
  1355. <p>RC3 is out with more bugfixes - See
  1356. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.05_rc3">CHANGES</a>
  1357. file for details.
  1358. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1359. <a href="/downloads/buildroot-2012.05-rc3.tar.bz2">2012.05-rc3
  1360. release candidate</a>, and report any problems found to
  1361. the <a href="support.html">mailing list</a>
  1362. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1363. </div>
  1364. </div>
  1365. </li>
  1366. <li>
  1367. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1368. <div class="timeline-panel">
  1369. <div class="timeline-heading">
  1370. <h4 class="timeline-title">2012.05-rc2 released</h4>
  1371. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>18 May 2012</small></p>
  1372. </div>
  1373. <div class="timeline-body">
  1374. <p>Another week, another release candidate with more cleanups
  1375. and build fixes. See
  1376. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.05_rc2">CHANGES</a>
  1377. file for details.</p>
  1378. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1379. <a href="/downloads/buildroot-2012.05-rc2.tar.bz2">2012.05-rc2
  1380. release candidate</a>, and report any problems found to
  1381. the <a href="support.html">mailing list</a>
  1382. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1383. </div>
  1384. </div>
  1385. </li>
  1386. <li class="timeline-inverted">
  1387. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1388. <div class="timeline-panel">
  1389. <div class="timeline-heading">
  1390. <h4 class="timeline-title">2012.05-rc1 released</h4>
  1391. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>10 May 2012</small></p>
  1392. </div>
  1393. <div class="timeline-body">
  1394. <p>We have a new release candidate! Lots of changes all over
  1395. the tree, see
  1396. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.05_rc1">CHANGES</a>
  1397. file for details, and read the
  1398. <a href="http://lists.buildroot.org/pipermail/buildroot/2012-May/053736.html">announcement</a>.</p>
  1399. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1400. <a href="/downloads/buildroot-2012.05-rc1.tar.bz2">2012.05-rc1
  1401. release candidate</a>, and report any problems found to
  1402. the <a href="support.html">mailing list</a>
  1403. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1404. </div>
  1405. </div>
  1406. </li>
  1407. <li>
  1408. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1409. <div class="timeline-panel">
  1410. <div class="timeline-heading">
  1411. <h4 class="timeline-title">Autobuilder Results Online</h4>
  1412. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>20 April 2012</small></p>
  1413. </div>
  1414. <div class="timeline-body">
  1415. <p>The status of the autobuilders, which do repeated
  1416. <code>randpackageconfig</code> builds for continuous
  1417. integration testing, is now online
  1418. at <a href='http://autobuild.buildroot.org'>autobuild.buildroot.org</a>. The
  1419. code behind it can be found
  1420. in <a href='http://git.buildroot.net/buildroot-test/'>git</a>.</p>
  1421. <p>Thanks to Thomas Petazzoni for running the web interface, and
  1422. to <a href='http://gcc.gnu.org/wiki/CompileFarm'>The GCC Compile
  1423. Farm</a> and <a href='http://free-electrons.com/'>Free
  1424. Electrons</a> for hosting builders. Thomas also sends out a daily
  1425. summary of the build status to the mailing list.</p>
  1426. </div>
  1427. </div>
  1428. </li>
  1429. <li class="timeline-inverted">
  1430. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1431. <div class="timeline-panel">
  1432. <div class="timeline-heading">
  1433. <h4 class="timeline-title">2012.02 released</h4>
  1434. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>29 February 2012</small></p>
  1435. </div>
  1436. <div class="timeline-body">
  1437. <p>The stable 2012.02 release is out - Thanks to everyone
  1438. contributing and testing the release candidates. See the
  1439. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.02">CHANGES</a>
  1440. file for more details, read the
  1441. <a href="http://lists.buildroot.org/pipermail/buildroot/2012-February/050752.html">announcement</a>
  1442. and go to the <a href="/downloads/">downloads page</a> to pick up the
  1443. <a href="/downloads/buildroot-2012.02.tar.bz2">2012.02 release</a>.</p>
  1444. </div>
  1445. </div>
  1446. </li>
  1447. <li>
  1448. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1449. <div class="timeline-panel">
  1450. <div class="timeline-heading">
  1451. <h4 class="timeline-title">2012.02-rc3 released</h4>
  1452. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>27 February 2012</small></p>
  1453. </div>
  1454. <div class="timeline-body">
  1455. <p>RC3 is out with more bugfixes - See
  1456. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.02_rc3">CHANGES</a>
  1457. file for details.
  1458. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1459. <a href="/downloads/buildroot-2012.02-rc3.tar.bz2">2012.02-rc3
  1460. release candidate</a>, and report any problems found to
  1461. the <a href="support.html">mailing list</a>
  1462. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1463. </div>
  1464. </div>
  1465. </li>
  1466. <li class="timeline-inverted">
  1467. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1468. <div class="timeline-panel">
  1469. <div class="timeline-heading">
  1470. <h4 class="timeline-title">2012.02-rc2 released</h4>
  1471. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>19 February 2012</small></p>
  1472. </div>
  1473. <div class="timeline-body">
  1474. <p>Another week, another release candidate with more cleanups
  1475. and build fixes. See
  1476. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.02_rc2">CHANGES</a>
  1477. file for details.</p>
  1478. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1479. <a href="/downloads/buildroot-2012.02-rc2.tar.bz2">2012.02-rc2
  1480. release candidate</a>, and report any problems found to
  1481. the <a href="support.html">mailing list</a>
  1482. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1483. </div>
  1484. </div>
  1485. </li>
  1486. <li>
  1487. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1488. <div class="timeline-panel">
  1489. <div class="timeline-heading">
  1490. <h4 class="timeline-title">2012.02-rc1 released</h4>
  1491. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>12 February 2012</small></p>
  1492. </div>
  1493. <div class="timeline-body">
  1494. <p>We have a new release candidate! Lots of changes all over
  1495. the tree, see
  1496. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.02_rc1">CHANGES</a>
  1497. file for details, and read the
  1498. <a href="http://lists.buildroot.org/pipermail/buildroot/2012-February/050234.html">announcement</a>.</p>
  1499. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1500. <a href="/downloads/buildroot-2012.02-rc1.tar.bz2">2012.02-rc1
  1501. release candidate</a>, and report any problems found to
  1502. the <a href="support.html">mailing list</a>
  1503. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1504. </div>
  1505. </div>
  1506. </li>
  1507. <li class="timeline-inverted">
  1508. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1509. <div class="timeline-panel">
  1510. <div class="timeline-heading">
  1511. <h4 class="timeline-title">Buildroot Developer Day</h4>
  1512. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>31 January 2012</small></p>
  1513. </div>
  1514. <div class="timeline-body">
  1515. <p>Another <i>Buildroot Developer Day</i> will take place on
  1516. Friday, February 3rd in Brussels, Belgium - The day
  1517. before <a href="http://fosdem.org">FOSDEM</a>. See the
  1518. <a href="http://lists.buildroot.org/pipermail/buildroot/2012-January/049340.html">announcement</a>
  1519. or
  1520. the <a href="http://free-electrons.com/blog/bdd-2012-brussels/">Free
  1521. Electrons blog</a> for more info.</p>
  1522. </div>
  1523. </div>
  1524. </li>
  1525. <li>
  1526. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1527. <div class="timeline-panel">
  1528. <div class="timeline-heading">
  1529. <h4 class="timeline-title">2011.11 released</h4>
  1530. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 November 2011</small></p>
  1531. </div>
  1532. <div class="timeline-body">
  1533. <p>The stable 2011.11 release is out - Thanks to everyone
  1534. contributing and testing the release candidates. See the
  1535. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.11">CHANGES</a>
  1536. file for more details, read the
  1537. <a href="http://lists.buildroot.org/pipermail/buildroot/2011-November/047926.html">announcement</a>
  1538. and go to the <a href="/downloads/">downloads page</a> to pick up the
  1539. <a href="/downloads/buildroot-2011.11.tar.bz2">2011.11 release</a>.</p>
  1540. </div>
  1541. </div>
  1542. </li>
  1543. <li class="timeline-inverted">
  1544. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1545. <div class="timeline-panel">
  1546. <div class="timeline-heading">
  1547. <h4 class="timeline-title">2011.11-rc3 released</h4>
  1548. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>26 November 2011</small></p>
  1549. </div>
  1550. <div class="timeline-body">
  1551. <p>RC3 is out with more bugfixes - See
  1552. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.11_rc3">CHANGES</a>
  1553. file for details.
  1554. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1555. <a href="/downloads/buildroot-2011.11-rc3.tar.bz2">2011.11-rc3
  1556. release candidate</a>, and report any problems found to
  1557. the <a href="support.html">mailing list</a>
  1558. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1559. </div>
  1560. </div>
  1561. </li>
  1562. <li>
  1563. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1564. <div class="timeline-panel">
  1565. <div class="timeline-heading">
  1566. <h4 class="timeline-title">2011.11-rc2 released</h4>
  1567. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>18 November 2011</small></p>
  1568. </div>
  1569. <div class="timeline-body">
  1570. <p>Another week, another release candidate with a bunch of
  1571. cleanups and build fixes. See
  1572. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.11_rc2">CHANGES</a>
  1573. file for details.</p>
  1574. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1575. <a href="/downloads/buildroot-2011.11-rc2.tar.bz2">2011.11-rc2
  1576. release candidate</a>, and report any problems found to
  1577. the <a href="support.html">mailing list</a>
  1578. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1579. </div>
  1580. </div>
  1581. </li>
  1582. <li class="timeline-inverted">
  1583. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1584. <div class="timeline-panel">
  1585. <div class="timeline-heading">
  1586. <h4 class="timeline-title">2011.11-rc1 released</h4>
  1587. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>11 November 2011</small></p>
  1588. </div>
  1589. <div class="timeline-body">
  1590. <p>We have a new release candidate! Lots of changes all over
  1591. the tree, see
  1592. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.11_rc1">CHANGES</a>
  1593. file for details, and read the
  1594. <a href="http://lists.buildroot.org/pipermail/buildroot/2011-November/047395.html">announcement</a>
  1595. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1596. <a href="/downloads/buildroot-2011.11-rc1.tar.bz2">2011.11-rc1
  1597. release candidate</a>, and report any problems found to
  1598. the <a href="support.html">mailing list</a>
  1599. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1600. </div>
  1601. </div>
  1602. </li>
  1603. <li>
  1604. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1605. <div class="timeline-panel">
  1606. <div class="timeline-heading">
  1607. <h4 class="timeline-title">2011.08 released</h4>
  1608. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>31 August 2011</small></p>
  1609. </div>
  1610. <div class="timeline-body">
  1611. <p>The stable 2011.08 release is out - Thanks to everyone
  1612. contributing and testing the release candidates. See the
  1613. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.08">CHANGES</a>
  1614. file for more details, and go to the <a href="/downloads/">downloads page</a> to pick up the
  1615. <a href="/downloads/buildroot-2011.08.tar.bz2">2011.08 release</a>.</p>
  1616. </div>
  1617. </div>
  1618. </li>
  1619. <li class="timeline-inverted">
  1620. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1621. <div class="timeline-panel">
  1622. <div class="timeline-heading">
  1623. <h4 class="timeline-title">2011.08-rc2 released</h4>
  1624. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>29 August 2011</small></p>
  1625. </div>
  1626. <div class="timeline-body">
  1627. <p>RC2 is out with more bugfixes. See
  1628. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.08_rc2">CHANGES</a>
  1629. file for details, and read the
  1630. <a href="http://lists.buildroot.org/pipermail/buildroot/2011-August/045211.html">announcement</a>.
  1631. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1632. <a href="/downloads/buildroot-2011.08-rc2.tar.bz2">2011.08-rc2
  1633. release candidate</a>, and report any problems found to
  1634. the <a href="support.html">mailing list</a>
  1635. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1636. </div>
  1637. </div>
  1638. </li>
  1639. <li>
  1640. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1641. <div class="timeline-panel">
  1642. <div class="timeline-heading">
  1643. <h4 class="timeline-title">2011.08-rc1 released</h4>
  1644. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>4 August 2011</small></p>
  1645. </div>
  1646. <div class="timeline-body">
  1647. <p>We have a new release candidate! Lots of changes all over
  1648. the tree, see
  1649. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.08_rc1">CHANGES</a>
  1650. file for details, and read the
  1651. <a href="http://lists.buildroot.org/pipermail/buildroot/2011-August/044855.html">announcement</a>.
  1652. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1653. <a href="/downloads/buildroot-2011.08-rc1.tar.bz2">2011.08-rc1
  1654. release candidate</a>, and report any problems found to
  1655. the <a href="support.html">mailing list</a>
  1656. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1657. </div>
  1658. </div>
  1659. </li>
  1660. <li class="timeline-inverted">
  1661. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1662. <div class="timeline-panel">
  1663. <div class="timeline-heading">
  1664. <h4 class="timeline-title">2011.05 released</h4>
  1665. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>27 May 2011</small></p>
  1666. </div>
  1667. <div class="timeline-body">
  1668. <p>The stable 2011.05 release is out - Thanks to everyone
  1669. contributing and testing the release candidates. See the
  1670. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.05">CHANGES</a>
  1671. file for more details, and go to the <a href="/downloads/">downloads page</a> to pick up the
  1672. <a href="/downloads/buildroot-2011.05.tar.bz2">2011.05 release</a>.</p>
  1673. </div>
  1674. </div>
  1675. </li>
  1676. <li>
  1677. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1678. <div class="timeline-panel">
  1679. <div class="timeline-heading">
  1680. <h4 class="timeline-title">2011.05-rc2 released</h4>
  1681. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>24 May 2011</small></p>
  1682. </div>
  1683. <div class="timeline-body">
  1684. <p>RC2 is out with more bugfixes. See
  1685. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.05_rc2">CHANGES</a>
  1686. file for details.
  1687. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1688. <a href="/downloads/buildroot-2011.05-rc2.tar.bz2">2011.05-rc2
  1689. release candidate</a>, and report any problems found to
  1690. the <a href="support.html">mailing list</a>
  1691. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1692. </div>
  1693. </div>
  1694. </li>
  1695. <li class="timeline-inverted">
  1696. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1697. <div class="timeline-panel">
  1698. <div class="timeline-heading">
  1699. <h4 class="timeline-title">2011.05-rc1 released</h4>
  1700. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>18 May 2011</small></p>
  1701. </div>
  1702. <div class="timeline-body">
  1703. <p>We have a new release candidate! Lots of changes all over
  1704. the tree, see
  1705. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.05_rc1">CHANGES</a>
  1706. file for details, and read the
  1707. <a href="http://lists.buildroot.org/pipermail/buildroot/2011-May/043317.html">announcement</a>.
  1708. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1709. <a href="/downloads/buildroot-2011.05-rc1.tar.bz2">2011.05-rc1
  1710. release candidate</a>, and report any problems found to
  1711. the <a href="support.html">mailing list</a>
  1712. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1713. </div>
  1714. </div>
  1715. </li>
  1716. <li>
  1717. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1718. <div class="timeline-panel">
  1719. <div class="timeline-heading">
  1720. <h4 class="timeline-title">2011.02 released</h4>
  1721. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>28 February 2011</small></p>
  1722. </div>
  1723. <div class="timeline-body">
  1724. <p>The stable 2011.02 release is out - Thanks to everyone
  1725. contributing and testing the release candidates. See the
  1726. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.02">CHANGES</a>
  1727. file for more details, read the
  1728. <a href="http://lists.buildroot.org/pipermail/buildroot/2011-February/041662.html">announcement</a>
  1729. and go to the <a href="/downloads/">downloads page</a> to pick up the
  1730. <a href="/downloads/buildroot-2011.02.tar.bz2">2011.02 release</a>.</p>
  1731. </div>
  1732. </div>
  1733. </li>
  1734. <li class="timeline-inverted">
  1735. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1736. <div class="timeline-panel">
  1737. <div class="timeline-heading">
  1738. <h4 class="timeline-title">2011.02-rc2 released</h4>
  1739. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>24 February 2011</small></p>
  1740. </div>
  1741. <div class="timeline-body">
  1742. <p>RC2 is out with more cleanups and bugfixes, see
  1743. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.02_rc2">CHANGES</a>
  1744. file for details.</p>
  1745. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1746. <a href="/downloads/buildroot-2011.02-rc2.tar.bz2">2011.02-rc2
  1747. release candidate</a>, and report any problems found to
  1748. the <a href="support.html">mailing list</a>
  1749. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1750. </div>
  1751. </div>
  1752. </li>
  1753. <li>
  1754. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1755. <div class="timeline-panel">
  1756. <div class="timeline-heading">
  1757. <h4 class="timeline-title">2011.02-rc1 released</h4>
  1758. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>14 February 2011</small></p>
  1759. </div>
  1760. <div class="timeline-body">
  1761. <p>We have a new release candidate! Lots of changes all over
  1762. the tree, see
  1763. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.02_rc1">CHANGES</a>
  1764. file for details, and read the
  1765. <a href="http://lists.buildroot.org/pipermail/buildroot/2011-February/041365.html">announcement</a>.
  1766. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1767. <a href="/downloads/buildroot-2011.02-rc1.tar.bz2">2011.02-rc1
  1768. release candidate</a>, and report any problems found to
  1769. the <a href="support.html">mailing list</a>
  1770. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1771. </div>
  1772. </div>
  1773. </li>
  1774. <li class="timeline-inverted">
  1775. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1776. <div class="timeline-panel">
  1777. <div class="timeline-heading">
  1778. <h4 class="timeline-title">2010.11 released</h4>
  1779. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 November 2010</small></p>
  1780. </div>
  1781. <div class="timeline-body">
  1782. <p>The stable 2010.11 release is out - Thanks to everyone
  1783. contributing and testing the release candidates. See the
  1784. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.11">CHANGES</a>
  1785. file for more details, read the
  1786. <a href="http://lists.buildroot.org/pipermail/buildroot/2010-November/039135.html">announcement</a>
  1787. and go to the <a href="/downloads/">downloads page</a> to pick up the
  1788. <a href="/downloads/buildroot-2010.11.tar.bz2">2010.11 release</a>.</p>
  1789. </div>
  1790. </div>
  1791. </li>
  1792. <li>
  1793. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1794. <div class="timeline-panel">
  1795. <div class="timeline-heading">
  1796. <h4 class="timeline-title">2010.11-rc2 released</h4>
  1797. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>25 November 2010</small></p>
  1798. </div>
  1799. <div class="timeline-body">
  1800. <p>RC2 is out with more cleanups and bugfixes, see
  1801. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.11_rc2">CHANGES</a>
  1802. file for details.</p>
  1803. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1804. <a href="/downloads/buildroot-2010.11-rc2.tar.bz2">2010.11-rc2
  1805. release candidate</a>, and report any problems found to
  1806. the <a href="support.html">mailing list</a>
  1807. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1808. </div>
  1809. </div>
  1810. </li>
  1811. <li class="timeline-inverted">
  1812. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1813. <div class="timeline-panel">
  1814. <div class="timeline-heading">
  1815. <h4 class="timeline-title">2010.11-rc1 released</h4>
  1816. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>8 November 2010</small></p>
  1817. </div>
  1818. <div class="timeline-body">
  1819. <p>We have a new release candidate! Lots of changes all over
  1820. the tree, see
  1821. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.11_rc1">CHANGES</a>
  1822. file for details, and read the
  1823. <a href="http://lists.buildroot.org/pipermail/buildroot/2010-November/038645.html">announcement</a>.
  1824. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1825. <a href="/downloads/buildroot-2010.11-rc1.tar.bz2">2010.11-rc1
  1826. release candidate</a>, and report any problems found to
  1827. the <a href="support.html">mailing list</a>
  1828. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1829. </div>
  1830. </div>
  1831. </li>
  1832. <li>
  1833. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1834. <div class="timeline-panel">
  1835. <div class="timeline-heading">
  1836. <h4 class="timeline-title">Buildroot Developer Day</h4>
  1837. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>28 September 2010</small></p>
  1838. </div>
  1839. <div class="timeline-body">
  1840. <p>A <i>Buildroot Developer Day</i> will take place on
  1841. Friday, October 29th in Cambridge, UK - Just the day after the
  1842. <a href="http://www.embeddedlinuxconference.com/elc_europe10/">Embedded
  1843. Linux Conference Europe</a>. This <i>Developer Day</i>
  1844. aims at allowing Buildroot developers to meet and exchange
  1845. ideas on the project and its future. See the
  1846. <a href="http://lists.buildroot.org/pipermail/buildroot/2010-September/037930.html">announcement</a>
  1847. for more info.</p>
  1848. <p>Thanks to Thomas Petazzoni for taking care of the practical
  1849. arrangements.</p>
  1850. </div>
  1851. </div>
  1852. </li>
  1853. <li class="timeline-inverted">
  1854. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1855. <div class="timeline-panel">
  1856. <div class="timeline-heading">
  1857. <h4 class="timeline-title">2010.08 released</h4>
  1858. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>31 August 2010</small></p>
  1859. </div>
  1860. <div class="timeline-body">
  1861. <p>The stable 2010.08 release is out - Thanks to everyone
  1862. contributing and testing the release candidates. See the
  1863. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.08">CHANGES</a>
  1864. file for more details, read the
  1865. <a href="http://lists.buildroot.org/pipermail/buildroot/2010-August/037078.html">announcement</a>
  1866. and go to the <a href="/downloads/">downloads page</a> to pick up the
  1867. <a href="/downloads/buildroot-2010.08.tar.bz2">2010.08 release</a>.</p>
  1868. </div>
  1869. </div>
  1870. </li>
  1871. <li>
  1872. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1873. <div class="timeline-panel">
  1874. <div class="timeline-heading">
  1875. <h4 class="timeline-title">2010.08-rc2 released</h4>
  1876. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 August 2010</small></p>
  1877. </div>
  1878. <div class="timeline-body">
  1879. <p>RC2 is out with more cleanups and bugfixes, see
  1880. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.08_rc2">CHANGES</a>
  1881. file for details.
  1882. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1883. <a href="/downloads/buildroot-2010.08-rc2.tar.bz2">2010.08-rc2
  1884. release candidate</a>, and report any problems found to
  1885. the <a href="support.html">mailing list</a>
  1886. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1887. This is very much expected to be the final release candidate,
  1888. so give it a good test and expect a final 2010.08 release
  1889. before September unless critical issues are found.</p>
  1890. </div>
  1891. </div>
  1892. </li>
  1893. <li class="timeline-inverted">
  1894. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1895. <div class="timeline-panel">
  1896. <div class="timeline-heading">
  1897. <h4 class="timeline-title">2010.08-rc1 released</h4>
  1898. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 July 2010</small></p>
  1899. </div>
  1900. <div class="timeline-body">
  1901. <p>We have a new release candidate! Lots of changes all over
  1902. the tree, see
  1903. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.08_rc1">CHANGES</a>
  1904. file for details.
  1905. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1906. <a href="/downloads/buildroot-2010.08-rc1.tar.bz2">2010.08-rc1
  1907. release candidate</a>, and report any problems found to
  1908. the <a href="support.html">mailing list</a>
  1909. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1910. </div>
  1911. </div>
  1912. </li>
  1913. <li>
  1914. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1915. <div class="timeline-panel">
  1916. <div class="timeline-heading">
  1917. <h4 class="timeline-title">2010.05 released</h4>
  1918. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 May 2010</small></p>
  1919. </div>
  1920. <div class="timeline-body">
  1921. <p>The stable 2010.05 release is out - Thanks to everyone
  1922. contributing and testing the release candidates. See the
  1923. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.05">CHANGES</a>
  1924. file for more details, read the
  1925. <a href="http://lists.buildroot.org/pipermail/buildroot/2010-May/034878.html">announcement</a>
  1926. and go to the <a href="/downloads/">downloads page</a> to pick up the
  1927. <a href="/downloads/buildroot-2010.05.tar.bz2">2010.05 release</a>.</p>
  1928. </div>
  1929. </div>
  1930. </li>
  1931. <li class="timeline-inverted">
  1932. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1933. <div class="timeline-panel">
  1934. <div class="timeline-heading">
  1935. <h4 class="timeline-title">2010.05-rc3 released</h4>
  1936. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>27 May 2010</small></p>
  1937. </div>
  1938. <div class="timeline-body">
  1939. <p>RC3 is out with more cleanups and bugfixes, see
  1940. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.05_rc3">CHANGES</a>
  1941. file for details.
  1942. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1943. <a href="/downloads/buildroot-2010.05-rc3.tar.bz2">2010.05-rc3
  1944. release candidate</a>, and report any problems found to
  1945. the <a href="support.html">mailing list</a>
  1946. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1947. </div>
  1948. </div>
  1949. </li>
  1950. <li>
  1951. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1952. <div class="timeline-panel">
  1953. <div class="timeline-heading">
  1954. <h4 class="timeline-title">2010.05-rc2 released</h4>
  1955. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>11 May 2010</small></p>
  1956. </div>
  1957. <div class="timeline-body">
  1958. <p>Another week, another release candidate with a bunch of
  1959. cleanups and build fixes.</p>
  1960. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1961. <a href="/downloads/buildroot-2010.05-rc2.tar.bz2">2010.05-rc2
  1962. release candidate</a>, and report any problems found to
  1963. the <a href="support.html">mailing list</a>
  1964. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1965. </div>
  1966. </div>
  1967. </li>
  1968. <li class="timeline-inverted">
  1969. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1970. <div class="timeline-panel">
  1971. <div class="timeline-heading">
  1972. <h4 class="timeline-title">2010.05-rc1 released</h4>
  1973. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>3 May 2010</small></p>
  1974. </div>
  1975. <div class="timeline-body">
  1976. <p>We have a new release candidate! Lots of changes all over
  1977. the tree, see
  1978. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.05_rc1">CHANGES</a>
  1979. file for details.
  1980. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1981. <a href="/downloads/buildroot-2010.05-rc1.tar.bz2">2010.05-rc1
  1982. release candidate</a>, and report any problems found to
  1983. the <a href="support.html">mailing list</a>
  1984. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1985. </div>
  1986. </div>
  1987. </li>
  1988. <li>
  1989. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1990. <div class="timeline-panel">
  1991. <div class="timeline-heading">
  1992. <h4 class="timeline-title">FOSDEM slides online</h4>
  1993. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>2 May 2010</small></p>
  1994. </div>
  1995. <div class="timeline-body">
  1996. <p>The slides from
  1997. the <a href="http://fosdem.org/2010/schedule/events/emb_cross_build">Cross
  1998. Build Systems: Present & Future</a> session
  1999. at <a href="http://fosdem.org/2010">FOSDEM</a> are
  2000. now <a href="http://send-patches.org/news/20100211-1-FOSDEM-Crossdev-Workshop.pdf">online</a>.
  2001. </div>
  2002. </div>
  2003. </li>
  2004. <li class="timeline-inverted">
  2005. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2006. <div class="timeline-panel">
  2007. <div class="timeline-heading">
  2008. <h4 class="timeline-title">2010.02 released</h4>
  2009. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>26 February 2010</small></p>
  2010. </div>
  2011. <div class="timeline-body">
  2012. <p>The stable 2010.02 release is out - Thanks to everyone
  2013. contributing and testing the release candidates. See the
  2014. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.02">CHANGES</a>
  2015. file for more details, and go to
  2016. the <a href="/downloads/">downloads page</a> to pick up
  2017. the <a href="/downloads/buildroot-2010.02.tar.bz2">2010.02
  2018. release</a>.</p>
  2019. </div>
  2020. </div>
  2021. </li>
  2022. <li>
  2023. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2024. <div class="timeline-panel">
  2025. <div class="timeline-heading">
  2026. <h4 class="timeline-title">2010.02-rc2 released</h4>
  2027. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>23 February 2010</small></p>
  2028. </div>
  2029. <div class="timeline-body">
  2030. <p>RC2 is out with more cleanups and bugfixes, see
  2031. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.02_rc2">CHANGES</a>
  2032. file for details.
  2033. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2034. <a href="/downloads/buildroot-2010.02-rc2.tar.bz2">2010.02-rc2
  2035. release candidate</a>, and report any problems found to
  2036. the <a href="support.html">mailing list</a>
  2037. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2038. </div>
  2039. </div>
  2040. </li>
  2041. <li class="timeline-inverted">
  2042. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2043. <div class="timeline-panel">
  2044. <div class="timeline-heading">
  2045. <h4 class="timeline-title">2010.02-rc1 released</h4>
  2046. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>9 February 2010</small></p>
  2047. </div>
  2048. <div class="timeline-body">
  2049. <p>We have a new release candidate! Lots of changes all over
  2050. the tree, see
  2051. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.02_rc1">CHANGES</a>
  2052. file for details.
  2053. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2054. <a href="/downloads/buildroot-2010.02-rc1.tar.bz2">2010.02-rc1
  2055. release candidate</a>, and report any problems found to
  2056. the <a href="support.html">mailing list</a>
  2057. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2058. </div>
  2059. </div>
  2060. </li>
  2061. <li>
  2062. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2063. <div class="timeline-panel">
  2064. <div class="timeline-heading">
  2065. <h4 class="timeline-title">2009.11 released</h4>
  2066. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>1 December 2009</small></p>
  2067. </div>
  2068. <div class="timeline-body">
  2069. <p>The stable 2009.11 release is out - Thanks to everyone
  2070. contributing and testing the release candidates. See the
  2071. <a href="http://lists.buildroot.org/pipermail/buildroot/2009-December/030672.html">announcement</a>
  2072. or <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.11">CHANGES</a>
  2073. for more details, and go to the <a href="/downloads/">downloads page</a>
  2074. to pick up the <a href="/downloads/buildroot-2009.11.tar.bz2">2009.11
  2075. release</a>.</p>
  2076. </div>
  2077. </div>
  2078. </li>
  2079. <li class="timeline-inverted">
  2080. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2081. <div class="timeline-panel">
  2082. <div class="timeline-heading">
  2083. <h4 class="timeline-title">2009.11-rc2 released</h4>
  2084. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>29 November 2009</small></p>
  2085. </div>
  2086. <div class="timeline-body">
  2087. <p>RC2 is out with more cleanups and bugfixes, see
  2088. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.11_rc2">CHANGES</a>
  2089. file for details.
  2090. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2091. <a href="/downloads/buildroot-2009.11-rc2.tar.bz2">2009.11-rc2
  2092. release candidate</a>, and report any problems found to
  2093. the <a href="support.html">mailing list</a>
  2094. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2095. </div>
  2096. </div>
  2097. </li>
  2098. <li>
  2099. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2100. <div class="timeline-panel">
  2101. <div class="timeline-heading">
  2102. <h4 class="timeline-title">2009.11-rc1 released</h4>
  2103. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>23 November 2009</small></p>
  2104. </div>
  2105. <div class="timeline-body">
  2106. <p>We have a new release candidate! Lots of changes all over
  2107. the tree, see
  2108. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.11_rc1">CHANGES</a>
  2109. file for details.
  2110. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2111. <a href="/downloads/buildroot-2009.11-rc1.tar.bz2">2009.11-rc1
  2112. release candidate</a>, and report any problems found to
  2113. the <a href="support.html">mailing list</a>
  2114. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2115. </div>
  2116. </div>
  2117. </li>
  2118. <li class="timeline-inverted">
  2119. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2120. <div class="timeline-panel">
  2121. <div class="timeline-heading">
  2122. <h4 class="timeline-title">First Buildroot Developer Day</h4>
  2123. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>7 September 2009</small></p>
  2124. </div>
  2125. <div class="timeline-body">
  2126. <p>The first <i>Buildroot Developer Day</i> will take place on
  2127. Saturday, October 17th in Grenoble, France, just the day after
  2128. Embedded Linux Conference Europe. This <i>Developer Day</i> aims
  2129. at allowing Buildroot developers to meet and exchange ideas on the
  2130. project and its future.</p>
  2131. <p>As the number of places is limited, interested candidates are
  2132. invited to send an e-mail to Peter Korsgaard (<code>jacmet at
  2133. uclibc dot org</code>) and Thomas Petazzoni (<code>thomas dot
  2134. petazzoni at free-electrons dot com</code>).</p>
  2135. <p>This <i>Developer Day</i> will take place thanks to the
  2136. sponsoring of <a href="http://www.calao-systems.com">Calao
  2137. Systems</a> and <a href="http://www.free-electrons.com">Free
  2138. Electrons</a>.</p>
  2139. </div>
  2140. </div>
  2141. </li>
  2142. <li>
  2143. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2144. <div class="timeline-panel">
  2145. <div class="timeline-heading">
  2146. <h4 class="timeline-title">2009.08 released</h4>
  2147. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>31 August 2009</small></p>
  2148. </div>
  2149. <div class="timeline-body">
  2150. <p>The stable 2009.08 release is out - Thanks to everyone
  2151. contributing and testing the release candidates. See the
  2152. <a href="http://lists.buildroot.org/pipermail/buildroot/2009-August/029018.html">announcement</a>
  2153. or <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.08">CHANGES</a>
  2154. for more details, and go to the <a href="/downloads/">downloads page</a>
  2155. to pick up the <a href="/downloads/buildroot-2009.08.tar.bz2">2009.08
  2156. release</a>.</p>
  2157. </div>
  2158. </div>
  2159. </li>
  2160. <li class="timeline-inverted">
  2161. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2162. <div class="timeline-panel">
  2163. <div class="timeline-heading">
  2164. <h4 class="timeline-title">2009.08-rc3 released</h4>
  2165. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>26 August 2009</small></p>
  2166. </div>
  2167. <div class="timeline-body">
  2168. <p>A number of bugfixes have been added to the tree since RC2
  2169. (especially thanks to Thomas Petazzoni) - See
  2170. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.08_rc3">CHANGES</a>
  2171. file for details. This is very much expected to be the final
  2172. release candidate, so give it a good test and expect a final
  2173. 2009.08 release next weekend unless critical issues are
  2174. found.</p>
  2175. <p>Head to the <a href="/downloads/">downloads page</a> to
  2176. pick up the
  2177. <a href="/downloads/buildroot-2009.08-rc3.tar.bz2">2009.08-rc3
  2178. release candidate</a>, and report any problems found to
  2179. the <a href="support.html">mailing list</a>
  2180. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2181. </div>
  2182. </div>
  2183. </li>
  2184. <li>
  2185. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2186. <div class="timeline-panel">
  2187. <div class="timeline-heading">
  2188. <h4 class="timeline-title">2009.08-rc2 released</h4>
  2189. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>6 August 2009</small></p>
  2190. </div>
  2191. <div class="timeline-body">
  2192. <p>RC2 is out with more cleanups and bugfixes, see
  2193. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.08_rc2">CHANGES</a>
  2194. file for details.
  2195. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2196. <a href="/downloads/buildroot-2009.08-rc2.tar.bz2">2009.08-rc2
  2197. release candidate</a>, and report any problems found to
  2198. the <a href="support.html">mailing list</a>
  2199. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2200. </div>
  2201. </div>
  2202. </li>
  2203. <li class="timeline-inverted">
  2204. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2205. <div class="timeline-panel">
  2206. <div class="timeline-heading">
  2207. <h4 class="timeline-title">2009.08-rc1 released</h4>
  2208. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>2 August 2009</small></p>
  2209. </div>
  2210. <div class="timeline-body">
  2211. <p>We have a new release candidate! Lots of changes all over
  2212. the tree, see
  2213. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.08_rc1">CHANGES</a>
  2214. file for details.
  2215. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2216. <a href="/downloads/buildroot-2009.08-rc1.tar.bz2">2009.08-rc1
  2217. release candidate</a>, and report any problems found to
  2218. the <a href="support.html">mailing list</a>
  2219. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2220. </div>
  2221. </div>
  2222. </li>
  2223. <li>
  2224. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2225. <div class="timeline-panel">
  2226. <div class="timeline-heading">
  2227. <h4 class="timeline-title">2009.05 released</h4>
  2228. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>1 June 2009</small></p>
  2229. </div>
  2230. <div class="timeline-body">
  2231. <p>The stable 2009.05 release is out - Thanks to everyone
  2232. contributing and testing the release candidates. See the
  2233. <a href="http://lists.buildroot.org/pipermail/buildroot/2009-June/027640.html">announcement</a>
  2234. or <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.05">CHANGES</a>
  2235. for more details, and go to the <a href="/downloads/">downloads page</a>
  2236. to pick up the <a href="/downloads/buildroot-2009.05.tar.bz2">2009.05
  2237. release</a>.</p>
  2238. </div>
  2239. </div>
  2240. </li>
  2241. <li class="timeline-inverted">
  2242. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2243. <div class="timeline-panel">
  2244. <div class="timeline-heading">
  2245. <h4 class="timeline-title">2009.05-rc3 released</h4>
  2246. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>27 May 2009</small></p>
  2247. </div>
  2248. <div class="timeline-body">
  2249. <p>We had a number of fixes post-RC2, so RC3 is out
  2250. (see <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.05_rc3">CHANGES</a>
  2251. for details). Now is the moment to test and verify that
  2252. everything is working for your favorite config - Expect a
  2253. final 2009.05 very soon.</p>
  2254. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2255. <a href="/downloads/buildroot-2009.05-rc3.tar.bz2">2009.05-rc3
  2256. release candidate</a>, and report any problems found to
  2257. the <a href="support.html">mailing list</a>
  2258. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2259. </div>
  2260. </div>
  2261. </li>
  2262. <li>
  2263. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2264. <div class="timeline-panel">
  2265. <div class="timeline-heading">
  2266. <h4 class="timeline-title">2009.05-rc2 released</h4>
  2267. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>19 May 2009</small></p>
  2268. </div>
  2269. <div class="timeline-body">
  2270. <p>RC2 is out with more cleanups and bug fixes
  2271. (see <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.05_rc2">CHANGES</a>).
  2272. Unless big issues are found, expect this to be the last
  2273. release candidate before the release - So give it a good
  2274. test.</p>
  2275. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2276. <a href="/downloads/buildroot-2009.05-rc2.tar.bz2">2009.05-rc2
  2277. release candidate</a>, and report any problems found to
  2278. the <a href="support.html">mailing list</a>
  2279. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2280. </div>
  2281. </div>
  2282. </li>
  2283. <li class="timeline-inverted">
  2284. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2285. <div class="timeline-panel">
  2286. <div class="timeline-heading">
  2287. <h4 class="timeline-title">Buildroot.org</h4>
  2288. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>14 May 2009</small></p>
  2289. </div>
  2290. <div class="timeline-body">
  2291. <p>Earl Levine has been so kind to donate
  2292. the <b>buildroot.org</b> domain to us, so the website can
  2293. now also be reached
  2294. at <a href="http://www.buildroot.org">www.buildroot.org</a>
  2295. (and git at
  2296. <a href="http://git.buildroot.org/buildroot">git.buildroot.org</a>).
  2297. Thanks a lot Earl!</p>
  2298. </div>
  2299. </div>
  2300. </li>
  2301. <li>
  2302. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2303. <div class="timeline-panel">
  2304. <div class="timeline-heading">
  2305. <h4 class="timeline-title">2009.05-rc1 released</h4>
  2306. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>5 May 2009</small></p>
  2307. </div>
  2308. <div class="timeline-body">
  2309. <p>We have a new release candidate! Lots of changes all over the
  2310. tree, see the <a
  2311. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.05_rc1">CHANGES</a>
  2312. file for details.
  2313. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2314. <a href="/downloads/buildroot-2009.05-rc1.tar.bz2">2009.05-rc1
  2315. release candidate</a>, and report any problems found to
  2316. the <a href="support.html">mailing list</a>
  2317. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2318. </div>
  2319. </div>
  2320. </li>
  2321. <li class="timeline-inverted">
  2322. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2323. <div class="timeline-panel">
  2324. <div class="timeline-heading">
  2325. <h4 class="timeline-title">Moved to git</h4>
  2326. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>3 May 2009</small></p>
  2327. </div>
  2328. <div class="timeline-body">
  2329. <p>We've moved the source code
  2330. from <a href="http://subversion.tigris.org">Subversion</a>
  2331. to <a href="http://git-scm.org">Git</a>. You can browse the
  2332. repo online
  2333. <a href="http://git.buildroot.net/buildroot">here</a>, and clone
  2334. the repo using:
  2335. <pre>git clone git://git.buildroot.net/buildroot</pre>
  2336. See the <a href="/git.html">Git Access</a> page for more details.
  2337. </p>
  2338. </div>
  2339. </div>
  2340. </li>
  2341. <li>
  2342. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2343. <div class="timeline-panel">
  2344. <div class="timeline-heading">
  2345. <h4 class="timeline-title"><new Logo/h4>
  2346. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>27 March 2009</small></p>
  2347. </div>
  2348. <div class="timeline-body">
  2349. <p>We have a <a href="images/logo.png">logo</a>! We have so
  2350. far been using the <a href="http://busybox.net">Busybox</a>
  2351. logo on the website, as the website was a copy of
  2352. the <a href="http://busybox.net">Busybox</a> one - But not
  2353. anymore, we now have a shiny new logo of our own.</p>
  2354. </div>
  2355. </div>
  2356. </li>
  2357. <li class="timeline-inverted">
  2358. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2359. <div class="timeline-panel">
  2360. <div class="timeline-heading">
  2361. <h4 class="timeline-title">2009.02 released</h4>
  2362. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>12 February 2009</small></p>
  2363. </div>
  2364. <div class="timeline-body">
  2365. <p>The stable 2009.02 release is out - Thanks to everyone
  2366. contributing and testing the release candidates. See the
  2367. <a href="http://lists.buildroot.org/pipermail/buildroot/2009-February/025974.html">announcement</a>
  2368. for more details, and go to the <a href="/downloads/">downloads page</a>
  2369. to pick up the <a href="/downloads/buildroot-2009.02.tar.bz2">2009.02
  2370. release</a>.</p>
  2371. </div>
  2372. </div>
  2373. </li>
  2374. <li>
  2375. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2376. <div class="timeline-panel">
  2377. <div class="timeline-heading">
  2378. <h4 class="timeline-title">2009.02-rc4 released</h4>
  2379. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>9 February 2009</small></p>
  2380. </div>
  2381. <div class="timeline-body">
  2382. <p>We had more than 50 changes since RC3, several of them
  2383. toolchain related, so decided to make a RC4 as well. This is
  2384. very much expected to be the final release candidate, so
  2385. give it a good test and expect a final 2009.02 release this
  2386. week unless critical issues are found.</p>
  2387. <p>Head to the <a href="/downloads/">downloads page</a> to
  2388. pick up the
  2389. <a href="/downloads/buildroot-2009.02-rc4.tar.bz2">2009.02-rc4
  2390. release candidate</a>, and report any problems found to
  2391. the <a href="support.html">mailing list</a>
  2392. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2393. </div>
  2394. </div>
  2395. </li>
  2396. <li class="timeline-inverted">
  2397. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2398. <div class="timeline-panel">
  2399. <div class="timeline-heading">
  2400. <h4 class="timeline-title">2009.02-rc3 released</h4>
  2401. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>31 January 2009</small></p>
  2402. </div>
  2403. <div class="timeline-body">
  2404. <p>RC3 is out with more cleanups and bug fixes. Unless big
  2405. issues are found, expect this to be the last release
  2406. candidate before the release - So give it a good test.</p>
  2407. <p>Head to the <a href="/downloads/">downloads page</a> to
  2408. pick up the
  2409. <a href="/downloads/buildroot-2009.02-rc3.tar.bz2">2009.02-rc3
  2410. release candidate</a>, and report any problems found to
  2411. the <a href="support.html">mailing list</a>
  2412. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2413. </div>
  2414. </div>
  2415. </li>
  2416. <li>
  2417. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2418. <div class="timeline-panel">
  2419. <div class="timeline-heading">
  2420. <h4 class="timeline-title">2009.02-rc2 released</h4>
  2421. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>23 January 2009</small></p>
  2422. </div>
  2423. <div class="timeline-body">
  2424. <p>Another week, another release candidate with a bunch of
  2425. cleanups and build fixes.</p>
  2426. <p>Head to the <a href="/downloads/">downloads page</a> to
  2427. pick up the
  2428. <a href="/downloads/buildroot-2009.02-rc2.tar.bz2">2009.02-rc2
  2429. release candidate</a>, and report any problems found to
  2430. the <a href="support.html">mailing list</a>
  2431. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2432. </div>
  2433. </div>
  2434. </li>
  2435. <li class="timeline-inverted">
  2436. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2437. <div class="timeline-panel">
  2438. <div class="timeline-heading">
  2439. <h4 class="timeline-title">Release candidate and new maintainer</h4>
  2440. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>16 January 2009</small></p>
  2441. </div>
  2442. <div class="timeline-body">
  2443. <p>It has been a long time coming, but we finally have a new
  2444. release candidate! - And a new maintainer to match (Peter
  2445. Korsgaard).</p>
  2446. <p>Head to the <a href="/downloads/">downloads page</a> to
  2447. pick up the
  2448. <a href="/downloads/buildroot-2009.02-rc1.tar.bz2">2009.02-rc1
  2449. release candidate</a>, and report any problems found to
  2450. the <a href="support.html">mailing list</a>
  2451. or <a href="https://bugs.uclibc.org">bug tracker</a>. The
  2452. plan is to release 2009.02 in time
  2453. for <a href="http://www.fosdem.org/2009/">FOSDEM</a>.</p>
  2454. </div>
  2455. </div>
  2456. </li>
  2457. <li>
  2458. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2459. <div class="timeline-panel">
  2460. <div class="timeline-heading">
  2461. <h4 class="timeline-title">Buildroot mailing list</h4>
  2462. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>16 July 2006</small></p>
  2463. </div>
  2464. <div class="timeline-body">
  2465. <p>Buildroot now has its own <a href=support.html>mailing list</a>.</p>
  2466. </div>
  2467. </div>
  2468. </li>
  2469. <li class="timeline-inverted">
  2470. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2471. <div class="timeline-panel">
  2472. <div class="timeline-heading">
  2473. <h4 class="timeline-title">Buildroot webpage added</h4>
  2474. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>21 February 2005</small></p>
  2475. <p>Buildroot is a set of Makefiles and patches that makes it easy generate a
  2476. cross-compilation toolchain and root filesystem for your target Linux
  2477. system using the <a href= "http://www.uclibc.org/">uClibc C library</a>.
  2478. Buildroot is useful mainly for people working with small or embedded
  2479. systems. Embedded systems often use processors that are not the regular
  2480. x86 processors everyone is used to using on their PC. It can be PowerPC
  2481. processors, MIPS processors, ARM processors, etc. And to be extra safe,
  2482. you do not need to be root to build or run buildroot.</p>
  2483. <p>And as of today buildroot even has its own webpage, making it a first class
  2484. citizen of uclibc.org and busybox.net, and more importantly, make it easy
  2485. to find and point to buildroot.</p>
  2486. <p>If you find a bug in buildroot, or wish to submit a patch
  2487. to fix a problem or add a shiny new feature, please use
  2488. the <a href="https://bugs.uclibc.org/">Bug and Patch
  2489. Tracking System</a> to post the details, to make certain
  2490. your work is not lost</p>
  2491. </div>
  2492. </div>
  2493. </li>
  2494. </ul>
  2495. </div><!--/.col-sm-10 -->
  2496. </div><!--/.row -->
  2497. </div>
  2498. <!--#include file="footer.html" -->