news.html 138 KB

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