news.html 128 KB

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