news.html 195 KB

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