news.html 160 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780
  1. <!--#include file="header.html" -->
  2. <link href="css/timeline.css" rel="stylesheet">
  3. <div class="container">
  4. <div class="row nh">
  5. <div class="col-lg-10 col-lg-offset-1 col-md-12 col-sm-12 col-xs-12">
  6. <h2>News</h2>
  7. <ul class="timeline">
  8. <li>
  9. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  10. <div class="timeline-panel">
  11. <div class="timeline-heading">
  12. <h4 class="timeline-title">2017.11 released</h4>
  13. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 November 2017</small></p>
  14. </div>
  15. <div class="timeline-body">
  16. <p>The stable 2017.11 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=2017.11">CHANGES</a>
  19. file for more details
  20. and go to the <a href="/downloads/">downloads page</a> to pick up the
  21. <a href="/downloads/buildroot-2017.11.tar.bz2">2017.11 release</a>.</p>
  22. </div>
  23. </div>
  24. </li>
  25. <li class="timeline-inverted">
  26. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  27. <div class="timeline-panel">
  28. <div class="timeline-heading">
  29. <h4 class="timeline-title">2017.08.2 released</h4>
  30. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>29 November 2017</small></p>
  31. </div>
  32. <div class="timeline-body">
  33. <p>The 2017.08.2 bugfix release is out, fixing a number of important /
  34. security related issues discovered since the 2017.08.1 release. See the
  35. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.08.2">CHANGES</a>
  36. file for more details, read the
  37. <a href="http://lists.busybox.net/pipermail/buildroot/2017-November/208174.html">announcement</a>
  38. and go to the <a href="/downloads/">downloads page</a> to pick up the
  39. <a href="/downloads/buildroot-2017.08.2.tar.bz2">2017.08.2 release</a>.</p>
  40. </div>
  41. </div>
  42. </li>
  43. <li>
  44. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  45. <div class="timeline-panel">
  46. <div class="timeline-heading">
  47. <h4 class="timeline-title">2017.02.8 released</h4>
  48. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>27 November 2017</small></p>
  49. </div>
  50. <div class="timeline-body">
  51. <p>The 2017.02.8 bugfix release is out, fixing a number of important /
  52. security related issues discovered since the 2017.02.7 release. See the
  53. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.02.8">CHANGES</a>
  54. file for more details, read the
  55. <a href="http://lists.busybox.net/pipermail/buildroot/2017-November/208113.html">announcement</a>
  56. and go to the <a href="/downloads/">downloads page</a> to pick up the
  57. <a href="/downloads/buildroot-2017.02.8.tar.bz2">2017.02.8 release</a>.</p>
  58. </div>
  59. </div>
  60. </li>
  61. <li class="timeline-inverted">
  62. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  63. <div class="timeline-panel">
  64. <div class="timeline-heading">
  65. <h4 class="timeline-title">2017.11-rc2 released</h4>
  66. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>13 November 2017</small></p>
  67. </div>
  68. <div class="timeline-body">
  69. <p>Another week, another release candidate with more cleanups
  70. and build fixes. See the
  71. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.11-rc2">CHANGES</a>
  72. file for details.</p>
  73. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  74. <a href="/downloads/buildroot-2017.11-rc2.tar.bz2">2017.11-rc2
  75. release candidate</a>, and report any problems found to the
  76. <a href="support.html">mailing list</a> or
  77. <a href="https://bugs.buildroot.org">bug tracker</a>.</p>
  78. </div>
  79. </div>
  80. </li>
  81. <li>
  82. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  83. <div class="timeline-panel">
  84. <div class="timeline-heading">
  85. <h4 class="timeline-title">2017.11-rc1 released</h4>
  86. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>6 November 2017</small></p>
  87. </div>
  88. <div class="timeline-body">
  89. <p>We have a new release candidate! Lots of changes all over
  90. the tree, see
  91. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.11-rc1">CHANGES</a>
  92. file for details.
  93. </p>
  94. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  95. <a href="/downloads/buildroot-2017.11-rc1.tar.bz2">2017.11-rc1
  96. release candidate</a>, and report any problems found to the
  97. <a href="support.html">mailing list</a> or
  98. <a href="https://bugs.buildroot.org">bug tracker</a>.</p>
  99. </div>
  100. </div>
  101. </li>
  102. <li class="timeline-inverted">
  103. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  104. <div class="timeline-panel">
  105. <div class="timeline-heading">
  106. <h4 class="timeline-title">2017.02.7 released</h4>
  107. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>28 October 2017</small></p>
  108. </div>
  109. <div class="timeline-body">
  110. <p>The 2017.02.7 bugfix release is out, fixing a number of important /
  111. security related issues discovered since the 2017.02.6 release. See the
  112. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.02.7">CHANGES</a>
  113. file for more details, read the
  114. <a href="http://lists.busybox.net/pipermail/buildroot/2017-October/205628.html">announcement</a>
  115. and go to the <a href="/downloads/">downloads page</a> to pick up the
  116. <a href="/downloads/buildroot-2017.02.7.tar.bz2">2017.02.7 release</a>.</p>
  117. </div>
  118. </div>
  119. </li>
  120. <li>
  121. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  122. <div class="timeline-panel">
  123. <div class="timeline-heading">
  124. <h4 class="timeline-title">2017.08.1 released</h4>
  125. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>23 October 2017</small></p>
  126. </div>
  127. <div class="timeline-body">
  128. <p>The 2017.08.1 bugfix release is out, fixing a number of important /
  129. security related issues discovered since the 2017.08 release. See the
  130. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.08.1">CHANGES</a>
  131. file for more details, read the
  132. <a href="http://lists.busybox.net/pipermail/buildroot/2017-October/205323.html">announcement</a>
  133. and go to the <a href="/downloads/">downloads page</a> to pick up the
  134. <a href="/downloads/buildroot-2017.08.1.tar.bz2">2017.08.1 release</a>.</p>
  135. </div>
  136. </div>
  137. </li>
  138. <li class="timeline-inverted">
  139. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  140. <div class="timeline-panel">
  141. <div class="timeline-heading">
  142. <h4 class="timeline-title">2017.02.6 released</h4>
  143. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>24 September 2017</small></p>
  144. </div>
  145. <div class="timeline-body">
  146. <p>The 2017.02.6 bugfix release is out, fixing a number of important /
  147. security related issues discovered since the 2017.02.5 release. See the
  148. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.02.6">CHANGES</a>
  149. file for more details, read the
  150. <a href="http://lists.busybox.net/pipermail/buildroot/2017-September/203197.html">announcement</a>
  151. and go to the <a href="/downloads/">downloads page</a> to pick up the
  152. <a href="/downloads/buildroot-2017.02.6.tar.bz2">2017.02.6 release</a>.</p>
  153. </div>
  154. </div>
  155. </li>
  156. <li>
  157. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  158. <div class="timeline-panel">
  159. <div class="timeline-heading">
  160. <h4 class="timeline-title">2017.08 released</h4>
  161. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>1 September 2017</small></p>
  162. </div>
  163. <div class="timeline-body">
  164. <p>The stable 2017.08 release is out - Thanks to everyone
  165. contributing and testing the release candidates. See the
  166. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.08">CHANGES</a>
  167. file for more details
  168. and go to the <a href="/downloads/">downloads page</a> to pick up the
  169. <a href="/downloads/buildroot-2017.08.tar.bz2">2017.08 release</a>.</p>
  170. </div>
  171. </div>
  172. </li>
  173. <li class="timeline-inverted">
  174. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  175. <div class="timeline-panel">
  176. <div class="timeline-heading">
  177. <h4 class="timeline-title">2017.08-rc3 released</h4>
  178. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>23 August 2017</small></p>
  179. </div>
  180. <div class="timeline-body">
  181. <p>Another release candidate, on the road to the final 2017.08
  182. release. A number of fixes and cleanups in various packages
  183. and defconfigs. See
  184. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.08-rc3">CHANGES</a>
  185. file for details.
  186. </p>
  187. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  188. <a href="/downloads/buildroot-2017.08-rc3.tar.bz2">2017.08-rc3
  189. release candidate</a>, and report any
  190. problems found to the
  191. <a href="support.html">mailing list</a> or
  192. <a href="https://bugs.buildroot.org">bug tracker</a>.</p>
  193. </div>
  194. </div>
  195. </li>
  196. <li>
  197. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  198. <div class="timeline-panel">
  199. <div class="timeline-heading">
  200. <h4 class="timeline-title">2017.08-rc2 released</h4>
  201. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>11 August 2017</small></p>
  202. </div>
  203. <div class="timeline-body">
  204. <p>Another release candidate, on the road to the final 2017.08
  205. release. A number of fixes and cleanups in various packages
  206. and defconfigs. See
  207. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.08-rc2">CHANGES</a>
  208. file for details.
  209. </p>
  210. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  211. <a href="/downloads/buildroot-2017.08-rc2.tar.bz2">2017.08-rc2
  212. release candidate</a>, and report any
  213. problems found to the
  214. <a href="support.html">mailing list</a> or
  215. <a href="https://bugs.buildroot.org">bug tracker</a>.</p>
  216. </div>
  217. </div>
  218. </li>
  219. <li class="timeline-inverted">
  220. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  221. <div class="timeline-panel">
  222. <div class="timeline-heading">
  223. <h4 class="timeline-title">2017.08-rc1 released</h4>
  224. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>2 August 2017</small></p>
  225. </div>
  226. <div class="timeline-body">
  227. <p>We have a new release candidate! Lots of changes all over
  228. the tree, see
  229. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.08-rc1">CHANGES</a>
  230. file for details.
  231. </p>
  232. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  233. <a href="/downloads/buildroot-2017.08-rc1.tar.bz2">2017.08-rc1
  234. release candidate</a>, and report any
  235. problems found to the
  236. <a href="support.html">mailing list</a> or
  237. <a href="https://bugs.buildroot.org">bug tracker</a>.</p>
  238. </div>
  239. </div>
  240. </li>
  241. <li>
  242. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  243. <div class="timeline-panel">
  244. <div class="timeline-heading">
  245. <h4 class="timeline-title">2017.05.2 released</h4>
  246. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>27 July 2017</small></p>
  247. </div>
  248. <div class="timeline-body">
  249. <p>The 2017.05.2 bugfix release is out, fixing a number of important /
  250. security related issues discovered since the 2017.05.1 release. See the
  251. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.05.2">CHANGES</a>
  252. file for more details, read the
  253. <a href="http://lists.busybox.net/pipermail/buildroot/2017-July/199284.html">announcement</a>
  254. and go to the <a href="/downloads/">downloads page</a> to pick up the
  255. <a href="/downloads/buildroot-2017.05.2.tar.bz2">2017.05.2 release</a>.</p>
  256. </div>
  257. </div>
  258. </li>
  259. <li class="timeline-inverted">
  260. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  261. <div class="timeline-panel">
  262. <div class="timeline-heading">
  263. <h4 class="timeline-title">2017.02.5 released</h4>
  264. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>27 July 2017</small></p>
  265. </div>
  266. <div class="timeline-body">
  267. <p>The 2017.02.5 bugfix release is out, fixing a number of important /
  268. security related issues discovered since the 2017.02.4 release. See the
  269. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.02.5">CHANGES</a>
  270. file for more details, read the
  271. <a href="http://lists.busybox.net/pipermail/buildroot/2017-July/199281.html">announcement</a>
  272. and go to the <a href="/downloads/">downloads page</a> to pick up the
  273. <a href="/downloads/buildroot-2017.02.5.tar.bz2">2017.02.5 release</a>.</p>
  274. </div>
  275. </div>
  276. </li>
  277. <li>
  278. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  279. <div class="timeline-panel">
  280. <div class="timeline-heading">
  281. <h4 class="timeline-title">2017.05.1 released</h4>
  282. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>4 July 2017</small></p>
  283. </div>
  284. <div class="timeline-body">
  285. <p>The 2017.05.1 bugfix release is out, fixing a number of important /
  286. security related issues discovered since the 2017.05 release. See the
  287. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.05.1">CHANGES</a>
  288. file for more details, read the
  289. <a href="http://lists.busybox.net/pipermail/buildroot/2017-July/196743.html">announcement</a>
  290. and go to the <a href="/downloads/">downloads page</a> to pick up the
  291. <a href="/downloads/buildroot-2017.05.1.tar.bz2">2017.05.1 release</a>.</p>
  292. </div>
  293. </div>
  294. </li>
  295. <li class="timeline-inverted">
  296. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  297. <div class="timeline-panel">
  298. <div class="timeline-heading">
  299. <h4 class="timeline-title">2017.02.4 released</h4>
  300. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>4 July 2017</small></p>
  301. </div>
  302. <div class="timeline-body">
  303. <p>The 2017.02.4 bugfix release is out, fixing a number of important /
  304. security related issues discovered since the 2017.02.3 release. See the
  305. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.02.4">CHANGES</a>
  306. file for more details, read the
  307. <a href="http://lists.busybox.net/pipermail/buildroot/2017-July/196719.html">announcement</a>
  308. and go to the <a href="/downloads/">downloads page</a> to pick up the
  309. <a href="/downloads/buildroot-2017.02.4.tar.bz2">2017.02.4 release</a>.</p>
  310. </div>
  311. </div>
  312. </li>
  313. <li>
  314. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  315. <div class="timeline-panel">
  316. <div class="timeline-heading">
  317. <h4 class="timeline-title">2017.02.3 released</h4>
  318. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>2 June 2017</small></p>
  319. </div>
  320. <div class="timeline-body">
  321. <p>The 2017.02.3 bugfix release is out, fixing a number of important /
  322. security related issues discovered since the 2017.02.2 release. See the
  323. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.02.3">CHANGES</a>
  324. file for more details, read the
  325. <a href="http://lists.busybox.net/pipermail/buildroot/2017-June/193485.html">announcement</a>
  326. and go to the <a href="/downloads/">downloads page</a> to pick up the
  327. <a href="/downloads/buildroot-2017.02.3.tar.bz2">2017.02.3 release</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">2017.05 released</h4>
  336. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>31 May 2017</small></p>
  337. </div>
  338. <div class="timeline-body">
  339. <p>The stable 2017.05 release is out - Thanks to everyone
  340. contributing and testing the release candidates. See the
  341. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.05">CHANGES</a>
  342. file for more details, read the
  343. <a href="http://lists.busybox.net/pipermail/buildroot/2017-June/193164.html">announcement</a>
  344. and go to the <a href="/downloads/">downloads page</a> to pick up the
  345. <a href="/downloads/buildroot-2017.05.tar.bz2">2017.05 release</a>.</p>
  346. </div>
  347. </div>
  348. </li>
  349. <li>
  350. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  351. <div class="timeline-panel">
  352. <div class="timeline-heading">
  353. <h4 class="timeline-title">2017.05-rc3 released</h4>
  354. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 May 2017</small></p>
  355. </div>
  356. <div class="timeline-body">
  357. <p>Release candidate 3 is out with more cleanups and security
  358. / build fixes. See
  359. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.05-rc3">CHANGES</a>
  360. file for details.</p>
  361. <p>Head to the <a href="/downloads/">downloads page</a> to
  362. pick up
  363. the <a href="/downloads/buildroot-2017.05-rc3.tar.bz2">2017.05-rc3
  364. release candidate</a>, and report any problems found to
  365. the <a href="support.html">mailing list</a>
  366. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  367. </div>
  368. </div>
  369. </li>
  370. <li class="timeline-inverted">
  371. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  372. <div class="timeline-panel">
  373. <div class="timeline-heading">
  374. <h4 class="timeline-title">2017.05-rc2 released</h4>
  375. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>17 May 2017</small></p>
  376. </div>
  377. <div class="timeline-body">
  378. <p>Another week, another release candidate with more cleanups
  379. and build fixes. See the
  380. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.05-rc2">CHANGES</a>
  381. file for details.</p>
  382. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  383. <a href="/downloads/buildroot-2017.05-rc2.tar.bz2">2017.05-rc2
  384. release candidate</a>, and report any problems found to the
  385. <a href="support.html">mailing list</a> or
  386. <a href="https://bugs.buildroot.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">2017.05-rc1 released</h4>
  395. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>8 May 2017</small></p>
  396. </div>
  397. <div class="timeline-body">
  398. <p>We have a new release candidate! Lots of changes all over
  399. the tree, see
  400. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.05-rc1">CHANGES</a>
  401. file for details.
  402. </p>
  403. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  404. <a href="/downloads/buildroot-2017.05-rc1.tar.bz2">2017.05-rc1
  405. release candidate</a>, and report any
  406. problems found to the
  407. <a href="support.html">mailing list</a> or
  408. <a href="https://bugs.buildroot.org">bug tracker</a>.</p>
  409. </div>
  410. </div>
  411. </li>
  412. <li class="timeline-inverted">
  413. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  414. <div class="timeline-panel">
  415. <div class="timeline-heading">
  416. <h4 class="timeline-title">2017.02.2 released</h4>
  417. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>1 May 2017</small></p>
  418. </div>
  419. <div class="timeline-body">
  420. <p>The 2017.02.2 bugfix release is out, fixing a number of important /
  421. security related issues discovered since the 2017.02.1 release. See the
  422. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.02.2">CHANGES</a>
  423. file for more details, read the
  424. <a href="http://lists.busybox.net/pipermail/buildroot/2017-May/191062.html">announcement</a>
  425. and go to the <a href="/downloads/">downloads page</a> to pick up the
  426. <a href="/downloads/buildroot-2017.02.2.tar.bz2">2017.02.2 release</a>.</p>
  427. </div>
  428. </div>
  429. </li>
  430. <li>
  431. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  432. <div class="timeline-panel">
  433. <div class="timeline-heading">
  434. <h4 class="timeline-title">2017.02.1 released</h4>
  435. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>4 April 2017</small></p>
  436. </div>
  437. <div class="timeline-body">
  438. <p>The 2017.02.1 bugfix release is out, fixing a number of important /
  439. security related issues discovered since the 2017.02 release. See the
  440. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.02.1">CHANGES</a>
  441. file for more details, read the
  442. <a href="http://lists.busybox.net/pipermail/buildroot/2017-April/188708.html">announcement</a>
  443. and go to the <a href="/downloads/">downloads page</a> to pick up the
  444. <a href="/downloads/buildroot-2017.02.1.tar.bz2">2017.02.1 release</a>.</p>
  445. </div>
  446. </div>
  447. </li>
  448. <li class="timeline-inverted">
  449. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  450. <div class="timeline-panel">
  451. <div class="timeline-heading">
  452. <h4 class="timeline-title">2016.11.3 released</h4>
  453. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>10 March 2017</small></p>
  454. </div>
  455. <div class="timeline-body">
  456. <p>The 2016.11.3 bugfix release is out, fixing a number of important /
  457. security related issues discovered since the 2016.11.2 release. See the
  458. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2016.11.3">CHANGES</a>
  459. file for more details, read the
  460. <a href="http://lists.busybox.net/pipermail/buildroot/2017-March/186418.html">announcement</a>
  461. and go to the <a href="/downloads/">downloads page</a> to pick up the
  462. <a href="/downloads/buildroot-2016.11.3.tar.bz2">2016.11.3 release</a>.</p>
  463. <p>Notice that this is the final 2016.11.x release. Users are
  464. urged to migrate to the 2017.02.x series instead.</p>
  465. </div>
  466. </div>
  467. </li>
  468. <li>
  469. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  470. <div class="timeline-panel">
  471. <div class="timeline-heading">
  472. <h4 class="timeline-title">2017.02 released</h4>
  473. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>28 February 2017</small></p>
  474. </div>
  475. <div class="timeline-body">
  476. <p>The stable 2017.02 release is out - Thanks to everyone
  477. contributing and testing the release candidates. See the
  478. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.02">CHANGES</a>
  479. file for more details, read the
  480. <a href="http://lists.busybox.net/pipermail/buildroot/2017-February/185228.html">announcement</a>
  481. and go to the <a href="/downloads/">downloads page</a> to pick up the
  482. <a href="/downloads/buildroot-2017.02.tar.bz2">2017.02 release</a>.</p>
  483. <p>Notice that this is a long term support release which will be
  484. supported with security and other important fixes until February 2018.</p>
  485. </div>
  486. </div>
  487. </li>
  488. <li class="timeline-inverted">
  489. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  490. <div class="timeline-panel">
  491. <div class="timeline-heading">
  492. <h4 class="timeline-title">2017.02-rc3 released</h4>
  493. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>26 February 2017</small></p>
  494. </div>
  495. <div class="timeline-body">
  496. <p>Release candidate 3 is out with more cleanups and security
  497. / build fixes. See
  498. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.02-rc3">CHANGES</a>
  499. file for details.</p>
  500. <p>Head to the <a href="/downloads/">downloads page</a> to
  501. pick up
  502. the <a href="/downloads/buildroot-2017.02-rc3.tar.bz2">2017.02-rc3
  503. release candidate</a>, and report any problems found to
  504. the <a href="support.html">mailing list</a>
  505. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  506. </div>
  507. </div>
  508. </li>
  509. <li>
  510. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  511. <div class="timeline-panel">
  512. <div class="timeline-heading">
  513. <h4 class="timeline-title">2017.02-rc2 released</h4>
  514. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>20 February 2017</small></p>
  515. </div>
  516. <div class="timeline-body">
  517. <p>We have a new release candidate! Lots of changes all over the tree, see
  518. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.02-rc2">CHANGES</a>
  519. file for details.
  520. </p>
  521. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  522. <a href="/downloads/buildroot-2017.02-rc2.tar.bz2">2017.02-rc2
  523. release candidate</a>, and report any problems found to the
  524. <a href="support.html">mailing list</a> or
  525. <a href="https://bugs.buildroot.org">bug tracker</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">2017.02-rc1 released</h4>
  534. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>11 February 2017</small></p>
  535. </div>
  536. <div class="timeline-body">
  537. <p>We have a new release candidate! Lots of changes all over
  538. the tree, see
  539. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2017.02-rc1">CHANGES</a>
  540. file for details, read
  541. the <a href="http://lists.busybox.net/pipermail/buildroot/2017-February/183729.html">announcement</a>.
  542. </p>
  543. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  544. <a href="/downloads/buildroot-2017.02-rc1.tar.bz2">2017.12-rc1
  545. release candidate</a>, and report any
  546. problems found to the
  547. <a href="support.html">mailing list</a> or
  548. <a href="https://bugs.buildroot.org">bug tracker</a>.</p>
  549. </div>
  550. </div>
  551. </li>
  552. <li>
  553. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  554. <div class="timeline-panel">
  555. <div class="timeline-heading">
  556. <h4 class="timeline-title">2016.11.2 released</h4>
  557. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>25 January 2017</small></p>
  558. </div>
  559. <div class="timeline-body">
  560. <p>The 2016.11.2 bugfix release is out, fixing a number of important /
  561. security related issues discovered since the 2016.11.1 release. See the
  562. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2016.11.2">CHANGES</a>
  563. file for more details, read the
  564. <a href="http://lists.busybox.net/pipermail/buildroot/2017-January/182095.html">announcement</a>
  565. and go to the <a href="/downloads/">downloads page</a> to pick up the
  566. <a href="/downloads/buildroot-2016.11.2.tar.bz2">2016.11.2 release</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">2016.11.1 released</h4>
  575. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>29 December 2016</small></p>
  576. </div>
  577. <div class="timeline-body">
  578. <p>The 2016.11.1 bugfix release is out, fixing a number of important /
  579. security related issues discovered since the 2016.11 release. See the
  580. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2016.11.1">CHANGES</a>
  581. file for more details, read the
  582. <a href="http://lists.busybox.net/pipermail/buildroot/2016-December/180622.html">announcement</a>
  583. and go to the <a href="/downloads/">downloads page</a> to pick up the
  584. <a href="/downloads/buildroot-2016.11.1.tar.bz2">2016.11.1 release</a>.</p>
  585. </div>
  586. </div>
  587. </li>
  588. <li>
  589. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  590. <div class="timeline-panel">
  591. <div class="timeline-heading">
  592. <h4 class="timeline-title">2016.11 released</h4>
  593. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 November 2016</small></p>
  594. </div>
  595. <div class="timeline-body">
  596. <p>The stable 2016.11 release is out - Thanks to everyone
  597. contributing and testing the release candidates. See the
  598. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2016.11">CHANGES</a>
  599. file for more details, read the
  600. <a href="http://lists.busybox.net/pipermail/buildroot/2016-November/178514.html">announcement</a>
  601. and go to the <a href="/downloads/">downloads page</a> to pick up the
  602. <a href="/downloads/buildroot-2016.11.tar.bz2">2016.11 release</a>.</p>
  603. </div>
  604. </div>
  605. </li>
  606. <li class="timeline-inverted">
  607. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  608. <div class="timeline-panel">
  609. <div class="timeline-heading">
  610. <h4 class="timeline-title">2016.11-rc3 released</h4>
  611. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>28 November 2016</small></p>
  612. </div>
  613. <div class="timeline-body">
  614. <p>Release candidate 3 is out with more cleanups and security
  615. / build fixes. See
  616. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2016.11-rc3">CHANGES</a>
  617. file for details.</p>
  618. <p>Head to the <a href="/downloads/">downloads page</a> to
  619. pick up
  620. the <a href="/downloads/buildroot-2016.11-rc3.tar.bz2">2016.11-rc3
  621. release candidate</a>, and report any problems found to
  622. the <a href="support.html">mailing list</a>
  623. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  624. </div>
  625. </div>
  626. </li>
  627. <li>
  628. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  629. <div class="timeline-panel">
  630. <div class="timeline-heading">
  631. <h4 class="timeline-title">2016.11-rc2 released</h4>
  632. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>13 November 2016</small></p>
  633. </div>
  634. <div class="timeline-body">
  635. <p>We have a new release candidate! Lots of
  636. changes all over the tree, see
  637. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2016.11-rc2">CHANGES</a>
  638. file for details.
  639. </p>
  640. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  641. <a href="/downloads/buildroot-2016.11-rc2.tar.bz2">2016.11-rc2
  642. release candidate</a>, and report any
  643. problems found to the
  644. <a href="support.html">mailing list</a> or
  645. <a href="https://bugs.buildroot.org">bug tracker</a>.</p>
  646. </div>
  647. </div>
  648. </li>
  649. <li class="timeline-inverted">
  650. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  651. <div class="timeline-panel">
  652. <div class="timeline-heading">
  653. <h4 class="timeline-title">2016.11-rc1 released</h4>
  654. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>3 November 2016</small></p>
  655. </div>
  656. <div class="timeline-body">
  657. <p>We have a new release candidate! Lots of
  658. changes all over the tree, see
  659. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2016.11-rc1">CHANGES</a>
  660. file for details, read the
  661. <a href="http://lists.busybox.net/pipermail/buildroot/2016-November/176453.html">announcement</a>.
  662. </p>
  663. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  664. <a href="/downloads/buildroot-2016.11-rc1.tar.bz2">2016.11-rc1
  665. release candidate</a>, and report any
  666. problems found to the
  667. <a href="support.html">mailing list</a> or
  668. <a href="https://bugs.buildroot.org">bug tracker</a>.</p>
  669. </div>
  670. </div>
  671. </li>
  672. <li>
  673. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  674. <div class="timeline-panel">
  675. <div class="timeline-heading">
  676. <h4 class="timeline-title">2016.08.1 released</h4>
  677. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>21 September 2016</small></p>
  678. </div>
  679. <div class="timeline-body">
  680. <p>The 2016.08.1 bugfix release is out. This release fixes a
  681. potential entire root filesystem removal issue with the
  682. external toolchain handling discovered since the 2016.08
  683. release. See the
  684. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2016.08.1">CHANGES</a>
  685. file for more details, read the
  686. <a href="http://lists.busybox.net/pipermail/buildroot/2016-September/172712.html">announcement</a> and go to the
  687. <a href="/downloads/">downloads page</a> to pick up the
  688. <a href="/downloads/buildroot-2016.08.1.tar.bz2">2016.08.1 release</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">2016.08 released</h4>
  697. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>1 September 2016</small></p>
  698. </div>
  699. <div class="timeline-body">
  700. <p>The stable 2016.08 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=2016.08">CHANGES</a>
  703. file for more details, read the
  704. <a href="http://lists.busybox.net/pipermail/buildroot/2016-September/171172.html">announcement</a>
  705. and go to the <a href="/downloads/">downloads page</a> to pick up the
  706. <a href="/downloads/buildroot-2016.08.tar.bz2">2016.08 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">2016.08-rc3 released</h4>
  715. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 August 2016</small></p>
  716. </div>
  717. <div class="timeline-body">
  718. <p>Release candidate 3 is out with more cleanups and security
  719. / build fixes. See
  720. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2016.08-rc3">CHANGES</a>
  721. file for details.</p>
  722. <p>Head to the <a href="/downloads/">downloads page</a> to
  723. pick up
  724. the <a href="/downloads/buildroot-2016.08-rc3.tar.bz2">2016.08-rc3
  725. release candidate</a>, and report any problems found to
  726. the <a href="support.html">mailing list</a>
  727. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  728. </div>
  729. </div>
  730. </li>
  731. <li class="timeline-inverted">
  732. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  733. <div class="timeline-panel">
  734. <div class="timeline-heading">
  735. <h4 class="timeline-title">2016.08-rc2 released</h4>
  736. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>17 August 2016</small></p>
  737. </div>
  738. <div class="timeline-body">
  739. <p>Another week, another release candidate with more cleanups
  740. and build fixes. See
  741. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2016.08-rc2">CHANGES</a>
  742. file for details.</p>
  743. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  744. <a href="/downloads/buildroot-2016.08-rc2.tar.bz2">2016.08-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">2016.08-rc1 released</h4>
  756. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>6 August 2016</small></p>
  757. </div>
  758. <div class="timeline-body">
  759. <p>We have a new release candidate! Lots of
  760. changes all over the tree, see
  761. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2016.08-rc1">CHANGES</a>
  762. file for details and read the
  763. <a href="http://lists.busybox.net/pipermail/buildroot/2016-August/169277.html">announcement</a>
  764. </p>
  765. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  766. <a href="/downloads/buildroot-2016.08-rc1.tar.bz2">2016.08-rc1
  767. release candidate</a>, and report any
  768. problems found to the
  769. <a href="support.html">mailing list</a> or
  770. <a href="https://bugs.buildroot.org">bug tracker</a>.</p>
  771. </div>
  772. </div>
  773. </li>
  774. <li class="timeline-inverted">
  775. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  776. <div class="timeline-panel">
  777. <div class="timeline-heading">
  778. <h4 class="timeline-title">2016.05 released</h4>
  779. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>1 March 2016</small></p>
  780. </div>
  781. <div class="timeline-body">
  782. <p>The stable 2016.05 release is out - Thanks to everyone
  783. contributing and testing the release candidates. See the
  784. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2016.05">CHANGES</a>
  785. file for more details, read the
  786. <a href="http://lists.busybox.net/pipermail/buildroot/2016-May/162428.html">announcement</a>
  787. and go to the <a href="/downloads/">downloads page</a> to pick up the
  788. <a href="/downloads/buildroot-2016.05.tar.bz2">2016.05 release</a>.</p>
  789. </div>
  790. </div>
  791. </li>
  792. <li>
  793. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  794. <div class="timeline-panel">
  795. <div class="timeline-heading">
  796. <h4 class="timeline-title">2016.05-rc3 released</h4>
  797. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>26 May 2016</small></p>
  798. </div>
  799. <div class="timeline-body">
  800. <p>Release candidate 3 is out with more cleanups and security
  801. / build fixes. See
  802. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2016.05-rc3">CHANGES</a>
  803. file for details.</p>
  804. <p>Head to the <a href="/downloads/">downloads page</a> to
  805. pick up
  806. the <a href="/downloads/buildroot-2016.05-rc3.tar.bz2">2016.05-rc3
  807. release candidate</a>, and report any problems found to
  808. the <a href="support.html">mailing list</a>
  809. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  810. </div>
  811. </div>
  812. </li>
  813. <li class="timeline-inverted">
  814. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  815. <div class="timeline-panel">
  816. <div class="timeline-heading">
  817. <h4 class="timeline-title">2016.05-rc2 released</h4>
  818. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>17 May 2016</small></p>
  819. </div>
  820. <div class="timeline-body">
  821. <p>Another week, another release candidate with more cleanups
  822. and build fixes. See
  823. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2016.05-rc2">CHANGES</a>
  824. file for details.</p>
  825. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  826. <a href="/downloads/buildroot-2016.05-rc2.tar.bz2">2016.05-rc2
  827. release candidate</a>, and report any problems found to
  828. the <a href="support.html">mailing list</a>
  829. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  830. </div>
  831. </div>
  832. </li>
  833. <li>
  834. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  835. <div class="timeline-panel">
  836. <div class="timeline-heading">
  837. <h4 class="timeline-title">2016.05-rc1 released</h4>
  838. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>10 May 2016</small></p>
  839. </div>
  840. <div class="timeline-body">
  841. <p>We have a new release candidate! Lots of
  842. changes all over the tree, see
  843. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2016.05-rc1">CHANGES</a>
  844. file for details and read the
  845. <a href="http://lists.busybox.net/pipermail/buildroot/2016-May/160897.html">announcement</a>.
  846. </p>
  847. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  848. <a href="/downloads/buildroot-2016.05-rc1.tar.bz2">2016.05-rc1
  849. release candidate</a>, and report any
  850. problems found to the
  851. <a href="support.html">mailing list</a> or
  852. <a href="https://bugs.buildroot.org">bug tracker</a>.</p>
  853. </div>
  854. </div>
  855. </li>
  856. <li class="timeline-inverted">
  857. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  858. <div class="timeline-panel">
  859. <div class="timeline-heading">
  860. <h4 class="timeline-title">2016.02 released</h4>
  861. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>1 March 2016</small></p>
  862. </div>
  863. <div class="timeline-body">
  864. <p>The stable 2016.02 release is out - Thanks to everyone
  865. contributing and testing the release candidates. See the
  866. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2016.02">CHANGES</a>
  867. file for more details, read the
  868. <a href="http://lists.busybox.net/pipermail/buildroot/2016-March/154535.html">announcement</a>
  869. and go to the <a href="/downloads/">downloads page</a> to pick up the
  870. <a href="/downloads/buildroot-2016.02.tar.bz2">2016.02 release</a>.</p>
  871. </div>
  872. </div>
  873. </li>
  874. <li>
  875. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  876. <div class="timeline-panel">
  877. <div class="timeline-heading">
  878. <h4 class="timeline-title">2016.02-rc3 released</h4>
  879. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>27 February 2016</small></p>
  880. </div>
  881. <div class="timeline-body">
  882. <p>Release candidate 3 is out with more cleanups and security
  883. / build fixes. See
  884. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2016.02-rc3">CHANGES</a>
  885. file for details.</p>
  886. <p>Head to the <a href="/downloads/">downloads page</a> to
  887. pick up
  888. the <a href="/downloads/buildroot-2016.02-rc3.tar.bz2">2016.02-rc3
  889. release candidate</a>, and report any problems found to
  890. the <a href="support.html">mailing list</a>
  891. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  892. </div>
  893. </div>
  894. </li>
  895. <li class="timeline-inverted">
  896. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  897. <div class="timeline-panel">
  898. <div class="timeline-heading">
  899. <h4 class="timeline-title">2016.02-rc2 released</h4>
  900. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>18 February 2016</small></p>
  901. </div>
  902. <div class="timeline-body">
  903. <p>Another week, another release candidate with more cleanups
  904. and build fixes. See
  905. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2016.02-rc2">CHANGES</a>
  906. file for details.</p>
  907. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  908. <a href="/downloads/buildroot-2016.02-rc2.tar.bz2">2016.02-rc2
  909. release candidate</a>, and report any problems found to
  910. the <a href="support.html">mailing list</a>
  911. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  912. </div>
  913. </div>
  914. </li>
  915. <li>
  916. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  917. <div class="timeline-panel">
  918. <div class="timeline-heading">
  919. <h4 class="timeline-title">2016.02-rc1 released</h4>
  920. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>10 February 2016</small></p>
  921. </div>
  922. <div class="timeline-body">
  923. <p>We have a new release candidate! Lots of
  924. changes all over the tree, see
  925. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2016.02-rc1">CHANGES</a>
  926. file for details and read the
  927. <a href="http://lists.busybox.net/pipermail/buildroot/2016-February/152420.html">announcement</a>.
  928. </p>
  929. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  930. <a href="/downloads/buildroot-2016.02-rc1.tar.bz2">2016.02-rc1
  931. release candidate</a>, and report any
  932. problems found to the
  933. <a href="support.html">mailing list</a> or
  934. <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  935. </div>
  936. </div>
  937. </li>
  938. <li class="timeline-inverted">
  939. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  940. <div class="timeline-panel">
  941. <div class="timeline-heading">
  942. <h4 class="timeline-title">2015.11.1 released</h4>
  943. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>5 December 2015</small></p>
  944. </div>
  945. <div class="timeline-body">
  946. <p>The 2015.11.1 bugfix release is out - Thanks to everyone
  947. contributing. This release fixes critical issues discovered
  948. since the 2015.11 release. See the
  949. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.11.1">CHANGES</a>
  950. file for more details, and go to the
  951. <a href="/downloads/">downloads page</a> to pick up the
  952. <a href="/downloads/buildroot-2015.11.1.tar.bz2">2015.11.1 release</a>.</p>
  953. </div>
  954. </div>
  955. </li>
  956. <li>
  957. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  958. <div class="timeline-panel">
  959. <div class="timeline-heading">
  960. <h4 class="timeline-title">2015.11 released</h4>
  961. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 November 2015</small></p>
  962. </div>
  963. <div class="timeline-body">
  964. <p>The stable 2015.11 release is out - Thanks to everyone
  965. contributing and testing the release candidates. See the
  966. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.11">CHANGES</a>
  967. file for more details, read the
  968. <a href="http://lists.busybox.net/pipermail/buildroot/2015-November/145727.html">announcement</a>
  969. and go to the <a href="/downloads/">downloads page</a> to pick up the
  970. <a href="/downloads/buildroot-2015.11.tar.bz2">2015.11 release</a>.</p>
  971. </div>
  972. </div>
  973. </li>
  974. <li class="timeline-inverted">
  975. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  976. <div class="timeline-panel">
  977. <div class="timeline-heading">
  978. <h4 class="timeline-title">2015.11-rc3 released</h4>
  979. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>26 November 2015</small></p>
  980. </div>
  981. <div class="timeline-body">
  982. <p>Release candidate 3 is out with more cleanups and security
  983. / build fixes. See
  984. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.11-rc3">CHANGES</a>
  985. file for details.</p>
  986. <p>Head to the <a href="/downloads/">downloads page</a> to
  987. pick up
  988. the <a href="/downloads/buildroot-2015.11-rc3.tar.bz2">2015.11-rc3
  989. release candidate</a>, and report any problems found to
  990. the <a href="support.html">mailing list</a>
  991. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  992. </div>
  993. </div>
  994. </li>
  995. <li>
  996. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  997. <div class="timeline-panel">
  998. <div class="timeline-heading">
  999. <h4 class="timeline-title">2015.11-rc2 released</h4>
  1000. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>19 November 2015</small></p>
  1001. </div>
  1002. <div class="timeline-body">
  1003. <p>Another week, another release candidate with more cleanups
  1004. and build fixes. See the
  1005. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.11-rc2">CHANGES</a>
  1006. file for details.</p>
  1007. <p>Head to the <a href="/downloads/">downloads page</a> to
  1008. pick up
  1009. the <a href="/downloads/buildroot-2015.11-rc2.tar.bz2">2015.11-rc2
  1010. release candidate</a>, and report any problems found to
  1011. the <a href="support.html">mailing list</a>
  1012. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1013. </div>
  1014. </div>
  1015. </li>
  1016. <li class="timeline-inverted">
  1017. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1018. <div class="timeline-panel">
  1019. <div class="timeline-heading">
  1020. <h4 class="timeline-title">2015.11-rc1 released</h4>
  1021. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>7 November 2015</small></p>
  1022. </div>
  1023. <div class="timeline-body">
  1024. <p>We have a new release candidate! Lots of
  1025. changes all over the tree, see
  1026. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.11-rc1">CHANGES</a>
  1027. file for details. See also
  1028. the <a href="http://lists.busybox.net/pipermail/buildroot/2015-November/144026.html">announcement
  1029. e-mail</a>.</p>
  1030. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1031. <a href="/downloads/buildroot-2015.11-rc1.tar.bz2">2015.11-rc1
  1032. release candidate</a>, and report any
  1033. problems found to the
  1034. <a href="support.html">mailing list</a> or
  1035. <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1036. </div>
  1037. </div>
  1038. </li>
  1039. <li>
  1040. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1041. <div class="timeline-panel">
  1042. <div class="timeline-heading">
  1043. <h4 class="timeline-title">2015.08.1 released</h4>
  1044. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>6 September 2015</small></p>
  1045. </div>
  1046. <div class="timeline-body">
  1047. <p>The 2015.08.1 bugfix release is out - Thanks to everyone
  1048. contributing. This release fixes critical issues discovered since
  1049. the 2015.08 release. See the
  1050. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.08.1">CHANGES</a>
  1051. file for more details,
  1052. and go to the <a href="/downloads/">downloads page</a> to pick up the
  1053. <a href="/downloads/buildroot-2015.08.1.tar.bz2">2015.08.1 release</a>.</p>
  1054. </div>
  1055. </div>
  1056. </li>
  1057. <li class="timeline-inverted">
  1058. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1059. <div class="timeline-panel">
  1060. <div class="timeline-heading">
  1061. <h4 class="timeline-title">2015.08 released</h4>
  1062. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>31 August 2015</small></p>
  1063. </div>
  1064. <div class="timeline-body">
  1065. <p>The stable 2015.08 release is out - Thanks to everyone
  1066. contributing and testing the release candidates. See the
  1067. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.08">CHANGES</a>
  1068. file for more details, read the
  1069. <a href="http://lists.buildroot.org/pipermail/buildroot/2015-August/138336.html">announcement</a>
  1070. and go to the <a href="/downloads/">downloads page</a> to pick up the
  1071. <a href="/downloads/buildroot-2015.08.tar.bz2">2015.08 release</a>.</p>
  1072. </div>
  1073. </div>
  1074. </li>
  1075. <li>
  1076. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1077. <div class="timeline-panel">
  1078. <div class="timeline-heading">
  1079. <h4 class="timeline-title">2015.08-rc2 released</h4>
  1080. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>24 August 2015</small></p>
  1081. </div>
  1082. <div class="timeline-body">
  1083. <p>We have a new release candidate! Lots of changes all over the
  1084. tree, see
  1085. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.08-rc2">CHANGES</a>
  1086. file for details, and
  1087. the <a href="http://lists.buildroot.org/pipermail/buildroot/2015-August/137879.html">release
  1088. announcement</a>.</p>
  1089. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1090. <a href="/downloads/buildroot-2015.08-rc2.tar.bz2">2015.08-rc2
  1091. release candidate</a>, and report any problems found to the
  1092. <a href="support.html">mailing list</a> or
  1093. <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1094. </div>
  1095. </div>
  1096. </li>
  1097. <li class="timeline-inverted">
  1098. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1099. <div class="timeline-panel">
  1100. <div class="timeline-heading">
  1101. <h4 class="timeline-title">2015.08-rc1 released</h4>
  1102. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>5 August 2015</small></p>
  1103. </div>
  1104. <div class="timeline-body">
  1105. <p>We have a new release candidate! Lots of changes all over the tree, see
  1106. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.08-rc1">CHANGES</a>
  1107. file for details, read
  1108. the <a href="http://lists.buildroot.org/pipermail/buildroot/2015-August/135417.html">announcement</a>.</p>
  1109. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1110. <a href="/downloads/buildroot-2015.08-rc1.tar.bz2">2015.08-rc1
  1111. release candidate</a>, and report any problems found to the
  1112. <a href="support.html">mailing list</a> or
  1113. <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1114. </div>
  1115. </div>
  1116. </li>
  1117. <li>
  1118. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1119. <div class="timeline-panel">
  1120. <div class="timeline-heading">
  1121. <h4 class="timeline-title">2015.05 released</h4>
  1122. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>31 May 2015</small></p>
  1123. </div>
  1124. <div class="timeline-body">
  1125. <p>The stable 2015.05 release is out - Thanks to everyone
  1126. contributing and testing the release candidates. See the
  1127. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.05">CHANGES</a>
  1128. file for more details, read the
  1129. <a href="http://lists.buildroot.org/pipermail/buildroot/2015-May/129209.html">announcement</a>
  1130. and go to the <a href="/downloads/">downloads page</a> to pick up the
  1131. <a href="/downloads/buildroot-2015.05.tar.bz2">2015.05 release</a>.</p>
  1132. </div>
  1133. </div>
  1134. </li>
  1135. <li class="timeline-inverted">
  1136. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1137. <div class="timeline-panel">
  1138. <div class="timeline-heading">
  1139. <h4 class="timeline-title">2015.05-rc3 released</h4>
  1140. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>22 May 2015</small></p>
  1141. </div>
  1142. <div class="timeline-body">
  1143. <p>Release candidate 3 is out with more cleanups and security
  1144. / build fixes. See
  1145. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.05-rc3">CHANGES</a>
  1146. file for details.</p>
  1147. <p>Head to the <a href="/downloads/">downloads page</a> to
  1148. pick up
  1149. the <a href="/downloads/buildroot-2015.05-rc3.tar.bz2">2015.05-rc3
  1150. release candidate</a>, and report any problems found to
  1151. the <a href="support.html">mailing list</a>
  1152. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1153. </div>
  1154. </div>
  1155. </li>
  1156. <li>
  1157. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1158. <div class="timeline-panel">
  1159. <div class="timeline-heading">
  1160. <h4 class="timeline-title">2015.05-rc2 released</h4>
  1161. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>11 May 2015</small></p>
  1162. </div>
  1163. <div class="timeline-body">
  1164. <p>Another week, another release candidate with more cleanups
  1165. and build fixes. See
  1166. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.05-rc2">CHANGES</a>
  1167. file for details.</p>
  1168. <p>Head to the <a href="/downloads/">downloads page</a> to
  1169. pick up the
  1170. <a href="/downloads/buildroot-2015.05-rc2.tar.bz2">2015.05-rc2
  1171. release candidate</a>, and report any problems found to
  1172. the <a href="support.html">mailing list</a>
  1173. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1174. </div>
  1175. </div>
  1176. </li>
  1177. <li class="timeline-inverted">
  1178. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1179. <div class="timeline-panel">
  1180. <div class="timeline-heading">
  1181. <h4 class="timeline-title">2015.05-rc1 released</h4>
  1182. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>4 May 2015</small></p>
  1183. </div>
  1184. <div class="timeline-body">
  1185. <p>We have a new release candidate! Lots of changes all over the
  1186. tree, see the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.05-rc1">CHANGES</a>
  1187. file for details, and read the
  1188. <a href="http://lists.buildroot.org/pipermail/buildroot/2015-May/127794.html">announcement</a>.</p>
  1189. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1190. <a href="/downloads/buildroot-2015.05-rc1.tar.bz2">2015.05-rc1
  1191. release candidate</a>, and report any problems found to the
  1192. <a href="support.html">mailing list</a> or
  1193. <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1194. </div>
  1195. </div>
  1196. </li>
  1197. <li>
  1198. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1199. <div class="timeline-panel">
  1200. <div class="timeline-heading">
  1201. <h4 class="timeline-title">2015.02 released</h4>
  1202. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>1 March 2015</small></p>
  1203. </div>
  1204. <div class="timeline-body">
  1205. <p>The stable 2015.02 release is out - Thanks to everyone
  1206. contributing and testing the release candidates. See the
  1207. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.02">CHANGES</a>
  1208. file for more details, read the
  1209. <a href="http://lists.buildroot.org/pipermail/buildroot/2015-March/120396.html">announcement</a>
  1210. and go to the <a href="/downloads/">downloads page</a> to pick up the
  1211. <a href="/downloads/buildroot-2015.02.tar.bz2">2015.02 release</a>.</p>
  1212. </div>
  1213. </div>
  1214. </li>
  1215. <li class="timeline-inverted">
  1216. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1217. <div class="timeline-panel">
  1218. <div class="timeline-heading">
  1219. <h4 class="timeline-title">2015.02-rc3 released</h4>
  1220. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>24 February 2015</small></p>
  1221. </div>
  1222. <div class="timeline-body">
  1223. <p>Release candidate 3 is out with more cleanups and security
  1224. / build fixes. See
  1225. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.02-rc3">CHANGES</a>
  1226. file for details.</p>
  1227. <p>Head to the <a href="/downloads/">downloads page</a> to
  1228. pick up the
  1229. <a href="/downloads/buildroot-2015.02-rc3.tar.bz2">2015.02-rc3
  1230. release candidate</a>, and report any problems found to
  1231. the <a href="support.html">mailing list</a>
  1232. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1233. </div>
  1234. </div>
  1235. </li>
  1236. <li>
  1237. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1238. <div class="timeline-panel">
  1239. <div class="timeline-heading">
  1240. <h4 class="timeline-title">2015.02-rc2 released</h4>
  1241. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>15 February 2015</small></p>
  1242. </div>
  1243. <div class="timeline-body">
  1244. <p>Another week, another release candidate with more cleanups
  1245. and build fixes. See
  1246. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.02-rc2">CHANGES</a>
  1247. file for details.</p>
  1248. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1249. <a href="/downloads/buildroot-2015.02-rc2.tar.bz2">2015.02-rc2
  1250. release candidate</a>, and report any problems found to
  1251. the <a href="support.html">mailing list</a>
  1252. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1253. </div>
  1254. </div>
  1255. </li>
  1256. <li class="timeline-inverted">
  1257. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1258. <div class="timeline-panel">
  1259. <div class="timeline-heading">
  1260. <h4 class="timeline-title">2015.02-rc1 released</h4>
  1261. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>8 February 2015</small></p>
  1262. </div>
  1263. <div class="timeline-body">
  1264. <p>We have a new release candidate! Lots of changes all over
  1265. the tree, see
  1266. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2015.02-rc1">CHANGES</a>
  1267. file for details, and read the
  1268. <a href="http://lists.buildroot.org/pipermail/buildroot/2015-February/118982.html">announcement</a>.</p>
  1269. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1270. <a href="/downloads/buildroot-2015.02-rc1.tar.bz2">2015.02-rc1
  1271. release candidate</a>, and report any problems found to
  1272. the
  1273. <a href="support.html">mailing list</a> or
  1274. <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1275. </div>
  1276. </div>
  1277. </li>
  1278. <li>
  1279. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1280. <div class="timeline-panel">
  1281. <div class="timeline-heading">
  1282. <h4 class="timeline-title">2014.11 released</h4>
  1283. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>1 December 2014</small></p>
  1284. </div>
  1285. <div class="timeline-body">
  1286. <p>The stable 2014.11 release is out - Thanks to everyone
  1287. contributing and testing the release candidates. See the
  1288. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.11">CHANGES</a>
  1289. file for more details,
  1290. and go to the <a href="/downloads/">downloads page</a> to pick up the
  1291. <a href="/downloads/buildroot-2014.11.tar.bz2">2014.11 release</a>.</p>
  1292. </div>
  1293. </div>
  1294. </li>
  1295. <li class="timeline-inverted">
  1296. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1297. <div class="timeline-panel">
  1298. <div class="timeline-heading">
  1299. <h4 class="timeline-title">2014.11-rc3 released</h4>
  1300. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>28 November 2014</small></p>
  1301. </div>
  1302. <div class="timeline-body">
  1303. <p>Release candidate 3 is out with more cleanups and build
  1304. fixes. See
  1305. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.11-rc3">CHANGES</a>
  1306. file for details.</p>
  1307. <p>Head to the <a href="/downloads/">downloads page</a> to
  1308. pick up the
  1309. <a href="/downloads/buildroot-2014.11-rc3.tar.bz2">2014.11-rc3
  1310. release candidate</a>, and report any problems found to
  1311. the <a href="support.html">mailing list</a>
  1312. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1313. </div>
  1314. </div>
  1315. </li>
  1316. <li>
  1317. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1318. <div class="timeline-panel">
  1319. <div class="timeline-heading">
  1320. <h4 class="timeline-title">2014.11-rc2 released</h4>
  1321. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>21 November 2014</small></p>
  1322. </div>
  1323. <div class="timeline-body">
  1324. <p>Another week, another release candidate with more cleanups
  1325. and build fixes. See
  1326. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.11-rc2">CHANGES</a>
  1327. file for details.</p>
  1328. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1329. <a href="/downloads/buildroot-2014.11-rc2.tar.bz2">2014.11-rc2
  1330. release candidate</a>, and report any problems found to
  1331. the <a href="support.html">mailing list</a>
  1332. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1333. </div>
  1334. </div>
  1335. </li>
  1336. <li class="timeline-inverted">
  1337. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1338. <div class="timeline-panel">
  1339. <div class="timeline-heading">
  1340. <h4 class="timeline-title">Report from Buildroot Developers Meeting</h4>
  1341. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>13 November 2014</small></p>
  1342. </div>
  1343. <div class="timeline-body">
  1344. <p>A report from the recent
  1345. <a href="http://elinux.org/Buildroot:DeveloperDaysELCE2014">
  1346. Buildroot Developers Meeting</a> is now
  1347. <a href="http://lists.buildroot.org/pipermail/buildroot/2014-October/109966.html">available</a>.</p>
  1348. <p>Once again, thanks to all the participants and to
  1349. <a href="http://www.mind.be">Mind</a> for sponsoring the event.</p>
  1350. <p>The next Developer Days will take place on February 2nd and
  1351. 3rd in Brussels, Belgium, right
  1352. after <a href="http://fosdem.org">FOSDEM</a>. See
  1353. the <a href="http://elinux.org/Buildroot:DeveloperDaysFOSDEM2015">wiki</a>
  1354. for more details.</p>
  1355. </div>
  1356. </div>
  1357. </li>
  1358. <li>
  1359. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1360. <div class="timeline-panel">
  1361. <div class="timeline-heading">
  1362. <h4 class="timeline-title">2014.11-rc1 released</h4>
  1363. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>12 November 2014</small></p>
  1364. </div>
  1365. <div class="timeline-body">
  1366. <p>We have a new release candidate! Lots of changes all over the
  1367. tree, see the <a
  1368. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.11-rc1">CHANGES</a>
  1369. file for details, and read the
  1370. <a href="http://lists.buildroot.org/pipermail/buildroot/2014-November/111946.html">announcement</a>.</p>
  1371. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1372. <a href="/downloads/buildroot-2014.11-rc1.tar.bz2">2014.11-rc1
  1373. release candidate</a>, and report any problems found to the
  1374. <a href="support.html">mailing list</a> or
  1375. <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1376. </div>
  1377. </div>
  1378. </li>
  1379. <li class="timeline-inverted">
  1380. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1381. <div class="timeline-panel">
  1382. <div class="timeline-heading">
  1383. <h4 class="timeline-title">2014.08 released</h4>
  1384. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>1 September 2014</small></p>
  1385. </div>
  1386. <div class="timeline-body">
  1387. <p>The stable 2014.08 release is out - Thanks to everyone
  1388. contributing and testing the release candidates. See the
  1389. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.08">CHANGES</a>
  1390. file for more details, read the
  1391. <a href="http://lists.buildroot.org/pipermail/buildroot/2014-September/105257.html">announcement</a>
  1392. and go to the <a href="/downloads/">downloads page</a> to pick up the
  1393. <a href="/downloads/buildroot-2014.08.tar.bz2">2014.08 release</a>.</p>
  1394. </div>
  1395. </div>
  1396. </li>
  1397. <li>
  1398. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1399. <div class="timeline-panel">
  1400. <div class="timeline-heading">
  1401. <h4 class="timeline-title">2014.08-rc3 released</h4>
  1402. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>26 August 2014</small></p>
  1403. </div>
  1404. <div class="timeline-body">
  1405. <p>Release candidate 3 is out with more cleanups and build
  1406. fixes. See
  1407. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.08-rc3">CHANGES</a>
  1408. file for details.</p>
  1409. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1410. <a href="/downloads/buildroot-2014.08-rc3.tar.bz2">2014.08-rc3
  1411. release candidate</a>, and report any problems found to
  1412. the <a href="support.html">mailing list</a>
  1413. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1414. </div>
  1415. </div>
  1416. </li>
  1417. <li class="timeline-inverted">
  1418. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1419. <div class="timeline-panel">
  1420. <div class="timeline-heading">
  1421. <h4 class="timeline-title">2014.08-rc2 released</h4>
  1422. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>18 August 2014</small></p>
  1423. </div>
  1424. <div class="timeline-body">
  1425. <p>Another week, another release candidate with more cleanups
  1426. and build fixes. See
  1427. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.08-rc2">CHANGES</a>
  1428. file for details.</p>
  1429. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1430. <a href="/downloads/buildroot-2014.08-rc2.tar.bz2">2014.08-rc2
  1431. release candidate</a>, and report any problems found to
  1432. the <a href="support.html">mailing list</a>
  1433. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1434. </div>
  1435. </div>
  1436. </li>
  1437. <li>
  1438. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1439. <div class="timeline-panel">
  1440. <div class="timeline-heading">
  1441. <h4 class="timeline-title">2014.08-rc1 released</h4>
  1442. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>8 August 2014</small></p>
  1443. </div>
  1444. <div class="timeline-body">
  1445. <p>We have a new release candidate! Lots of changes all over the
  1446. tree, see the <a
  1447. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.08-rc1">CHANGES</a>
  1448. file for details, and read the
  1449. <a href="http://lists.buildroot.org/pipermail/buildroot/2014-August/103972.html">announcement</a>.</p>
  1450. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1451. <a href="/downloads/buildroot-2014.08-rc1.tar.bz2">2014.08-rc1
  1452. release candidate</a>, and report any problems found to the
  1453. <a href="support.html">mailing list</a> or
  1454. <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1455. </div>
  1456. </div>
  1457. </li>
  1458. <li class="timeline-inverted">
  1459. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1460. <div class="timeline-panel">
  1461. <div class="timeline-heading">
  1462. <h4 class="timeline-title">2014.05 released</h4>
  1463. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>31 May 2014</small></p>
  1464. </div>
  1465. <div class="timeline-body">
  1466. <p>The stable 2014.05 release is out - Thanks to everyone
  1467. contributing and testing the release candidates. See the
  1468. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.05">CHANGES</a>
  1469. file for more details, read the
  1470. <a href="http://lists.buildroot.org/pipermail/buildroot/2014-May/097863.html">announcement</a>
  1471. and go to the <a href="/downloads/">downloads page</a> to pick up the
  1472. <a href="/downloads/buildroot-2014.05.tar.bz2">2014.05 release</a>.</p>
  1473. </div>
  1474. </div>
  1475. </li>
  1476. <li>
  1477. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1478. <div class="timeline-panel">
  1479. <div class="timeline-heading">
  1480. <h4 class="timeline-title">2014.05-rc3 released</h4>
  1481. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>28 May 2014</small></p>
  1482. </div>
  1483. <div class="timeline-body">
  1484. <p>Release candidate 3 is out with more cleanups and build
  1485. fixes. See
  1486. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.05-rc3">CHANGES</a>
  1487. file for details.</p>
  1488. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1489. <a href="/downloads/buildroot-2014.05-rc3.tar.bz2">2014.05-rc3
  1490. release candidate</a>, and report any problems found to
  1491. the <a href="support.html">mailing list</a>
  1492. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1493. </div>
  1494. </div>
  1495. </li>
  1496. <li class="timeline-inverted">
  1497. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1498. <div class="timeline-panel">
  1499. <div class="timeline-heading">
  1500. <h4 class="timeline-title">2014.05-rc2 released</h4>
  1501. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>21 May 2014</small></p>
  1502. </div>
  1503. <div class="timeline-body">
  1504. <p>Another week, another release candidate with more cleanups
  1505. and build fixes. See
  1506. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.05-rc2">CHANGES</a>
  1507. file for details.</p>
  1508. <p>Head to the <a href="/downloads/">downloads page</a> to
  1509. pick up the
  1510. <a href="/downloads/buildroot-2014.05-rc2.tar.bz2">2014.05-rc2
  1511. release candidate</a>, and report any problems found to
  1512. the <a href="support.html">mailing list</a>
  1513. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1514. </div>
  1515. </div>
  1516. </li>
  1517. <li>
  1518. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1519. <div class="timeline-panel">
  1520. <div class="timeline-heading">
  1521. <h4 class="timeline-title">2014.05-rc1 released</h4>
  1522. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>13 May 2014</small></p>
  1523. </div>
  1524. <div class="timeline-body">
  1525. <p>We have a new release candidate! Lots of changes all over the
  1526. tree, see the <a
  1527. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.05-rc1">CHANGES</a>
  1528. file for details, and read the
  1529. <a href="http://lists.buildroot.org/pipermail/buildroot/2014-May/096492.html">announcement</a>.</p>
  1530. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1531. <a href="/downloads/buildroot-2014.05-rc1.tar.bz2">2014.05-rc1
  1532. release candidate</a>, and report any problems found to the
  1533. <a href="support.html">mailing list</a> or
  1534. <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1535. </div>
  1536. </div>
  1537. </li>
  1538. <li class="timeline-inverted">
  1539. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1540. <div class="timeline-panel">
  1541. <div class="timeline-heading">
  1542. <h4 class="timeline-title">27 February 2014</h4>
  1543. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>2014.02 released</small></p>
  1544. </div>
  1545. <div class="timeline-body">
  1546. <p>The stable 2014.02 release is out - Thanks to everyone
  1547. contributing and testing the release candidates. See the
  1548. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.02">CHANGES</a>
  1549. file for more details,
  1550. and go to the <a href="/downloads/">downloads page</a> to pick up the
  1551. <a href="/downloads/buildroot-2014.02.tar.bz2">2014.02 release</a>.</p>
  1552. </div>
  1553. </div>
  1554. </li>
  1555. <li>
  1556. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1557. <div class="timeline-panel">
  1558. <div class="timeline-heading">
  1559. <h4 class="timeline-title">25 February 2014</h4>
  1560. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>2014.02-rc3 released</small></p>
  1561. </div>
  1562. <div class="timeline-body">
  1563. <p>Release candidate 3 is out with more cleanups and build
  1564. fixes. See
  1565. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.02-rc3">CHANGES</a>
  1566. file for details.</p>
  1567. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1568. <a href="/downloads/buildroot-2014.02-rc3.tar.bz2">2014.02-rc3
  1569. release candidate</a>, and report any problems found to
  1570. the <a href="support.html">mailing list</a>
  1571. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1572. </div>
  1573. </div>
  1574. </li>
  1575. <li class="timeline-inverted">
  1576. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1577. <div class="timeline-panel">
  1578. <div class="timeline-heading">
  1579. <h4 class="timeline-title">20 February 2014</h4>
  1580. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>2014.02-rc2 released</small></p>
  1581. </div>
  1582. <div class="timeline-body">
  1583. <p>Another week, another release candidate with more cleanups
  1584. and build fixes. See
  1585. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.02-rc2">CHANGES</a>
  1586. file for details.</p>
  1587. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1588. <a href="/downloads/buildroot-2014.02-rc2.tar.bz2">2014.02-rc2
  1589. release candidate</a>, and report any problems found to
  1590. the <a href="support.html">mailing list</a>
  1591. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1592. </div>
  1593. </div>
  1594. </li>
  1595. <li>
  1596. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1597. <div class="timeline-panel">
  1598. <div class="timeline-heading">
  1599. <h4 class="timeline-title">2014.02-rc1 released</h4>
  1600. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>11 February 2014</small></p>
  1601. </div>
  1602. <div class="timeline-body">
  1603. <p>We have a new release candidate! Lots of changes all over the
  1604. tree, see the <a
  1605. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2014.02-rc1">CHANGES</a>
  1606. file for details, and read the
  1607. <a href="http://lists.buildroot.org/pipermail/buildroot/2014-February/089055.html">announcement</a>.</p>
  1608. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1609. <a href="/downloads/buildroot-2014.02-rc1.tar.bz2">2014.02-rc1
  1610. release candidate</a>, and report any problems found to the
  1611. <a href="support.html">mailing list</a> or
  1612. <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1613. </div>
  1614. </div>
  1615. </li>
  1616. <li class="timeline-inverted">
  1617. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1618. <div class="timeline-panel">
  1619. <div class="timeline-heading">
  1620. <h4 class="timeline-title">9 February 2014</h4>
  1621. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>Report from Buildroot Developers Meeting</small></p>
  1622. </div>
  1623. <div class="timeline-body">
  1624. <p>A report from the recent
  1625. <a href="http://elinux.org/Buildroot:DeveloperDaysFOSDEM2014">
  1626. Buildroot Developers Meeting</a> is now
  1627. <a href="http://lists.buildroot.org/pipermail/buildroot/2014-February/088373.html">available</a>.</p>
  1628. <p>Once again, thanks to all the participants and to
  1629. <a href="http://www.google.com">Google</a> and
  1630. <a href="http://www.mind.be">Mind</a> for sponsoring the event.</p>
  1631. </div>
  1632. </div>
  1633. </li>
  1634. <li>
  1635. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1636. <div class="timeline-panel">
  1637. <div class="timeline-heading">
  1638. <h4 class="timeline-title">Upcoming Buildroot Developers meeting</h4>
  1639. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 January 2014</small></p>
  1640. </div>
  1641. <div class="timeline-body">
  1642. <p>The upcoming Buildroot Developers meeting will take place in
  1643. Brussels on February, 3rd and 4th, after the
  1644. <a href="http://www.fosdem.org">FOSDEM</a> conference. Additional
  1645. details about the meeting can be found on the corresponding
  1646. <a href="http://elinux.org/Buildroot:DeveloperDaysFOSDEM2014">
  1647. wiki page</a>.</p>
  1648. <p>Persons not able to join the meeting in Brussels can participate
  1649. remotely using Google Hangouts. Simply give your Google address to
  1650. <code>thomas.petazzoni@free-electrons.com</code>.</p>
  1651. <p>This meeting is sponsored by
  1652. <a href="http://www.google.com">Google</a> (for the meeting room)
  1653. and <a href="http://www.mind.be">Mind</a> (for the dinner).
  1654. Thanks to our sponsors!</p>
  1655. </div>
  1656. </div>
  1657. </li>
  1658. <li class="timeline-inverted">
  1659. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1660. <div class="timeline-panel">
  1661. <div class="timeline-heading">
  1662. <h4 class="timeline-title">2013.11 released</h4>
  1663. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 November 2013</small></p>
  1664. </div>
  1665. <div class="timeline-body">
  1666. <p>The stable 2013.11 release is out - Thanks to everyone
  1667. contributing and testing the release candidates. See the
  1668. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.11">CHANGES</a>
  1669. file for more details, read the <a href="http://lists.buildroot.org/pipermail/buildroot/2013-November/083600.html">announcement</a>
  1670. and go to the <a href="/downloads/">downloads page</a> to pick up the
  1671. <a href="/downloads/buildroot-2013.11.tar.bz2">2013.11 release</a>.</p>
  1672. </div>
  1673. </div>
  1674. </li>
  1675. <li>
  1676. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1677. <div class="timeline-panel">
  1678. <div class="timeline-heading">
  1679. <h4 class="timeline-title">Slides from Embedded Linux Conference Europe</h4>
  1680. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 November 2013</small></p>
  1681. </div>
  1682. <div class="timeline-body">
  1683. <p>The slides from the Buildroot presentation at the recent
  1684. <a href="http://events.linuxfoundation.org/events/embedded-linux-conference-europe">Embedded Linux Conference Europe 2013</a>
  1685. are now
  1686. <a href="http://elinux.org/images/2/23/Buildroot-whats-new-elce2013.pdf">available</a>.</p>
  1687. </div>
  1688. </div>
  1689. </li>
  1690. <li class="timeline-inverted">
  1691. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1692. <div class="timeline-panel">
  1693. <div class="timeline-heading">
  1694. <h4 class="timeline-title">2013.11-rc3 released</h4>
  1695. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>18 November 2013</small></p>
  1696. </div>
  1697. <div class="timeline-body">
  1698. <p>Another week, another release candidate with more
  1699. fixes. See
  1700. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.11-rc3">CHANGES</a>
  1701. file for details.</p>
  1702. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1703. <a href="/downloads/buildroot-2013.11-rc3.tar.bz2">2013.11-rc3
  1704. release candidate</a>, and report any problems found to
  1705. the <a href="support.html">mailing list</a>
  1706. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1707. </div>
  1708. </div>
  1709. </li>
  1710. <li>
  1711. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1712. <div class="timeline-panel">
  1713. <div class="timeline-heading">
  1714. <h4 class="timeline-title">2013.11-rc2 released</h4>
  1715. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>18 November 2013</small></p>
  1716. </div>
  1717. <div class="timeline-body">
  1718. <p>Another week, another release candidate with more cleanups
  1719. and build fixes. See
  1720. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.11-rc2">CHANGES</a>
  1721. file for details.</p>
  1722. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1723. <a href="/downloads/buildroot-2013.11-rc2.tar.bz2">2013.11-rc2
  1724. release candidate</a>, and report any problems found to
  1725. the <a href="support.html">mailing list</a>
  1726. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1727. </div>
  1728. </div>
  1729. </li>
  1730. <li class="timeline-inverted">
  1731. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1732. <div class="timeline-panel">
  1733. <div class="timeline-heading">
  1734. <h4 class="timeline-title">Announcement of the next Buildroot Developer Days</h4>
  1735. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>13 November 2013</small></p>
  1736. </div>
  1737. <div class="timeline-body">
  1738. <p>The next <i>Buildroot Developer Days</i> meeting will take
  1739. place on Monday 3rd and Tuesday 4th February 2014 in Brussels,
  1740. Belgium - Just after
  1741. <a href="http://www.fosdem.org">FOSDEM</a> (February
  1742. 1st/2nd). This two days meeting is mainly open to Buildroot
  1743. developers and contributors, or Buildroot users having a prior
  1744. experience with the tool. It will allow developers to work on
  1745. Buildroot and discuss current issues, the future directions, and
  1746. more.</p>
  1747. <p>In addition to the Buildroot event, we encourage embedded Linux
  1748. developers to propose talks for the Embedded and Mobile Developer
  1749. Room at FOSDEM. See
  1750. the <a href="https://lists.fosdem.org/pipermail/fosdem/2013-October/001870.html">CFP</a>.</p>
  1751. <p>We would like to thank our
  1752. sponsor <a href="http://www.google.com">Google</a> for sponsoring
  1753. the event by providing all the needed logistics.</p>
  1754. <p>For more details, see the
  1755. <a href="http://www.elinux.org/Buildroot:DeveloperDaysFOSDEM2014">wiki
  1756. page</a> dedicated to the meeting.</p>
  1757. </div>
  1758. </div>
  1759. </li>
  1760. <li>
  1761. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1762. <div class="timeline-panel">
  1763. <div class="timeline-heading">
  1764. <h4 class="timeline-title">2013.11-rc1 released</h4>
  1765. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>12 November 2013</small></p>
  1766. </div>
  1767. <div class="timeline-body">
  1768. <p>We have a new release candidate! Lots of changes all over the
  1769. tree, see the <a
  1770. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.11_rc1">CHANGES</a>
  1771. file for details, and read the
  1772. <a href="http://lists.buildroot.org/pipermail/buildroot/2013-November/082514.html">announcement</a>.</p>
  1773. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1774. <a href="/downloads/buildroot-2013.11-rc1.tar.bz2">2013.11-rc1
  1775. release candidate</a>, and report any problems found to
  1776. the <a href="support.html">mailing list</a>
  1777. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1778. </div>
  1779. </div>
  1780. </li>
  1781. <li class="timeline-inverted">
  1782. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1783. <div class="timeline-panel">
  1784. <div class="timeline-heading">
  1785. <h4 class="timeline-title">Report from Buildroot Developers Meeting</h4>
  1786. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>11 November 2013</small></p>
  1787. </div>
  1788. <div class="timeline-body">
  1789. <p>A report from the recent
  1790. <a href="http://elinux.org/Buildroot:DeveloperDaysELCE2013">
  1791. Buildroot Developers Meeting</a> is now
  1792. <a href="http://lists.buildroot.org/pipermail/buildroot/2013-November/082401.html">available</a>.</p>
  1793. <p>Once again, thanks to all the participants and to
  1794. <a href="http://www.imgtec.com/">Imagination Technologies</a>
  1795. for sponsoring the event.</p>
  1796. </div>
  1797. </div>
  1798. </li>
  1799. <li>
  1800. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1801. <div class="timeline-panel">
  1802. <div class="timeline-heading">
  1803. <h4 class="timeline-title">2013.08.1 released</h4>
  1804. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>17 September 2013</small></p>
  1805. </div>
  1806. <div class="timeline-body">
  1807. <p>The 2013.08.1 bugfix release is out - Thanks to everyone
  1808. contributing. This release fixes critical issues discovered since
  1809. the 2013.08 release. See the
  1810. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.08.1">CHANGES</a>
  1811. file for more details,
  1812. and go to the <a href="/downloads/">downloads page</a> to pick up the
  1813. <a href="/downloads/buildroot-2013.08.1.tar.bz2">2013.08.1 release</a>.</p>
  1814. </div>
  1815. </div>
  1816. </li>
  1817. <li class="timeline-inverted">
  1818. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1819. <div class="timeline-panel">
  1820. <div class="timeline-heading">
  1821. <h4 class="timeline-title">Buildroot Developer Days</h4>
  1822. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>16 September 2013</small></p>
  1823. </div>
  1824. <div class="timeline-body">
  1825. <p>The next <i>Buildroot Developer Days</i> meeting will take
  1826. place on Saturday October 26th and Sunday October 27th 2013 in
  1827. Edinburgh, UK - Just after the <a
  1828. href="https://events.linuxfoundation.org/events/embedded-linux-conference-europe">
  1829. Embedded Linux Conference Europe</a> (October 23th-24th). This two
  1830. days meeting is mainly open to Buildroot developers and
  1831. contributors, or Buildroot users having a prior experience with
  1832. the tool. It will allow developers to work on Buildroot and
  1833. discuss current issues, the future directions, and more.</p>
  1834. <p>For more details, see the
  1835. <a href="http://www.elinux.org/Buildroot:DeveloperDaysELCE2013">wiki
  1836. page</a> dedicated to the meeting.</p>
  1837. </div>
  1838. </div>
  1839. </li>
  1840. <li>
  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">2013.08 released</h4>
  1845. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>31 August 2013</small></p>
  1846. </div>
  1847. <div class="timeline-body">
  1848. <p>The stable 2013.08 release is out - Thanks to everyone
  1849. contributing and testing the release candidates. See the
  1850. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.08">CHANGES</a>
  1851. file for more details, read the <a href="http://lists.buildroot.org/pipermail/buildroot/2013-August/077224.html">announcement</a>
  1852. and go to the <a href="/downloads/">downloads page</a> to pick up the
  1853. <a href="/downloads/buildroot-2013.08.tar.bz2">2013.08 release</a>.</p>
  1854. </div>
  1855. </div>
  1856. </li>
  1857. <li class="timeline-inverted">
  1858. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1859. <div class="timeline-panel">
  1860. <div class="timeline-heading">
  1861. <h4 class="timeline-title">2013.08-rc3 released</h4>
  1862. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>29 August 2013</small></p>
  1863. </div>
  1864. <div class="timeline-body">
  1865. <p>Another week, another release candidate with more cleanups and
  1866. build fixes. See the <a
  1867. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.08_rc3">CHANGES</a>
  1868. file for details.</p>
  1869. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1870. <a href="/downloads/buildroot-2013.08-rc3.tar.bz2">2013.08-rc3
  1871. release candidate</a>, and report any problems found to the <a
  1872. href="support.html">mailing list</a> or <a
  1873. href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1874. </div>
  1875. </div>
  1876. </li>
  1877. <li>
  1878. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1879. <div class="timeline-panel">
  1880. <div class="timeline-heading">
  1881. <h4 class="timeline-title">2013.08-rc2 released</h4>
  1882. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>16 August 2013</small></p>
  1883. </div>
  1884. <div class="timeline-body">
  1885. <p>We have a new release candidate! Lots of changes all over the
  1886. tree, see
  1887. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.08_rc2">CHANGES</a>
  1888. file for details.</p>
  1889. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1890. <a href="/downloads/buildroot-2013.08-rc2.tar.bz2">2013.08-rc2
  1891. release candidate</a>, and report any problems found to
  1892. the <a href="support.html">mailing list</a>
  1893. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1894. </div>
  1895. </div>
  1896. </li>
  1897. <li class="timeline-inverted">
  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">2013.08-rc1 released</h4>
  1902. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>5 August 2013</small></p>
  1903. </div>
  1904. <div class="timeline-body">
  1905. <p>We have a new release candidate! Lots of changes all over the
  1906. tree, see
  1907. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.08_rc1">CHANGES</a>
  1908. file for details.</p>
  1909. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1910. <a href="/downloads/buildroot-2013.08-rc1.tar.bz2">2013.08-rc1
  1911. release candidate</a>, and report any problems found to
  1912. the <a href="support.html">mailing list</a>
  1913. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1914. </div>
  1915. </div>
  1916. </li>
  1917. <li>
  1918. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1919. <div class="timeline-panel">
  1920. <div class="timeline-heading">
  1921. <h4 class="timeline-title">2013.05 released</h4>
  1922. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>31 May 2013</small></p>
  1923. </div>
  1924. <div class="timeline-body">
  1925. <p>The stable 2013.05 release is out - Thanks to everyone
  1926. contributing and testing the release candidates. See the
  1927. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.05">CHANGES</a>
  1928. file for more details, read the
  1929. <a href="http://lists.buildroot.org/pipermail/buildroot/2013-May/073121.html">announcement</a>
  1930. and go to the <a href="/downloads/">downloads page</a> to pick up the
  1931. <a href="/downloads/buildroot-2013.05.tar.bz2">2013.05 release</a>.</p>
  1932. </div>
  1933. </div>
  1934. </li>
  1935. <li class="timeline-inverted">
  1936. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1937. <div class="timeline-panel">
  1938. <div class="timeline-heading">
  1939. <h4 class="timeline-title">2013.05-rc3 released</h4>
  1940. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>25 May 2013</small></p>
  1941. </div>
  1942. <div class="timeline-body">
  1943. <p>Another week, another release candidate with more cleanups and
  1944. build fixes. See the <a
  1945. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.05_rc3">CHANGES</a>
  1946. file for details.</p>
  1947. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1948. <a href="/downloads/buildroot-2013.05-rc3.tar.bz2">2013.05-rc3
  1949. release candidate</a>, and report any problems found to
  1950. the <a href="support.html">mailing list</a>
  1951. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1952. </div>
  1953. </div>
  1954. </li>
  1955. <li>
  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">2013.05-rc2 released</h4>
  1960. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>15 May 2013</small></p>
  1961. </div>
  1962. <div class="timeline-body">
  1963. <p>Another week, another release candidate with more cleanups and
  1964. build fixes. See the <a
  1965. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.05_rc2">CHANGES</a>
  1966. file for details.</p>
  1967. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1968. <a href="/downloads/buildroot-2013.05-rc2.tar.bz2">2013.05-rc2
  1969. release candidate</a>, and report any problems found to
  1970. the <a href="support.html">mailing list</a>
  1971. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1972. </div>
  1973. </div>
  1974. </li>
  1975. <li class="timeline-inverted">
  1976. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1977. <div class="timeline-panel">
  1978. <div class="timeline-heading">
  1979. <h4 class="timeline-title">2013.05-rc1 released</h4>
  1980. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>8 May 2013</small></p>
  1981. </div>
  1982. <div class="timeline-body">
  1983. <p>We have a new release candidate! Lots of changes all over the
  1984. tree, see the <a
  1985. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.05_rc1">CHANGES</a>
  1986. file for details, and read the
  1987. <a href="http://lists.buildroot.org/pipermail/buildroot/2013-May/071737.html">announcement</a>.</p>
  1988. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  1989. <a href="/downloads/buildroot-2013.05-rc1.tar.bz2">2013.05-rc1
  1990. release candidate</a>, and report any problems found to
  1991. the <a href="support.html">mailing list</a>
  1992. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  1993. </div>
  1994. </div>
  1995. </li>
  1996. <li>
  1997. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  1998. <div class="timeline-panel">
  1999. <div class="timeline-heading">
  2000. <h4 class="timeline-title">2013.02 released</h4>
  2001. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>28 February 2013</small></p>
  2002. </div>
  2003. <div class="timeline-body">
  2004. <p>The stable 2013.02 release is out - Thanks to everyone
  2005. contributing and testing the release candidates. See the
  2006. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.02">CHANGES</a>
  2007. file for more details
  2008. and go to the <a href="/downloads/">downloads page</a> to pick up the
  2009. <a href="/downloads/buildroot-2013.02.tar.bz2">2013.02 release</a>.</p>
  2010. </div>
  2011. </div>
  2012. </li>
  2013. <li class="timeline-inverted">
  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">2013.02-rc3 released</h4>
  2018. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>26 February 2013</small></p>
  2019. </div>
  2020. <div class="timeline-body">
  2021. <p>Another week, another release candidate with more cleanups
  2022. and build fixes. See
  2023. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.02_rc3">CHANGES</a>
  2024. file for details.</p>
  2025. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2026. <a href="/downloads/buildroot-2013.02-rc3.tar.bz2">2013.02-rc3
  2027. release candidate</a>, and report any problems found to
  2028. the <a href="support.html">mailing list</a>
  2029. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2030. </div>
  2031. </div>
  2032. </li>
  2033. <li>
  2034. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2035. <div class="timeline-panel">
  2036. <div class="timeline-heading">
  2037. <h4 class="timeline-title">2013.02-rc2 released</h4>
  2038. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>19 February 2013</small></p>
  2039. </div>
  2040. <div class="timeline-body">
  2041. <p>Another week, another release candidate with more cleanups and
  2042. build fixes. See the <a
  2043. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.02_rc2">CHANGES</a>
  2044. file for details.</p>
  2045. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2046. <a href="/downloads/buildroot-2013.02-rc2.tar.bz2">2013.02-rc2
  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 class="timeline-inverted">
  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">2013.02-rc1 released</h4>
  2058. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>10 February 2013</small></p>
  2059. </div>
  2060. <div class="timeline-body">
  2061. <p>We have a new release candidate! Lots of changes all over the
  2062. tree, see the <a
  2063. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2013.02_rc1">CHANGES</a>
  2064. file for details, and read the
  2065. <a href="http://lists.buildroot.org/pipermail/buildroot/2013-February/067148.html">announcement</a>.</p>
  2066. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2067. <a href="/downloads/buildroot-2013.02-rc1.tar.bz2">2013.02-rc1
  2068. release candidate</a>, and report any problems found to
  2069. the <a href="support.html">mailing list</a>
  2070. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2071. </div>
  2072. </div>
  2073. </li>
  2074. <li>
  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">Report from Buildroot Developers Meeting</h4>
  2079. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>10 February 2013</small></p>
  2080. </div>
  2081. <div class="timeline-body">
  2082. <p>A report from the recent Buildroot Developers Meeting is now
  2083. <a href="http://lists.buildroot.org/pipermail/buildroot/2013-February/067105.html">available</a>.
  2084. <a href="http://emlinews.net">Embedded Linux News</a> also has a
  2085. <a href="http://www.emlinews.net/2013/02/buildroot-developers-meeting-report/">
  2086. writeup about the event</a>, including photos.</p>
  2087. <p>Once again, thanks to all the participants and to
  2088. <a href="http://www.google.com">Google</a> for sponsoring the event.</p>
  2089. </div>
  2090. </div>
  2091. </li>
  2092. <li class="timeline-inverted">
  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">Next Buildroot Developers Meeting next to FOSDEM, Brussels</h4>
  2097. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>12 January 2013</small></p>
  2098. </div>
  2099. <div class="timeline-body">
  2100. <p>The next Buildroot Developers Meeting will take place on Monday
  2101. 4th February 2013 and Tuesday 5th February 2013 in Brussels,
  2102. Belgium. Those dates have been chosen to immediately follow the
  2103. great <a href="http://www.fosdem.org">FOSDEM</a> conference.</p>
  2104. <p>Attending this meeting is free, after registration by
  2105. contacting <a href="mailto:thomas.petazzoni@free-electrons.com">Thomas
  2106. Petazzoni</a>. For more details about the meeting, please see
  2107. the <a href="http://elinux.org/Buildroot:DeveloperDaysFOSDEM2013">related
  2108. Wiki page</a>.</p>
  2109. <p>We would like to
  2110. thank <a href="http://www.google.com">Google</a> for providing the
  2111. meeting location and the Internet connection, and offering free
  2112. lunch and refreshments to the participants.</p>
  2113. </div>
  2114. </div>
  2115. </li>
  2116. <li>
  2117. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2118. <div class="timeline-panel">
  2119. <div class="timeline-heading">
  2120. <h4 class="timeline-title">2012.11.1 released</h4>
  2121. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>3 January 2013</small></p>
  2122. </div>
  2123. <div class="timeline-body">
  2124. <p>The 2012.11.1 bugfix release is out - Thanks to everyone
  2125. contributing. This release fixes critical issues discovered since
  2126. the 2012.11 release, most importantly with non-largefile builds on
  2127. recent Ubuntu versions. See the
  2128. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.11.1">CHANGES</a>
  2129. file for more details,
  2130. and go to the <a href="/downloads/">downloads page</a> to pick up the
  2131. <a href="/downloads/buildroot-2012.11.1.tar.bz2">2012.11.1 release</a>.</p>
  2132. </div>
  2133. </div>
  2134. </li>
  2135. <li class="timeline-inverted">
  2136. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2137. <div class="timeline-panel">
  2138. <div class="timeline-heading">
  2139. <h4 class="timeline-title">2012.11 released</h4>
  2140. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>2 December 2012</small></p>
  2141. </div>
  2142. <div class="timeline-body">
  2143. <p>The stable 2012.11 release is out - Thanks to everyone
  2144. contributing and testing the release candidates. See the
  2145. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.11">CHANGES</a>
  2146. file for more details
  2147. and go to the <a href="/downloads/">downloads page</a> to pick up the
  2148. <a href="/downloads/buildroot-2012.11.tar.bz2">2012.11 release</a>.</p>
  2149. </div>
  2150. </div>
  2151. </li>
  2152. <li>
  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">2012.11-rc2 released</h4>
  2157. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 November 2012</small></p>
  2158. </div>
  2159. <div class="timeline-body">
  2160. <p>RC2 is out with more bugfixes - See
  2161. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.11_rc2">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-2012.11-rc2.tar.bz2">2012.11-rc2
  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 class="timeline-inverted">
  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">2012.11-rc1 released</h4>
  2176. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>17 November 2012</small></p>
  2177. </div>
  2178. <div class="timeline-body">
  2179. <p>We have a new release candidate! Lots of changes all over the
  2180. tree, see the <a
  2181. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.11_rc1">CHANGES</a>
  2182. file for details, and read the
  2183. <a href="http://lists.buildroot.org/pipermail/buildroot/2012-November/061995.html">announcement</a>.</p>
  2184. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2185. <a href="/downloads/buildroot-2012.11-rc1.tar.bz2">2012.11-rc1
  2186. release candidate</a>, and report any problems found to
  2187. the <a href="support.html">mailing list</a>
  2188. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2189. </div>
  2190. </div>
  2191. </li>
  2192. <li>
  2193. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2194. <div class="timeline-panel">
  2195. <div class="timeline-heading">
  2196. <h4 class="timeline-title">Buildroot Developer Day</h4>
  2197. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>17 November 2012</small></p>
  2198. </div>
  2199. <div class="timeline-body">
  2200. <p>A report from the recent <i>Buildroot Developer Days</i>
  2201. meeting in Barcelona, Spain is
  2202. now <a href="http://lists.buildroot.org/pipermail/buildroot/2012-November/061558.html">available</a>.
  2203. Many thanks to all the participants, and a special thanks to
  2204. Arnout Vandecappelle from <a href="http://mind.be/">mind</a>
  2205. for taking notes and Thomas Petazzoni
  2206. from <a href="http://free-electrons.com/">Free Electrons</a>
  2207. for handling all the practical arrangements, and naturally
  2208. our sponsors, <a href="http://www.fluendo.com/">Fluendo</a>
  2209. and <a href="http://www.synopsys.com/">Synopsis</a>.
  2210. </p>
  2211. <p>The next Developer Days will take place on February 4th and
  2212. 5th in Brussels, Belgium, right
  2213. after <a href="http://fosdem.org">FOSDEM</a>.</p>
  2214. </div>
  2215. </div>
  2216. </li>
  2217. <li class="timeline-inverted">
  2218. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2219. <div class="timeline-panel">
  2220. <div class="timeline-heading">
  2221. <h4 class="timeline-title">2012.08 released</h4>
  2222. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>31 August 2012</small></p>
  2223. </div>
  2224. <div class="timeline-body">
  2225. <p>The stable 2012.08 release is out - Thanks to everyone
  2226. contributing and testing the release candidates. See the
  2227. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.08">CHANGES</a>
  2228. file for more details and go to the <a href="/downloads/">downloads page</a> to pick up the
  2229. <a href="/downloads/buildroot-2012.08.tar.bz2">2012.08 release</a>.</p>
  2230. </div>
  2231. </div>
  2232. </li>
  2233. <li>
  2234. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2235. <div class="timeline-panel">
  2236. <div class="timeline-heading">
  2237. <h4 class="timeline-title">2012.08-rc3 released</h4>
  2238. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>25 August 2012</small></p>
  2239. </div>
  2240. <div class="timeline-body">
  2241. <p>We have a new release candidate! Various fixes, and
  2242. addition of licensing informations on many
  2243. packages. See <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.08_rc3">CHANGES</a>
  2244. file for details</p>
  2245. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2246. <a href="/downloads/buildroot-2012.08-rc3.tar.bz2">2012.08-rc3
  2247. release candidate</a>, and report any problems found to
  2248. the <a href="support.html">mailing list</a>
  2249. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2250. </div>
  2251. </div>
  2252. </li>
  2253. <li class="timeline-inverted">
  2254. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2255. <div class="timeline-panel">
  2256. <div class="timeline-heading">
  2257. <h4 class="timeline-title">2012.08-rc2 released</h4>
  2258. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>15 August 2012</small></p>
  2259. </div>
  2260. <div class="timeline-body">
  2261. <p>We have a new release candidate! Various fixes, and addition
  2262. of licensing informations on many
  2263. packages. See <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.08_rc2">CHANGES</a>
  2264. file for details</p>
  2265. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2266. <a href="/downloads/buildroot-2012.08-rc2.tar.bz2">2012.08-rc2
  2267. release candidate</a>, and report any problems found to the <a
  2268. href="support.html">mailing list</a> or <a
  2269. href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2270. </div>
  2271. </div>
  2272. </li>
  2273. <li>
  2274. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2275. <div class="timeline-panel">
  2276. <div class="timeline-heading">
  2277. <h4 class="timeline-title">2012.08-rc1 released</h4>
  2278. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>1 August 2012</small></p>
  2279. </div>
  2280. <div class="timeline-body">
  2281. <p>We have a new release candidate! Lots of changes all over
  2282. the tree, see
  2283. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.08_rc1">CHANGES</a>
  2284. file for details</p>
  2285. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2286. <a href="/downloads/buildroot-2012.08-rc1.tar.bz2">2012.08-rc1
  2287. release candidate</a>, and report any problems found to
  2288. the <a href="support.html">mailing list</a>
  2289. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2290. </div>
  2291. </div>
  2292. </li>
  2293. <li class="timeline-inverted">
  2294. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2295. <div class="timeline-panel">
  2296. <div class="timeline-heading">
  2297. <h4 class="timeline-title">Buildroot Developer Day</h4>
  2298. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>22 July 2012</small></p>
  2299. </div>
  2300. <div class="timeline-body">
  2301. <p>The next <i>Buildroot Developer Day</i> meeting will take place
  2302. on Saturday November 3th and Sunday November 4th 2012 in
  2303. Barcelona, Spain, just before
  2304. the <a href="https://events.linuxfoundation.org/events/embedded-linux-conference-europe">Embedded
  2305. Linux Conference Europe</a> (November 5th-7th). This two days
  2306. meeting is mainly opened to Buildroot developers and contributors,
  2307. or Buildroot users having a prior experience with the tool. This
  2308. meeting will allow developers to work and Buildroot, and discuss
  2309. current issues, the future directions, and more.</p>
  2310. <p>For more details, see
  2311. the <a href="http://elinux.org/Buildroot#Buildroot_Developers_Meeting.2C_3-4_November_2012.2C_Barcelona_Spain">wiki
  2312. page</a> dedicated to the meeting.</p>
  2313. </div>
  2314. </div>
  2315. </li>
  2316. <li>
  2317. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2318. <div class="timeline-panel">
  2319. <div class="timeline-heading">
  2320. <h4 class="timeline-title">2012.05 released</h4>
  2321. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 May 2012</small></p>
  2322. </div>
  2323. <div class="timeline-body">
  2324. <p>The stable 2012.05 release is out - Thanks to everyone
  2325. contributing and testing the release candidates. See the
  2326. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.05">CHANGES</a>
  2327. file for more details, read the
  2328. <a href="http://lists.buildroot.org/pipermail/buildroot/2012-May/054342.html">announcement</a>
  2329. and go to the <a href="/downloads/">downloads page</a> to pick up the
  2330. <a href="/downloads/buildroot-2012.05.tar.bz2">2012.05 release</a>.</p>
  2331. </div>
  2332. </div>
  2333. </li>
  2334. <li class="timeline-inverted">
  2335. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2336. <div class="timeline-panel">
  2337. <div class="timeline-heading">
  2338. <h4 class="timeline-title">2012.05-rc3 released</h4>
  2339. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>25 May 2012</small></p>
  2340. </div>
  2341. <div class="timeline-body">
  2342. <p>RC3 is out with more bugfixes - See
  2343. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.05_rc3">CHANGES</a>
  2344. file for details.
  2345. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2346. <a href="/downloads/buildroot-2012.05-rc3.tar.bz2">2012.05-rc3
  2347. release candidate</a>, and report any problems found to
  2348. the <a href="support.html">mailing list</a>
  2349. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2350. </div>
  2351. </div>
  2352. </li>
  2353. <li>
  2354. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2355. <div class="timeline-panel">
  2356. <div class="timeline-heading">
  2357. <h4 class="timeline-title">2012.05-rc2 released</h4>
  2358. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>18 May 2012</small></p>
  2359. </div>
  2360. <div class="timeline-body">
  2361. <p>Another week, another release candidate with more cleanups
  2362. and build fixes. See
  2363. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.05_rc2">CHANGES</a>
  2364. file for details.</p>
  2365. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2366. <a href="/downloads/buildroot-2012.05-rc2.tar.bz2">2012.05-rc2
  2367. release candidate</a>, and report any problems found to
  2368. the <a href="support.html">mailing list</a>
  2369. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2370. </div>
  2371. </div>
  2372. </li>
  2373. <li class="timeline-inverted">
  2374. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2375. <div class="timeline-panel">
  2376. <div class="timeline-heading">
  2377. <h4 class="timeline-title">2012.05-rc1 released</h4>
  2378. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>10 May 2012</small></p>
  2379. </div>
  2380. <div class="timeline-body">
  2381. <p>We have a new release candidate! Lots of changes all over
  2382. the tree, see
  2383. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.05_rc1">CHANGES</a>
  2384. file for details, and read the
  2385. <a href="http://lists.buildroot.org/pipermail/buildroot/2012-May/053736.html">announcement</a>.</p>
  2386. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2387. <a href="/downloads/buildroot-2012.05-rc1.tar.bz2">2012.05-rc1
  2388. release candidate</a>, and report any problems found to
  2389. the <a href="support.html">mailing list</a>
  2390. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2391. </div>
  2392. </div>
  2393. </li>
  2394. <li>
  2395. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2396. <div class="timeline-panel">
  2397. <div class="timeline-heading">
  2398. <h4 class="timeline-title">Autobuilder Results Online</h4>
  2399. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>20 April 2012</small></p>
  2400. </div>
  2401. <div class="timeline-body">
  2402. <p>The status of the autobuilders, which do repeated
  2403. <code>randpackageconfig</code> builds for continuous
  2404. integration testing, is now online
  2405. at <a href='http://autobuild.buildroot.org'>autobuild.buildroot.org</a>. The
  2406. code behind it can be found
  2407. in <a href='http://git.buildroot.net/buildroot-test/'>git</a>.</p>
  2408. <p>Thanks to Thomas Petazzoni for running the web interface, and
  2409. to <a href='http://gcc.gnu.org/wiki/CompileFarm'>The GCC Compile
  2410. Farm</a> and <a href='http://free-electrons.com/'>Free
  2411. Electrons</a> for hosting builders. Thomas also sends out a daily
  2412. summary of the build status to the mailing list.</p>
  2413. </div>
  2414. </div>
  2415. </li>
  2416. <li class="timeline-inverted">
  2417. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2418. <div class="timeline-panel">
  2419. <div class="timeline-heading">
  2420. <h4 class="timeline-title">2012.02 released</h4>
  2421. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>29 February 2012</small></p>
  2422. </div>
  2423. <div class="timeline-body">
  2424. <p>The stable 2012.02 release is out - Thanks to everyone
  2425. contributing and testing the release candidates. See the
  2426. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.02">CHANGES</a>
  2427. file for more details, read the
  2428. <a href="http://lists.buildroot.org/pipermail/buildroot/2012-February/050752.html">announcement</a>
  2429. and go to the <a href="/downloads/">downloads page</a> to pick up the
  2430. <a href="/downloads/buildroot-2012.02.tar.bz2">2012.02 release</a>.</p>
  2431. </div>
  2432. </div>
  2433. </li>
  2434. <li>
  2435. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2436. <div class="timeline-panel">
  2437. <div class="timeline-heading">
  2438. <h4 class="timeline-title">2012.02-rc3 released</h4>
  2439. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>27 February 2012</small></p>
  2440. </div>
  2441. <div class="timeline-body">
  2442. <p>RC3 is out with more bugfixes - See
  2443. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.02_rc3">CHANGES</a>
  2444. file for details.
  2445. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2446. <a href="/downloads/buildroot-2012.02-rc3.tar.bz2">2012.02-rc3
  2447. release candidate</a>, and report any problems found to
  2448. the <a href="support.html">mailing list</a>
  2449. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2450. </div>
  2451. </div>
  2452. </li>
  2453. <li class="timeline-inverted">
  2454. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2455. <div class="timeline-panel">
  2456. <div class="timeline-heading">
  2457. <h4 class="timeline-title">2012.02-rc2 released</h4>
  2458. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>19 February 2012</small></p>
  2459. </div>
  2460. <div class="timeline-body">
  2461. <p>Another week, another release candidate with more cleanups
  2462. and build fixes. See
  2463. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.02_rc2">CHANGES</a>
  2464. file for details.</p>
  2465. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2466. <a href="/downloads/buildroot-2012.02-rc2.tar.bz2">2012.02-rc2
  2467. release candidate</a>, and report any problems found to
  2468. the <a href="support.html">mailing list</a>
  2469. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2470. </div>
  2471. </div>
  2472. </li>
  2473. <li>
  2474. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2475. <div class="timeline-panel">
  2476. <div class="timeline-heading">
  2477. <h4 class="timeline-title">2012.02-rc1 released</h4>
  2478. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>12 February 2012</small></p>
  2479. </div>
  2480. <div class="timeline-body">
  2481. <p>We have a new release candidate! Lots of changes all over
  2482. the tree, see
  2483. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2012.02_rc1">CHANGES</a>
  2484. file for details, and read the
  2485. <a href="http://lists.buildroot.org/pipermail/buildroot/2012-February/050234.html">announcement</a>.</p>
  2486. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2487. <a href="/downloads/buildroot-2012.02-rc1.tar.bz2">2012.02-rc1
  2488. release candidate</a>, and report any problems found to
  2489. the <a href="support.html">mailing list</a>
  2490. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2491. </div>
  2492. </div>
  2493. </li>
  2494. <li class="timeline-inverted">
  2495. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2496. <div class="timeline-panel">
  2497. <div class="timeline-heading">
  2498. <h4 class="timeline-title">Buildroot Developer Day</h4>
  2499. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>31 January 2012</small></p>
  2500. </div>
  2501. <div class="timeline-body">
  2502. <p>Another <i>Buildroot Developer Day</i> will take place on
  2503. Friday, February 3rd in Brussels, Belgium - The day
  2504. before <a href="http://fosdem.org">FOSDEM</a>. See the
  2505. <a href="http://lists.buildroot.org/pipermail/buildroot/2012-January/049340.html">announcement</a>
  2506. or
  2507. the <a href="http://free-electrons.com/blog/bdd-2012-brussels/">Free
  2508. Electrons blog</a> for more info.</p>
  2509. </div>
  2510. </div>
  2511. </li>
  2512. <li>
  2513. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2514. <div class="timeline-panel">
  2515. <div class="timeline-heading">
  2516. <h4 class="timeline-title">2011.11 released</h4>
  2517. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 November 2011</small></p>
  2518. </div>
  2519. <div class="timeline-body">
  2520. <p>The stable 2011.11 release is out - Thanks to everyone
  2521. contributing and testing the release candidates. See the
  2522. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.11">CHANGES</a>
  2523. file for more details, read the
  2524. <a href="http://lists.buildroot.org/pipermail/buildroot/2011-November/047926.html">announcement</a>
  2525. and go to the <a href="/downloads/">downloads page</a> to pick up the
  2526. <a href="/downloads/buildroot-2011.11.tar.bz2">2011.11 release</a>.</p>
  2527. </div>
  2528. </div>
  2529. </li>
  2530. <li class="timeline-inverted">
  2531. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2532. <div class="timeline-panel">
  2533. <div class="timeline-heading">
  2534. <h4 class="timeline-title">2011.11-rc3 released</h4>
  2535. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>26 November 2011</small></p>
  2536. </div>
  2537. <div class="timeline-body">
  2538. <p>RC3 is out with more bugfixes - See
  2539. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.11_rc3">CHANGES</a>
  2540. file for details.
  2541. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2542. <a href="/downloads/buildroot-2011.11-rc3.tar.bz2">2011.11-rc3
  2543. release candidate</a>, and report any problems found to
  2544. the <a href="support.html">mailing list</a>
  2545. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2546. </div>
  2547. </div>
  2548. </li>
  2549. <li>
  2550. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2551. <div class="timeline-panel">
  2552. <div class="timeline-heading">
  2553. <h4 class="timeline-title">2011.11-rc2 released</h4>
  2554. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>18 November 2011</small></p>
  2555. </div>
  2556. <div class="timeline-body">
  2557. <p>Another week, another release candidate with a bunch of
  2558. cleanups and build fixes. See
  2559. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.11_rc2">CHANGES</a>
  2560. file for details.</p>
  2561. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2562. <a href="/downloads/buildroot-2011.11-rc2.tar.bz2">2011.11-rc2
  2563. release candidate</a>, and report any problems found to
  2564. the <a href="support.html">mailing list</a>
  2565. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2566. </div>
  2567. </div>
  2568. </li>
  2569. <li class="timeline-inverted">
  2570. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2571. <div class="timeline-panel">
  2572. <div class="timeline-heading">
  2573. <h4 class="timeline-title">2011.11-rc1 released</h4>
  2574. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>11 November 2011</small></p>
  2575. </div>
  2576. <div class="timeline-body">
  2577. <p>We have a new release candidate! Lots of changes all over
  2578. the tree, see
  2579. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.11_rc1">CHANGES</a>
  2580. file for details, and read the
  2581. <a href="http://lists.buildroot.org/pipermail/buildroot/2011-November/047395.html">announcement</a>
  2582. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2583. <a href="/downloads/buildroot-2011.11-rc1.tar.bz2">2011.11-rc1
  2584. release candidate</a>, and report any problems found to
  2585. the <a href="support.html">mailing list</a>
  2586. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2587. </div>
  2588. </div>
  2589. </li>
  2590. <li>
  2591. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2592. <div class="timeline-panel">
  2593. <div class="timeline-heading">
  2594. <h4 class="timeline-title">2011.08 released</h4>
  2595. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>31 August 2011</small></p>
  2596. </div>
  2597. <div class="timeline-body">
  2598. <p>The stable 2011.08 release is out - Thanks to everyone
  2599. contributing and testing the release candidates. See the
  2600. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.08">CHANGES</a>
  2601. file for more details, and go to the <a href="/downloads/">downloads page</a> to pick up the
  2602. <a href="/downloads/buildroot-2011.08.tar.bz2">2011.08 release</a>.</p>
  2603. </div>
  2604. </div>
  2605. </li>
  2606. <li class="timeline-inverted">
  2607. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2608. <div class="timeline-panel">
  2609. <div class="timeline-heading">
  2610. <h4 class="timeline-title">2011.08-rc2 released</h4>
  2611. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>29 August 2011</small></p>
  2612. </div>
  2613. <div class="timeline-body">
  2614. <p>RC2 is out with more bugfixes. See
  2615. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.08_rc2">CHANGES</a>
  2616. file for details, and read the
  2617. <a href="http://lists.buildroot.org/pipermail/buildroot/2011-August/045211.html">announcement</a>.
  2618. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2619. <a href="/downloads/buildroot-2011.08-rc2.tar.bz2">2011.08-rc2
  2620. release candidate</a>, and report any problems found to
  2621. the <a href="support.html">mailing list</a>
  2622. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2623. </div>
  2624. </div>
  2625. </li>
  2626. <li>
  2627. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2628. <div class="timeline-panel">
  2629. <div class="timeline-heading">
  2630. <h4 class="timeline-title">2011.08-rc1 released</h4>
  2631. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>4 August 2011</small></p>
  2632. </div>
  2633. <div class="timeline-body">
  2634. <p>We have a new release candidate! Lots of changes all over
  2635. the tree, see
  2636. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.08_rc1">CHANGES</a>
  2637. file for details, and read the
  2638. <a href="http://lists.buildroot.org/pipermail/buildroot/2011-August/044855.html">announcement</a>.
  2639. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2640. <a href="/downloads/buildroot-2011.08-rc1.tar.bz2">2011.08-rc1
  2641. release candidate</a>, and report any problems found to
  2642. the <a href="support.html">mailing list</a>
  2643. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2644. </div>
  2645. </div>
  2646. </li>
  2647. <li class="timeline-inverted">
  2648. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2649. <div class="timeline-panel">
  2650. <div class="timeline-heading">
  2651. <h4 class="timeline-title">2011.05 released</h4>
  2652. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>27 May 2011</small></p>
  2653. </div>
  2654. <div class="timeline-body">
  2655. <p>The stable 2011.05 release is out - Thanks to everyone
  2656. contributing and testing the release candidates. See the
  2657. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.05">CHANGES</a>
  2658. file for more details, and go to the <a href="/downloads/">downloads page</a> to pick up the
  2659. <a href="/downloads/buildroot-2011.05.tar.bz2">2011.05 release</a>.</p>
  2660. </div>
  2661. </div>
  2662. </li>
  2663. <li>
  2664. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2665. <div class="timeline-panel">
  2666. <div class="timeline-heading">
  2667. <h4 class="timeline-title">2011.05-rc2 released</h4>
  2668. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>24 May 2011</small></p>
  2669. </div>
  2670. <div class="timeline-body">
  2671. <p>RC2 is out with more bugfixes. See
  2672. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.05_rc2">CHANGES</a>
  2673. file for details.
  2674. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2675. <a href="/downloads/buildroot-2011.05-rc2.tar.bz2">2011.05-rc2
  2676. release candidate</a>, and report any problems found to
  2677. the <a href="support.html">mailing list</a>
  2678. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2679. </div>
  2680. </div>
  2681. </li>
  2682. <li class="timeline-inverted">
  2683. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2684. <div class="timeline-panel">
  2685. <div class="timeline-heading">
  2686. <h4 class="timeline-title">2011.05-rc1 released</h4>
  2687. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>18 May 2011</small></p>
  2688. </div>
  2689. <div class="timeline-body">
  2690. <p>We have a new release candidate! Lots of changes all over
  2691. the tree, see
  2692. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.05_rc1">CHANGES</a>
  2693. file for details, and read the
  2694. <a href="http://lists.buildroot.org/pipermail/buildroot/2011-May/043317.html">announcement</a>.
  2695. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2696. <a href="/downloads/buildroot-2011.05-rc1.tar.bz2">2011.05-rc1
  2697. release candidate</a>, and report any problems found to
  2698. the <a href="support.html">mailing list</a>
  2699. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2700. </div>
  2701. </div>
  2702. </li>
  2703. <li>
  2704. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2705. <div class="timeline-panel">
  2706. <div class="timeline-heading">
  2707. <h4 class="timeline-title">2011.02 released</h4>
  2708. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>28 February 2011</small></p>
  2709. </div>
  2710. <div class="timeline-body">
  2711. <p>The stable 2011.02 release is out - Thanks to everyone
  2712. contributing and testing the release candidates. See the
  2713. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.02">CHANGES</a>
  2714. file for more details, read the
  2715. <a href="http://lists.buildroot.org/pipermail/buildroot/2011-February/041662.html">announcement</a>
  2716. and go to the <a href="/downloads/">downloads page</a> to pick up the
  2717. <a href="/downloads/buildroot-2011.02.tar.bz2">2011.02 release</a>.</p>
  2718. </div>
  2719. </div>
  2720. </li>
  2721. <li class="timeline-inverted">
  2722. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2723. <div class="timeline-panel">
  2724. <div class="timeline-heading">
  2725. <h4 class="timeline-title">2011.02-rc2 released</h4>
  2726. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>24 February 2011</small></p>
  2727. </div>
  2728. <div class="timeline-body">
  2729. <p>RC2 is out with more cleanups and bugfixes, see
  2730. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.02_rc2">CHANGES</a>
  2731. file for details.</p>
  2732. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2733. <a href="/downloads/buildroot-2011.02-rc2.tar.bz2">2011.02-rc2
  2734. release candidate</a>, and report any problems found to
  2735. the <a href="support.html">mailing list</a>
  2736. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2737. </div>
  2738. </div>
  2739. </li>
  2740. <li>
  2741. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2742. <div class="timeline-panel">
  2743. <div class="timeline-heading">
  2744. <h4 class="timeline-title">2011.02-rc1 released</h4>
  2745. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>14 February 2011</small></p>
  2746. </div>
  2747. <div class="timeline-body">
  2748. <p>We have a new release candidate! Lots of changes all over
  2749. the tree, see
  2750. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2011.02_rc1">CHANGES</a>
  2751. file for details, and read the
  2752. <a href="http://lists.buildroot.org/pipermail/buildroot/2011-February/041365.html">announcement</a>.
  2753. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2754. <a href="/downloads/buildroot-2011.02-rc1.tar.bz2">2011.02-rc1
  2755. release candidate</a>, and report any problems found to
  2756. the <a href="support.html">mailing list</a>
  2757. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2758. </div>
  2759. </div>
  2760. </li>
  2761. <li class="timeline-inverted">
  2762. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2763. <div class="timeline-panel">
  2764. <div class="timeline-heading">
  2765. <h4 class="timeline-title">2010.11 released</h4>
  2766. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 November 2010</small></p>
  2767. </div>
  2768. <div class="timeline-body">
  2769. <p>The stable 2010.11 release is out - Thanks to everyone
  2770. contributing and testing the release candidates. See the
  2771. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.11">CHANGES</a>
  2772. file for more details, read the
  2773. <a href="http://lists.buildroot.org/pipermail/buildroot/2010-November/039135.html">announcement</a>
  2774. and go to the <a href="/downloads/">downloads page</a> to pick up the
  2775. <a href="/downloads/buildroot-2010.11.tar.bz2">2010.11 release</a>.</p>
  2776. </div>
  2777. </div>
  2778. </li>
  2779. <li>
  2780. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2781. <div class="timeline-panel">
  2782. <div class="timeline-heading">
  2783. <h4 class="timeline-title">2010.11-rc2 released</h4>
  2784. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>25 November 2010</small></p>
  2785. </div>
  2786. <div class="timeline-body">
  2787. <p>RC2 is out with more cleanups and bugfixes, see
  2788. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.11_rc2">CHANGES</a>
  2789. file for details.</p>
  2790. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2791. <a href="/downloads/buildroot-2010.11-rc2.tar.bz2">2010.11-rc2
  2792. release candidate</a>, and report any problems found to
  2793. the <a href="support.html">mailing list</a>
  2794. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2795. </div>
  2796. </div>
  2797. </li>
  2798. <li class="timeline-inverted">
  2799. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2800. <div class="timeline-panel">
  2801. <div class="timeline-heading">
  2802. <h4 class="timeline-title">2010.11-rc1 released</h4>
  2803. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>8 November 2010</small></p>
  2804. </div>
  2805. <div class="timeline-body">
  2806. <p>We have a new release candidate! Lots of changes all over
  2807. the tree, see
  2808. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.11_rc1">CHANGES</a>
  2809. file for details, and read the
  2810. <a href="http://lists.buildroot.org/pipermail/buildroot/2010-November/038645.html">announcement</a>.
  2811. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2812. <a href="/downloads/buildroot-2010.11-rc1.tar.bz2">2010.11-rc1
  2813. release candidate</a>, and report any problems found to
  2814. the <a href="support.html">mailing list</a>
  2815. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2816. </div>
  2817. </div>
  2818. </li>
  2819. <li>
  2820. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2821. <div class="timeline-panel">
  2822. <div class="timeline-heading">
  2823. <h4 class="timeline-title">Buildroot Developer Day</h4>
  2824. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>28 September 2010</small></p>
  2825. </div>
  2826. <div class="timeline-body">
  2827. <p>A <i>Buildroot Developer Day</i> will take place on
  2828. Friday, October 29th in Cambridge, UK - Just the day after the
  2829. <a href="http://www.embeddedlinuxconference.com/elc_europe10/">Embedded
  2830. Linux Conference Europe</a>. This <i>Developer Day</i>
  2831. aims at allowing Buildroot developers to meet and exchange
  2832. ideas on the project and its future. See the
  2833. <a href="http://lists.buildroot.org/pipermail/buildroot/2010-September/037930.html">announcement</a>
  2834. for more info.</p>
  2835. <p>Thanks to Thomas Petazzoni for taking care of the practical
  2836. arrangements.</p>
  2837. </div>
  2838. </div>
  2839. </li>
  2840. <li class="timeline-inverted">
  2841. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2842. <div class="timeline-panel">
  2843. <div class="timeline-heading">
  2844. <h4 class="timeline-title">2010.08 released</h4>
  2845. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>31 August 2010</small></p>
  2846. </div>
  2847. <div class="timeline-body">
  2848. <p>The stable 2010.08 release is out - Thanks to everyone
  2849. contributing and testing the release candidates. See the
  2850. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.08">CHANGES</a>
  2851. file for more details, read the
  2852. <a href="http://lists.buildroot.org/pipermail/buildroot/2010-August/037078.html">announcement</a>
  2853. and go to the <a href="/downloads/">downloads page</a> to pick up the
  2854. <a href="/downloads/buildroot-2010.08.tar.bz2">2010.08 release</a>.</p>
  2855. </div>
  2856. </div>
  2857. </li>
  2858. <li>
  2859. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2860. <div class="timeline-panel">
  2861. <div class="timeline-heading">
  2862. <h4 class="timeline-title">2010.08-rc2 released</h4>
  2863. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 August 2010</small></p>
  2864. </div>
  2865. <div class="timeline-body">
  2866. <p>RC2 is out with more cleanups and bugfixes, see
  2867. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.08_rc2">CHANGES</a>
  2868. file for details.
  2869. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2870. <a href="/downloads/buildroot-2010.08-rc2.tar.bz2">2010.08-rc2
  2871. release candidate</a>, and report any problems found to
  2872. the <a href="support.html">mailing list</a>
  2873. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2874. This is very much expected to be the final release candidate,
  2875. so give it a good test and expect a final 2010.08 release
  2876. before September unless critical issues are found.</p>
  2877. </div>
  2878. </div>
  2879. </li>
  2880. <li class="timeline-inverted">
  2881. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2882. <div class="timeline-panel">
  2883. <div class="timeline-heading">
  2884. <h4 class="timeline-title">2010.08-rc1 released</h4>
  2885. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 July 2010</small></p>
  2886. </div>
  2887. <div class="timeline-body">
  2888. <p>We have a new release candidate! Lots of changes all over
  2889. the tree, see
  2890. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.08_rc1">CHANGES</a>
  2891. file for details.
  2892. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2893. <a href="/downloads/buildroot-2010.08-rc1.tar.bz2">2010.08-rc1
  2894. release candidate</a>, and report any problems found to
  2895. the <a href="support.html">mailing list</a>
  2896. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2897. </div>
  2898. </div>
  2899. </li>
  2900. <li>
  2901. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2902. <div class="timeline-panel">
  2903. <div class="timeline-heading">
  2904. <h4 class="timeline-title">2010.05 released</h4>
  2905. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>30 May 2010</small></p>
  2906. </div>
  2907. <div class="timeline-body">
  2908. <p>The stable 2010.05 release is out - Thanks to everyone
  2909. contributing and testing the release candidates. See the
  2910. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.05">CHANGES</a>
  2911. file for more details, read the
  2912. <a href="http://lists.buildroot.org/pipermail/buildroot/2010-May/034878.html">announcement</a>
  2913. and go to the <a href="/downloads/">downloads page</a> to pick up the
  2914. <a href="/downloads/buildroot-2010.05.tar.bz2">2010.05 release</a>.</p>
  2915. </div>
  2916. </div>
  2917. </li>
  2918. <li class="timeline-inverted">
  2919. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2920. <div class="timeline-panel">
  2921. <div class="timeline-heading">
  2922. <h4 class="timeline-title">2010.05-rc3 released</h4>
  2923. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>27 May 2010</small></p>
  2924. </div>
  2925. <div class="timeline-body">
  2926. <p>RC3 is out with more cleanups and bugfixes, see
  2927. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.05_rc3">CHANGES</a>
  2928. file for details.
  2929. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2930. <a href="/downloads/buildroot-2010.05-rc3.tar.bz2">2010.05-rc3
  2931. release candidate</a>, and report any problems found to
  2932. the <a href="support.html">mailing list</a>
  2933. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2934. </div>
  2935. </div>
  2936. </li>
  2937. <li>
  2938. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2939. <div class="timeline-panel">
  2940. <div class="timeline-heading">
  2941. <h4 class="timeline-title">2010.05-rc2 released</h4>
  2942. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>11 May 2010</small></p>
  2943. </div>
  2944. <div class="timeline-body">
  2945. <p>Another week, another release candidate with a bunch of
  2946. cleanups and build fixes.</p>
  2947. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2948. <a href="/downloads/buildroot-2010.05-rc2.tar.bz2">2010.05-rc2
  2949. release candidate</a>, and report any problems found to
  2950. the <a href="support.html">mailing list</a>
  2951. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2952. </div>
  2953. </div>
  2954. </li>
  2955. <li class="timeline-inverted">
  2956. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2957. <div class="timeline-panel">
  2958. <div class="timeline-heading">
  2959. <h4 class="timeline-title">2010.05-rc1 released</h4>
  2960. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>3 May 2010</small></p>
  2961. </div>
  2962. <div class="timeline-body">
  2963. <p>We have a new release candidate! Lots of changes all over
  2964. the tree, see
  2965. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.05_rc1">CHANGES</a>
  2966. file for details.
  2967. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  2968. <a href="/downloads/buildroot-2010.05-rc1.tar.bz2">2010.05-rc1
  2969. release candidate</a>, and report any problems found to
  2970. the <a href="support.html">mailing list</a>
  2971. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  2972. </div>
  2973. </div>
  2974. </li>
  2975. <li>
  2976. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2977. <div class="timeline-panel">
  2978. <div class="timeline-heading">
  2979. <h4 class="timeline-title">FOSDEM slides online</h4>
  2980. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>2 May 2010</small></p>
  2981. </div>
  2982. <div class="timeline-body">
  2983. <p>The slides from
  2984. the <a href="http://fosdem.org/2010/schedule/events/emb_cross_build">Cross
  2985. Build Systems: Present & Future</a> session
  2986. at <a href="http://fosdem.org/2010">FOSDEM</a> are
  2987. now <a href="http://send-patches.org/news/20100211-1-FOSDEM-Crossdev-Workshop.pdf">online</a>.
  2988. </div>
  2989. </div>
  2990. </li>
  2991. <li class="timeline-inverted">
  2992. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  2993. <div class="timeline-panel">
  2994. <div class="timeline-heading">
  2995. <h4 class="timeline-title">2010.02 released</h4>
  2996. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>26 February 2010</small></p>
  2997. </div>
  2998. <div class="timeline-body">
  2999. <p>The stable 2010.02 release is out - Thanks to everyone
  3000. contributing and testing the release candidates. See the
  3001. <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.02">CHANGES</a>
  3002. file for more details, and go to
  3003. the <a href="/downloads/">downloads page</a> to pick up
  3004. the <a href="/downloads/buildroot-2010.02.tar.bz2">2010.02
  3005. release</a>.</p>
  3006. </div>
  3007. </div>
  3008. </li>
  3009. <li>
  3010. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3011. <div class="timeline-panel">
  3012. <div class="timeline-heading">
  3013. <h4 class="timeline-title">2010.02-rc2 released</h4>
  3014. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>23 February 2010</small></p>
  3015. </div>
  3016. <div class="timeline-body">
  3017. <p>RC2 is out with more cleanups and bugfixes, see
  3018. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.02_rc2">CHANGES</a>
  3019. file for details.
  3020. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  3021. <a href="/downloads/buildroot-2010.02-rc2.tar.bz2">2010.02-rc2
  3022. release candidate</a>, and report any problems found to
  3023. the <a href="support.html">mailing list</a>
  3024. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  3025. </div>
  3026. </div>
  3027. </li>
  3028. <li class="timeline-inverted">
  3029. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3030. <div class="timeline-panel">
  3031. <div class="timeline-heading">
  3032. <h4 class="timeline-title">2010.02-rc1 released</h4>
  3033. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>9 February 2010</small></p>
  3034. </div>
  3035. <div class="timeline-body">
  3036. <p>We have a new release candidate! Lots of changes all over
  3037. the tree, see
  3038. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2010.02_rc1">CHANGES</a>
  3039. file for details.
  3040. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  3041. <a href="/downloads/buildroot-2010.02-rc1.tar.bz2">2010.02-rc1
  3042. release candidate</a>, and report any problems found to
  3043. the <a href="support.html">mailing list</a>
  3044. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  3045. </div>
  3046. </div>
  3047. </li>
  3048. <li>
  3049. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3050. <div class="timeline-panel">
  3051. <div class="timeline-heading">
  3052. <h4 class="timeline-title">2009.11 released</h4>
  3053. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>1 December 2009</small></p>
  3054. </div>
  3055. <div class="timeline-body">
  3056. <p>The stable 2009.11 release is out - Thanks to everyone
  3057. contributing and testing the release candidates. See the
  3058. <a href="http://lists.buildroot.org/pipermail/buildroot/2009-December/030672.html">announcement</a>
  3059. or <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.11">CHANGES</a>
  3060. for more details, and go to the <a href="/downloads/">downloads page</a>
  3061. to pick up the <a href="/downloads/buildroot-2009.11.tar.bz2">2009.11
  3062. release</a>.</p>
  3063. </div>
  3064. </div>
  3065. </li>
  3066. <li class="timeline-inverted">
  3067. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3068. <div class="timeline-panel">
  3069. <div class="timeline-heading">
  3070. <h4 class="timeline-title">2009.11-rc2 released</h4>
  3071. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>29 November 2009</small></p>
  3072. </div>
  3073. <div class="timeline-body">
  3074. <p>RC2 is out with more cleanups and bugfixes, see
  3075. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.11_rc2">CHANGES</a>
  3076. file for details.
  3077. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  3078. <a href="/downloads/buildroot-2009.11-rc2.tar.bz2">2009.11-rc2
  3079. release candidate</a>, and report any problems found to
  3080. the <a href="support.html">mailing list</a>
  3081. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  3082. </div>
  3083. </div>
  3084. </li>
  3085. <li>
  3086. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3087. <div class="timeline-panel">
  3088. <div class="timeline-heading">
  3089. <h4 class="timeline-title">2009.11-rc1 released</h4>
  3090. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>23 November 2009</small></p>
  3091. </div>
  3092. <div class="timeline-body">
  3093. <p>We have a new release candidate! Lots of changes all over
  3094. the tree, see
  3095. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.11_rc1">CHANGES</a>
  3096. file for details.
  3097. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  3098. <a href="/downloads/buildroot-2009.11-rc1.tar.bz2">2009.11-rc1
  3099. release candidate</a>, and report any problems found to
  3100. the <a href="support.html">mailing list</a>
  3101. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  3102. </div>
  3103. </div>
  3104. </li>
  3105. <li class="timeline-inverted">
  3106. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3107. <div class="timeline-panel">
  3108. <div class="timeline-heading">
  3109. <h4 class="timeline-title">First Buildroot Developer Day</h4>
  3110. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>7 September 2009</small></p>
  3111. </div>
  3112. <div class="timeline-body">
  3113. <p>The first <i>Buildroot Developer Day</i> will take place on
  3114. Saturday, October 17th in Grenoble, France, just the day after
  3115. Embedded Linux Conference Europe. This <i>Developer Day</i> aims
  3116. at allowing Buildroot developers to meet and exchange ideas on the
  3117. project and its future.</p>
  3118. <p>As the number of places is limited, interested candidates are
  3119. invited to send an e-mail to Peter Korsgaard (<code>jacmet at
  3120. uclibc dot org</code>) and Thomas Petazzoni (<code>thomas dot
  3121. petazzoni at free-electrons dot com</code>).</p>
  3122. <p>This <i>Developer Day</i> will take place thanks to the
  3123. sponsoring of <a href="http://www.calao-systems.com">Calao
  3124. Systems</a> and <a href="http://www.free-electrons.com">Free
  3125. Electrons</a>.</p>
  3126. </div>
  3127. </div>
  3128. </li>
  3129. <li>
  3130. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3131. <div class="timeline-panel">
  3132. <div class="timeline-heading">
  3133. <h4 class="timeline-title">2009.08 released</h4>
  3134. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>31 August 2009</small></p>
  3135. </div>
  3136. <div class="timeline-body">
  3137. <p>The stable 2009.08 release is out - Thanks to everyone
  3138. contributing and testing the release candidates. See the
  3139. <a href="http://lists.buildroot.org/pipermail/buildroot/2009-August/029018.html">announcement</a>
  3140. or <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.08">CHANGES</a>
  3141. for more details, and go to the <a href="/downloads/">downloads page</a>
  3142. to pick up the <a href="/downloads/buildroot-2009.08.tar.bz2">2009.08
  3143. release</a>.</p>
  3144. </div>
  3145. </div>
  3146. </li>
  3147. <li class="timeline-inverted">
  3148. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3149. <div class="timeline-panel">
  3150. <div class="timeline-heading">
  3151. <h4 class="timeline-title">2009.08-rc3 released</h4>
  3152. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>26 August 2009</small></p>
  3153. </div>
  3154. <div class="timeline-body">
  3155. <p>A number of bugfixes have been added to the tree since RC2
  3156. (especially thanks to Thomas Petazzoni) - See
  3157. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.08_rc3">CHANGES</a>
  3158. file for details. This is very much expected to be the final
  3159. release candidate, so give it a good test and expect a final
  3160. 2009.08 release next weekend unless critical issues are
  3161. found.</p>
  3162. <p>Head to the <a href="/downloads/">downloads page</a> to
  3163. pick up the
  3164. <a href="/downloads/buildroot-2009.08-rc3.tar.bz2">2009.08-rc3
  3165. release candidate</a>, and report any problems found to
  3166. the <a href="support.html">mailing list</a>
  3167. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  3168. </div>
  3169. </div>
  3170. </li>
  3171. <li>
  3172. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3173. <div class="timeline-panel">
  3174. <div class="timeline-heading">
  3175. <h4 class="timeline-title">2009.08-rc2 released</h4>
  3176. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>6 August 2009</small></p>
  3177. </div>
  3178. <div class="timeline-body">
  3179. <p>RC2 is out with more cleanups and bugfixes, see
  3180. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.08_rc2">CHANGES</a>
  3181. file for details.
  3182. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  3183. <a href="/downloads/buildroot-2009.08-rc2.tar.bz2">2009.08-rc2
  3184. release candidate</a>, and report any problems found to
  3185. the <a href="support.html">mailing list</a>
  3186. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  3187. </div>
  3188. </div>
  3189. </li>
  3190. <li class="timeline-inverted">
  3191. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3192. <div class="timeline-panel">
  3193. <div class="timeline-heading">
  3194. <h4 class="timeline-title">2009.08-rc1 released</h4>
  3195. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>2 August 2009</small></p>
  3196. </div>
  3197. <div class="timeline-body">
  3198. <p>We have a new release candidate! Lots of changes all over
  3199. the tree, see
  3200. the <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.08_rc1">CHANGES</a>
  3201. file for details.
  3202. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  3203. <a href="/downloads/buildroot-2009.08-rc1.tar.bz2">2009.08-rc1
  3204. release candidate</a>, and report any problems found to
  3205. the <a href="support.html">mailing list</a>
  3206. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  3207. </div>
  3208. </div>
  3209. </li>
  3210. <li>
  3211. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3212. <div class="timeline-panel">
  3213. <div class="timeline-heading">
  3214. <h4 class="timeline-title">2009.05 released</h4>
  3215. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>1 June 2009</small></p>
  3216. </div>
  3217. <div class="timeline-body">
  3218. <p>The stable 2009.05 release is out - Thanks to everyone
  3219. contributing and testing the release candidates. See the
  3220. <a href="http://lists.buildroot.org/pipermail/buildroot/2009-June/027640.html">announcement</a>
  3221. or <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.05">CHANGES</a>
  3222. for more details, and go to the <a href="/downloads/">downloads page</a>
  3223. to pick up the <a href="/downloads/buildroot-2009.05.tar.bz2">2009.05
  3224. release</a>.</p>
  3225. </div>
  3226. </div>
  3227. </li>
  3228. <li class="timeline-inverted">
  3229. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3230. <div class="timeline-panel">
  3231. <div class="timeline-heading">
  3232. <h4 class="timeline-title">2009.05-rc3 released</h4>
  3233. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>27 May 2009</small></p>
  3234. </div>
  3235. <div class="timeline-body">
  3236. <p>We had a number of fixes post-RC2, so RC3 is out
  3237. (see <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.05_rc3">CHANGES</a>
  3238. for details). Now is the moment to test and verify that
  3239. everything is working for your favorite config - Expect a
  3240. final 2009.05 very soon.</p>
  3241. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  3242. <a href="/downloads/buildroot-2009.05-rc3.tar.bz2">2009.05-rc3
  3243. release candidate</a>, and report any problems found to
  3244. the <a href="support.html">mailing list</a>
  3245. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  3246. </div>
  3247. </div>
  3248. </li>
  3249. <li>
  3250. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3251. <div class="timeline-panel">
  3252. <div class="timeline-heading">
  3253. <h4 class="timeline-title">2009.05-rc2 released</h4>
  3254. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>19 May 2009</small></p>
  3255. </div>
  3256. <div class="timeline-body">
  3257. <p>RC2 is out with more cleanups and bug fixes
  3258. (see <a href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.05_rc2">CHANGES</a>).
  3259. Unless big issues are found, expect this to be the last
  3260. release candidate before the release - So give it a good
  3261. test.</p>
  3262. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  3263. <a href="/downloads/buildroot-2009.05-rc2.tar.bz2">2009.05-rc2
  3264. release candidate</a>, and report any problems found to
  3265. the <a href="support.html">mailing list</a>
  3266. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  3267. </div>
  3268. </div>
  3269. </li>
  3270. <li class="timeline-inverted">
  3271. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3272. <div class="timeline-panel">
  3273. <div class="timeline-heading">
  3274. <h4 class="timeline-title">Buildroot.org</h4>
  3275. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>14 May 2009</small></p>
  3276. </div>
  3277. <div class="timeline-body">
  3278. <p>Earl Levine has been so kind to donate
  3279. the <b>buildroot.org</b> domain to us, so the website can
  3280. now also be reached
  3281. at <a href="http://www.buildroot.org">www.buildroot.org</a>
  3282. (and git at
  3283. <a href="http://git.buildroot.org/buildroot">git.buildroot.org</a>).
  3284. Thanks a lot Earl!</p>
  3285. </div>
  3286. </div>
  3287. </li>
  3288. <li>
  3289. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3290. <div class="timeline-panel">
  3291. <div class="timeline-heading">
  3292. <h4 class="timeline-title">2009.05-rc1 released</h4>
  3293. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>5 May 2009</small></p>
  3294. </div>
  3295. <div class="timeline-body">
  3296. <p>We have a new release candidate! Lots of changes all over the
  3297. tree, see the <a
  3298. href="http://git.buildroot.net/buildroot/plain/CHANGES?id=2009.05_rc1">CHANGES</a>
  3299. file for details.
  3300. <p>Head to the <a href="/downloads/">downloads page</a> to pick up the
  3301. <a href="/downloads/buildroot-2009.05-rc1.tar.bz2">2009.05-rc1
  3302. release candidate</a>, and report any problems found to
  3303. the <a href="support.html">mailing list</a>
  3304. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  3305. </div>
  3306. </div>
  3307. </li>
  3308. <li class="timeline-inverted">
  3309. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3310. <div class="timeline-panel">
  3311. <div class="timeline-heading">
  3312. <h4 class="timeline-title">Moved to git</h4>
  3313. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>3 May 2009</small></p>
  3314. </div>
  3315. <div class="timeline-body">
  3316. <p>We've moved the source code
  3317. from <a href="http://subversion.tigris.org">Subversion</a>
  3318. to <a href="http://git-scm.org">Git</a>. You can browse the
  3319. repo online
  3320. <a href="http://git.buildroot.net/buildroot">here</a>, and clone
  3321. the repo using:
  3322. <pre>git clone git://git.buildroot.net/buildroot</pre>
  3323. See the <a href="/git.html">Git Access</a> page for more details.
  3324. </p>
  3325. </div>
  3326. </div>
  3327. </li>
  3328. <li>
  3329. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3330. <div class="timeline-panel">
  3331. <div class="timeline-heading">
  3332. <h4 class="timeline-title"><new Logo/h4>
  3333. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>27 March 2009</small></p>
  3334. </div>
  3335. <div class="timeline-body">
  3336. <p>We have a <a href="images/logo.png">logo</a>! We have so
  3337. far been using the <a href="http://busybox.net">Busybox</a>
  3338. logo on the website, as the website was a copy of
  3339. the <a href="http://busybox.net">Busybox</a> one - But not
  3340. anymore, we now have a shiny new logo of our own.</p>
  3341. </div>
  3342. </div>
  3343. </li>
  3344. <li class="timeline-inverted">
  3345. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3346. <div class="timeline-panel">
  3347. <div class="timeline-heading">
  3348. <h4 class="timeline-title">2009.02 released</h4>
  3349. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>12 February 2009</small></p>
  3350. </div>
  3351. <div class="timeline-body">
  3352. <p>The stable 2009.02 release is out - Thanks to everyone
  3353. contributing and testing the release candidates. See the
  3354. <a href="http://lists.buildroot.org/pipermail/buildroot/2009-February/025974.html">announcement</a>
  3355. for more details, and go to the <a href="/downloads/">downloads page</a>
  3356. to pick up the <a href="/downloads/buildroot-2009.02.tar.bz2">2009.02
  3357. release</a>.</p>
  3358. </div>
  3359. </div>
  3360. </li>
  3361. <li>
  3362. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3363. <div class="timeline-panel">
  3364. <div class="timeline-heading">
  3365. <h4 class="timeline-title">2009.02-rc4 released</h4>
  3366. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>9 February 2009</small></p>
  3367. </div>
  3368. <div class="timeline-body">
  3369. <p>We had more than 50 changes since RC3, several of them
  3370. toolchain related, so decided to make a RC4 as well. This is
  3371. very much expected to be the final release candidate, so
  3372. give it a good test and expect a final 2009.02 release this
  3373. week unless critical issues are found.</p>
  3374. <p>Head to the <a href="/downloads/">downloads page</a> to
  3375. pick up the
  3376. <a href="/downloads/buildroot-2009.02-rc4.tar.bz2">2009.02-rc4
  3377. release candidate</a>, and report any problems found to
  3378. the <a href="support.html">mailing list</a>
  3379. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  3380. </div>
  3381. </div>
  3382. </li>
  3383. <li class="timeline-inverted">
  3384. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3385. <div class="timeline-panel">
  3386. <div class="timeline-heading">
  3387. <h4 class="timeline-title">2009.02-rc3 released</h4>
  3388. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>31 January 2009</small></p>
  3389. </div>
  3390. <div class="timeline-body">
  3391. <p>RC3 is out with more cleanups and bug fixes. Unless big
  3392. issues are found, expect this to be the last release
  3393. candidate before the release - So give it a good test.</p>
  3394. <p>Head to the <a href="/downloads/">downloads page</a> to
  3395. pick up the
  3396. <a href="/downloads/buildroot-2009.02-rc3.tar.bz2">2009.02-rc3
  3397. release candidate</a>, and report any problems found to
  3398. the <a href="support.html">mailing list</a>
  3399. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  3400. </div>
  3401. </div>
  3402. </li>
  3403. <li>
  3404. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3405. <div class="timeline-panel">
  3406. <div class="timeline-heading">
  3407. <h4 class="timeline-title">2009.02-rc2 released</h4>
  3408. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>23 January 2009</small></p>
  3409. </div>
  3410. <div class="timeline-body">
  3411. <p>Another week, another release candidate with a bunch of
  3412. cleanups and build fixes.</p>
  3413. <p>Head to the <a href="/downloads/">downloads page</a> to
  3414. pick up the
  3415. <a href="/downloads/buildroot-2009.02-rc2.tar.bz2">2009.02-rc2
  3416. release candidate</a>, and report any problems found to
  3417. the <a href="support.html">mailing list</a>
  3418. or <a href="https://bugs.uclibc.org">bug tracker</a>.</p>
  3419. </div>
  3420. </div>
  3421. </li>
  3422. <li class="timeline-inverted">
  3423. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3424. <div class="timeline-panel">
  3425. <div class="timeline-heading">
  3426. <h4 class="timeline-title">Release candidate and new maintainer</h4>
  3427. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>16 January 2009</small></p>
  3428. </div>
  3429. <div class="timeline-body">
  3430. <p>It has been a long time coming, but we finally have a new
  3431. release candidate! - And a new maintainer to match (Peter
  3432. Korsgaard).</p>
  3433. <p>Head to the <a href="/downloads/">downloads page</a> to
  3434. pick up the
  3435. <a href="/downloads/buildroot-2009.02-rc1.tar.bz2">2009.02-rc1
  3436. release candidate</a>, and report any problems found to
  3437. the <a href="support.html">mailing list</a>
  3438. or <a href="https://bugs.uclibc.org">bug tracker</a>. The
  3439. plan is to release 2009.02 in time
  3440. for <a href="http://www.fosdem.org/2009/">FOSDEM</a>.</p>
  3441. </div>
  3442. </div>
  3443. </li>
  3444. <li>
  3445. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3446. <div class="timeline-panel">
  3447. <div class="timeline-heading">
  3448. <h4 class="timeline-title">Buildroot mailing list</h4>
  3449. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>16 July 2006</small></p>
  3450. </div>
  3451. <div class="timeline-body">
  3452. <p>Buildroot now has its own <a href=support.html>mailing list</a>.</p>
  3453. </div>
  3454. </div>
  3455. </li>
  3456. <li class="timeline-inverted">
  3457. <div class="timeline-badge"><i class="glyphicon glyphicon-thumbs-up"></i></div>
  3458. <div class="timeline-panel">
  3459. <div class="timeline-heading">
  3460. <h4 class="timeline-title">Buildroot webpage added</h4>
  3461. <p><small class="text-muted"><i class="glyphicon glyphicon-time"></i>21 February 2005</small></p>
  3462. <p>Buildroot is a set of Makefiles and patches that makes it easy generate a
  3463. cross-compilation toolchain and root filesystem for your target Linux
  3464. system using the <a href= "http://www.uclibc.org/">uClibc C library</a>.
  3465. Buildroot is useful mainly for people working with small or embedded
  3466. systems. Embedded systems often use processors that are not the regular
  3467. x86 processors everyone is used to using on their PC. It can be PowerPC
  3468. processors, MIPS processors, ARM processors, etc. And to be extra safe,
  3469. you do not need to be root to build or run buildroot.</p>
  3470. <p>And as of today buildroot even has its own webpage, making it a first class
  3471. citizen of uclibc.org and busybox.net, and more importantly, make it easy
  3472. to find and point to buildroot.</p>
  3473. <p>If you find a bug in buildroot, or wish to submit a patch
  3474. to fix a problem or add a shiny new feature, please use
  3475. the <a href="https://bugs.uclibc.org/">Bug and Patch
  3476. Tracking System</a> to post the details, to make certain
  3477. your work is not lost</p>
  3478. </div>
  3479. </div>
  3480. </li>
  3481. </ul>
  3482. </div><!--/.col-sm-10 -->
  3483. </div><!--/.row -->
  3484. </div>
  3485. <!--#include file="footer.html" -->