news.html 141 KB

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