news.html 162 KB

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