news.html 226 KB

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