news.html 202 KB

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