news.html 228 KB

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