news.html 192 KB

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