news.html 125 KB

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