news.html 125 KB

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