news.html 213 KB

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