news.html 155 KB

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