CHANGES 270 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699
  1. 2018.05.3, Released October 6th, 2018
  2. Important / security related fixes.
  3. Add a number of patches to fix build errors for host utilities
  4. on modern distributions using glibc-2.28.
  5. mkusers: Ensure existing group members are preserved when a
  6. group is reprocessed.
  7. printvars: Fix issue with exceeding shell command line length
  8. limits for certain setups.
  9. Updated/fixed packages: acpid, android-tools, apache,
  10. arp-scan, bandwidthd, bind, bison, brltty, chipmunk, connman,
  11. cppcms, fio, gcc, ghostscript, gnupg, httping, igmpproxy,
  12. imagemagick, imlib2, ipsec-tools, lcm2, libcurl, libesmtp,
  13. libnfs, libssh, libxslt, links, mediastreamer, minicom,
  14. moarvm, nilfs-utils, ocrad, parted, php, postgresql, pv,
  15. python-django, qt, qt5quickcontrols, qt5webengine, screen,
  16. sdl2, shairport-sync, squashfs, strongswan, vboot-utils,
  17. webkitgtk, wireguard, x265, xen, xlib_libXfont, xlib_libXft,
  18. xlib_libxshmfence, zeromq
  19. 2018.05.2, Released August 28th, 2018
  20. Important / security related fixes.
  21. Defconfigs: Raspberrypi2: Bump rootfs size, T7680: Fix
  22. genimage.cfg issue, ARM Juno: Bump ATF to v1.3 to fix build
  23. issue.
  24. Updated/fixed packages: acl, attr, apache, bind,
  25. boot-wrapper-aarch64, brltty, bzip2, chrony, crda, cryptsetup,
  26. dahdi-tools, dmidecode, dropbear, eigen, ffmpeg, gawk, gcc,
  27. ghostscript, gnutls, imx-gpu-viv, ipsec-tools, libarchive,
  28. libfuse, libglib2, libopenssl, libselinux, libsoup, lighttpd,
  29. linuxptp, lttng-modules, lttng-tools, lua-flu, lvm2, m4,
  30. makedevs, mariadb, mbedtls, mesa3d-heders, mtd, ncurses,
  31. nodejs, openssh, php, python-django, rauc, ruby, samba4,
  32. stress-ng, ti-utils, uboot-tools, uclibc, vim, waylandpp,
  33. wireless_tools, wireless-regdb, wireshark, wpa_supplicant,
  34. xorriso, znc
  35. Issues resolved (http://bugs.uclibc.org):
  36. #10781: cryptsetup luksOpen container_file container causes..
  37. #10986: Installing package attr when already supplied by..
  38. #11191: xattr and check-package issue
  39. 2018.05.1, Released July 20th, 2018
  40. Important / security related fixes.
  41. U-Boot: Ensure host version of ncurses is picked up and not
  42. host-ncurses built by buildroot, as that otherwise causes
  43. widechar/non-widechar conflicts and corrupted menuconfig
  44. menus.
  45. Linux: Enable CONFIG_PERF_EVENTS when perf is enabled.
  46. Toolchain: ARC tools updated to arc-2018.03.
  47. pkg-stats: Fix python 3.x compatibility.
  48. dl-wrapper: Fix support for URIs containing '+', fix
  49. no-check-hash for inferred site method.
  50. Defconfigs: Raspberrypi3: Bump rootfs size, Minnowboard-max:
  51. Support ethernet on Turbot variant.
  52. Updated/fixed packages: audit, bind, btrfs-progs, cifs-utils,
  53. clamav, collectd, coreutils, docker-containerd, dos2unix,
  54. edid-decode, file, gcc, gdb, gnupg, gnupg2, heimdal, hidapi,
  55. imagemagick, libcurl, libgcrypt, libglib2, liblogging,
  56. libostree, libressl, libsoup, libv4l, libvncserver, libvorbis,
  57. libwebsockets, libxslt, lm-sensors, mariadb, mpg123, ncurses,
  58. network-manager, nodejs, patchelf, perl, php-amqp, pinentry,
  59. pixiewps, qpdf, qt53d, qt5base, qt5charts, qt5script, redis,
  60. systemd, triggerhappy, uboot, wireguard, wireless-regdb,
  61. wireshark
  62. 2018.05, Released June 1st, 2018
  63. Minor fixes.
  64. Download: Work around for hanging connections for packages
  65. from CVS, by adding a 10 minute max timeout.
  66. Updated/fixed packages: binutils, clang, dash, expect, git,
  67. glibc, jpeg-turbo, libjpeg, log4cplus, openvmtools, xen,
  68. Issues resolved (http://bugs.uclibc.org):
  69. #11051: runtime issue on STM32 with usage of binutils 2.29.x
  70. 2018.05-rc3, Released May 28th, 2018
  71. Fixes all over the tree.
  72. Toolchain: ARC tools updated to arc-2018.03-rc2.
  73. Fs: Ensure hard links in TARGET_DIR are correctly copied for
  74. filesystem input. With the recent changes to the file system
  75. generation logic, hard links were "expanded" in file system
  76. images leading to bloated rootfs images for setups with hard
  77. links.
  78. Infrastructure: Error out for packages using the 'local'
  79. method but forgetting to specify <pkg>_SITE.
  80. Build rpcgen for the host when needed to support distributions
  81. no longer shipping rpcgen with glibc (E.G. recent Fedora).
  82. Updated/fixed packages: autofs, bash-completion, binutils,
  83. busybox, cjson, elf2flt, libcoap, libcurl, libtirpc, lrzsz,
  84. poppler, procps-ng, qt-webkit-kiosk, quota, samba4, xfsprogs
  85. Issues resolved (http://bugs.uclibc.org):
  86. #11031: ld-elf2flt: host/bin/ld.real': execvp: No such file..
  87. #11036: C compiler cannot create executables
  88. #11046: Git package binaries are ~180MB (compared to ~20MB in..
  89. 2018.05-rc2, Released May 22nd, 2018
  90. Fixes all over the tree.
  91. Dependencies: Check that the current working directory (.)
  92. isn't listed in PATH as that causes various build issues.
  93. Manual: Clarify that git branch names may not be used as
  94. version identifiers. This has never been supported, but was
  95. kind of working (with some limitations) before the git
  96. download rework - Now it does not work at all.
  97. Linux: Ensure host version of ncurses is picked up and not
  98. host-ncurses built by buildroot, as that otherwise causes
  99. widechar/non-widechar conflicts and corrupted menuconfig
  100. menus.
  101. Packages: Renamed a number of package options not prefixed
  102. with BR2_PACKAGE_<pkg> for consstency.
  103. Download infrastructure: Fix file:// protocol handling after
  104. download rework.
  105. Updated/fixed packages: acl, apr-util, asterisk, attr,
  106. bluez5_utils, cifs-utils, clamav, clang, cups-filters,
  107. dahdi-linux, exim, faketime, gdb, go, gst1-plugins-bad,
  108. imx-mkimage, ipsec-tools, jamvm, janus-gateway,
  109. jquery-ui-themes, libcap, libcurl, libftdi, libkcapi, libkrb5,
  110. libmediaart, libmodbus, libmodplug, libmpd,
  111. libnetfilter_cthelper, libnetfilter_cttimeout, libnfc,
  112. libnfnetlink, libnss, liboauth, libogg, libosip2,
  113. libpam-radius-auth, libpcap, libpciaccess, llvm, log4cplus,
  114. ltrace, lynx, mbedtls, modem-manager, nfs-utils,
  115. python-cython, python-websockets, qt5cinex, qt5wayland, rauc,
  116. snort, strace, ti-sgx-km, transmission, wavpack, wget, woff2,
  117. xen, zmqpp, znc, zstd
  118. Issues resolved (http://bugs.uclibc.org):
  119. #10986: Installing package attr when already supplied by...
  120. #11011: BUildroot for Raspberry Pi 2
  121. #11016: Wrong compiler used for external user host packages
  122. 2018.05-rc1, Released May 9th, 2018
  123. Toolchain: glibc bumped to 2.27, musl bumped to 1.1.19,
  124. uClibc-ng 1.0.30, Linux kernel headers bumped to 4.16.x.
  125. Architecture: support for the Blackfin architecture has been
  126. removed, as it was removed from Linux upstream, poorly
  127. maintained in binutils/gdb, and abandoned by Analog Devices.
  128. Numerous packages updated to have hashes for their license
  129. files.
  130. Systemd can now be built with uClibc toolchains.
  131. Linux: addition of BR2_LINUX_KERNEL_NEEDS_HOST_LIBELF and
  132. BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL to support building Linux
  133. kernel configurations that need libelf on the host or openssl
  134. on the host.
  135. Coding style:
  136. - all Python scripts are now verified with flake8
  137. - check-package extended to check all Config.in and .mk files
  138. in tree, not only the ones in package/
  139. Infrastructure:
  140. - The download infrastructure has seen a major overhaul, with
  141. the main visible new feature being Git caching: a package
  142. fetched from Git no longer needs to be re-cloned entirely
  143. everytime its version is changed. Anoter visible change is
  144. that the download folder now has subfolders per package. See
  145. http://lists.busybox.net/pipermail/buildroot/2018-April/217923.html
  146. for more details about those changes.
  147. - The logic that generates the root filesystem images has been
  148. reworked, with the main goal of allowing several filesystem
  149. images to be produced in parallel, also a requirement for
  150. top-level parallel build. Now, a .tar filesystem image is
  151. always created, and re-extracted in a private directory to
  152. create each format-specific filesystem image.
  153. - A new package infrastructure was introduced for Go-based
  154. packages: golang-package.
  155. - Dependencies on extraction tools are now handled as proper
  156. per-package dependencies, using
  157. <pkg>_EXTRACT_DEPENDENCIES. Beyond a cleanup, this is also a
  158. preparation step for top-level parallel build support.
  159. - When a file being downloaded is part of a package with a
  160. .hash file, but there is no hash listed for this file, the
  161. file is now preserved in the download directory rather than
  162. removed. This helps when updating a package, as it gives the
  163. ability to easily calculate the hash of the file.
  164. - Addition of '<pkg>-show-recursive-depends' and
  165. '<pkg>-show-recursive-rdepends' make targets, to
  166. respectively display the recursive list of dependencies and
  167. the recursive list of reverse dependencies of a given
  168. package.
  169. - The /etc/shells file is now automatically generated with the
  170. list of shell programs installed on the system.
  171. - Addition of -Ofast optimization level as an available
  172. option.
  173. Major updates: Go updated to 1.10, Erlang bumped to 20.3, Qt5
  174. bumped to 5.10.1.
  175. New packages: 18xx-ti-utils, abootimg, bluez-alsa, brotli,
  176. chipmunk, clang, docker-compose, docker-proxy, flare-engine,
  177. flare-game, gst1-interpipe, gstreamer1-editing-services,
  178. hackrf, i2pd, imx-alsa-plugins, imx-mkimage, libcdio-paranoia,
  179. libkrb5, llvm, pixiewps, python-backports-ssl-match-hostname,
  180. python-cached-property, python-cython, python-docker,
  181. python-dockerpty, python-docker-pycreds,
  182. python-flask-sqlalchemy, python-functools32, python-influxdb,
  183. python-json-models, python-libusb1, python-networkx,
  184. python-psycopg2, python-pymodbus, python-sqlalchemy,
  185. python-subprocess32, python-texttable,
  186. python-websocket-client, python-yieldfrom, quotatool, reaver,
  187. snort, sunxi-mali-mainline, sunxi-mali-mainline-driver, tk,
  188. tpm2-abrmd, tpm2-tools, tpm2-tss, udftools, vte, woff2.
  189. New defconfigs: ARC HS Development Kit, Arcturus ucls1012a,
  190. Freescale i.MX6UL EVK (with vendor kernel), Freescale i.MX6
  191. SoloLite EVK (with vendor kernel), Freescale i.MX31 3Stack,
  192. Freescale i.MX8Q EVK Freescale p1025twr, Freescale t1040d4rdb,
  193. Qemu PPC64 E5500, SolidRun ClearFog Base, Tinker RK3288, Vyasa
  194. RK3288,
  195. Removed packages: iqvlinux, kodi-adsp-*, mplayer
  196. Removed defconfigs: ci40, firefly_rk3288,
  197. freescale_p1010rdb_pa, freescale_mpc8315erdb, riotboard,
  198. teliv_evk_pro3
  199. Issues resolved (http://bugs.uclibc.org):
  200. #10151: toolchain eclipse register : fails with a custom
  201. BR2_HOST_DIR
  202. #10511: Packages get downloaded uncompressed with wget
  203. #10531: QtWebengine doesn't build if the host hasn't a 32 bits
  204. C++ compiler working
  205. #10846: error in compiling gnutls
  206. #10886: openssl-1.0.2n fails to build
  207. #10896: /bin/sh not in /etc/shells
  208. #10961: Grub2 fails to build for x86_64 when BR2_SSP_ALL is
  209. enabled
  210. 2018.02.1, Released April 9th, 2018
  211. Important / security related fixes.
  212. Removed unmaintained defconfigs: Creator Ci40, Firefly rk3288,
  213. Freescale mpc8315erdb / p1010rdb_pa, Riotboard, Teliv EVK
  214. Pro3.
  215. Infrastructure: Speed up instrumentation for package size by
  216. comparing timestamps instead of md5 checksums, as doing
  217. checksums could lead to up to 25% longer build time for big
  218. configurations.
  219. Rename the internal <pkg>_BASE_NAME variable to <pkg>_NASENAME
  220. to avoid name clashes with packages ending on '-base'.
  221. Add a better fix for build issues for autotools based packages
  222. checking for C++ support on toolchains without C++ support.
  223. Build host-tar if tar is older than 1.27 on the build machine
  224. to work around reproducibility issues with git archives
  225. containing long paths.
  226. check-unique-files: Fix for filenames not representable in the
  227. users' locale.
  228. Check-bin-arch: Add support for per-package ignore paths
  229. (<pkg>_BIN_ARCH_EXCLUDE).
  230. Toolchain: Fix SSP support detection for external toolchains.
  231. linux: Add _NEEDS_HOST_OPENSSL / LIBELF options to ensure
  232. these dependencies are available for Linux configurations
  233. needed these dependencies, similar to how it is done for
  234. U-Boot.
  235. Support custom (not in tree) device tree files in addition to
  236. in-tree ones.
  237. U-Boot / uboot-tools: Fix header conflict with libfdt-devel
  238. installed on host.
  239. Updated/fixed packages: apache, busybox, c-ares, cmake,
  240. docker-engine, enlightenment, eudev, fbgrab, freescale-imx,
  241. gtest, imagemagick, intel-microcode, irssi, jimtcl, kmod,
  242. kodi, ktap, libcoap, libcurl, libfcgi, libhttpparser,
  243. libminiupnpc, libopenssl, libpjsip, libss7, libssh2, libupnp
  244. libupnpp, libuv, libvorbis, memcached, motion, musl, nodejs,
  245. ntp, openblas, opencv3, openocd, opus-tools, patch, php,
  246. pkgconf, postgresql, powerpc-utils, python-jsonschema,
  247. python-webpy, qemu, qt5bsae, qt5script, qt5webkit, rapidjson,
  248. rauc, sam-ba, samba4, sngrep, systemd, tremor, uboot-tools,
  249. uclibc-ng-test, upmpdcli, wireshark, xerces, xterm, zstd
  250. New packages: docker-proxy, python-functools32
  251. Issues resolved (http://bugs.uclibc.org):
  252. #10766: upmpdcli: Segmentation fault
  253. #10776: ktap fails to build
  254. #10846: error in compiling gnutls
  255. #10856: openblas on qemu_x86_64_defconfig fails with "sgemm_..
  256. 2018.02, Released March 4th, 2018
  257. Fixes all over the tree.
  258. Issues with systemd with a readonly rootfs and DBus fixed.
  259. Instructure:
  260. - check-uniq-files: fix Python 2.6 compatibility.
  261. - dependencies.sh: check for external argparse module for
  262. Python 2.6.
  263. - Add infrastructure to detect and use a UTF-8 locale on the
  264. host, needed by systemd.
  265. Update/fixed packages: clamav, dash, dhcp, dovecot, efl,
  266. ffmpeg, libv4l, mono, mosquitto, php, postgresql, qt,
  267. scanpypi, sdl2, systemd, tor, tvheadend, uboot, wavpack
  268. Issues resolved (http://bugs.uclibc.org):
  269. #10831: qemu_x86_64_defconfig build fails on linux-headers..
  270. 2018.02-rc3, Released February 27th, 2018
  271. Fixes all over the tree.
  272. check-bin-arch: skip /lib/modules to allow 32-bit userland
  273. with 64bit kernel.
  274. dependencies: Blacklist tar 1.30+ and build our own host-tar
  275. if needed as tar 1.30+ changed the --numeric-owner output for
  276. long path names. Build host-tar before other host-dependencies
  277. as they need it to extract their source tarballs.
  278. Update/fixed packages: asterisk, azmq, bluez5_utils, domoticz,
  279. e2fsprogs, erlang, exim, glibc, gpsd, jq, libglib2, libvorbis,
  280. mariadb, mbedtls, mesa3d, mesa3d-headers, mpv, patch, pcre2,
  281. php, qt5, qt5multimedia, qt5wayland, qt5webengine, qt5webkit,
  282. systemd, quagga, rustc, uboot, wireguard, zic, zlib-ng
  283. Issues resolved (http://bugs.uclibc.org):
  284. #10726: Current libglib2.mk creates broken libglib2 binary...
  285. #10786: Linux fails to build unless make linux-menuconfig...
  286. #10796: Cannot generate cpio image without selecting CON...
  287. 2018.02-rc2, Released February 15th, 2018
  288. Fixes all over the tree.
  289. Dependencies: Ensure C++ support is available like for C
  290. support for packages needing 32bit host support.
  291. utils/genrandconfig: Check host dependencies for config.
  292. Updated/fixed packages: busybox, dnsmasq, dropbear, ffmpeg,
  293. glibc, keepalived, libcpprestsdk, libgpiod, libmaxminddb,
  294. librsvg, libtasn1, libv4l, libxml2, lightning, ltp-testsuite,
  295. mesa3d, mesa3d-demos, mesa3d-headers, nftables, open-lldp,
  296. php, postgresql, python-crossbar, qt5, qt53d, qt5enginio,
  297. qt5tools, qt5webengine, qt5webkit, rsync, rust-bin, rustc,
  298. systemd
  299. Issues resolved (http://bugs.uclibc.org):
  300. #9781: ti-sgx-km build on kernel >4.1
  301. #10141: Squashfs extended attribute failures
  302. 2018.02-rc1, Released February 5th, 2018
  303. The global source-check and per-package <pkg>-source-check
  304. targets have been removed.
  305. Architecture: Add x86 Silvermont variant. Add several new ARM
  306. variants, rework MIPS NaN logic. Support mainline binutils/gcc
  307. for ARC.
  308. Toolchains: Linaro toolchains upgraded to 2017.11 release, ARC
  309. external toolchains upgraded to arc-2017.09. Libatomic is now
  310. also copied for external musl based toolchains.
  311. Add binutils 2.30.x and switch to binutils 2.29.x by default.
  312. Added hardening options to build with RELRO and FORTITY.
  313. New defconfigs: Bananapi M64, FriendlyARM Nanopi A64 & NEO2,
  314. imx6slevk, imx6sx-sdb, imx6ulevk, Olimex A64-OLinuXino,
  315. Orangepi lite / pc plus / pc / prime / win / win plus / zero
  316. plus2, Pine64, Solidrun MacchiatoBin. Sopine.
  317. Add utils/diffconfig, a simple utility for comparing
  318. configuration files - Adapted from the version in the
  319. Linux kernel.
  320. Infrastructure: Check that the same file is not touched by
  321. multiple packages, as a preparation for toplevel parallel
  322. builds.
  323. Hashes for the license files for a large number of packages
  324. have been added, ensuring that license changes will not be
  325. missed when packages are bumped.
  326. Fix build issue for autotools based packages checking for C++
  327. support on toolchains without C++ support and on a distro
  328. lacking /lib/cpp (E.G. Arch Linux).
  329. Support for the meson build system.
  330. Pie charts generated by 'graph-build' or 'graph-size' are now
  331. sorted according to the size of each piece.
  332. System: Only show getty options when busybox init or sysvinit
  333. are used.
  334. ARM-trusted-firmware: Support ATF bundled in U-Boot as
  335. well as U-Boot bundled in ATF.
  336. Zlib is now a virtual package, provided by either libzlib or
  337. zlib-ng, similar to openssl.
  338. Support for the Rust programming language.
  339. New packages: aoetools, armbian-firmware, binaries-marvell,
  340. brltty, cargo, cargo-bin, cups-filters, curlpp, daq,
  341. flatbuffers, gconf, glorytun, gstreamer1-mm, imx-m4fwloader,
  342. imx-gpu-g2d, json-for-modern-cpp, libcpprestsdk, libgta,
  343. libostree, libupnp18, luadbi, luadbi-sqlite3, lua-utf8, lynx,
  344. meson, mv-ddr-marvell, nilfs-utils, opentracing-cpp,
  345. open-lldp, pimd, proj, python-flask-cors,
  346. python-jaraco-classes, python-more-itertools, python-oauthlib,
  347. python-raven, python-remi, python-requests-oauthlib,
  348. python-schedule, python-secretstorage, python-see,
  349. python-tabledata, python-txtorcon, python-xlib, qt5charts,
  350. rtl8189fs, rtl8723bu, rust, rustc, rust-bin, rygel, safeclib,
  351. solatus, tcf-agent, traceroute, waylandpp, wolfssl,
  352. zisofs-tools, zlib-ng
  353. Removed packages: eeprog
  354. 2017.11.2, Released January 21st, 2018
  355. Important / security related fixes.
  356. External toolchain: libatomic is now also copied for musl
  357. based toolchains.
  358. nconfig: Fix for ncurses/ncursesw linking issue causing crashes.
  359. System: Only show getty options when busybox init or sysvinit
  360. are used.
  361. Infrastructure: Fix build issue for autotools based packages
  362. checking for C++ support on toolchains without C++ support and
  363. on a distro lacking /lib/cpp (E.G. Arch Linux).
  364. Pie charts generated by 'graph-build' or 'graph-size' are now
  365. sorted according to the size of each piece.
  366. Updated/fixed packages: asterisk, avahi, bind, busybox,
  367. coreutils, eeprog, intel-microcode, iputils, irssi, kmsxx,
  368. libiio, linux-firmware, lz4, mariadb, matchbox-lib, mcookie,
  369. ntp, php, pound, rpcbind, tar, ti-cgt-pru, webkitgtk, xen,
  370. xlib_libXpm
  371. Issues resolved (http://bugs.buildroot.org):
  372. #9996: lz4 package does not install lz4 binaries in target
  373. #10176: Rsyslog's S01logging is deleted by Busybox.mk from...
  374. #10216: package/x11r7/mcookie/mcookie.c:207: bad size ?
  375. #10301: systemd/getty unused options
  376. #10331: kmsxx, host installation fails with BR2_SHARED_...
  377. #10556: Building ntp package with SSL library libressl...
  378. #10641: avahi-autoipd not starting when using systemd-tmpfiles
  379. 2017.11.1, Released December 31th, 2017
  380. Important / security related fixes.
  381. Updated/fixed packages: asterisk, checkpolicy, dhcp, flann,
  382. gdb, glibc, heimdal, kodi-pvr-mediaportal-tvserver,
  383. kodi-pvr-stalker, libcue, libopenssl, libpqxx, libsoxr,
  384. linknx, linux-tools, lldpd, ltp-testsuite, mariadb, mfgtools,
  385. nodejs, nut, pulseaudio, python-cffi, qemu, rsync, tor, uboot,
  386. uboot-tools, vlc, webkitgtk, weston, wireguard, wireshark,
  387. xenomai, xfsprogs
  388. 2017.11, Released November 30, 2017
  389. Fixes all over the tree.
  390. Toolchain: Use github mirror for Glibc.
  391. Defconfigs: Correct boot.cmd for bananapi-m1.
  392. Makefiles: Workaround include order issues for certain make
  393. versions by explicitly sorting the result of wildcard where it
  394. matters.
  395. Download: Ensure subversion runs in non-interactive mode.
  396. Updated/fixed packages: asterisk, boost, chrony, dovecot,
  397. dvb-apps, exim, feh, freerdp, fwup, google-breakpad, jose,
  398. kvm-unit-test, lftp, libcurl, libevent, libfastjson, libpjsip,
  399. libupnp, linphone, localedef, lttng-tools, mp4v2, mtools,
  400. ndisc6, oracle-mysql, parted, pdbg, qt, qt5connectivity,
  401. qt5declarative, qt5webkit, rauc, runc, samba4, shairport-sync,
  402. systemd-bootchart, webkitgtk, wireguard, xlib_libXcursor,
  403. xlib_libXfont, xlib_libXfont2,
  404. Issues resolved (http://bugs.buildroot.org):
  405. 10501: host-localedef fails to compile on Ubuntu 17.10
  406. 10506: Changed kernel image type (e.g. zImage to uImage)...
  407. 2017.11-rc2, Released November 13th, 2017
  408. Fixes all over the tree.
  409. Updated/fixed packages: collectd, ffmpeg, freerdp,
  410. go-bootstrap, imagemagick, jimtcl, libpjsip, libplist, libuv,
  411. mesa3d, nodejs, ntp, openjpeg, postgresql, python-numpy, ruby,
  412. snmp++, usb_modeswitch, util-linux, vboot-utils, webkitgtk,
  413. wireshark, wpa_supplicant, xapp_xdriinfo
  414. Issues resolved (http://bugs.buildroot.org):
  415. #10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  416. #10491: Cannot output security warning when compiled with buildroot..
  417. 2017.11-rc1, Released November 6th, 2017
  418. Fixes all over the tree and new features.
  419. Openssl is now a virtual package, which may be provided by
  420. OpenSSL (now renamed to libopenssl) or LibreSSL.
  421. libssh2: there is now an explicit choice of the backend to use
  422. (mbedtls, gnutls or openssl). Previously, the choice was implicit
  423. based on the TLS library that was selected. Now, it is possible to
  424. choose the backend, which is important if several TLS libraries are
  425. selected.
  426. netsnmp: all MIB files are now installed, making the target filesystem a
  427. bit bigger than before. To remove unneeded MIBS, you should use a
  428. post-build script.
  429. Toolchain: Linaro toolchains updated to 2017.08, ARC toolchain
  430. updated to 2017.09, Glibc updated to 2.26, Glibc support for
  431. ARCv2. The toolchain wrapper now handles SOURCE_DATE_EPOCH for
  432. older (pre-gcc7.x) toolchains for BR2_REPRODUCIBLE.
  433. New defconfigs: Atmel SAM45D27, Bananapi M1 and M2 Plus,
  434. Engicam i.CoreM6 Qt5 configuration, i.MX6 sabreauto (mainline
  435. kernel/u-boot), i.MX6Q sabresd Qt5 configuration, i.MX7d-pico,
  436. QEMU ppc64le, Raspberry pi3 Qt5 webengine configuration,
  437. Technologic TS-7680.
  438. New packages: asterisk, azmq, bcg729, boinc, dahdi-linux,
  439. dahdi-tools, freeswitch-mod-bcg729, fscryptctl, libb64,
  440. libpri, libss7, lua-basexx, lua-compat53, lua-cqueues,
  441. lua-curl, lua-datafile, lua-fifo, lua-httpd,
  442. lua-lpeg-patterns, lua-markdown, lua-sailor, lua-value,
  443. luksmeta, minetest, minetest-game, pdmenu, prosody,
  444. python-aiocoap, python-automat, python-ibmiotf,
  445. python-iso8601, python-m2r, python-simplesqlite,
  446. python-websockets, python-xmltodict, qt5wayland, qt5webengine,
  447. restorecond, selinux-python, semodule-utils, uhubctl,
  448. wireguard, wsapi-fcgi, wsapi-xavante
  449. Removed packages: aiccu, rfkill, sepolgen
  450. Issues resolved (http://bugs.buildroot.org):
  451. #10281: lsblk does not compile for util-linux
  452. #10336: lttng compilation fails : linking error
  453. #10351: glibc missing in rootfs
  454. #10356: nfs-utils missing header
  455. #10361: python3 python-config script generates invalid includes
  456. #10366: dropbear download url has changed
  457. #10391: WiringPi retrieves wrong (old) version
  458. #10406: Beaglebone black: Buggy SGX driver version, swapped...
  459. #10426: uboot-tools' fw_setenv does not update the redundant...
  460. #10451: libpcap 1.8.x and 1.7x does not compile on PPC
  461. 2017.08.2, Released November 28th, 2017
  462. Important / security related fixes.
  463. Qt: 5.6 version updated to 5.6.3.
  464. Reproducible: Do not override SOURCE_DATE_EPOCH if already set
  465. in the environment.
  466. Makefiles: Workaround include order issues for certain make
  467. versions by explicitly sorting the result of wildcard where it
  468. matters.
  469. Updated/fixed packages: apr, apr-util, arqp-standalone,
  470. azure-iot-sdk-c, collectd, dvb-apps, ffmpeg, go-bootstrap,
  471. google-breakpad, gstreamer, imagemagick, irssi, jimtcl,
  472. kvm-unit-test, libcurl, libfastjson, libglib2, libidn,
  473. libpjsip, libplist, localedef, lttng-tools, luajit, mesa3d,
  474. moarvm, mp4v2, openssh, openssl, oracle-mysql, postgresql,
  475. python3, python-pyqt5, qt, qt5base, qt5canvas3d,
  476. qt5connectivity, qt5declarative, qt5engineio,
  477. qt5graphicaleffects, qt5imageformats, qt5location,
  478. qt5multimedia, qt5quickcontrols, qt5quickcontrols2, qt5script,
  479. qt5sensors, qt5serialbus, qt5serialport, qt5svg, qt5tools,
  480. qt5webchannel, qt5webkit, qt5websockets, qt5x11extras,
  481. qt5xmlpatterns, quagga, redis, ruby, samba4, sdl2, snmppp,
  482. swupdate, ti-gfx, uboot-tools, usb_modeswitch, vboot-utils,
  483. webkitgtk, wget, wireshark, xapp_xdriinfo.
  484. Issues resolved (http://bugs.buildroot.org):
  485. 10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  486. 10361: python3 python-config script generates invalid includes
  487. 10501: host-localedef fails to compile on Ubuntu 17.10
  488. 2017.08.1, Released October 23rd, 2017
  489. Important / security related fixes.
  490. Webkitgtk bumped to the 2.18.x series, fixing a large number
  491. of security issues.
  492. Defconfigs: galileo: fix ext4 related kernel config, bump
  493. kernel for gcc 6.x compatibility, enable wchar support for
  494. grub2. wandboard: correct rootfs offset
  495. support: Ensure gzip compression level 6 is used for git
  496. tarballs. check-bin-arch: Correctly handle (ignore) symbolic
  497. links. check-rpath: Also handle PIE binaries
  498. External toolchain: Correctly handle glibc Buildroot
  499. toolchains built with merged /usr
  500. musl: fix ARMv4 build with binutils 2.27.51+, fix for
  501. CVE-2017-15650
  502. Updated/fixed packages: apache, augeas, bind, bluez5_utils,
  503. busybox, bzip2, cmake, dnsmasq, ejabberd, gcc, git, go, ffmpeg, file,
  504. flashrom, gd, gdk-pixbug, gnupg2, hostapd, ifupdown-scripts,
  505. imagemagick, iucode-tool, kernel-module-imx-gpu-viv, lame,
  506. libarchive, libcurl, libffi, libidn, libmbim, libnspr, libnss,
  507. libressl, librsync, libsoup, libxml2, libzip, mbedtls, musl,
  508. netplug, nginx, openvpn, pkgconf, poppler, proxychains-ng,
  509. qemu, qt, rpi-userland, syslog, ruby, samba4, softether,
  510. sqlite, strongswan, subversion, supertuxkart, supervisor, tcpdump,
  511. tor, unrar, urq, vboot-utils, webkitgtk, wpa_supplicant, xen,
  512. xmlstarlet, xlib_libXfont, xlib_libXfont2,
  513. xserver_xorg-server, zsh
  514. 2017.08, Released September 1st, 2017
  515. Minor fixes.
  516. Toolchain: Don't allow internal toolchain builds for MIPS
  517. M6201/P6600, as support for these are not yet in mainline GCC.
  518. Updated/fixed packages: bcusdk, connman, dialog, dnsmasq,
  519. gnupg, grub2, iostat, iucode-tool, libgcrypt, libkcapi,
  520. libphidget, libv4l, linux-tools, mediastreamer, minidlna,
  521. nss-pam-ldapd, nvidia-driver, qt-webkit-kiosk, rpcbind, squid,
  522. transmission, vde2, vim
  523. Updated/fixed defconfigs:
  524. Removed packages: simicfs.
  525. Issues resolved (http://bugs.buildroot.org):
  526. #10261: Grub2 fails to build for x86_64
  527. 2017.08-rc3, Released August 23rd, 2017
  528. Fixes all over the tree.
  529. Updated/fixed packages: alsa-lib, alsa-utils, cc-tool,
  530. dbus-cpp, e2fsprogs, elf2flt, faad2, fakeroot, gcc, git, gpsd,
  531. gst1-validate, kvmtool, libconfuse, libepoxy, librsync,
  532. libspatialindex, libunwind, linux, linux-headers, lua,
  533. mariadb, mesa3d, mtd, openocd, python3, syslinux, sysvinit,
  534. whois, xen, zmqpp.
  535. Updated/fixed defconfigs: ci20, socrates_cyclone5,
  536. toradex_apalis_imx6.
  537. Removed defconfig: Armadeus APF9328.
  538. skeleton-* packages introduced in -rc1 have been renamed to
  539. skeleton-init-* instead.
  540. Issues resolved (http://bugs.buildroot.org):
  541. #10141: Squashfs extended attribute failures
  542. 2017.08-rc2, Released August 11th, 2017
  543. Fixes all over the tree.
  544. Updated/fixed packages: bind, dbus, erlang-p1-xml, faad2,
  545. ficl, gcc, gdb, glibc, jack2, libcurl, linux, linux-headers,
  546. lua, mutt, nvme, qt5base, skeleton-common, snappy, stella,
  547. swupdate, uclibc, valgrind, webkitgtk.
  548. Updated/fixed defconfigs: beaglebone_qt5, minnowboard_max,
  549. nanopi_m1{, _plus}, olimex_a20_olinuxino_lime, qemu_sparc,
  550. qemu_sparc64.
  551. The cmake-package infrastructure for host packages has been
  552. fixed to not incorrectly detect target packages through
  553. pkg-config.
  554. Issues resolved (http://bugs.buildroot.org):
  555. #9926: systemd-resolved.service: Failed at step NAMESPACE (systemd 233)
  556. #10021: libqeglfs-viv-integration.so file is missing for qt5 on armv7
  557. #10026: lua-5.3.4: fix lua linker error in swupdate
  558. #10146: package/skeleton-common fix recursive variable
  559. #10156: glibc compilation fails for X86 32bits (i386)
  560. #10201: toolchain-wrapper.c:192: (error) Memory leak:
  561. #10221: Buildroot Support
  562. 2017.08-rc1, Released August 2nd, 2017
  563. Infrastructure:
  564. - The skeleton package has been split into multiple packages:
  565. skeleton-sysv (when Busybox or SysV init are used),
  566. skeleton-systemd (when systemd is used), skeleton-none (when
  567. no init system is used) and skeleton-custom (when a custom
  568. skeleton is used). Those packages, except skeleton-custom,
  569. share common logic and data in a new package called
  570. skeleton-common. The skeleton package becomes a virtual
  571. package. This change allows to generate a filesystem that is
  572. compliant with systemd expectations.
  573. - Support for using a read-only filesystem with systemd has
  574. been fixed.
  575. - Major revamp of the gettext handling, with user-visible
  576. effect:
  577. - prior to this revamp, when BR2_ENABLE_LOCALE=y, each
  578. package could decide to enable or not NLS support. When
  579. BR2_ENABLE_LOCALE was disabled, NLS support was forced off
  580. by passing --disable-nls to packages.
  581. - after this revamp, a new BR2_SYSTEM_ENABLE_NLS option
  582. controls whether NLS support should be enabled or not in
  583. packages. This option defaults to disabled, which means
  584. that now, NLS support is by default disabled in all
  585. packages.
  586. Therefore, if you need NLS support in packages, you must now
  587. explicitly enable the BR2_SYSTEM_ENABLE_NLS option.
  588. - The host directory no longer has a usr/ component. This
  589. makes it much more natural to use that directory as an
  590. externally used toolchain. For compatibility with existing
  591. scripts, a usr -> . link is still added.
  592. - Hashes are now checked on tarballs by Buildroot when a
  593. package is sourced from a Git repository.
  594. - Patches are no longer being downloaded from Github, since
  595. auto-generated patches could change over time, and break
  596. hashes. All patches that were downloaded from Github are now
  597. stored in their respective package directories.
  598. - Hash files in packages can now contain hashes for the
  599. license files contained in the package source code. This
  600. allows to detect changes in such license files.
  601. - Binaries in $(TARGET_DIR) are now cleaned up from invalid
  602. RPATHs at the end of the build.
  603. - A new "make sdk" target prepares $(HOST_DIR) to be
  604. relocatable: turns RPATHs in host binaries into relocatable
  605. ones, removes bogus RPATHs from staging binaries/libraries,
  606. and provides a relocate-sdk script that can be executed to
  607. relocate the SDK after installation.
  608. - Addition of utils/genrandconfig which generates a random
  609. configuration based on a set of pre-defined toolchain
  610. configurations (support/config-fragments/autobuild/) and a
  611. random selection of packages. It is now used by the
  612. autobuilders to generate the random configurations.
  613. Filesystems:
  614. - ext2/3/4 filesystems are now generated using mkfs.ext from
  615. e2fsprogs instead of using genext2fs.
  616. Architecture:
  617. - Addition of support for ARM big.LITTLE variants
  618. - Improved MIPS support, with options to select NaN encoding
  619. and FP32 mode.
  620. Toolchain:
  621. - Switch to gcc 6.x as the default gcc version, add support
  622. for gcc 7.x, remove support for gcc 4.8
  623. - Switch to binutils 2.28 as the default binutils version, add
  624. support for binutils 2.29, remove support for binutils 2.26
  625. - Support added for gdb 8.0
  626. - uClibc-ng bumped to 1.0.26
  627. - CodeSourcery toolchains for x86 and SuperH have been
  628. removed, they were using a too old glibc version
  629. (2.17). External toolchains with glibc 2.17 or earlier are
  630. no longer supported.
  631. - The version selection in the glibc package has been
  632. removed. Like musl and uClibc-ng, we now use the latest
  633. glibc version.
  634. - Improved support for Xtensa toolchain overlays, which can
  635. now be downloaded.
  636. Tools:
  637. - Numerous improvements to the runtime test infrastructure
  638. - Tests are now executed by Gitlab CI on a regular basis
  639. - Tools that are directly useful to the user have been moved
  640. from support/scripts/ to utils/: brmake, check-package,
  641. get-developers, scancpan, scanpipy, size-stats-compare,
  642. test-pkg.
  643. New defconfigs: A13 Olinuxino, Engicam platforms (i.CoreM6
  644. Solo/Dual/DualLite/Quad, RQS SOM, GEAM6UL SOM, Is.IoT MX6UL
  645. SOM), Nano Pi M1 (Plus), OrangePi Zero and Plus.
  646. New packages: azure-iot-sdk-c, cracklib, dt-utils, easy-rsa,
  647. erlang-jiffy, erlang-p1-oauth2, erlang-p1-xmpp,
  648. ifupdown-scripts, irrlicht, kodi-inputstream-adaptive,
  649. kodi-inputstream-rtmp, kvazaar, let-me-create, libloki,
  650. libpwquality, libressl, libspatialindex, libva-utils,
  651. linuxconsoletools, linuxptp, luaossl, lua-sdl2, lua-stdlib,
  652. lsscsi, paxtest, pcre2, pixz, python-asn1crypto,
  653. python-backports-shutil-get-terminal-size, python-bcrypt,
  654. python-cheroot, python-h2, python-hpack, python-hyperframe,
  655. python-hyperlink, python-ipython-genutils, python-pathlib2,
  656. python-pickleshare, python-priority, python-portend,
  657. python-scandir, python-systemd, python-tempora,
  658. python-traitlets, python-typepy, qt5virtualkeyboard,
  659. ratpoison, rauc, refpolicy, rhash, sdl2_mixer, sdl2_net,
  660. xr819-xradio, zstd
  661. Removed packages: cloog, input-tools, mke2img
  662. Issues resolved (http://bugs.buildroot.org):
  663. #7892: systemd-journald is broken
  664. #9341: avahi-utils does not compile with uClibc + libglib2
  665. #9441: Link BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY to
  666. BR2_ENABLE_DEBUG
  667. #9746: ext4 image generated by Buildroot is not working
  668. properly with U-Boot
  669. #9886: Build fails with "unexpected EOF while looking for
  670. matching `"'" if PATH contains a newline
  671. #9891: parted 3.1 => 3.2?
  672. #9911: qt5 does not build on sparc
  673. #9916: qt5 does not build on
  674. arm-buildroot-linux-uclibcgnueabihf for ARMv8 cores
  675. #9936: Host QEMU does not build with SDL support because of
  676. pkg-config
  677. #9941: nodejs option disappears for arm
  678. #9951: SCANCPAN failure
  679. #9966: util-linux-2.30/.stamp_built' failed
  680. #9976: License file for package 'rtl8821au' incorrect
  681. #9991: SGX Error implicit declaration of function
  682. ‘dmac_map_area’
  683. #10011: wget does not work from Buildroot
  684. #10036: Buildroot builds Raspbian Jessie headless image
  685. presenting incorrect prompt
  686. #10051: make: *** No rule to make target
  687. 'raspberrpi3_defconfig'. Stop reported with Buildroot
  688. v2017.05.1
  689. #10056: No .config file was produced in /buildroot folder
  690. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer
  691. failure
  692. #10071: fakeroot: replace hard-coded paths in post install
  693. #10076: Makefile:4113: recipe for target 'all-gcc' failed
  694. #10091: gcc7.1 does not build with graphite support due to old
  695. isl
  696. #10121: webkit without the multimedia option causes build
  697. error
  698. 2017.05.2, Released July 27th, 2017
  699. Important / security related fixes.
  700. Webkitgtk bumped to the 2.16.x series, fixing a large number
  701. of security issues.
  702. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  703. which default to PIE mode.
  704. Updated/fixed packages: aespipe, apache, bind, binutils,
  705. busybox, ccache, collectd, dieharder, efibootmgr, efivar,
  706. expat, ffmpeg, gcc, heimdal, iproute2, irssi, libglib2,
  707. libmemcached, libosip2, libtirpc, libxml-parser-perl,
  708. linux-fusion, linux-zigbee, mpg123, orc, pcre, php, protobuf,
  709. pulseaudio, python-setproctitle, qt5base, rpi-firmware,
  710. samba4, syslinux, systemd, spice, tcpdump, tiff, uboot-tools,
  711. webkitgtk, x265, xserver_xorg-server, xvisor
  712. Issues resolved (http://bugs.buildroot.org):
  713. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  714. 2017.05.1, Released July 4th, 2017
  715. Important / security related fixes.
  716. Update support/scripts/scancpan to use METACPAN v1 API as v0
  717. has been shutdown.
  718. Update support/scripts/mkusers to handle setups where
  719. /etc/shadow is a symlink.
  720. External toolchain: Don't create musl dynamic loader symlink
  721. for static builds.
  722. Setlocalversion: Correct detection of mercurial revisions for
  723. non-tagged versions.
  724. Defconfigs: at91sam9x5ek_mmc: workaround boot rom issue.
  725. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  726. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, glmark2,
  727. gnutls, gst1-plugins-bad, imagemagick, imx-uuc, intltool,
  728. iperf, ipsec-tools, irssi, kmod, libcurl, libgcrypt, libmad,
  729. libnl, lugaro, mosquitto, mpg123, ncurses, nodejs, ntp,
  730. openssh, openvpn, pngquant, python-simplegeneric, qt5base,
  731. qt5multimedia, rtl8821au, socat, spice, systemd, tor, trinity,
  732. tslib, vlc, x264, xen, xlib_libxshmfenc, xserver_xorg-server
  733. Issues resolved (http://bugs.buildroot.org):
  734. #9976: License file for package 'rtl8821au' incorrect
  735. 2017.05, Released May 31st, 2017
  736. Minor fixes.
  737. External toolchain: musl dynamic linker symlink for mips-sf
  738. corrected.
  739. Updated/fixed packages: agentpp, bash, exim, hans, madplay,
  740. qpid-proton, rtl8188eu, snmppp, stm32flash, strongswan, sudo,
  741. xen
  742. Issues resolved (http://bugs.buildroot.org):
  743. #9906: genimage: Disk full
  744. 2017.05-rc3, Released May 30th, 2017
  745. Fixes all over the tree.
  746. ARC toolchain bumped to 2017.03
  747. Runtime testing improvements and cleanups.
  748. Updated/fixed packages: acpica, armadillo, audiofile, c-icap,
  749. cppcms, dhcp, docker-engine, dropbear, elfutils, erlang,
  750. fbgrab, ffmpeg, flashrom, ftop, gnutls, google-breakpad,
  751. keepalived, kodi, libcdio, libepoxy, libev, libminiupnpc,
  752. libqmi, libtasn1, libv4l, mariadb, mono, mosh, mosquitto,
  753. mxml, ntp, opencv, openpowerlink, oracle-mysql, popt,
  754. pulseview, python-enum34, rabbitmq-c, redis, samba4, stella,
  755. xen
  756. Removed packages: firejail, ola
  757. Issues resolved (http://bugs.buildroot.org):
  758. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  759. #9876: aarch64 support with gcc 4.8 toolchain
  760. #9896: host-gcc-initial error downloading because incorrect URL
  761. 2017.05-rc2, Released May 17th, 2017
  762. Fixes all over the tree.
  763. ARC toolchain bumped to 2017.03-rc2
  764. Updated/fixed packages: bluez_utils, boost, clamav, daemon,
  765. efibootmgr, efl, espeak, expedite, faketime, ffmpeg, fxload,
  766. git, gpsd, kvm-unit-tests, libcdio, libv4l, lua, mke2img,
  767. mpir, mpv, odroid-scripts, openblas, opencv3, openvpn, php,
  768. postgresql, protobuf, qt5declarative, qwt, radvd, rpcbind,
  769. rtmpdump, strongswan, sudo, ltp-testsuite, uclibc-ng-test,
  770. vlc, x11vnc, xfsprogs
  771. Issues resolved (http://bugs.buildroot.org):
  772. #9796: source-check broken for Git downloads
  773. #9866: BASE_DIR usage
  774. 2017.05-rc1, Released May 8th, 2017
  775. Fixes all over the tree and new features.
  776. Infrastructure:
  777. - Installed binaries are now checked for correct architecture
  778. to catch natively built binaries or binaries built for other
  779. architecture variants.
  780. - Luarocks infrastructure improvements to extraction handling,
  781. support for upstream name != Buildroot package name.
  782. - 'make printvars' output format has changed to make it easier
  783. to use in scripts. It now has options to quote the variables
  784. and to show the expanded/unexpanded values.
  785. - Automatic ext2 rootfs size calculation has been removed. The
  786. logic was not working working reliable in all setups as it
  787. depends on the host filesystem behaviour, so instead now the
  788. size has to be specified explicitly (defaults to 60MB).
  789. - The git download infrastructure now ensures that GNU format
  790. tar files are created.
  791. - Fixed a variable clashing issue in the mkusers script with
  792. internal bash variables.
  793. - Fakeroot now links against libacl to fix issues on
  794. distributions using acls.
  795. - Correct permissions for /dev/pts/ptmx when systemd is used
  796. with recent glibc versions.
  797. - br2-external: Improve error reporting.
  798. - A wrapper script for genimage has been added in
  799. support/scripts/genimage.sh for easy use of genimage from
  800. post-image scripts.
  801. - A script to check for common style issues in new packages
  802. before submitting has been added in support/scripts/check-package
  803. - Defconfigs are now tested by gitlab-CI instead of Travis:
  804. https://gitlab.com/buildroot.org/buildroot
  805. - Infrastructure for runtime testing has been added to
  806. support/testing
  807. Toolchain:
  808. - External linaro toolchains updated to 2017.02, ARC toolchain
  809. updated to 2017.03-rc1, NIOSII CodeSourcery to 2017.05
  810. - A number of fixes and improvements to the external toolchain
  811. handling, including C library detection, multilib and ld.so
  812. handling
  813. - Glibc 2.25 and uClibc-ng 1.0.24 added, wordexp support enabled
  814. for uClibc-ng
  815. - Binutils 2.28 added and default changed to 2.27
  816. Architectures:
  817. - Support for the C-SKY architecture has been added.
  818. License handling:
  819. - The package license markings for legal info now uses the
  820. SPDX short identifiers for the license string where possible.
  821. - License info has been improved / added for a number of packages.
  822. Misc:
  823. - Cmake 3.7.x installed on the host is no longer ignored as a
  824. workaround for the RPATH issues has been implemented.
  825. - Docker-engine can now be built statically on an otherwise
  826. dynamic linked build for docker-in-docker setups.
  827. - U-Boot now supports out-of-tree device trees, similar to
  828. Linux
  829. - Nodejs 0.10.x support (and with it, support for <ARMv6) has
  830. been removed as this is now EOL upstream.
  831. New defconfigs: AT91sam9x5ek dev/mmc/mmc-dev, banana pro,
  832. Nationalchip gx6605s, MIPS creator ci40, nexbox a95x, 64bit
  833. defconfig for raspberry pi 3, stm32f429-disc1.
  834. The raspberry pi zero-w and rpi3 compute module are now also
  835. supported by the rpi0 / rpi3 defconfigs, beaglebone green is
  836. supported by the beaglebone defconfig.
  837. Removed defconfig: minnowboard, via imx6 vab820, altera
  838. socdk/sockit
  839. New packages: arp-scan, atest, augeas, bluez-tools, daemon,
  840. dc3dd, dieharder, execline, fmt, ghostscript, gqrx,
  841. gst1-vaapi, jo, keepalived, kmscube, kodi-jsonschemabuilder,
  842. kodi-skin-confluence, kodi-texturepacker, lensfun, leptonica,
  843. libbson, libcsv, libgphoto2, libkcapi, libmaxminddb,
  844. libmediaart, libnpth, libscrypt, lua-bit32, lua-resty-http,
  845. lugaru, memtool, mpir, nanomsg, physfs, phytool, pngquant,
  846. python-decorator, python-simplegeneric,
  847. python-sortedcontainers, rpi-bt-firmware, rpi-wifi-firmware,
  848. s6, s6-dns, s6-linux-init, s6-linux-utils, s6-networking,
  849. s6-portable-utils, s6-rc, supertux, tesseract-ocr,
  850. uccp420wlan, wilink-bt-firmware
  851. Broken packages: ola
  852. Removed packages: cosmo, kodi-visualisation-fountain,
  853. polarssl, portmap, xdriver_xf86-video-glide,
  854. xdriver_xf86-video-v4l, xdriver_xf86-video-wsfb
  855. Issues resolved (http://bugs.buildroot.org):
  856. #8831: image generation fails on host ZFS due to "no free space"
  857. #9436: e2fsprogs remove busybox applets even of unselected e2fs..
  858. #9456: mkusers script bash errors
  859. #9496: mke2img fails during build on ntfs-3g host partition
  860. #9531: NPM fails to build embedded modules
  861. #9596: KODI: --enable-lirc needs "HAVE_LIRC" compiler definition..
  862. #9691: Wrong cryptsetup package include files location
  863. #9696: Wrong cryptsetup package include files location
  864. #9706: Can't download newer revisions of package from PyPI
  865. #9711: Recent libCEC version bump seems to break kodi package
  866. #9716: exit, shutdown, reboot from kodi
  867. #9721: version 2017.02: no acceptable m4 could be found in $PATH
  868. #9726: Raspberry Pi version B - Problems with UART speed in..
  869. #9751: expat legal info - manifest.csv: GPLv2 Source site: MIT..
  870. #9756: glibc fails to build on buildroot-sh4*-buildroot-linux-gnu
  871. #9766: support/scripts/pkgutil.py conflicts with the pkgutil.py..
  872. #9776: libubox build failed
  873. #9791: Python searches for packages in the user site directory
  874. #9806: libseccomp is not available when BR2_arm=y
  875. #9826: post-build scritp - symlinks created in post-build script..
  876. #9836: triggerhappy: systemd unit broken
  877. #9846: musl libc not installed correctly in target folder
  878. #9856: build libubox failed on ubuntu 17.04 64bit
  879. 2017.02.11, Released April 11th, 2018
  880. Important / security related fixes.
  881. dependencies: Blacklist tar 1.30+ and build our own host-tar
  882. if needed as tar 1.30+ changed the --numeric-owner output for
  883. long path names. Build host-tar before other host-dependencies
  884. as they need it to extract their source tarballs.
  885. Updated/fixed packages: apache, busybox, clamav, dhcp,
  886. dnsmasq, dovecot, exim, imagemagick, irssi, jq, libcurl,
  887. libpjsip, librsvg, libtasn1, libvorbis, libxml2, lz4, mariadb,
  888. mbedtls, mosquitto, ntp, openblas, opencv3, openssl, patch,
  889. postgresql, python-webpy, qt53d, qt5tools, quagga, rsync,
  890. samba4, sngrep, tremor, wavpack, wireshark, xerces, xterm
  891. Issues resolved (http://bugs.uclibc.org):
  892. #10856: openblas on qemu_x86_64_defconfig fails with "sgemm_..
  893. 2017.02.10, Released January 31st, 2018
  894. Important / security related fixes.
  895. nconfig: Fix for ncurses/ncursesw linking issue causing crashes.
  896. System: Only show getty options when busybox init or sysvinit
  897. are used.
  898. Infrastructure: Fix build issue for autotools based packages
  899. checking for C++ support on toolchains without C++ support and
  900. on a distro lacking /lib/cpp (E.G. Arch Linux).
  901. Updated/fixed packages: avahi, berkeleydb, bind, busybox,
  902. ccache, clamav, coreutils, dovecot, eeprog, eudev, fis,
  903. intel-microcode, iputils, irssi, kmsxx, libcurl, liberation,
  904. libiio, lz4, mariadb, matchbox-lib, mcookie, openocd, php,
  905. pound, rpcbind, squid, tar, ti-cgt-pru, transmission,
  906. util-linux, webkitgtk, wireshark, xen
  907. Issues resolved (http://bugs.buildroot.org):
  908. #9996: lz4 package does not install lz4 binaries in target
  909. #10176: Rsyslog's S01logging is deleted by Busybox.mk from...
  910. #10216: package/x11r7/mcookie/mcookie.c:207: bad size ?
  911. #10301: systemd/getty unused options
  912. #10331: kmsxx, host installation fails with BR2_SHARED_...
  913. #10536: Finding non-relative paths in the ccache
  914. #10641: avahi-autoipd not starting when using systemd-tmpfiles
  915. 2017.02.9, Released January 1st, 2018
  916. Important / security related fixes.
  917. Fix divide by zero issue in size-stats script.
  918. Fix makefile include ordering issue with certain make versions
  919. in the external toolchain handling.
  920. Updated/fixed packages: dhcp, exim, flann, gdb, heimdal,
  921. libcue, libcurl, libevent, libpqxx, libsoxr, linphone, lldpd,
  922. mariadb, mfgtools, mtools, nodejs, nut, openssl, rsync,
  923. samba4, tor, vlc, webkitgtk, wireshark, xfsprogs,
  924. xlib_libXcursor, xlib_libXfont, xlib_libXfont2
  925. 2017.02.8, Released November 27th, 2017
  926. Important / security related fixes.
  927. Qt: 5.6 version updated to 5.6.3.
  928. Reproducible: Do not override SOURCE_DATE_EPOCH if already set
  929. in the environment.
  930. Updated/fixed packages: apr, apr-util, arqp-standalone,
  931. collectd, dvb-apps, ffmpeg, google-breakpad, gstreamer,
  932. imagemagick, libfastjson, libglib2, libpjsip, libplist,
  933. localedef, luajit, mesa3d, openssh, openssl, postgresql,
  934. python3, python-pyqt5, qt5base, qt5canvas3d, qt5connectivity,
  935. qt5declarative, qt5engineio, qt5graphicaleffects,
  936. qt5imageformats, qt5location, qt5multimedia, qt5quickcontrols,
  937. qt5quickcontrols2, qt5script, qt5sensors, qt5serialbus,
  938. qt5serialport, qt5svg, qt5tools, qt5webchannel, qt5webkit,
  939. qt5websockets, qt5x11extras, qt5xmlpatterns, quagga, ruby,
  940. samba4, snmppp, ti-gfx, vboot-utils, webkitgtk, wireshark,
  941. xapp_xdriinfo.
  942. Issues resolved (http://bugs.buildroot.org):
  943. 10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  944. 10361: python3 python-config script generates invalid includes
  945. 10501: host-localedef fails to compile on Ubuntu 17.10
  946. 2017.02.7, Released October 28th, 2017
  947. Important / security related fixes.
  948. Webkitgtk bumped to the 2.18.x series, fixing a large number
  949. of security issues.
  950. Defconfigs: wandboard: Correct rootfs offset
  951. Toolchain: Linaro toolchains updated to 2017.08 release,
  952. fixing a number of issues. Musl: fix for CVE-2017-15650.
  953. Updated/fixed packages: busybox, bzip2, dnsmasq, git, go,
  954. hostapd, irssi, iucode-tool, lame, libcurl, libffi, libnspr,
  955. libnss, nodejs, openssh, openvpn, qemu, qt, redis, sdl2,
  956. webkitgtk, wget, wpa_supplicant, xen, xlib_libXfont,
  957. xlib_libXfont2, xserver_xorg-server
  958. 2017.02.6, Released September 24th, 2017
  959. Important / security related fixes.
  960. Cmake: Ensure correct pkg-config is used when building host
  961. packages
  962. fs/iso9660: Ensure files from earlier builds are not included.
  963. Updated/fixed packages: apache, bcusdk, bind, binutils,
  964. bluez5_utils, botan, cmake, connman, dbus, dialog, e2fsprogs,
  965. faad2, fakeroot, ffmpeg, file, flashrom, gcc, gd, gdb,
  966. gdk-pixbuf, git, gnupg, gpsd, grub2, gst1-plugins-bad,
  967. imagemagick, iostat, iucode-tool, jack2, libarchive, libcurl,
  968. libgcrypt, libidn, libphidget, librsync, librsvg, libsoup,
  969. libxml2, linux-tools, lua, mariadb, mbedtls, mediastreamer,
  970. minidlna, netplug, nss-pam-ldapd, nvidia-driver, openjpeg,
  971. postgresql, proxychains-ng, python-libconfig,
  972. python-service-identity, qt, rpcbind, ruby, samba4, squashfs,
  973. squid, strongswan, subversion, supervisor, sysvinit, tcpdump,
  974. tor, transmission, unrar, valgrind, vim, webkitgtk, whois,
  975. xen, zmqpp
  976. Issues resolved (http://bugs.buildroot.org):
  977. #10141: Squashfs extended attribute failures
  978. #10261: Grub2 fails to build for x86_64
  979. #10276: BR2_PACKAGE_LINUX_TOOLS_GPIO fails for MIPS with...
  980. 2017.02.5, Released July 27th, 2017
  981. Important / security related fixes.
  982. Webkitgtk bumped to the 2.16.x series, fixing a large number
  983. of security issues.
  984. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  985. which default to PIE mode.
  986. Updated/fixed packages: aespipe, apache, bind, binutils,
  987. busybox, ccache, collectd, efibootmgr, efivar, expat, ffmpeg,
  988. gcc, heimdal, iproute2, irssi, libglib2, libmemcached,
  989. libosip2, libtirpc, libxml-parser-perl, linux-fusion,
  990. linux-zigbee, mpg123, nodejs, orc, pcre, php, pulseaudio,
  991. python-setproctitle, qt5base, rpi-firmware, samba4, syslinux,
  992. systemd, spice, tcpdump, tiff, webkitgtk, x265, xen,
  993. xserver_xorg-server, xvisor
  994. Issues resolved (http://bugs.buildroot.org):
  995. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  996. 2017.02.4, Released July 4th, 2017
  997. Important / security related fixes.
  998. Update support/scripts/scancpan to use METACPAN v1 API as v0
  999. has been shutdown.
  1000. Update support/scripts/mkusers to handle setups where
  1001. /etc/shadow is a symlink.
  1002. External toolchain: Don't create musl dynamic loader symlink
  1003. for static builds.
  1004. Setlocalversion: Correct detection of mercurial revisions for
  1005. non-tagged versions.
  1006. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  1007. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, gnutls,
  1008. gst1-plugins-bad, imagemagick, imx-uuc, intltool, iperf,
  1009. ipsec-tools, irssi, libgcrypt, libmad, libnl, mosquitto,
  1010. mpg123, ncurses, nodejs, ntp, openssh, openvpn, qt5base,
  1011. qt5multimedia, rtl8821au, socat, spice, systemd, tor, tslib,
  1012. vlc, x264, xserver_xorg-server
  1013. Issues resolved (http://bugs.buildroot.org):
  1014. #9976: License file for package 'rtl8821au' incorrect
  1015. 2017.02.3, Released June 2nd, 2017
  1016. Important / security related fixes.
  1017. Download: <pkg>-source-check fixed for packages from git.
  1018. External toolchain: musl dynamic linker symlink for mips-sf
  1019. corrected.
  1020. Updated/fixed packages: armadillo, audiofile, bash,
  1021. bluez_utils, cppcms, dbus, dhcp, dropbear, efibootmgr, efl,
  1022. elfutils, faketime, fbgrab, flashrom, ftop, gdb, git,
  1023. google-breakpad, gpsd, hans, kvm-unit-tests, kyua, libev,
  1024. libmicrohttpd, libminiupnpc, libtasn1, libubox, ltp-testsuite,
  1025. lua, madplay, mariadb, mono, mosquitto, mxml, ntp,
  1026. nvidia-driver, openblas, openvpn, oracle-mysql, picocom, popt,
  1027. postgresql, pulseview, qt5base, qwt, rabbitmq-c, redis,
  1028. rpcbind, rtmpdump, samba4, strongswan, sudo, vlc
  1029. Issues resolved (http://bugs.buildroot.org):
  1030. #9796: source-check broken for Git downloads
  1031. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  1032. 2017.02.2, Released May 1st, 2017
  1033. Important / security related fixes.
  1034. Use HTTPS for the Codesourcery external toolchains as the HTTP
  1035. URLs no longer work.
  1036. Updated/fixed packages: bind, busybox, dovecot, freetype,
  1037. ghostscript, glibc, granite, hiredis, icu, imagemagick,
  1038. gst-plugins-base, gst1-plugins-base, libcroco, libcurl, libnl,
  1039. libnspr, libnss, libsamplerate, libsndfile, libunwind,
  1040. minicom, mplayer, mpv, nodejs, python-django, python-pyyaml,
  1041. python-web2py, samba4, syslinux, systemd, tiff, trinity,
  1042. uboot, wireshark, xen
  1043. Issues resolved (http://bugs.buildroot.org):
  1044. #9791: Python searches for packages in the user site directory
  1045. 2017.02.1, Released April 4th, 2017
  1046. Important / security related fixes.
  1047. Fix a variable clashing issue in the mkusers script with
  1048. internal bash variables.
  1049. Improve external toolchain version detection.
  1050. Correct permissions for /dev/pts/ptmx when systemd is used
  1051. with recent glibc versions.
  1052. Fix python module name clash for graph-depends.
  1053. Fakeroot now links against libacl to fix issues on
  1054. distributions using acls.
  1055. Ensure that the git download infrastructure creates GNU format
  1056. tar files.
  1057. br2-external: Improve error reporting.
  1058. Updated/fixed packages: acl, apr, audiofile, busybox, cairo,
  1059. dbus-cpp, dbus-glib, dbus-triggerd, domoticz, elfutils,
  1060. fakeroot, filemq, fmc, gdb, git, gnutls, gst-ffmpeg,
  1061. gst1-plygins-bad, harfbuzz, htop, imagemagick, jasper, libcec,
  1062. libiio, libplatform, librsvg, libselinux, libsidplay2, libsoc,
  1063. libwebsockets, libxkbcommon, linux-firmware, logrotate,
  1064. lpt-testsuite, lttng-libust, mariadb, mbedtls, memcached,
  1065. mesa3d, mpd, mplayer, nbd, ncftp, ntp, openssh, opentyrian,
  1066. pcre, perl-gd, python, qt5base, rpi-userland, rpm, samba4,
  1067. skalibs, slang, sngrep, squashfs, syslog-ng, taglib,
  1068. tcpreplay, tor, upmpdcli, wget, wireshark,
  1069. xdriver_xf86-video-vmware, xlib_libXv, zmqpp
  1070. Issues resolved (http://bugs.buildroot.org):
  1071. #9456: mkusers script bash errors
  1072. 2017.02, Released February 28th, 2017
  1073. Minor fixes, mainly fixing autobuilder issues.
  1074. Don't use cmake 3.7.x from the build host as it is also
  1075. affected by the RPATH handling issues, and instead build our
  1076. own if needed.
  1077. Updated/fixed packages: assimp, classpath, genimage, mplayer,
  1078. mpv, openocd, python-libconfig, qt5base, qt5quickcontrols,
  1079. vlc, xterm
  1080. 2017.02-rc3, Released February 26th, 2017
  1081. Fixes all over the tree.
  1082. Cmake reverted to version 3.6.3 to workaround regressions
  1083. related to RPATH handling.
  1084. Updated/fixed packages: bctoolbox, berkeleydb, binutils,
  1085. btrfs-progs, classpath, directfb, glibc, gstreamer1,
  1086. gst1-plugins-{base,good,bad,ugly}, gst1-libav,
  1087. gst1-rtsp-server, gst1-validate, gst-omx, htop, libcurl,
  1088. libepoxy, libimxvpuapi, libpcap, libuv, ncurses, openssh,
  1089. oracle-mysql, poco, python, qt5base, qt5webkit, sslh, synergy,
  1090. trousers, uclibc-ng-test, util-linux, vlc, xfsprogs
  1091. Issues resolved (http://bugs.buildroot.org):
  1092. #9251: Shared C++ libraries for Microblaze results in Segmentation...
  1093. #9456: mkusers script bash errors
  1094. #9506: Collectd 5.7.0 fails to build with libcrypt
  1095. #9581: VagrantFile provisioning step fails due to issue with grub-pc
  1096. #9586: usbmount: usbmount slows down the system... to a state of...
  1097. #9616: CMake host packages cannot provide CONF_ENV
  1098. #9641: Need raptor package installed in staging
  1099. #9671: stunnel build error
  1100. 2017.02-rc2, Released February 20th, 2017
  1101. Fixes all over the tree.
  1102. Support for SOURCE_DATE_EPOCH in the toolchain wrapper for
  1103. older gcc versions for reproducible builds has been
  1104. (temporarily) reverted because of licensing compatiblity
  1105. concerns.
  1106. Defconfigs: SD card generation fix for the Udoo Neo board
  1107. Infrastructure to handle .lz compressed tarballs added, and
  1108. affected packages updated to use it.
  1109. Updated/fixed packages: bctoolbox, bind, canelloni,
  1110. cbootimage, ccache, classpath, cups, dbus, ddrescue, directfb,
  1111. ed, erlang, gcc, gdb, glmark2, gstreamer, gstreamer1, hiredis,
  1112. kmod, kmsxx, lcdapi, libasplib, libgpiod, libnss, libraw,
  1113. libv4l, mesa3d-headers, mosquitto, mpd, mpv, musl, ntfs-3g,
  1114. ocrad, openswan, postgresql, qt5base, qt5quickcontrols, redis,
  1115. riemann-c-client, samba4, sunxi-mali, tcping, trousers,
  1116. uclibc, util-linux, vim, wavpack, wget, wiringpi, xfsprogs,
  1117. xserver_xorg-server
  1118. Issues resolved (http://bugs.buildroot.org):
  1119. #8941: Valgrind fails to build with stack protection turned on
  1120. #9291: perl: SysV message queues not configured, even if available
  1121. #9651: libxcb-1.12 built Error
  1122. #9656: util-linux: schedutils doesn't build on target w/o enabl...
  1123. #9666: qt5quickcontrols install fails
  1124. 2017.02-rc1, Released February 11th, 2017
  1125. Fixes all over the tree and new features.
  1126. Infrastructure:
  1127. - numerous improvements to support reproducible builds
  1128. - new waf-package package infrastructure to support packages
  1129. that use the Waf build system. 6 packages converted to
  1130. this infrastructure.
  1131. - add option <pkg>_PREFER_INSTALLER to the perl package
  1132. infrastructure
  1133. Architecture:
  1134. - add support for the OpenRISC CPU architecture
  1135. - merge description of the ARM and ARM64 options, and add
  1136. support for selecting a specific ARM64 core
  1137. Toolchain:
  1138. - major rework of the external toolchain support. It is now
  1139. split into several packages, one per external toolchain,
  1140. and a common infrastructure.
  1141. - important fix for musl to prevent a conflict between musl
  1142. and kernel headers (fixes the build of numerous packages
  1143. with musl)
  1144. - uClibc-ng bumped to 1.0.22, and therefore enable uClibc
  1145. for ARM64, mips32r6 and mips64r6
  1146. - add gdb 7.12.1, and switch to gdb 7.11 as the default
  1147. - Linaro toolchains updated to 2016.11, ARC toolchain
  1148. components updated to arc-2016.09, MIPS Codescape
  1149. toolchains bumped to 2016.05-06, CodeSourcery AMD64 and
  1150. NIOS2 toolchains bumped
  1151. - remove Analog Devices toolchain for the Blackfin
  1152. architecture, remove pre-built musl toolchains from
  1153. musl.codu.org
  1154. New defconfigs: Freescale i.MX23EVK, Qemu OpenRISC emulation,
  1155. Qemu NIOS2 emulation, Grinn chiliBoard, Freescale i.MX6Q
  1156. SabreSD, BeagleBoard X15, OrangePi One, ARC HS38 HAPS
  1157. New packages: angular-websocket, aubio, bctoolbox, darkhttpd,
  1158. ddrescue, easydbus, fakedate, git-crypt, hiredis, ifenslave,
  1159. jsmn, libgpiod, libgsm, linux-syscall-support, mariadb, mimic,
  1160. nginx-dav-ext, nmon, opkg-utils, policycoreutils,
  1161. pru-software-support, python-arrow, python-attrs,
  1162. python-babel, python-bitstring, python-chardet,
  1163. python-constantly, python-flask-babel, python-gunicorn,
  1164. python-incremental, python-jsonschema, python-logbook,
  1165. python-markdown2, python-mbstrdecoder, python-mutagen,
  1166. python-pathpy, python-pudb, python-pyqrcode,
  1167. python-pytablereader, python-setuptools-scm, python-sh,
  1168. python-toml, python-vcversioner, python-whoosh,
  1169. raspberrypi-usbboot, riemann-c-client, rtl8723bs, skalibs,
  1170. sslh, sngrep, ti-cgt-pru, uclibc-ng-test, udpxy, uhttpd,
  1171. upower, ustream-ssl, waf, xlib_libXfont2
  1172. Removed packages: perl-db-file, snowball-hdmiservice,
  1173. snowball-init
  1174. Tooling: addition of a test-pkg script to help contributors
  1175. build test their package.
  1176. Issues resolved (http://bugs.buildroot.org):
  1177. #8946: Valgrind fails to build with stack protection turned on
  1178. #9461: odroidc2 - toolchain Linaro AArch64 2016.11 compile error
  1179. #9466: VIM_REMOVE_DOCS removes rgb.txt
  1180. #9486: xorg-server 1.19 fails to compile for glibc with systemd init (x86_64)
  1181. #9501: eudev fails to build with older kernel headers
  1182. #9526: Embedded NPM fails to start with "no such file or directory" error
  1183. #9541: Platform drivers autoloading from info in device tree does not work
  1184. #9546: seems BR2_PACKAGE_RPI_FIRMWARE_INSTALL_DTB_OVERLAYS do nothing
  1185. #9551: Coreutils fails to build target src/src_libsinglebin_pinky_a-pinky.o
  1186. #9566: [kmod] Compilation fails with uclibc
  1187. #9571: buildroot fails while building opencv for arm64 platform
  1188. #9576: External tree with BR 2016.11 does not work anymore
  1189. #9606: xorg-server cannot build for ARM target
  1190. 2016.11.3, Released March 9th, 2017
  1191. Important / security related fixes.
  1192. Updated/fixed packages: bind, dbus, gnutls, imagemagick,
  1193. lcms2, libcurl, ntfs-3g, ntp, openssl, php, quagga, redis,
  1194. squid, stunnel, tcpdump, vim, wavpack, wireshark, xlib_libXpm
  1195. 2016.11.2, Released January 25th, 2017
  1196. Important / security related fixes.
  1197. A fix for BR2_EXTERNAL trees referenced using relative paths,
  1198. which broke in 2016.11.
  1199. Updated/fixed packages: bind, docker-engine, gd, gnutls, go,
  1200. imagemagick, irssi, libpng, libvncserver, musl, opus, php,
  1201. php-imagick, rabbitmq-server, runc, wireshark,
  1202. Issues resolved (http://bugs.buildroot.org):
  1203. #9576: External tree with BR 2016.11 does not work anymore
  1204. 2016.11.1, Released December 29th, 2016
  1205. Important / security related fixes.
  1206. Updated/fixed packages: apache, cryptopp, docker-engine,
  1207. dovecot, exim, gdk-pixbuf, libcurl, libupnp, links, monit,
  1208. nodejs, openssh, php, python, python-bottle, samba4, squid,
  1209. uboot, vim, wireshark, xorg-server uboot
  1210. Issues resolved (http://bugs.buildroot.org):
  1211. #9466: VIM_REMOVE_DOCS removes rgb.txt
  1212. 2016.11, Released November 30th, 2016
  1213. Minor fixes.
  1214. Updated/fixed packages: bzip2, gcc, jasper, sane-backends,
  1215. uboot, uclibc
  1216. Issues resolved (http://bugs.buildroot.org):
  1217. #9451: packages/postgresql/postgresql.mk contains wrong POST...
  1218. 2016.11-rc3, Released November 28th, 2016
  1219. Fixes all over the tree, including a number of security fixes.
  1220. The move from fakeroot to pseudo unfortunately brought a
  1221. number of issues. The SELinux issue described in #9386 which
  1222. triggered the move to pseudo has been investigated further and
  1223. a workaround implemented and the pseudo changes reverted.
  1224. Linux kernel: update default to 4.8.11.
  1225. Defconfigs: Updates/fixes for imx28ek, mx6udoo, imx6ulpico,
  1226. olimex a20 olinuxino lime mali, roseapplepi, synopsis aarch64
  1227. vdk, axs101, axs103 and hs38 smd vdk.
  1228. Updated/fixed packages: autossh, chrony, dosfstools,
  1229. dtv-scan-tables, e2fsprogs, gcc, gdb, gnuchess, gnuradio,
  1230. gpsd, gst1-plugins-bad, gst1-plugins-good, imagemagick,
  1231. kvm-unit-tests, libfribi, libuv, mesa3d, mpfr, mplayer, mpv,
  1232. ntp, ola, olsr, openblas, openjpeg, openssh, postgresql,
  1233. ptpd2python3, qemu, qextserialport, qt5base, quagga, xqwt,
  1234. taskd, tiff, tremor, trousers, udisks, uclibc, wireshark,
  1235. xapp_xload, xenomai, xmlstarlet
  1236. Issues resolved (http://bugs.buildroot.org):
  1237. #9386: ubinize fails with or without custom config
  1238. #9431: A misspelling
  1239. #9446: make raspberrypi3_defconfig compilation failure
  1240. 2016.11-rc2, Released November 13th, 2016
  1241. Fixes all over the tree.
  1242. Architecture: add support for MIPS XBurst cores; remove MIPS
  1243. support for M5100 cores.
  1244. Updated/fixed packages: mesa3d, lttng-babeltrace, tinyalsa, pseudo,
  1245. czmq, libxml2, makedevs, binutils, kvm-unit-tests, libnss, privoxy,
  1246. qemu, ser2net, net-tools, ffmpeg, assimp, libmpeg2, ccache, mpv,
  1247. libxslt, python, python3, php, valgrind, guile, domoticz, efl,
  1248. jasper, kvmtool, go, wget, sane-backends, weston, tinymembench,
  1249. strace, openjpeg, lcms2, quota.
  1250. Linux kernel: update default to 4.8.7.
  1251. CMake support: fix cmake wrapper to properly pass NDEBUG flag.
  1252. Filesystems: use a wrapper to pseudo, to better mimick the behaviour
  1253. of fakeroot; makedevs no longer breaks of the destination already
  1254. exists and is of the correct type/major/minor.
  1255. Defconfigs: a few legacy and broken defconfigs have been removed
  1256. because they now fail to build: kb9202_defconfig, mini2440_defconfig,
  1257. freescale_p2020ds, qmx6, calao*, atmel_sama5d4ek. Other defconfigs
  1258. have been updated: nanopi-neo, olimex_a20_olinuxino_lime_mali,
  1259. armadeus_apf51, armadeus_apf28, freescale_imx31_3stack, ci20,
  1260. olimex_a20_olinuxino_lime2, atmel_at91sam9260eknf,
  1261. atmel_at91sam9rlek, atmel_at91sam9g20dfc, atmel_at91sam9g45m10ek,
  1262. atmel_sama5d3xek.
  1263. 2016.11-rc1, Released November 3rd, 2016
  1264. Fixes all over the tree and new features.
  1265. It is now possible to specify multiple BR2_EXTERNAL
  1266. directories. The required files in a BR2_EXTERNAL directory
  1267. have changed to accomodate this feature. Refer to the
  1268. documentation for details of how to update them. External
  1269. trees now have a name and a description. Also, it is possible
  1270. to override a defconfig in the external tree.
  1271. The default skeleton now uses UID 65534 for the "nobody"
  1272. user instead of UID 99, like most distros do. See
  1273. https://lwn.net/Articles/695478/ for a complete discussion.
  1274. Programs and configuration files that explicitly refer to UID
  1275. 99 will have to be updated.
  1276. When the build environment already has a suitable cmake version
  1277. (3.1 or later), that one will be used instead of building
  1278. host-cmake. This can speed up the build significantly.
  1279. The ExtUtils::MakeMaker perl module is now required in the
  1280. build environment.
  1281. An additional check is done during the build that files are
  1282. not installed in the output directory within the output
  1283. directory. This happens e.g. when the target directory is
  1284. contained both in --prefix and in DESTDIR. The build will
  1285. terminate with an error message that specifies which package
  1286. and which file caused the failure.
  1287. The concept of "deprecated packages" and the BR2_DEPRECATED
  1288. option have been removed. Instead, packages are removed
  1289. immediately. Packages are only removed when they don't work
  1290. for some reason. If you still need a removed package and
  1291. you have a solution for the problem(s) that caused the
  1292. removal, please contribute it.
  1293. Architecture: support for sh64 removed, improved support for
  1294. MIPS core selection.
  1295. Toolchain: support for musl powerpc64le, mips64 and mipsr6
  1296. toolchains, ARC toolchain components updates, gcc 6.x series
  1297. bumped to 6.2.0, default binutils version switched to 2.26,
  1298. default gcc version switched to gcc 5.x, Linaro toolchains
  1299. updated, uclibc-ng bumped to 1.0.19. GCC is now always built
  1300. with TLS support. Checking of unsafe compiler options (that
  1301. point to host directories) has been extended with -isystem,
  1302. -idirafter and -iquote.
  1303. Package infrastructure: new variable $(PKG)_DL_OPTS, addition
  1304. of <pkg>-show-rdepends to list reverse dependencies, and
  1305. <pkg>-graph-rdepends to graph reverse dependencies. Linux tools
  1306. are now in a separate linux-tools package instead of in the
  1307. kernel build. Fakeroot has been replaced by pseudo.
  1308. CMake support: the toolchainfile.cmake file now provides a
  1309. definition of the CMAKE_BUILD_TYPE variable. The
  1310. toolchainfile.cmake also no longer forces the compiler/linker
  1311. flags defined by Buildroot.
  1312. New defconfigs: WaRP7, Solidrun's MX6 Cubox/Hummingboard,
  1313. TS-4900, Grinn's liteBoard, Udoo MX6Q/DL, Qemu ARM noMMU,
  1314. BeagleBone Qt5 demo, Digilent Zybo, FriendlyARM Nanopi NEO.
  1315. New packages: arm-trusted-firmware, amd-catalyst, atop, aufs,
  1316. aufs-util, fwts, gst1-rtsp-server, libglob, libite, mfgtools,
  1317. mksh, motion, paho-mqtt-c, php-amqp, pseudo, python-couchdb,
  1318. python-crcmod, python-cssutils, python-docutils,
  1319. python-futures, python-mwclient, python-mwscrape,
  1320. python-mwscrape2slob, python-pyelftools, python-pyicu,
  1321. python-pylru, python-pyqt5, python-requests-toolbelt,
  1322. python-simpleaudio, python-slob, rabbitmq-server, shapelib,
  1323. vdr, vdr-plugin-vnsiserver, vexpress-firmware, xvisor, iio and
  1324. gpio linux tools.
  1325. Removed packages: binutils 2.24, fakeroot, gcc 4.7, ipkg,
  1326. kodi-addon-xvdr, libgail, sstrip, torsmo, webkit, webkitgtk24,
  1327. wvdial, wvstreams.
  1328. Documentation: the list of packages that was present in the
  1329. Buildroot manual has been removed.
  1330. Legal info: the "licenses.txt" file that concatenates all
  1331. license texts is no longer generated - it was not considered
  1332. useful. The manifest.csv contains an empty cell instead of
  1333. "not saved" when no license file is available.
  1334. Other: addition of a DEVELOPERS file listing developers taking
  1335. care of packages or architectures.
  1336. Issues resolved (http://bugs.buildroot.org):
  1337. #7802: host-python build hangs compiling getbuildinfo.o
  1338. #8206: mplayer uses host xorg development files
  1339. #8516: mkcubiecard.sh uses outdated sfdisk switch -D
  1340. #8536: Building sudo with PAM results in unusable sudo
  1341. #8646: check-host-rpath script returns false positives when rpath
  1342. contains symlink
  1343. #8696: xdriver_xf86-input-mouse install header files in target
  1344. directory
  1345. #8811: rp-pppoe - generated scripts commands use HOST pathnames,
  1346. not necessarily TARGET
  1347. #8846: Orphaned/missing toolchain borks eclipse plugin
  1348. #8856: python tornado runtime wasn't met on buildroot 2016.02
  1349. #8901: gcc failes to build if fortran is enabled
  1350. #8916: LDFLAGS pass to openssh
  1351. #8941: "ls" of an NFSv4 share only works when pumped through strace
  1352. #8946: Valgrind fails to build with stack protection turned on
  1353. #9021: Kodi - Broken: Illegal instruction (core dumped)
  1354. #9096: rootfs.ubi not created
  1355. #9111: glibc 2.23: libmvec.so not copied
  1356. #9176: minnowboard : USB not mounted
  1357. #9196: raspberry pi 3 default build seem broken
  1358. #9201: Permission denied make: *** [core-dependencies] Error 126 in
  1359. Buildroot-2015.08.1
  1360. #9216: log4cpp package build fails to build within install
  1361. #9221: Kodi needs "Python .py and .pyc support" otherwise it crashes when
  1362. pressing buttons.
  1363. #9229: Firefly boot fails with: "failed to find part:boot"
  1364. #9256: [Config file] New device: Odroid-U2/U3
  1365. #9296: Buildroot Fails on applying patches
  1366. #9301: U-boot fails to build with default zynq_zed_defconfig configuration
  1367. #9316: U-boot fails to build if libssl-dev is not installed
  1368. #9321: Vanilla libcrypt++ v5.6.3 doesn't allow to work Nvidia Tegra's
  1369. flash utility (tegrarcm)
  1370. #9326: Odroid-C2 build results in non-bootable image
  1371. #9336: Improve iconv support for external toolchain based builds
  1372. #9356: gdb package
  1373. #9366: no link rootfs.ext4 -> rootfs.ext2
  1374. #9371: openssl: download failes with "Only allow downloads from primary
  1375. download site" + local server
  1376. #9381: check-host-rpath issues
  1377. #9386: ubinize fails with or without custom config
  1378. 2016.08, Released September 1st, 2016
  1379. Minor fixes.
  1380. Toolchain: ARC tools updated to arc-2016.09-eng010.
  1381. Updated/fixed packages: libshout, luajit, mpd, mplayer
  1382. Issues resolved (http://bugs.buildroot.org):
  1383. #7520: CodeSourcery toolchain ARM: C++11 std::exception_ptr..
  1384. #8341: Getting EGL Error: Could not create the egl surface:..
  1385. #9121: gst1-imx for i.MX6 compile failed, cannot find PXP, ..
  1386. 2016.08-rc3, Released August 29th, 2016
  1387. Fixes all over the tree.
  1388. Toolchain: C++ support for the internal blackfin toolchain
  1389. re-enabled.
  1390. Architecture: Default to bf532 CPU variant for blackfin,
  1391. Fix flat one memory region support for m68k and disable flat
  1392. seperate data support because of compatibility issues.
  1393. Defconfigs: Minnowboard and Raspberrypi: Fix errors with
  1394. post-build scripts when systemd is used.
  1395. Zynq microzed/zc706/zed: Fix u-booot configuration.
  1396. netbsd-queue package extended and renamed to
  1397. musl-compat-headers. With this, a number of musl compatibility
  1398. patches are no longer needed.
  1399. Updated/fixed packages: aircrack-ng, android-tools, babeld,
  1400. bcusdk, binutils, boa, busybox, connman, cpupower,
  1401. docker-engine, domoticz, elf2flt, ffmpeg, fwup, gcc,
  1402. glib-networking, gnupg, hplip, igd2-for-linux, imagemagick,
  1403. imx-uuc, iputils, jack2, kismet, kmsxx, libaio, libamcodec,
  1404. libconfuse, libffi, libfreeimage, libgcrypt, libgpg-error,
  1405. libiio, libraw, libsepol, libserialport, libxmlrpc, linknx,
  1406. linux-pam, lirc-tools, lldpd, logrotate, lshw, musl, ncurses,
  1407. neon, nettle, norm, ntfs-3g, openblas, openmpi, openswan,
  1408. pinentry, pixman, protobuf, python-meld3, qlibc, qt, qt5base,
  1409. quagga, rpcbind, rt-tests, runc, sane-backends, sconeserver,
  1410. squeezelite, stella, tftpd, tinycbor, tinydtls, trace-cmd,
  1411. trousers, tstools, uboot-tools, uclibc, ulogd, ustr, vlc,
  1412. webkitgtk, wireshark, xdriver_xf86-video-intel
  1413. Issues resolved (http://bugs.buildroot.org):
  1414. #9101: Error on support/download/git with system git older than 1.8.4
  1415. #9181: Compiling linux kernel fails if BR2_LINUX_KERNEL_TOOL_CPU..
  1416. 2016.08-rc2, Released August 17th, 2016
  1417. Fixes all over the tree.
  1418. Toolchain: disable broken C++ support for internal blackfin
  1419. toolchains, ARC toolchain bumped to arc-2016.09-eng008 (GCC 6)
  1420. to fix various issues.
  1421. System: Zoneinfo is available for the musl C library as well.
  1422. Updated/fixed packages: am33x-cm3, axel, barebox, bdwgc,
  1423. blktrace, cairo, dante, enlightenment, fbterm, ffmpeg, flex,
  1424. fontconfig, gcc, gmp, gnuplot, gnuradio, gst1-imx, hidapi,
  1425. inotify_tools, iproute2, kmsxx, lftp, libaio, libcofi,
  1426. libical, libpjsip, libsidplay2, libunwindow, libxml2,
  1427. linux-zigbee, lttng-libust, mpv, mtd, ncdu, netplug, ntp,
  1428. openblas, openipmi, owfs, php, poco, procps, qt, quota,
  1429. sg3_utils, spidev_test, systemd-bootchart, thrift,
  1430. uboot-tools, uclibc, webrtc-audio-processing, wayland, weston,
  1431. xdriver_xf86-video-savage, xserver_xorg-server, xen
  1432. Issues resolved (http://bugs.buildroot.org):
  1433. #9136: make graph-size fails with "ValueError: too many values to..
  1434. #9151: qt: fix build with ALSA >= 1.1.x
  1435. #9156: qt: Fix missing runtime Qt3Support dependency
  1436. #9161: modsetting patch not applied to xserver 1.18.4
  1437. #9166: Missing overlays directory in VFAT image for raspberry pi 3
  1438. 2016.08-rc1, Released August 6th, 2016
  1439. Fixes all over the tree and new features.
  1440. Toolchain: Fortran support added. eglibc support removed, musl
  1441. support no longer experimental. Blackfin and Microblaze
  1442. support for internal uClibc-ng toolchain, m68k/coldfire
  1443. improvements. The check for unsafe (build host) directories
  1444. access (/usr/include and /usr/lib) is now enabled by default.
  1445. Unused locales are now purged by default to save space (and
  1446. the default list of locales shrunk). The option to control
  1447. this has now moved from the toolchain menu to system
  1448. configuration.
  1449. Legal info improvements: sources are now hardlinked instead of
  1450. copied if possible to save space. Patches and extra downloads
  1451. are also saved.
  1452. An experimental configuration knob (BR2_REPRODUCIBLE) has been
  1453. added to make the builds more reproducible (E.G. less
  1454. differences in the binary output between builds of the same
  1455. configuration). This is still work in progress.
  1456. An option to execute a custom script inside the fakeroot
  1457. environment used to the generate the filesystem (E.G. to tweak
  1458. permissions or similar) has been added.
  1459. Git support now supports git submodules if
  1460. <pkg>_GIT_SUBMODULES is enabled.
  1461. Hash files for integritry validation have been added for all
  1462. packages.
  1463. Scanpypi utility to help creating packages from the Python
  1464. package index (pypi) has been added.
  1465. The makedevs utility now has support for adding file
  1466. capabilities using extended attributes.
  1467. New defconfigs: Arcturus uCP1020, Atmel sama5d{2,3,4} xplained
  1468. development configs, Blackfin GDB simulator, Linksprite
  1469. pcDuino, Minnow Board Max graphical demo, NXP i.MX25 PDK,
  1470. i.MX51 EVK, i.MX6UL Pico, i.MX7 sabresd, QEMU MIPS32r6{,el} and
  1471. MIPS64r6{,el} malta, Roseapple Pi, Samsung Snow chromebook,
  1472. Toradex Apalis i.MX6 COM, TS-4800, x86-64 PC BIOS and EFI
  1473. demos. A number of defconfigs have been updated and extended
  1474. to generate SD card images. Synopsys HS38 VDK defconfig removed.
  1475. New packages: 4th, acpica, acpitool, alljoyn, alljoyn-base,
  1476. alljoyn-tcl, alljoyn-tcl-base, argparse, babeld, batman-adv,
  1477. circus, dante, docker-containerd, docker-engine, domoticz,
  1478. efibootmgr, efivar, ficl, fwup, gsettings-desktop-schemas,
  1479. gtksourceview, gupnp-dlna, gupnp-tools, igd2-for-linux,
  1480. jemalloc, kmsxx, lapack, lft, libaacs, libamcodec, libbdplus,
  1481. libcoap, libdvdcss, libebur128, libfastjson, libminiupnpc,
  1482. libnatpmp, libpqxx, libuio, libvdpau, log4cpp, minissdpd,
  1483. mxsldr, nginx-nasxi, nginx-upload, ninja, nodm, odroid-mali,
  1484. odroid-scripts, omxplayer, openblas, openmpi, openzwave,
  1485. p7zip, pdbg, python-argh, python-dataproperty,
  1486. python-dateutil, python-dialog3, python-dicttoxml,
  1487. python-dominate, python-engineio, python-flask-jsonrpc,
  1488. python-flask-login, python-humanize, python-pathtools,
  1489. python-pathvalidate, python-pillow, python-prompt-toolkit,
  1490. python-pytablewriter, python-pytz, python-scapy3k,
  1491. python-sdnotify, python-socketio, python-tomako,
  1492. python-ubjson, python-u-msgpack, python-watchdog,
  1493. python-wcwidth, python-xlrd, python-xlsxwriter,
  1494. python-xlutils, python-xlwt, rs485conf, runc, sdl2_gfx,
  1495. sdl2_image, sdl2_ttf, shellinabox, sphinxbase, stella,
  1496. supertuxkart, systemd-bootchart, tekui, terminology, tinycbor,
  1497. tinydtls, ti-sgx-demos, ti-sgx-km, ti-sgx-um, tunctl, wavemon,
  1498. wiringpi, xen
  1499. Deprecated packages: ipkg, sstrip
  1500. Removed packages: sunxi-mali-prop
  1501. Issues resolved (http://bugs.buildroot.org):
  1502. #8931: segment fault when compile argp-help.c using aarch64-bu...
  1503. #8966: eglfs error. buildroot don't compile the library libeglfs.so
  1504. #8971: build for beaglebone fails
  1505. #8986: qt5imageformats fails to build on AArch64
  1506. #8991: grub2 fails to compile
  1507. #9001: Nodejs option not available
  1508. #9006: gcc with c++ support v4 and v5 fail to compile on fedora 24
  1509. #9016: arceb-buildroot-linux-uclibc ld uses incorrect default format
  1510. #9066: 8139TOO - faulty behaviour
  1511. #9086: Syntax Error (missing ")" in boot/uboot/uboot.mk on line 203)
  1512. #9091: U-Boot fails to boot with large ramdisk
  1513. 2016.05, Released May 31st, 2016
  1514. Minor fixes.
  1515. External toolchain: Fix for symlink handling when copying
  1516. links to target.
  1517. Updated/fixed packages: gcc, grantlee, gst-ffmpeg,
  1518. ipsec-tools, iptraf-ng, libcurl, libdrm, libsigsegv, ltris,
  1519. lttng-babeltrace, mbedtls, mesa3d, moarvm, mplayer, mtools,
  1520. net-tools, openpowerlink, pulseview, rpm, tinyalsa,
  1521. xdriver_xf86-video-fbturbo, xserver_xorg-server
  1522. 2016.05-rc3, Released May 26th, 2016
  1523. Fixes all over the tree.
  1524. Tweaks for SSP handling for external toolchains.
  1525. Updated/fixed packages: aircrack-ng, bluez5_utils, connman,
  1526. cups, erlang-p1-stringprep, expat, ffmpeg, flann, flannel, go,
  1527. gst1-libav, hidapi, hplip, iptraf-ng, jamvm, kodi,
  1528. kodi-screensaver-matrixtrails, libcurl, libepoxy, libgpgme,
  1529. libsemanage, libxslt, liquid-dsp, ltris, lxc, mesa3d, midori,
  1530. mpg123, mtr, openpgm, openpowerlink, oprofile, php,
  1531. postgresql, putty, python-service-identity, python-treq,
  1532. qlibc, qt5serialbus, ruby, stress-ng, strongswan, time, tinc,
  1533. ustr, valgrind, webkitgtk, libxml2, xorriso,
  1534. xserver_xorg-server
  1535. Issues resolved (http://bugs.uclibc.org):
  1536. #8936: Aircrack-ng - Alot of missing dependencies
  1537. 2016.05-rc2, Released May 17th, 2016
  1538. Fixes all over the tree.
  1539. Rootfs overlay handling now refuses to overwrite
  1540. /{usr,bin,sbin,lib} symlinks from BR2_ROOTFS_MERGED_USR option
  1541. even if these directories are present in the overlay.
  1542. External toolchain: Unbreak user provided libraries deployment
  1543. (BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS) handling after refactoring.
  1544. QEMU coldfire: Fix for signal handling kernel issue, enable
  1545. networking support.
  1546. Updated/fixed packages: android-tools, assimp, boost, gcc,
  1547. glibc, glmark2, gmrender-resurrect, go, go-bootstrap, iputils,
  1548. jack2, kodi-screensaver-asterwave, kodi-screensaver-rsxs,
  1549. kodi-visualisation-shadertoy, libarchive, libinput, libpjsip,
  1550. mali-t76x, mtr, nginx, opencv, openvpn, python-coherence,
  1551. qt5multimeda, quagga, samba4, sg3-utils, stress-ng, turbolua
  1552. 2016.05-rc1, Released May 10th, 2016
  1553. Fixes all over the tree and new features.
  1554. Architectures: new ARM variants: Cortex A17 and M4, improved
  1555. nonmmu (cortex-M) support, m68k has been re-enabled with
  1556. support for ColdFire. For x86, support for the i386 variant
  1557. has been dropped.
  1558. Toolchain: Add GCC 6 support, remove GCC 4.5, mark GCC 4.7 as
  1559. deprecated. Go programming language support, Add Binutils 2.26
  1560. support. Old Sourcery PowerPC external toolchains removed,
  1561. Sourcery MIPS 2016.06-8, AMD64 2015.11-139, NiosII 2015.11-130
  1562. added, Linaro ARM/ARMeb/Aarch64 toolchains updated.
  1563. New defconfigs: Firefly RK3288, Boundary Devices i.MX7 Nitrogen7,
  1564. STM32F429 and STM32F469 Discovery boards, Hardkernel ODROID-C2,
  1565. Raspberry Pi Zero and Raspberry Pi 3. Some Qemu defconfigs were
  1566. added for m68k, eXtensa-nommu and ColdFire.
  1567. Linux: use zImage by default on ARM, subversion repository
  1568. support (for u-boot as well).
  1569. New packages: aer-inject, android-tools, cannelloni,
  1570. cbootimage, cgroupfs-mount, connman-gtk, crudini, dt,
  1571. gmrender-resurrect, flannel, font-awesome, freeswitch, go,
  1572. go-bootstrap, gr-osmosdr, granite, i7z, imx-uuc,
  1573. kodi-adsp-basic, kodi-adsp-freesurround,
  1574. kodi-audiodecoder-opus, kodi-pvr-hdhomerun,
  1575. kodi-screensaver-asterwave, kodi-screensaver-cpblobs,
  1576. kodi-screensaver-matrixtrails, kodi-screensaver-planestate,
  1577. kodi-screensaver-rsxs, kodi-visualisation-fishbmc,
  1578. kodi-visualisation-fountain, kodi-visualisation-goom, libgee,
  1579. libimxvpuapi, libpjsip, libtomcrypt, libtommath, libusbgx,
  1580. lksctp-tools, mali-t76x, mkpimage, mpv, msr-tools, nload,
  1581. norm, nvme, owfs, pound, privoxy, procrank_linux, putty,
  1582. python-autobahn, python-characteristic, python-crossbar,
  1583. python-cryptography, python-iniparse, python-iowait,
  1584. python-lmdb, python-pexpect, python-ptyprocess,
  1585. python-pyasn-modules, python-pygments, python-pymysql,
  1586. python-pynacl, python-pyopenssl, python-pysocks,
  1587. python-pytrie, python-rpi-gpio, python-service-identity,
  1588. python-setproctitle, python-shutilwhich, python-treq,
  1589. python-txaio, python-ujson, python-wsaccel, qt5canvas3d,
  1590. qt5location, qt5quickcontrols2, qt5serialbus, qt5tools,
  1591. raptor, scrub, taskd, tegrarcm, turbolua, valijson,
  1592. wayland-protocols, webkitgtk, wilc1000-firmware, wpan-tools,
  1593. xdriver_xf86-video-amdgpu
  1594. Removed packages: foomatic-filters, python-m2crypto,
  1595. qt5quick1, qt5webkit-examples, samba, xdriver_xf86-input-void
  1596. Issues resolved (http://bugs.buildroot.org):
  1597. #6830: Qt5: no fonts are installed
  1598. #7562: musl buildroot-toolchain and BR2_MIPS_SOFT_FLOAT break
  1599. #7580: Invalid filesystem in Pandaboard defconfig
  1600. #8346: wf111 package removes all kernel module dependencies
  1601. #8436: xserver_xorg-server Segmentation fault
  1602. #8736: IPV6 forced on in busybox
  1603. #8746: At startup system stops with 'cannot set terminal proces..
  1604. #8751: make fail [fio does not build on sh]
  1605. #8766: Compiling host-gcc-final-4.9.3 broken on i386
  1606. #8771: make savedefconfig modifies sources
  1607. #8781: Unable to build uboot for imx28evk
  1608. #8786: gdb fails to build with xz and expat support at the same
  1609. #8801: Compilation of Buildroot 2016.2 for Raspberry Pi with...
  1610. #8806: Buildroot 2016.2 for Raspberry Pi requires that ext4...
  1611. #8836: Can't select Vim in menuconfig
  1612. #8851: Make sure fio can compile with libaio support if it...
  1613. #8861: With buildroot 2016.02 trying to build for corei7-avx
  1614. fails while trying to build host-binutils
  1615. #8866: Making an USB flash bootable with extlinux build with
  1616. buildroot does not work
  1617. 2016.02, Released March 1st, 2016
  1618. Minor fixes, mostly security related.
  1619. Circular dependency issue with same-as-kernel linux-headers
  1620. option fixed.
  1621. Updated/fixed packages: bluez5_utils, heirloom-mailx,
  1622. imx-gpu-viv, kodi-pvr-argustv, kodi-pvr-mediaportal-tvserver,
  1623. kodi-pvr-nextpvr, libfcgi, openssl, pifmrds, powerpc-utils,
  1624. python-m2crypto, slang, sox, squid, tn5250, xerces, zsh
  1625. 2016.02-rc3, Released February 27th, 2016
  1626. Fixes all over the tree.
  1627. Defconfigs: Ensure EABIhf is correctly enabled for ARM cores
  1628. where VFP is optional (but present on the specific hw). Fix
  1629. ARM variant selection for freescale_imx31_3stack_defconfig.
  1630. Ensure tarballs of downloaded git trees do not contain a
  1631. timestamp.
  1632. Clarify license of patches in COPYING.
  1633. Updated/fixed package: avahi, binutils, cairo, can-festival,
  1634. chrony, cifs-utils, dnsmasq, dvdauthor, e2fsprogs, efl,
  1635. erlang-rebar, eudev, fbterm, gawk, gnupg2, gnuradio, gpm,
  1636. gst1-plugins-good, hostapd, imagemagick, iproute2, iputils,
  1637. jack2, kexec, kismet, lftp, libarchive, libeXosip2, libfm,
  1638. libglib2, libsoil, libssh, libssh2, libuci, links, lshw, lxc,
  1639. mediastreamer, mono, mraa, mutt, nfs-utils, numactl, ofono,
  1640. omniorb, openipmi, openobex, patch, pax-utils, perf,
  1641. pulseaudio, pure-ftp, qhull, qt, quagga, quota, sdl_sound,
  1642. shairport-sync, spice, sysklogd, syslog-ng, trace-cmd,
  1643. trousers, tvheadend, util-linux, vim, webkitgtk24, wireshark,
  1644. wpa_supplicant, xerces, zsh
  1645. Issues resolved (http://bugs.uclibc.org):
  1646. #8651: libMonoPosixHelper.so wrong link reference in buildroot..
  1647. 2016.02-rc2, Released February 18th, 2016
  1648. Fixes all over the tree.
  1649. Toolchain: PR19405 backport to binutils 2.25.1 to fix NIOS ld
  1650. crash, backport of Xtensa .init/.fini literals handling.
  1651. glibc security patches for CVE-2014-8121, CVE-2015-1781
  1652. and CVE-2015-7547.
  1653. Defconfigs for Acmesystems Arietta g25 added.
  1654. Updated/fixed packages: binutils, boost, chrony, dovecot,
  1655. e2fsprogs, fio, gdb, glibc, graphite2, icu, kbd, libbsd,
  1656. libcue, libgcrypt, libraw, links, mc, mosquitto, nodejs,
  1657. postgresql, pptp-linux, pulseaudio, samba4, spice, squid,
  1658. sysklogd, systemd, tiff, uclibc, ulogd, util-linux, valgrind.
  1659. Issues resolved (http://bugs.uclibc.org):
  1660. #8576: Building embedded Linux for Atmel SAMA5D4_Xplained...
  1661. #8606: Problem compiling on Arch Linux
  1662. #8681: kbd 2.0.3 does not build on rpi
  1663. 2016.02-rc1, Released February 10th, 2016
  1664. Fixes all over the tree and new features.
  1665. Toolchain: Support for GCC 5.3.x. ARC toolchain updated to
  1666. arc-2015.12. Support for legacy uClibc dropped, default to
  1667. uClibc-ng instead. Added sys/queue.h implementation for MUSL
  1668. for compatibility. Updated versions of Code sourcery and
  1669. Linaro toolchains. MIPS Codescape toolchains added. Version
  1670. selection for preconfigured external toolchains removed.
  1671. New Defconfigs: ARM Juno r0/r1 development boards, Freescale
  1672. i.MX6UL Evaluation Kit, Intel Galileo Gen 2, Orange Pi PC.
  1673. A number of defconfigs have been extended to generate complete
  1674. system images using genimage.
  1675. Linux: Automatically patch timeconst.pl for <3.9 kernels,
  1676. which isn't compatible with modern perl versions, breaking the
  1677. build when building on recent (Fedora 23, Debian
  1678. Testing/Unstable, ..) distributions.
  1679. Makedevs utility now accepts textual (non-numerical) user and
  1680. group names.
  1681. Vagrant file to easily setup a working development environment
  1682. in a VM has been added.
  1683. Size-stats-compare script to compare rootfs sizes between
  1684. builds has been added.
  1685. Infozip package renamed to zip. EFL packages restructured.
  1686. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  1687. angularjs, apache, apr, argp-standalone, armadillo, arptables,
  1688. at, atk, audiofile, aumix, autoconf-archive, avahi, bash, bc,
  1689. bcache-tools, bdwgc, beecrypt, bind, binutils, bluez5_utils,
  1690. bluez_utils, bonnie, boost, busybox, cairo, cdrkit, chrony,
  1691. clamav, cmake, collectd, connman, coreutils, cppcms, crda,
  1692. cryptodev-linux, cryptsetup, cups, cwiid, cxxtest, dbus,
  1693. dbus-cpp, dbus-glib, debianutils, dhcp, dhcpcd, dhrystone,
  1694. dillo, directfb, directfb-examples, dmraid, dnsmasq, doom-wad,
  1695. dovecot, dovecot-pigeonhole, dropbear, dtv-scan-tables,
  1696. dvb-apps, dvbsnoop, ecryptfs-utils, eigen, ejabberd,
  1697. elementary, elfutils, enlightenment, erlang, espeak, eudev,
  1698. eventlog, exfat, exfat-utils, exiv2, expedite, faifa,
  1699. fakeroot, fastd, fbgrab, fetchmail, ffmpeg, findutils, fio,
  1700. firmware-imx, flann, flashrom, flite, flot, fmlib, freerdp,
  1701. freescale-imx, freetype, gauche, gawk, gcc, gcc-final, gcr,
  1702. gdb, gdk-pixbuf, geoip, gesftpserver, gettext, giflib, git,
  1703. glibc, glibmm, glog, gmp, gnupg, gnupg2, gnutls, gob2, gpsd,
  1704. gptfdisk, grep, gst1-libav, gst1-plugins-{bad,base,good,ugly},
  1705. gst-ffmpeg, gst-plugins-{bad,base,good,ugly}, gstreamer,
  1706. gstreamer1, guile, gvfs, gzip, harfbuzz, haserl, hiawatha,
  1707. hostapd, hplip, icu, ifupdown, imagemagick, imx-gpu-viv,
  1708. imx-kobs, imx-lib, input-tools, intel-microcode, iperf3,
  1709. ipmitool, iproute2, iprutils, ipsec-tools, ipset, iptables,
  1710. iputils, irda-utils, irssi, iucode-tool, jack2, janus-gateway,
  1711. jpeg-turbo, jquery-datetimepicker, jquery-keyboard,
  1712. jquery-sparkline, jquery-ui, jquery-ui-themes,
  1713. jquery-validation, json-c, kbd, kernel-module-imx-gpu-viv,
  1714. keyutils, kmod, knock, kodi, lcdproc, lcms2, leafnode2,
  1715. leafpad, libass, libatomic_ops, libbroadvoice, libbsd,
  1716. libcap-ng, libcdaudio, libcue, libcurl, libdrm, libecore,
  1717. libedbus, libedit, libedje, libeet, libefreet, libeina,
  1718. libeio, libelementary, libembryo, libepoxy, libethumb, libev,
  1719. libevas, libevas-generic-loaders, libevdev, libevent, libffi,
  1720. libfm, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  1721. libftdi, libfuse, libgail, libglew, libglib2, libgtk2,
  1722. libgtk3, libgudev, libhttpparser, libidn, libinput, libiscsi,
  1723. libjpeg, liblinear, libmbim, libmicrohttpd, libndp, libnspr,
  1724. libnss, liboauth, liboping, libpciaccess, libplist, libpng,
  1725. libraw, libraw1394, librsvg, libseccomp, libsecret,
  1726. libserialport, libsigc, libsigrok, libsigrokdecode,
  1727. libsndfile, libsoc, libsodium, libsoup, libssh2, libsvg,
  1728. libsvg-cairo, libtasn1, libtirpc, libtorrent, libungif,
  1729. libunwind, libupnpp, liburcu, libuv, libv4l, libva,
  1730. libva-intel-driver, libvips, libvncserver, libxml2, libxmlpp,
  1731. lightning, lighttpd, linknx, linux-firmware, linux-fusion,
  1732. linux-headers, liquid-dsp, lirc-tools, live555, lm-sensors,
  1733. lockdev, lshw, ltp-testsuite, ltrace, lttng-babeltrace,
  1734. lttng-libust, lttng-modules, lttng-tools, lua, luabitop,
  1735. luarocks, luv, lvm2, lxc, makedevs, mc, memcached, memtest86,
  1736. mesa3d, mesa3d-demos, mesa3d-headers, micropython,
  1737. micropython-lib, minicom, minidlna, mjpg-streamer, mke2img,
  1738. moarvm, modem-manager, mongoose, mongrel2, monkey, mono,
  1739. monolite, mosh, mosquitto, mpd, mplayer, msgpack, mtdev2tuio,
  1740. musepack, musl, mysql, nano, nasm, nbd, neard, netatalk,
  1741. netsnmp, nettle, net-tools, network-manager, nfs-utils, nginx,
  1742. nmap, nodejs, ntfs-3g, ntp, numactl, nut, nvidia-driver,
  1743. odhcp6c, ofono, ola, olsr, omniorb, opencv, opencv3, openipmi,
  1744. openldap, openntpd, openobex, openocd, openpgm,
  1745. open-plc-utils, openpowerlink, openssh, openssl, openswan,
  1746. openvpn, opkg, oprofile, opus, opusfile, p11-kit, package,
  1747. pango, pax-utils, pciutils, pcmanfm, perl, perl-db-file,
  1748. perl-io-socket-ssl, perl-libwww-perl, perl-net-dns, perl-uri,
  1749. perl-xml-libxml, php, php-ssh2, picocom, pinentry, pixman,
  1750. polarssl, popt, portaudio, pppd, procps-ng, proftpd, protobuf,
  1751. psmisc, ptpd2, pulseaudio, pulseview, pv, python, python3,
  1752. python-alsaaudio, python-can, python-cffi, python-cherrypy,
  1753. python-httplib2, python-jinja2, python-lxml, python-m2crypto,
  1754. python-mako, python-msgpack, python-psutil, python-pyasn,
  1755. python-pycparser, python-pydal, python-pyftpdlib,
  1756. python-pyroute2, python-pyxml, python-pyzmq, python-requests,
  1757. python-serial, python-setuptools, python-six, python-spidev,
  1758. python-tornado, python-twisted, python-web2py, python-webpy,
  1759. python-werkzeug, python-zope-interface, qemu, qhull, qpdf, qt,
  1760. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  1761. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  1762. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  1763. qt5serialport, qt5svg, qt5webchannel, qt5webkit,
  1764. qt5webkit-examples, qt5websockets, qt5x11extras,
  1765. qt5xmlpatterns, qt-webkit-kiosk, racehound, radvd, read-edid,
  1766. readline, redis, rpcbind, rpi-firmware, rpi-userland, rrdtool,
  1767. rsync, rsyslog, rtai, rtorrent, rt-tests, rubix, ruby, samba4,
  1768. sconeserver, setools, shairport-sync, sigrok-cli, skeleton,
  1769. smack, snowball-init, socat, sp-oops-extract, sqlite,
  1770. squashfs, squeezelite, squid, sredird, sshfs,
  1771. start-stop-daemon, strace, strongswan, stunnel, subversion,
  1772. sunxi-tools, swig, sysdig, syslog-ng, sysstat, systemd,
  1773. sysvinit, taglib, tcl, tcpreplay, thrift, ti-gfx, tinyalsa,
  1774. tor, torsmo, trace-cmd, transmission, tremor, triggerhappy,
  1775. trinity, tvheadend, tzdata, uboot-tools, uclibc, udisks,
  1776. udpcast, unionfs, upmpdcli, usb_modeswitch,
  1777. usb_modeswitch_data, ustr, util-linux, vala, valgrind,
  1778. vboot-utils, vde2, vlc, vnstat, webkit, webkitgtk24, weston,
  1779. wget, whetstone, whois, wine, wipe, wireless-regdb, wireshark,
  1780. wpa_supplicant, w_scan, x11r7, xapp_xbacklight, xapp_xcompmgr,
  1781. xapp_xinput, xapp_xkbcomp, xdriver_xf86-input-evdev,
  1782. xdriver_xf86-input-libinput, xdriver_xf86-input-synaptics,
  1783. xdriver_xf86-video-ati, xdriver_xf86-video-fbturbo,
  1784. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  1785. xfont_encodings, xfont_font-adobe-100dpi,
  1786. xfont_font-adobe-75dpi, xfont_font-adobe-utopia-100dpi,
  1787. xfont_font-adobe-utopia-75dpi, xfont_font-adobe-utopia-type1,
  1788. xfont_font-alias, xfont_font-arabic-misc,
  1789. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  1790. xfont_font-bh-lucidatypewriter-100dpi,
  1791. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  1792. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  1793. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  1794. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  1795. xfont_font-daewoo-misc, xfont_font-dec-misc,
  1796. xfont_font-ibm-type1, xfont_font-isas-misc,
  1797. xfont_font-jis-misc, xfont_font-micro-misc,
  1798. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  1799. xfont_font-misc-meltho, xfont_font-misc-misc,
  1800. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  1801. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  1802. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  1803. xfont_font-xfree86-type1, xfsprogs, xkeyboard-config, xl2tp,
  1804. xlib_libfontenc, xlib_libXi, xmlstarlet, xscreensaver,
  1805. xserver_xorg-server, xtables-addons, xvkbd, xz, yad, yasm,
  1806. ympd, zeromq, zic, znc, zsh,
  1807. New packages: acsccid, assimp, atkmm, autofs, bcm2835,
  1808. cairomm, cantarell, chocolate-doom, comix-cursors, cxxtest,
  1809. edid-decode, emlog, gcr, gtkmm3, hidapi, jquery-sidebar,
  1810. kernel-module-imx-gpu-viv, libasplib, libcroco, libdvbpsi,
  1811. libfreeglut, libgdiplus, libglfw, libhdhomerun, libnet,
  1812. libsoil, lldpd, luvi, mbedtls, minizip, miraclecast, mongodb,
  1813. mraa, netbsd-queue, netsniff-ng, nss-pam-ldapd,
  1814. obsidian-cursors, openal, openbox, pangomm,
  1815. python-backports-abc, python-beautifulsoup4, python-cbor,
  1816. python-click, python-cssselect, python-ecdsa, python-html5lib,
  1817. python-idna, python-ipaddress, python-mistune, python-netaddr,
  1818. python-paho-mqtt, python-paramiko, python-pyparted,
  1819. python-pysmb, python-pyudev, python-singledispatch,
  1820. python-smbus-cffi, python-urllib3, qt53d, rabbitmq-c, rfkill,
  1821. sbc, spi-tools, tpm-tools, trousers, ubus, unrar, unscd,
  1822. unzip, v4l2grab, xdriver_xf86-video-nouveau, xdotool, zbar
  1823. Removed packages: libungif, python-pyxml,
  1824. Issues resolved (http://bugs.uclibc.org):
  1825. #7886: gettext: link failure with locally-installed libxml2
  1826. #7892: systemd-journald is broken
  1827. #8066: nodejs crashes when built with gcc 4.9
  1828. #8296: nodejs 0.12.7 - npm crashes (seg core dump)
  1829. #8501: gunzip fails to uncompress files
  1830. #8541: fail to build host-fakeroot-1.20.2
  1831. #8546: build instructions for raspberry pi don't work
  1832. #8571: strace for ARC compile error
  1833. #8581: pciutils.mk PCIUTILS_MAKE_OPTS typo
  1834. #8616: Fail to build for raspberrypi_defconfig with big endian
  1835. #8621: sqlite package, properly enable readline
  1836. 2015.11, Released November 30th, 2015
  1837. Minor fixes.
  1838. Merged/seperate /usr handling is now also performed for
  1839. staging so cross-gdb / gdbserver can find the libraries.
  1840. Updated/fixed packages: autossh, conntrack-tools, dcron,
  1841. espeak, gcc, glmark2, gpsd, gstreamer1, libglib2, libsigsegv,
  1842. libsoc, libv4l, minidlna, mongrel2, opencv, polarssl,
  1843. rpi-userland, rubix, skeleton, tovid, uemacs, valgrind, yad,
  1844. zmqpp
  1845. Issues resolved (http://bugs.uclibc.org):
  1846. #8441: Invalid directory for X11 fonts in target (RPi2)
  1847. #8491: libglib2 2.46.1 not Building for armv5 on 2015.11-rc3
  1848. 2015.11-rc3, Released November 26th, 2015
  1849. Fixes all over the tree.
  1850. We have a new modern website!
  1851. Updated/fixed packages: apitrace, audiofile, autossh, bullet,
  1852. c-ares, collectd, conntrack-tools, cryptodev-linux, dropbear,
  1853. fastd, gmp, gpsd, gst-plugins-bad, gst-plugins-base,
  1854. gst-plugins-good, gst-plugins-ugly, gstreamer, gstreamer1,
  1855. guile, iodine, iproute2, jimtcl, kompexsqlite, libethumb,
  1856. libfreeimage, libgsasl, libgtk3, libxml2, localedef,
  1857. lttng-tools, macchanger, mongrel2, mpd, openntpd, openssl,
  1858. oprofile, pcre, qt5base, quagga, rpi-userland, sconeserver,
  1859. sdl, spidev_test, sqlite, strongswan, ustr, xapp_sessreg,
  1860. yajl, zmqpp
  1861. Issues resolved (http://bugs.uclibc.org):
  1862. #6872: gpsd: disabled on microblaze
  1863. #8321: invalid opcode error with minidlna and ffmpeg
  1864. #8336: Default systemd configuration fails to boot correctly in 2015-08
  1865. #8446: rpi-userland failed to build with glibc 2.22
  1866. 2015.11-rc2, Released November 19th, 2015
  1867. Fixes all over the tree.
  1868. LD_LIBRARY_PATH is no longer used to ensure host binaries find
  1869. their libraries, fixing issues on recent Fedora.
  1870. Toolchain fixes for powerpc e5500 / e6500. Fix for an issue
  1871. with ${TARGET}-cc after the move to use a toolchain wrapper
  1872. for the internal toolchain.
  1873. Appy-patches.sh now correctly applies all files listed in
  1874. series files.
  1875. Fixes for merged /usr handling when a custom skeleton is used.
  1876. Updated/fixed packages: axfsutils, boost, busybox, dhcp,
  1877. directfb, dropbear, ebtables, fastd, ffmpeg, gauche, gcc,
  1878. gettext, gst1-plugins-bad, hostapd, ibrdtnd, libcurl,
  1879. libecore, libgudev, libnss, libpng, libserial, libssh2,
  1880. libuecc, libxml2, linux-headers, liquid-dsp, ltris,
  1881. lua-periphery, minidlna, mongrel2, mpd, mpg123, mplayer,
  1882. mysql, opencv, opencv3, package, perl-file-util, php-ssh2,
  1883. polarssl, pulseaudio, python-protobuf, qemu, qt5base, ranger,
  1884. ruby, skeleton, slang, squeezelite, strongswan, tovid, uclibc,
  1885. ushare, wine, wpa_supplicant, x265,
  1886. xdriver_xf86-video-siliconmotion, zxing-cpp
  1887. Issues resolved (http://bugs.uclibc.org):
  1888. #4790: Running udhcpc on a system with NFS root kills NFS
  1889. #8456: Building host-pkgconf on Fedora 23 fails due to..
  1890. 2015.11-rc1, Released November, 7th 2015
  1891. Fixes all over the tree and new features.
  1892. Architectures:
  1893. - Support for sparc64 added (internal toolchain with glibc
  1894. only).
  1895. - Support for mips32r6 and mips64r6 added.
  1896. - Support for Intel Quark X1000 CPU.
  1897. - Switch to EABIhf by default on ARM when a VFP is available.
  1898. Toolchains:
  1899. - glibc 2.22, gdb 7.10, use gdb 7.9 by default, musl 1.1.12,
  1900. uclibc-ng 1.0.8, host-gdb enabled on AArch64.
  1901. - The toolchain wrapper which was used only for external
  1902. toolchains is now also used for Buildroot internal
  1903. toolchains. This allowed to fix the ccache support, prepare
  1904. the way for top-level parallel build support and remove gcc
  1905. patches used to detect header/library path poisoning.
  1906. - Remove Analog Devices Blackfin toolchain 2012R2.
  1907. - Fix several Xtensa build failures by switching from
  1908. text-section-literals to auto-litpools.
  1909. - Enable MIPS64 support in uClibc-ng, use uClibc on ARC
  1910. rather than a specific fork.
  1911. - Linaro toolchains for ARM, ARMeb and AArch64 updated to
  1912. 2015.08. 2014.09 version is kept since 2015.08 only runs on
  1913. x86_64 hosts.
  1914. Bootloaders:
  1915. - Fix ARM64 support in U-Boot.
  1916. Defconfigs:
  1917. - Added: ARC HS38 VDK virtual boards, Avnet Microzed, Boundary
  1918. Devices Nitrogen SoloX, Freescale i.MX6 SoloX Sabre SD,
  1919. OLinuxino A20 Lime2, Qemu Sparc64, Qemu SuperH 4 big endian,
  1920. Synopsys AArch64 VDK virtual platform.
  1921. - Updated: calao_qil_a9260, calao_usb_a9g20_lpw, ci20,
  1922. cubieboad, freescale_imx6_*, imx53loco, imx6_vab820,
  1923. mpc8315erdb, qmx6, p1010rdb, qemu, raspberrypi,
  1924. raspberrypi2, riotboard, snps_axs10*, wandboard.
  1925. - Removed: at91rm9200df, at91sam9260dfc, at91sam9263ek,
  1926. calao_snowball_defconfig, gnublin, integrator926_defconfig.
  1927. Infrastructure:
  1928. - Support for fetching from Mercurial tags fixed.
  1929. - Introduce LINUX_NEEDS_MODULES, which allows to enforce
  1930. module support to be enabled in the kernel when a package
  1931. builds out-of-tree kernel modules (through the
  1932. pkg-kernel-module infrastructure or on its own).
  1933. - Improve the perl package infrastructure to automatically add
  1934. the dependency to the perl interpreter to target perl module
  1935. packages.
  1936. - Remove trailing slashes in <pkg>_SITE and addition of a
  1937. check to ensure such trailing slashes are no longer added.
  1938. - Extend the legal infrastructure to allow packages to declare
  1939. their actual source code. This is useful for packages for
  1940. which <pkg>_SOURCE points to pre-built binaries (as is the
  1941. case for external toolchains). The new <pkg>_ACTUAL_SOURCE
  1942. variable allows to point to the source code in such cases.
  1943. - Improved ccache support, thanks to the usage of a toolchain
  1944. wrapper for internal toolchain. Now a single cache directory
  1945. can be shared between different Buildroot builds.
  1946. - Addition of a 'graph-size' make targets, which generates a
  1947. PDF graph of per-package size of the root filesystem.
  1948. - Addition of <pkg>_EXCLUDES so that packages can request
  1949. certain parts of the source code tarball to not be
  1950. extracted. This feature is currently used by gcc and
  1951. toolchain-external.
  1952. - Packages can now use the <pkg>_PKGDIR variable, provided by
  1953. the package infrastructure, to reference their package
  1954. directory, instead of explicitly using package/<pkg>/.
  1955. Filesystems:
  1956. - Add high lz4 compression to squashfs.
  1957. - Simplification of shell profile files in the default
  1958. skeleton.
  1959. - Remove ftp user and /home/ftp from the skeleton, and let ftp
  1960. server packages create these when needed.
  1961. - Add support for /bin, /sbin and /lib to be symlinks to their
  1962. corresponding directories in /usr. This is enforced for
  1963. systemd configurations, and optional for other
  1964. configurations.
  1965. - Support for AXFS filesystem image generation added.
  1966. - New options to add extra space/inodes to ext2/3/4 images.
  1967. Updated/fixed packages:
  1968. adwaita-icon-theme, apache, apitrace, atk, audit, avahi,
  1969. barebox, bash, batctl, bind, binutils, bluez_utils, boost,
  1970. bridge-utils, cairo, ccache, chrony, clapack, cloog, cmake,
  1971. collectd, connman, conntrack-tools, coreutils, cpio,
  1972. cryptsetup, dbus, dbus-cpp, devmem2, dhcp, dhcpcd, dhcpdump,
  1973. dhrystone, dillo, directfb, directfb-examples, dmraid,
  1974. dos2unix, dovecot, dovecot-pigeonhole, drbd-utils, dropbear,
  1975. dropwatch, dtc, e2fsprogs, ebtables, efl, eigen, ejabberd,
  1976. elf2flt, elfutils, erlang, ethtool, eudev, evemu, exfat,
  1977. exfat-utils, expat, faifa, fbterm, fdk-aac, feh, ffmpeg, file,
  1978. flashrom, fping, freerdp, freescale-imx, freetype, gdk-pixbuf,
  1979. genimage, gettext, git, glib-networking, glmark2, gnupg2,
  1980. gnuradio, gnutls, gpsd, grep, grub2, gst1-imx, gst1-libav,
  1981. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  1982. gst1-plugins-ugly, gst1-validate, gst-fsl-plugins,
  1983. gst-plugins-bad, gstreamer1, guile, gvfs, harfbuzz, haveged,
  1984. hostapd, icu, imagemagick, impiutil, imx-gpu-viv, imx-vpu,
  1985. inadyn, intltool, iostat, iperf3, ipmiutil, iproute2,
  1986. iptables, iw, jpeg-turbo, jq, jsoncpp, kexec-lite, kmod, kodi,
  1987. kodi-audioencoder-flac, kodi-pvr-argustv, kodi-pvr-filmon,
  1988. kodi-pvr-hts, kodi-pvr-mythtv, kodi-pvr-pctv,
  1989. kodi-pvr-stalker, kodi-pvr-vbox,
  1990. kodi-visualisation-waveforhue, less, lftp, libbluray,
  1991. libcgroup, libconfuse, libcurl, libdcadec, libdrm, libevdev,
  1992. libffi, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  1993. libgcrypt, libglew, libglib2, libgtk3, libidn, liblinear,
  1994. liblockfile, libmicrohttpd, libnetfilter_conntrack, libnfs,
  1995. libnftnl, libnl, libnspr, libnss, libpcap, libpfm4, libpng,
  1996. libselinux, libserial, libsoup, libsoxr, libstrophe, libtasn1,
  1997. libtirpc, libtorrent, libupnpp, liburcu, libusb-compat, libuv,
  1998. libv4l, libva, libva-intel-driver, libxcb, lighttpd, links,
  1999. linux, linux-firmware, linux-fusion, linux-headers,
  2000. lirc-tools, localedef, lpeg, lsof, ltp-testsuite,
  2001. lttng-libust, lttng-tools, lua-periphery, luaposix, lvm2, lxc,
  2002. lz4, mdadm, mesa3d, mesa3d-headers, minicom, minidlna, moarvm,
  2003. modem-manager, mosquitto, mpd, mpdecimal, mpg123, mplayer,
  2004. mrouted, msmtp, mtd, mutt, nettle, network-manager, nfs-utils,
  2005. nftables, nginx, nodejs, noip, ntp, ofono, opencv3, openpgm,
  2006. openssl, openswan, openvpn, pango, parted, perl, perl-cross,
  2007. perl-crypt-openssl-random, perl-http-message,
  2008. perl-io-socket-ssl, perl-module-build, perl-mojolicious,
  2009. perl-netaddr-ip, perl-net-dns, perl-net-http, perl-net-ssleay,
  2010. perl-uri, perl-xml-libxml, php, picocom, pixman, pkgconf,
  2011. poco, polarssl, portaudio, portmap, postgresql, proftpd,
  2012. protobuf, protobuf-c, pulseaudio, python-configshell-fb,
  2013. python-networkmanager, python-numpy, python-pyparsing,
  2014. python-pypcap, python-rtslib-fb, python-spidev, python-urwid,
  2015. python-web2py, qemu, qt5base, redis, rngtools, rng-tools,
  2016. rpi-firmware, rpi-userland, rtmpdump, rtorrent, ruby, samba,
  2017. samba4, sane-backends, sconeserver, sdl, sed, setools,
  2018. shairport-sync, shared-mime-info, sland, smartmontools,
  2019. softether, spice-protocol, sqlcipher, sqlite, squid,
  2020. strongswan, stunnel, subversion, sudo, sunxi-tools,
  2021. supervisor, systemd, tar, targetcli-fb, tcpdump, tiff, tor,
  2022. tvheadend, tzdata, uboot-tools, udisks, unionfs, upmpdcli,
  2023. util-linux, vala, valgrind, vim, vlc, vorbis-tools, vsftpd,
  2024. vtun, wavpack, webkitgtk24, weston, whois, wireless-regdb,
  2025. wireshark, wpa_supplicant, xdriver_xf86-input-vmmouse,
  2026. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  2027. xdriver_xf86-video-sis, xlib_libXi, xorg-server,
  2028. xtables-addons, xterm, xz, zic, znc, zsh
  2029. New packages:
  2030. axfsutils, bitstream, check, dvblast, eventlog, fastd, gauche,
  2031. gmock, graphite2, gssdp, gupnp, gupnp-av, ibrcommon, ibrdtn,
  2032. ibrdtnd, ibrdtn-tools, imx-kobs, iqvlinux, irssi,
  2033. kompexsqlite, libbroadvoice, libcddb, libcodec2, libcrossguid,
  2034. libg7221, libhttpparser, libilbc, libldns, libmng,
  2035. libopenh264, libpam-radius-auth, libpam-tacplus, libsilk,
  2036. libsoundtouch, libssh, libuecc, libyuv, liquid-dsp, luv,
  2037. micropython, micropython-libs, python-pyratemp,
  2038. python-pyroute2, python-ranger, rapidxml, scrypt, sdl2,
  2039. sp-oops-extract, squeezelite, stress-ng, swupdate, syslog-ng,
  2040. x265, xdriver_xf86-video-fbturbo, xxhash, yad, zxing-cpp
  2041. Removed packages:
  2042. blackbox (was deprecated), divine (merged in directfb),
  2043. kobs-ng (replaced by imx-kobs), mediactl (merged in libv4l),
  2044. sawman (merged in directfb), schifra (marked broken since a
  2045. long time), texinfo (host variant only, no longer used), zxing
  2046. (replaced by zxing-cpp),
  2047. Issues resolved (http://bugs.uclibc.org):
  2048. #4099: cut utility from GNU coreutils works incorrect
  2049. #7772: libxml-parser-perl build failure: missing dependency
  2050. ExtUtils/MakeMaker
  2051. #7931: Default configuration for Cubieboard v1 is outdated
  2052. #8116: 2015.05-rc2 raspberrypi2_defconfig network interface
  2053. not coming up
  2054. #8246: X.org DRI2 build issue
  2055. #8256: pointing to /usr/bin/objcopy old version (x86) instead
  2056. of the generated one
  2057. #8266: mplayer build issue
  2058. #8281: pyrexc fails to run when path is too long
  2059. #8316: lttng-tools and lttng-babeltrace executables contain
  2060. bad RPATH pointing to host machine
  2061. #8331: kexec wants shutdown in /sbin, but systemd installs it
  2062. in /usr/sbin
  2063. #8361: Buildroot 2015.08.1 skeleton inittab overwritten by
  2064. busybox's version
  2065. #8366: libevent does not build
  2066. #8386: build failed with external toolchain
  2067. #8391: Node.js 0.12.7 fails to build on raspberry_pi defconfig
  2068. #8396: CCACHE initialization
  2069. #8401: gpsd 3.15 NMEA support
  2070. #8416: cups depends on BR2_DEPRECATED_SINCE_2015_05
  2071. #8421: util-linux installs systemd files in output/target/home/
  2072. 2015.08, Released August 31st, 2015
  2073. Minor fixes.
  2074. OpenCV 3.x package renamed to opencv3. OpenCV 2.4.x
  2075. reintroduced as opencv.
  2076. Updated/fixed packages: bootutils, canfestival, cppcms,
  2077. curlftpfs, dhcpdump, dropbear, erlang-p1-tls, exfat, gnuradio,
  2078. ipkg, libgudev, libmbim, libwebsock, linux-pam, lm-sensors,
  2079. ltrace, midori, network-manager, openssh, perl-file-listing,
  2080. perl-http-cookies, perl-http-daemon, perl-http-negotiate,
  2081. perl-www-robotrules, python-can, qt5base, qt5multimedia,
  2082. setools, sysvinit, tinyalsa, tn5250, tvheadend, uboot, vlc,
  2083. x264, xserver_xorg-server, zyre
  2084. 2015.08-rc2, Released August, 24th 2015
  2085. Fixes all over the tree.
  2086. Toolchain: fix gcc build on NIOS-II.
  2087. Infrastructure: add <fs>_POST_GEN_HOOKS mechanism to fix
  2088. hybrid ISO image generation.
  2089. Architectures: add arm1136j-s variant.
  2090. Updated/fixed packages: apitrace, audit, bcusdk, bdwgc,
  2091. beecrypt, boost, bwm-ng, cdrkit, c-icap, cifs-utils, clapack,
  2092. c-periphery, cpio, cramfs, czmq, dawgdic, dnsmasq, dosfstools,
  2093. dropbear, elfutils, empty, eudev, fan-ctrl, filemq, gnutls,
  2094. guile, haveged, imlib2, libcec, libepoxy, libev, libgpgme,
  2095. libiio, libnetfilter_queue, libnfnetlink, libpfm4, libpthsem,
  2096. librtas, libselinux, libsigsegv, libsodium, libv4l, lightning,
  2097. linux, lirc-tools, lrzsz, mono, mosh, mpd, msmtp, nbd,
  2098. netatalk, nodejs, ola, opencv, oprofile, php, poco,
  2099. postgresql, powertop, protobuf, protobuf-c, qt5base,
  2100. qt5quickcontrols, rapidjson, rng-tools, squid, sysdig,
  2101. sysstat, tftpd, tinc, tz, util-linux, webkitgtk24, weston,
  2102. wireshark, wvstreams, xdriver_xf86-input-synaptics, zyre.
  2103. Issues resolved (http://bugs.uclibc.org):
  2104. #8276: package/dropbear: symlink resolution incorrect
  2105. #8286: Error with buildroot
  2106. #8301: ldconfig parameter in Makefile
  2107. 2015.08-rc1, Released August, 5th 2015
  2108. Fixes all over the tree and new features.
  2109. Architectures:
  2110. - Refactor how the availability of an MMU is described.
  2111. - Minimal support for Cortex-M3
  2112. - Minimal support for AArch64 big-endian
  2113. Toolchains:
  2114. - Add CodeSourcery MIPS 2015.05, remove MIPS 2013.11
  2115. - Use uClibc-ng as the default uClibc version, instead of the
  2116. official uClibc, which hasn't done any release since 3+
  2117. years
  2118. - eglibc is now marked as deprecated
  2119. - GCC: gcc 4.9.x is now the default and was updated to 4.9.3,
  2120. support for gcc 5.x added.
  2121. - Binutils: use Binutils 2.24 as the default, 2.25.x series
  2122. bumped to 2.25.1, remove old Binutils 2.22.
  2123. - Update ARC toolchain components to 2015.06
  2124. - Add support for Fortran when building gcc
  2125. Bootloaders:
  2126. - Support for using the kconfig configuration system in
  2127. U-Boot
  2128. New Defconfigs:
  2129. - VIA VAB-820/AMOS-820
  2130. - OLimex OLinuxino A20 Lime
  2131. - Many new defconfigs for Atmel evaluation boards:
  2132. at91sam9rlek, at91sam9x5ek, sama5d3xek, sama5d4ek, sama5d4
  2133. Xplained Ultra, sama5d3 Xplained.
  2134. - ACME Systems Aria G25
  2135. - WarPboard
  2136. - Altera Cyclone 5 Development Board
  2137. - Xilinx zc706
  2138. - ARC AXS101 and AXS103 Software Development Platforms
  2139. - Significant updates to Raspberry Pi / Raspberry Pi 2
  2140. Infrastructure:
  2141. - Buildroot takes better care now of generating predictable
  2142. permissions in the target filesystem. However, existing
  2143. permissions on a custom skeleton or rootfs overlay will no
  2144. longer be preserved. Therefore, it is necessary to add a
  2145. permission table (BR2_ROOTFS_DEVICE_TABLE) to set the
  2146. required permissions.
  2147. - Add support for kconfig fragments.
  2148. - No longer pass --{enable,disable}-debug to autotools
  2149. packages depending on the value of
  2150. BR2_ENABLE_DEBUG. BR2_ENABLE_DEBUG now only controls
  2151. whether we build with -g or not.
  2152. - Support for extracting archives in .lzma in the generic
  2153. package infrastructure.
  2154. - Remove random-seed file from the default skeleton, since
  2155. seeding the entropy pool with a known seed makes more harm
  2156. than good.
  2157. - In the CVS download helper, add support to use a date as
  2158. the version.
  2159. - Add support for a per-package <pkg>_STRIP_COMPONENTS
  2160. variable, which packages can use to specify how many path
  2161. components should be stripped when extracting the tarball.
  2162. - Addition of a 'kernel-module' package infrastructure, which
  2163. simplifies the packaging of external kernel modules. Many
  2164. existing packages are converted to use it.
  2165. - Allow bootloaders to be implemented in $(BR2_EXTERNAL)
  2166. - Remove /etc/securetty from the default skeleton.
  2167. - Migration of sysV initscripts from the default skeleton to
  2168. a package called 'initscripts', installed only when Busbox
  2169. init or sysvinit are used.
  2170. - Migration of the skeleton logic to a proper 'skeleton'
  2171. package.
  2172. - Addition of a 'linux-tools' infrastructure in the 'linux'
  2173. package, to support building user-space tools bundled
  2174. within the Linux kernel sources, such as perf and cpupower.
  2175. - Usage of backticks instead of make $(shell ...) to execute
  2176. shell commands. This allows to delay the evaluation of such
  2177. commands when actually needed, and not when expanding the
  2178. variables. It is useful to make 'make printvars' less
  2179. noisy, and as a preparation to support top-level parallel
  2180. build.
  2181. - Libtool .la files are not mungled for all package types,
  2182. instead of being handled only for packages using the
  2183. autotools-package infrastructure.
  2184. - Add mechanism to allow packages to express a dependency on
  2185. gcc versions. This is needed for packages that use C++11 or
  2186. C11 support for example.
  2187. Important package updates:
  2188. - Complete rework of the matchbox packaging
  2189. - Lots of fixes in packages for compatibility with musl and
  2190. gcc 5.
  2191. - Hash files added to a large number of packages.
  2192. - Update a significant number of packages to use a new
  2193. hosting, after the announcement of Google Code and
  2194. Gitorious closing.
  2195. - Major packages needed for SELinux support have been merged,
  2196. but the support is not complete yet.
  2197. - Significant update of OpenCV to version 3.0, and addition
  2198. of lots of eatures.
  2199. - Significant update of all packages supporting the GPU and
  2200. VPU of i.MX ARM processors.
  2201. - Addition of systemd support in a significant number of
  2202. packages.
  2203. - Qt5 updated to 5.5.0
  2204. - Use modular X.org server by default instead of KDrive
  2205. Filesystems:
  2206. - Complete overhaul of the iso9660 support. Now allows to use
  2207. directly IS9660 as the root filesystem format and not only
  2208. an initrd, and supports Grub 2 and isolinux in addition to
  2209. Grub.
  2210. Updated packages: a10disp, agentpp, apache, at91bootstrap3,
  2211. audit, barebox, bc, bind, bmon, boost, btrfs-progs,
  2212. ca-certificates, can-utils, ccache, cloog, collectd, connman,
  2213. coreutils, c-periphery, cryptsetup, dado, dbus, dejavu,
  2214. dhcpcd, dnsmasq, dosfstools, dovecot, dovecot-pigeonhole,
  2215. e2fsprogs, ejabberd, erlang-p1-cache-tab, erlang-p1-sip,
  2216. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  2217. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml, ethtool,
  2218. eudev, evtest, exim, expect, explorercanvas, feh, ffmpeg,
  2219. file, flashrom, freescale-imx, freetype, gawk, gcc, gdb,
  2220. gettext, git, glib-networking, gnupg2, gnutls, gpsd, gptfdisk,
  2221. gpu-viv-bin-mx6q, gst-fsl-plugins, harfbuzz, hdparm, heimdal,
  2222. i2c-tools, imagemagick, imx-vpu, iproute2, ipset, isl, iw,
  2223. kodi, kodi-addon-xvdr, kodi-audioencoder-flac,
  2224. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  2225. kodi-audioencoder-wav, lftp, libass, libassuan, libcec,
  2226. libconfi, libcurl, libdrm, libevdev, libfreefare, libfslcodec,
  2227. libfslparser, libfslvpuwrap, libfuse, libglib2, libgpgme,
  2228. libgtk2, libgtk3, libical, libidn, libiio, libinput, libiscsi,
  2229. libllcp, libmicrohttpd, libnfc, libnss, libpcap, libpciaccess,
  2230. libpng, libserialport, libsigrok, libsoc, libtirpc, libubox,
  2231. libunistring, libupnp, libuv, libv4l, libva,
  2232. libva-intel-driver, libXrandr, lighttpd, linenoise, linux,
  2233. linux-firmware, linux-headers, live555, ltrace, lua,
  2234. lua-csnappy, lua-ev, luajit, lua-messagepack, luaperiphery,
  2235. lvm2, lxc, lzo, mesa3d, mesa3d-headers, midori, mmc-utils,
  2236. modem-manager, mono, mosquitto, mpd, mpd-mpc, mpfr, mpg123,
  2237. mtd, musl, nano, netperf, network-manager, nfs-utils, nginx,
  2238. nodejs, ntp, ola, opencv, openldap, openssh, openssl,
  2239. openswan, openvmtools, openvpn, opkg, orbit, orc, pcmanfm,
  2240. perl-cross, perl-encode-locale, perl-io-socket-ssl,
  2241. perl-mojolicious, perl-net-ssleay, perl-path-tiny, perl-uri,
  2242. perl-xml-libxml, php, pinentry, polarssl, postgresql,
  2243. pulseview, pure-ftpd, python, python-dpkt, python-lxml,
  2244. python-networkmanager, python-pyinotify, python-pypcap,
  2245. python-tornado, qextserialport, qt, qt5, rapidjson, redis,
  2246. rpcbind, rpi-firmware, rpi-userland, samba4, shairport-sync,
  2247. snmpp, sqlite, squid, strongswan, stunnel, sudo, sunxi-boards,
  2248. sunxi-mali, sysdig, sysstat, systemd, tcpdump, tiff, tmux,
  2249. tor, txheadend, tzdata, uboot, uclibc, ulogd, upmpdcli,
  2250. usb_modeswitch, usb_modeswitch_data, vala, vsftpd, wayland,
  2251. weston, whois, wireless-regdb, wireshark, x264, xapp_xvinfo,
  2252. xdriver_xf86-input-libinput, xdriver_xf86-input-vmmouse,
  2253. xdriver_xf86-video-cirrus, xdriver_xf86-video-geode,
  2254. xdriver_xf86-video-imx-viv, xdriver_xf86-video-mach64,
  2255. xdriver_xf86-video-neomagic, xdriver_xf86-video-r128,
  2256. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  2257. xdriver_xf86-video-vesa, xkeyboard-config, xlib_libfontenc,
  2258. xlib_libFS, xlib_libXaw, xlib_libxkbfile, xlib_libXrender,
  2259. xlib_libXt, xproto_kbproto, xproto_xproto, xproto_xrandrproto,
  2260. xscreensaver, xserver_xorg-server, xtables-addons, yaml-cpp,
  2261. zic.
  2262. New packages: angularjs, atf, audit, c-icap, c-icap-modules,
  2263. cpio, dawgdic, faketime, fcgiwrap, gflags, glog, initscripts,
  2264. jquery-datetimepicker, kodi-audioencoder-modplug,
  2265. kodi-audioencoder-nosefar, kodi-audioencoder-sidplay,
  2266. kodi-audioencoder-snesapu, kodi-audioencoder-stsound,
  2267. kodi-audioencoder-timidity, kodi-audioencoder-vgmstream,
  2268. kodi-platform, kodi-pvr-argustv, kodi-pvr-dvblink,
  2269. kodi-pvr-dvbviewer, kodi-pvr-filmon, kodi-pvr-hts,
  2270. kodi-pvr-iptvsimple, kodi-pvr-mediaportal-tvserver,
  2271. kodi-pvr-mythtv, kodi-pvr-nextpvr, kodi-pvr-njoy,
  2272. kodi-pvr-pctv, kodi-pvr-stalker, kodi-pvr-vbox,
  2273. kodi-pvr-vdr-vnsi, kodi-pvr-vuplus, kodi-pvr-wmc,
  2274. kodi-screensaver-asteroids, kodi-screensaver-biogenesis,
  2275. kodi-screensaver-crystalmorph, kodi-screensaver-greynetic,
  2276. kodi-screensaver-pingpong, kodi-screensaver-pyro,
  2277. kodi-screensaver-stars, kodi-visualisation-shadertoy,
  2278. kodi-visualisation-spectrum, kodi-visualisation-waveforhue,
  2279. kodi-visualisation-waveform, kvmtool, kyua, libfm,
  2280. libfm-extra, libplatform, librtas, libsodium, libsquish,
  2281. libucl, libump, linux-backports, lua-iconv, lutok, menu-cache,
  2282. moarvm, monkey, mono-gtksharp3, mosh, openipmi, python-can,
  2283. python-pycli, python-pydal, python-pyyaml, python-web2py,
  2284. qpid-proton, qt5webchannel, quazip, racehound, rtl8188eu,
  2285. rtl8821au, sepolgen, setools, skeleton, stm32flash,
  2286. webkitgtk24, xdriver_xf86-video-qxl, zynq-boot-bin.
  2287. Deprecated packages: webkitgtk, libgail, eglibc support in
  2288. glibc package.
  2289. Issues resolved (http://bugs.uclibc.org):
  2290. #4291: Segmentation fault with all binaries that use threads
  2291. when compiled with gcc 4.6
  2292. #6944: building toolchain for sh4 fails
  2293. #7592: Buildroot GCC: -lto requires plugin support in ranlib
  2294. #7628: Python SSL does not get built for Raspberry Pi
  2295. #7682: Missing dependencies for NFS
  2296. #7742: dhcp lacks important features when BR2_ENABLE_DEBUG
  2297. #7754: make: *** [/..../buildroot-2014.11/output/build/host-gcc-initial-4.8.3/.stamp_built] Error 2
  2298. #7946: libglib2-2.42.2 fails to build for sparc-buildroot-linux-gnu
  2299. #7956: glibc 2.20 and 2.21 fail to build for sh64-buildroot-linux-gnu
  2300. #7971: python-flask, python-werkzeug. No module named zlib
  2301. #7981: Target file system skeleton permissions hazard
  2302. #8006: rpcdebug in nfs-utils built for the host
  2303. #8036: alsa-lib headers problem that prevents to compile alsa
  2304. dependent projects
  2305. #8081: systemd init system: /tmp is not mode 1777
  2306. #8121: php opcache extension doesn't get installed
  2307. #8151: x86-64 make fails with ncurses 5.9
  2308. #8156: pkg-kconfig infra broken for *-update-{config, defconfig}
  2309. #8161: default /bin/sh symlink to busybox is full path and not relative
  2310. #8171: glamor missing
  2311. #8191: Request update support for the cubieboard series
  2312. #8201: Important security upgrades for node.js
  2313. 2015.05, Released May 31st, 2015
  2314. Minor fixes.
  2315. Updated/fixed packages: conntrack-tools, directfb, fio, flite,
  2316. gptfdisk, ipmiutil, iproute2, janus-gateway, keyutils, knock,
  2317. libelementary, libgcrypt, libgsasl, libjpeg, libstrophe,
  2318. lttng-libust, nbd, ncurses, nmap, php, postgresql, python,
  2319. python3, sconeserver, udpcast, upmpdcli
  2320. 2015.05-rc3, Released May 22nd, 2015
  2321. Several fixes, mainly related to static linking.
  2322. Updated/fixed packages: acl, alsa-utils, apr, armadillo, attr,
  2323. autoconf-archive, binutils, boost, czmq, dhcpcd, duma,
  2324. enlightenment, exim, fbterm, freerdp, gcc, gdk-pixbuf,
  2325. google-breakpad, gpsd, heirloom-mailx, hwloc, ipmiutil,
  2326. iproute2, jack2, jasper, kmod, lcdproc, leafnode2, libcap-ng,
  2327. libftdi1, libmatroska, libmemcached, libmodbus, libnftnl,
  2328. libsigrok, libupnpp, libuv, libxml-parser-perl, linux,
  2329. linux-headers, lirc-tools, lua-periphery, lxc, mongoose, mono,
  2330. mpg123, mosquitto, neardal, newt, ntp, ola, openldap, opencv,
  2331. php, postgresql, protobuf, pulseaudio, python-pyqt, qemu, qt,
  2332. qt5base, rpi-userland, rsyslog, snmppp, sqlite, tiff,
  2333. tinyxml2, uboot-tools, unionfs, ux5000-firmware, usbredir,
  2334. ushare, vpnc, vsftpd, wavpack, wireless_tools, wsapi,
  2335. wvstreams, xmlstarlet, zeromq, zmqpp
  2336. New packages: c-periphery
  2337. Issues resolved (http://bugs.uclibc.org):
  2338. #8106: mkfs.jffs2 uses the --pagesize parameter incorrectly
  2339. #8111: 2015.05.rc2 LIBFOO_CONF_OPTS not working
  2340. #8126: exim lacks plaintext and cram-md5 auth
  2341. 2015.05-rc2, Released May 11th, 2015
  2342. Minor fixes.
  2343. Toolchain: PR56780 backport to GCC 4.8.4 to fix GDB linking
  2344. issues. Context functions enabled for uClibc snapshot /
  2345. uClibc-NG.
  2346. Architectures: Endian handling symbol for Xtensa, binutils
  2347. fixes.
  2348. Infrastructure: Fix for kernel module stripping when
  2349. localversion contains spaces.
  2350. Updated/fixed packages: at, autoconf-archive, binutils,
  2351. cc-tool, cryptsetup, dstat, expedite, freerdp, giflib,
  2352. gnuchess, guile, ipmiutil, iproute2, mono, monolite, neard,
  2353. ola, poppler, postgresql, python-qt, qt, sqlite, valgrind,
  2354. xlib_libXfont
  2355. Issues resolved (http://bugs.uclibc.org):
  2356. #8086: Cannot select systemd as init with Linaro 2014.09...
  2357. 2015.05-rc1, Released May 4th, 2015
  2358. Fixes all over the tree and new features.
  2359. Architectures: Removed AVR32 support, deprecate SH64, added
  2360. support for steamroller, corei7-avx and core-avx2 x86
  2361. variants.
  2362. Toolchains: IPv6 and Largefile support now enforced for
  2363. uClibc. Corresponding Kconfig symbols removed.
  2364. External CodeSourcery AMD64 2014.05, MUSL-cross 1.1.6 added,
  2365. CS sh2, Xilinx microblaze v2/14.3 removed. Distro-class
  2366. external toolchains are now detected and blacklisted.
  2367. Internal toolchain support for Nios2 added, Blackfin
  2368. removed. Aarch64 and sh musl support. uClibc-ng support added.
  2369. Libatomic is now handled for internal and external
  2370. toolchains. Link time optimization (LTO) support.
  2371. New Defconfigs: Freescale i.MX28 EVK, i.MX31 PDK and SABRE
  2372. Auto, Raspberry Pi 2, RIoTboard,
  2373. Infrastructure: Hashes for a large number of packages have
  2374. been added. Missing hashes now stop the build unless
  2375. explicitly disabled.
  2376. Spaces and colons (:) are now supported in package
  2377. versions. Dependencies can now be listed for the patch step
  2378. (<PKG>_PATCH_DEPENDENCIES). Kconfig and Linux kernel
  2379. extensions infrastructure has been added.
  2380. Makedevs now has a recursive (r) option.
  2381. The variable containing the list of packages to build has been
  2382. renamed from TARGETS to PACKAGES.
  2383. Make external-deps / legal-info / source / source-check have
  2384. been reimplemented using the package infrastructure, so their
  2385. output/behaviour may differ from earlier (some packages were
  2386. not included in the past).
  2387. The old insecure DES password encoding is no longer supported.
  2388. U-Boot patch option now support direct references to patch
  2389. files and URLs in addition to directories of patches. The
  2390. i.MX28 SD format (u-boot.sd) is now supported.
  2391. Updated/fixed packages: agentpp, aircrack-ng, alsa-lib,
  2392. alsa-utils, apr-util, apr, atk, autossh, avahi, avrdude,
  2393. bcusdk, bdwgc, bind, binutils, bmon, boost, botan,
  2394. btrfs-progs, busybox, ca-certificates, cairo, can-utils,
  2395. canfestival, ccache, chrony, civetweb, clamav, cmake,
  2396. collectd, connman, copas, crda, cryptodev-linux, cryptsetup,
  2397. cups, czmq, dbus-cpp, dbus-glib, dbus-python, dbus, dfu-util,
  2398. dhcp, dhcpcd, dialog, dillo, dmraid, dnsmasq, dos2unix,
  2399. dosfstools, dovecot-pigeonhole, dovecot, dropbear, dropwatch,
  2400. dtv-scan-tables, dvdauthor, e2fsprogs, ecryptfs-utils,
  2401. libevas, elfutils, enscript, erlang, espeak, eudev, evemu,
  2402. exfat-utils, exim, f2fs-tools, feh, ffmpeg, fftw, flickcurl,
  2403. fltk, fluxbox, fmlib, fmtools, freeradius-client, freerdp,
  2404. gamin, gawk, gcc-final, gcc, gd, gdb, gengetopt, geoip, git,
  2405. glib-networking, gnu-efi, gnuchess, gnutls, gpsd, gptfdisk,
  2406. gpu-viv-bin-mx6q, gst-plugin-bad, gstreamer, gstreamer1,
  2407. gtest, gvfs, harfbuzz, haserl, haveged, hiawatha,
  2408. hicolor-icon-theme, hostapd, hplip, httping, i2c-tools, icu,
  2409. ifplugd, imagemagick, imlib2, iozone, iproute2, iptables,
  2410. iputils, irqbalance, iw, jack2, jhead, jimtcl, json-c, kexec,
  2411. kismet, kmod, kodi-audioencoder-flac,
  2412. kodi-audioencoder-vorbis, kodi-pvr-addons, kodi, ktap, lcms2,
  2413. libass, libatomic_ops, libbluray, libcap, libcgroup, libcurl,
  2414. libdrm, libdvbsi, libebml, libecore, libedit, liberation,
  2415. libev, libevas, libevdev, libftdi, libgcrypt, libglib2,
  2416. libgpgme, libgtk2, libgtk3, libiconv, libidn, libiio,
  2417. libinput, libiscsi, libksba, liblinear, libmatroska,
  2418. libmicrohttpd, libmodbus, libmpdclient, libnice, libnl,
  2419. libnspr, libnss, libpcap, libpciaccess, libphidget, libplayer,
  2420. libpthsem, libqmi, librsvg, libseccomp, libsigrok, libsoup,
  2421. libsrtp, libssh2, libtasn1, libtool, libunistring, liburcu,
  2422. libusb, libuv, libva-intel-driver, libva, libvncserver,
  2423. libvorbis, libvpx, libwebsockets, libxml2, libzip, lightning,
  2424. lighttpd, linknx, linphone, linux-firmware, linux-headers,
  2425. linux-pam, live555, ljsyscall, lmbench, lockdev, logrotate,
  2426. lpc3250loader, lpeg, lsof, lttng-libust, lttng-modules,
  2427. lttng-tools, lua, luacrypto, luafilesystem, luajit, luaposix,
  2428. luarocks, lvm2, lxc, make,
  2429. matchbox-{common,desktop,fakekey,keyboard,lib,startup-monitor,vm},
  2430. matchbox, mcelog, memcached, memstat, memtest86, mesa3d,
  2431. minidlna, mjpegtools, mjpg-streamer, modem-manager, mongoose,
  2432. monit, mono, monolite, mp4v2, mpc, mpd, mpdecimal, mpg123,
  2433. mplayer, musl, nano, nbd, ncftp, ncmpc, ncurses, ne10, neard,
  2434. neardal, net-tools, netatalk, netsnmp, network-manager, nginx,
  2435. nodejs, ntfs-3g, ntp, numactl, odhcp6c, ofono, open2300,
  2436. opencv, openldap, openntpd, openocd, openssh, openssl,
  2437. openswan, opentyrian, openvmtools, openvpn, oprofile, p11-kit,
  2438. pango, patch, patchelf, pciutils, pcre, perf, perl-gdgraph,
  2439. perl-io-socket-ssl, perl-json-tiny, perl-module-build,
  2440. perl-mojolicious, perl-net-ssleay, perl-path-tiny,
  2441. perl-xml-libxml, perl, phidgetwebservice, php-gnupg, php,
  2442. pkgconf, polarssl, poppler, popt, postgresql, powerpc-utils,
  2443. pppd, prboom, procps-ng, proftpd, psplash, ptpd2,
  2444. python-{cheetah,coherence,django,markdown,netifaces,pam,six},
  2445. python-tornado, python-twisted, python-zope-interface, python,
  2446. python3, qemu, qt, qt5, qt5base, qt5multimedia,
  2447. qt5xmlpatterns, qt5cinex, quagga, qwt, radvd, readline,
  2448. rng-tools, rpcbind, rpi-firmware, rpi-userland, rsync,
  2449. rsyslog, rtai, rtmpdump, ruby, sam-ba, samba, samba4,
  2450. sane-backends, sconeserver, shairport-sync, sigrok-cli, slang,
  2451. smcroute, snmppp, socat, socketcand, sofia-sip, sox,
  2452. spawn-fcgi, speex, sqlcipher, sqlite, squid, strace,
  2453. strongswan, stunnel, sudo, sunxi-boards, swig, sysstat,
  2454. systemd, tcpdump, tftpd, thrift, thttpd, ti-gfx, ti-utils,
  2455. tiff, tinyalsa, tn5250, transmission, trinity, tslib,
  2456. tvheadend, tzdata, uboot-tools, uclibc, ulogd, usb_modeswitch,
  2457. usbutils, ustr, util-linux, vala, valgrind, vlc, wayland,
  2458. webp, weston, wget, which, whois, wireless-regdb,
  2459. wireless_tools, wireshark, wpa_supplicant, wvstreams,
  2460. xapp_{bdftopcf,bitmap,fonttosfnt,fslsfonts},
  2461. xapp_{fstobdf,iceauth,mkfontscale,oclock,rgb,sessreg,setxkbmap},
  2462. xapp_{showfont,smproxy,twm,x11perf,xcalc,xclipboard,xcmsdb},
  2463. xapp_{xdbedizzy,xditview,xdpyinfo,xdriinfo,xedit,xev,xeyes},
  2464. xapp_{xf86dga,xfsinfo,xgamma,xgc,xhost,xinit,xinput,xkbcomp},
  2465. xapp_{xkbevd,xkbprint,xlsatoms,xlsfonts,xmag,xman,xmh,xmodmap},
  2466. xapp_xmore, xcb-util-image, xcb-util-keysyms,
  2467. xdata_xcursor-themes,
  2468. xdriver_xf86-input-{evdev,keyboard,synaptics,void},
  2469. xdriver_xf86-video-{ati,cirrus,geode,mach64,mga,neomagic},
  2470. xdriver_xf86-video-{r128,savage,siliconmotion,sis,tdfx},
  2471. xdriver_xf86-video-{trident,vmware,voodoo}, xenomai,
  2472. xfont_font-util, xkeyboard-config,
  2473. xlib_lib{ICE,X11,Xdmcp,Xfont,Xpm,XvMC},
  2474. xlib_lib{Xxf86vm,xshmfence,xtrans}, xproto_randrproto,
  2475. xproto_xproto, xserver_xorg-server, x11vnc, x264, xerces,
  2476. xorriso, xterm, xz, yaml-cpp, zeromq, zic, zmqpp
  2477. New packages: apache, autoconf-archive, batctl,
  2478. bitstream-vera, bullet, cc-tool, doxygen, drbd-utils,
  2479. dvdrw-tools, gnuradio, gst1-imx, hans, hwloc, ijs,
  2480. imx-usb-loader, inconsolata, iodine, iotop, ipmiutil, jsoncpp,
  2481. leveldb, libdcadec, libdri2, libfreeimage, libftdi1,
  2482. libsidplay2, lirc-tools, lua-periphery, mc, mesa3d-headers,
  2483. mosquitto, nvidia-driver, nvidia-tegra23{,-binaries,-codecs},
  2484. openjpeg, opusfile, perl-crypt-openssl-{random,rsa},
  2485. perl-db-file, perl-digest-{hmac,sha1},
  2486. perl-encode-{detect,locale}, perl-file-{listing,util},
  2487. perl-html-{parser,tagset}, perl-http-cookies,
  2488. perl-http-{daemon,date,message,negotiate}, perl-io-html,
  2489. perl-libwww-perl, perl-lwp-mediatypes, perl-mail-dkim,
  2490. perl-mailtools, perl-mime-base64, perl-net-{dns,http},
  2491. perl-netaddr-ip, perl-time-hires, perl-timedate, perl-uri,
  2492. perl-www-robotrules, powertop, pulseview,
  2493. python-{cherrypy,lxml,mako,pyqt,pyxml,sip,spidev,ws4py}, qpdf,
  2494. qt-webkit-kiosk, sl, softether, sysdig, tinyxml2, tor, tovid,
  2495. unixodbc, wf111, wine, libepoxy, xapp_xcompmgr,
  2496. xapp_xfindproxy, xcb-util-cursor, xcb-util-renderutil,
  2497. xdriver_xf86-input-libinput, xdriver_xf86-video-imx{,-viv},
  2498. xproto_xproxymanagementprotocol
  2499. Removed packages: gtk2-theme-hicolor
  2500. Deprecated packages: samba
  2501. Issues resolved (http://bugs.uclibc.org):
  2502. #7478: Multiple chosen python modules are not built due to...
  2503. #7508: Use of BR2_EXTERNAL and dependencies to existing packages
  2504. #7676: Package procps-ng installs binaries to nonsensical folder
  2505. #7724: Startx is not installed in the target
  2506. #7760: botan: wrong prefix in botan-1.10.pc
  2507. #7826: Building of cdparanoia
  2508. #7844: Lua with hard-float on MIPS by buildroot doesn't work
  2509. #7874: X.org configure error
  2510. #7941: glibc-2.20 fails to build for sparc-buildroot-linux-gnu
  2511. #7951: gcc 4.9.2 fails to build for sparc-buildroot-linux-gnu
  2512. #7961: Qt5 fails to build for xtensa-buildroot-linux-uclibc
  2513. #7976: mkuser script fails with: user already exists with...
  2514. #8011: When building only busybox and strace, strace fails...
  2515. #8016: collectd fails to build, network.c:171:19: error:...
  2516. #8041: error on building libcurl7.42.0
  2517. 2015.02, Released March 1st, 2015
  2518. Minor fixes.
  2519. Updated/fixed packages: civetweb, ding-libs,
  2520. directfb-examples, glibc, gnupg, gnupg2, gpm,
  2521. gst-plugins-good, gst1-plugins-good, freetype, libao, libevas,
  2522. libevent, libfribidi, libgcrypt, libgtk2, libshout, libsrtp,
  2523. libtheora, libupnpp, libxmlrpc, linux, make, opus, pinentry,
  2524. rpi-firmware, shared-mime-info, vlc, vorbis-tools,
  2525. xcb-util-keysyms
  2526. Removed packages: libgc
  2527. 2015.02-rc3, Released February 24th, 2015
  2528. Minor fixes.
  2529. Cmake and rebar (erlang) infrastructure fixes.
  2530. Updated/fixed packages: bind, btrfs-progs, busybox, e2fsprogs,
  2531. evtest, ffmpeg, fltk, gnutls, i2c-tools, imagemagick, libxcb,
  2532. make, mjpg-streamer, netsnmp, opentyrian, php, polarssl,
  2533. qt5base, samba, samba4, sudo, util-linux, xserver_xorg-server
  2534. 2015.02-rc2, Released February 15th, 2015
  2535. Minor fixes.
  2536. raspberrypi: fix kernel sha1 for DT variant.
  2537. Updated/fixed packages: dbus, dvdauthor, git, libsemanage,
  2538. libsepol, libssh2, mplayer, ntp, openvmtools, python3,
  2539. qt5base, qt5connectivity, xserver_xorg-server
  2540. 2015.02-rc1, Released February 8th, 2015
  2541. Fixes all over the tree and new features.
  2542. Static/shared library handling reworked. This is now a
  2543. tristate (shared only / shared and static / static
  2544. only). Default is now shared only to speed up the
  2545. build. BR2_PREFER_STATIC_LIB is now called BR2_STATIC_LIBS.
  2546. The toolchain (internal and external) will now warn when an
  2547. unsafe library or header path is used (such as /usr/include or
  2548. /usr/lib). If BR2_COMPILER_PARANOID_UNSAFE_PATH is enabled
  2549. under build options this instead becomes an error.
  2550. A installation path issue with the internal musl toolchain
  2551. support has been fixed so it is now possible to reuse it as an
  2552. external toolchain.
  2553. Architectures: Freescale E5500 and E6500 PowerPC support
  2554. added, deprecated MIPS 1/2/3/4 support removed.
  2555. New defconfigs: Freescale p2020ds, MIPS creator CI20,
  2556. Raspberrypi with DT, UDOO Quad.
  2557. 'make <foo>_defconfig' now saves the path to the defconfig in
  2558. the .config, so a 'make savedefconfig' automatically updates
  2559. it.
  2560. Infrastructure for packages using the Erland rebar tool has
  2561. been added.
  2562. Hashes for a large number of packages have been added. Hashes
  2563. are now checked for both target and host packages.
  2564. The system menu now has an option to automatically configure a
  2565. network interface through DHCP at bootup.
  2566. The default filesystem skeleton now uses a separate tmpfs for
  2567. /run instead of a symlink to /tmp/ for security reasons / to
  2568. protect against conflicts with user generated temporary files.
  2569. BR2_EXTERNAL is now exported to post-build and post-image
  2570. scripts.
  2571. New packages: bdwgc, benejson, blktrace, bootstrap, cgic,
  2572. ding-libs, dvdauthor, ejabberd, erlang-goldrush, erlang-lager,
  2573. erlang-p1-cache-tab, erlang-p1-iconv, erlang-p1-sip,
  2574. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  2575. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml,
  2576. erlang-p1-zlib, exiv2, freeradius-client, gengetopt, glmark2,
  2577. gpu-amd-bin-mx51, guile, host-qemu, ifupdown, iperf3,
  2578. janus-gateway, kodi, kodi-audioencoder-flac,
  2579. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  2580. kodi-audioencoder-wav, libcli, libiio, liblinear, libnice,
  2581. libselinux, libsemanage, libserialport, libsigro,
  2582. libsigrokdecode, libsrtp, liburiparser, libvips, libwebsock,
  2583. libz160, libzip, lightning, mcelog, memtest86, mjpegtools,
  2584. mjpg-streamer, mke2img, mpd-mpc, netsurf-buildsystem, odhcp6c,
  2585. openldap, python-alsaaudio, python-certifi, python-cheetah,
  2586. python-coherence, python-django, python-docopt, python-enum,
  2587. python-enum34, python-flask, python-gobject, python-httplib2,
  2588. python-ipaddr, python-itsdangerous, python-jinja,
  2589. python-markdown, python-markupsafe, python-networkmanager,
  2590. python-pam, python-psutil, python-pyftpdlib, python-pyinotify,
  2591. python-pysendfile, python-pyxb, python-requests, python-six,
  2592. python-twisted, python-webpy, python-werkzeug,
  2593. python-zope-interface, qt5cinex, sigrok-cli, sofia-sip,
  2594. start-stop-daemon, szip, triggerhappy, ustr, vnstat, xorriso,
  2595. xtables-addons
  2596. Removed packages (target): bison, distcc, gob2, m4
  2597. Issues resolved (http://bugs.uclibc.org):
  2598. #7556: make interactive CLI optional for nftables
  2599. #7730: Error while connecting Qt Cretaor to device
  2600. #7766: logrotate default gzip path is usually wrong
  2601. #7790: Invalid ext4 image generated by Buildroot
  2602. 2014.11, Released December 1st, 2014
  2603. Minor fixes.
  2604. Infrastructure: LD_LIBRARY_PATH handling tweak to ensure
  2605. current working directory isn't searched.
  2606. Updated/fixed packages: gd, gdb, libwebsockets, luajit, mono,
  2607. parted, shairport-sync, util-linux, xapp_bdftopcf,
  2608. xserver_xorg-server
  2609. 2014.11-rc3, Released November 28th, 2014
  2610. Fixes all over the tree.
  2611. System: File permissions of /etc/random-seed made more
  2612. restrictive.
  2613. Toolchain: Various fixes related to locale handling, a fix for
  2614. building the toolchain wrapper on MIPS.
  2615. Updated/fixed packages: bind, binutils. botan, btrfsprogs,
  2616. clamav, czmq, dhcp, dillo, dovecot, erlang, flac, gd, glibc,
  2617. gptfdisk, gst1-validate, heirloom-mailx, lame, libksba,
  2618. libllcp, libnspr, libpng, libshairplay, libtirpc, linux,
  2619. linux-headers, mpdecimal, mpg123, network-manager, nfstables,
  2620. nfs-utils, openssl, pcituils, qt, radvd, rtai, sqlcipher,
  2621. sstrip, tcpdump, uclibc, uemacs, ushare, wayland, weston,
  2622. xl2tp, xserver_xorg-server
  2623. Issues resolved (http://bugs.uclibc.org):
  2624. #7670: Fails to build mpc-1.0.2 on latest Cygwin
  2625. 2014.11-rc2, Released November 21st, 2014
  2626. Fixes all over the tree.
  2627. Inittab tweaks for shutdown handling (busybox and sysvinit).
  2628. Updated/fixed packages: aircrack-ng, botan, canfestival,
  2629. clamav, coreutils, czmq, dbus, dovecot, duma, e2fsprogs,
  2630. erlang, gcc, iputils, libcap, libgcrypt, libmemcached,
  2631. libssh2, libunwind, libv4l, linux-headers, mesa3d-demos, mutt,
  2632. mysql, ndisc6, nodejs, omniorb, perl-cross, php,
  2633. python-tornado, python3, qemu, qt5base, qt5webkit, rpm,
  2634. rt-tests, ruby, schifra, sdl_sound, shairport-sync, sysvinit,
  2635. tstools, tzdata, wireshark, x264
  2636. Issues resolved (http://bugs.uclibc.org):
  2637. #7646: strftime on datetime not works on python3
  2638. 2014.11-rc1, Released November 12th, 2014
  2639. Fixes all over the tree and new features.
  2640. Toolchains: Use -mcpu / -march instead of -mtune. Support
  2641. additional ARC and sparc variants. Updated Code sourcery
  2642. and Linaro external toolchains.
  2643. Defconfigs: Freescale iMX6DL SabreSD, Minnowboard MAX, QEMU
  2644. powerpc64 pseries added and a number of updates to the
  2645. existing configurations.
  2646. Infrastructure: Buildroot is now less noisy when built with
  2647. the silent option (make -s).
  2648. A number of package infrastructure variables have been renamed
  2649. from *_OPT to *_OPTS for constency. Buildroot will complain if
  2650. the old names are used to assist in updating out of tree
  2651. packages.
  2652. Fixes for host systems where bash isn't located in /bin, and
  2653. older systems not supporting mktemp --tmpdir.
  2654. Various cleanups of users/groups in the default skeleton.
  2655. There is now an option to choose what shell /bin/sh points to.
  2656. Documentation: Various updates to the user manual. The
  2657. asciidoc documentation handling has now been extended so it
  2658. can be used by (BR2_EXTERNAL) packages.
  2659. Updated/fixed packages: acl, acpid, agentpp, aircrack-ng,
  2660. alsa-lib, alsamixergui, alsa-utils, apitrace, apr, apr-util,
  2661. argus, arptables, at, atftp, atk, attr, audiofile, aumix,
  2662. automake, autossh, avahi, avrdude, axel, bandwidthd, bash,
  2663. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  2664. bluez_utils, bmon, boost, bootutils, bridge-utils,
  2665. btrfs-progs, busybox, bwm-ng, bzip2, ca-certificates, cairo,
  2666. ccache, ccid, ccrypt, cdrkit, cegui06, celt051, chrony,
  2667. cifs-utils, civetweb, cjson, clapack, classpath, cloog, cmake,
  2668. collectd, connman, copas, coreutils, coxpcall, cppcms, cppdb,
  2669. cppzmq, cramfs, crda, cryptsetup, ctorrent, cups, cvs, cwiid,
  2670. czmq, dash, dbus, dbus-cpp, dbus-glib, dbus-python, dejavu,
  2671. dhcp, dhcpcd, dhcpdump, dialog, dillo, directfb, distcc,
  2672. dmalloc, dmidecode, dmraid, dnsmasq, doc-asciidoc.mk,
  2673. dosfstools, dropbear, dropwatch, dstat, dtach, dtc, dvbsnoop,
  2674. e2fsprogs, ecryptfs-utils, ed, efl, eigen, elf2flt, elfutils,
  2675. enlightenment, enscript, erlang, espeak, ethtool, eudev,
  2676. evemu, evtest, exfat, exfat-utils, exim, expat, expect,
  2677. explorercanvas, faifa, fakeroot, fan-ctrl, fbdump,
  2678. fb-test-app, fetchmail, ffmpeg, file, filemq, findutils, flac,
  2679. flann, flickcurl, flite, fltk, fluxbox, fmc, fmlib,
  2680. fontconfig, foomatic-filters, freerdp, freescale-imx,
  2681. freetype, ftop, fxload, gamin, gcc, gd, gdb, gdk-pixbuf,
  2682. genimage, genpart, genromfs, geoip, gettext, giblib, git,
  2683. glibc, glib-networking, gmp, gmpc, gnu-efi, gnupg, gnupg2,
  2684. gnuplot, gnutls, google-breakpad, gpm, gpsd, gptfdisk,
  2685. gpu-viv-bin-mx6q, grantlee, grep, gsl, gst1-libav,
  2686. gst1-plugins-{bad,base,good,ugly}, gst-ffmpeg,
  2687. gst-fsl-plugins, gst-omx, gst-plugins-{bad,base,good,ugly},
  2688. gst-plugin-x170, gstreamer, gstreamer1, gtest, gtk2-engines,
  2689. gutenprint, gvfs, harfbuzz, haserl, haveged, hdparm, heimdal,
  2690. heirloom-mailx, hiawatha, hostapd, hplip, htop, httping,
  2691. hwdata, i2c-tools, icu, ifplugd, igh-ethercat, imagemagick,
  2692. imlib2, imx-lib, imx-vpu, inadyn, inotify-tools, input-tools,
  2693. intltool, iperf, iproute2, iprutils, ipsec-tools, ipset,
  2694. iptables, iputils, iw, jamvm, jansson, jasper, jimtcl, joe,
  2695. jpeg-turbo, jq, jquery-keyboard, jquery-mobile, jquery-ui,
  2696. jquery-ui-themes, jquery-validation, jsmin, json-c,
  2697. json-javascript, kbd, kexec, kexec-lite, keyutils, kismet,
  2698. kmod, knock, ktap, lame, lbase64, lbreakout2, lcdproc, lcms2,
  2699. lesstif, lftp, libaio, libao, libarchive, libargtable2,
  2700. libass, libassuan, libatasmart, libbluray, libbsd, libcap,
  2701. libcap-ng, libcdio, libcec, libcgicc, libcgroup, libcofi,
  2702. libconfig, libconfuse, libcurl, libdaemon, libdnet, libdrm,
  2703. libdvdnav, libecore, libedbus, libedit, libedje, libeet,
  2704. libelementary, libelf, libenca, libethumb, libevas,
  2705. libevas-generic-loaders, libevent, libexif, libeXosip2,
  2706. libffi, libftdi, libfuse, libgail, libgcrypt, libgeotiff,
  2707. libglade, libglib2, libgpgme, libgtk2, libhid, libidn,
  2708. libinput, libiscsi, libjson, libksba, liblockfile,
  2709. liblog4c-localtime, liblogging, libmad, libmatroska, libmbim,
  2710. libmemcached, libmicrohttpd, libmpdclient, libmpeg2, libndp,
  2711. libnfc, libnfs, libnftnl, libnl, libnspr, libnss, liboauth,
  2712. libogg, liboping, libosip2, libpcap, libpciaccess, libpfm4,
  2713. libplayer, libplist, libpng, libpthsem, libqmi, libqrencode,
  2714. libraw, libreplaygain, libroxml, librsvg, librtlsdr,
  2715. libsamplerate, libseccomp, libsecret, libshairplay, libsoc,
  2716. libsoup, libsoxr, libssh2, libstrophe, libsvg, libsvg-cairo,
  2717. libtasn1, libtheora, libtirpc, libtorrent, libubox, libuci,
  2718. libungif, liburcu, libusb, libuv, libv4l, libva,
  2719. libva-intel-driver, libvncserver, libvorbis, libvpx,
  2720. libwebsockets, libxcb, libxml2, libxml-parser-perl, libxmlrpc,
  2721. libxslt, lighttpd, linenoise, linknx, links, linphone,
  2722. linux-firmware, linux-fusion, linux-headers, linux-pam,
  2723. linux-zigbee, lite, live555, ljlinenoise, lmbench, lm-sensors,
  2724. localedef, lockdev, lockfile-progs, log4cxx, lpty, lrandom,
  2725. lrzsz, lshw, lsof, lsqlite3, ltp-testsuite, ltrace, ltris,
  2726. lttng-babeltrace, lttng-libust, lttng-modules, lttng-tools,
  2727. lua, luabitop, lua-coat, lua-coatpersistent, lua-csnappy,
  2728. lua-ev, luajit, luajson, lualogging, lua-messagepack,
  2729. lua-msgpack-native, luaposix, luarocks, luasec, luasocket,
  2730. luasql-sqlite3, lua-testmore, lunit, lvm2, lxc, lz4, lzlib,
  2731. lzma, m4, madplay, make, makedevs, Makefile.in,
  2732. matchbox-common, matchbox-desktop, matchbox-fakekey,
  2733. matchbox-keyboard, matchbox-lib, matchbox-panel,
  2734. matchbox-startup-monitor, matchbox-wm, mcrypt, mdadm,
  2735. media-ctl, mediastreamer, memcached, memstat, memtester,
  2736. mesa3d, metacity, midori, mii-diag, minidlna, mmc-utils,
  2737. modem-manager, mongoose, mongrel2, monit, mpc, mpd, mpdecimal,
  2738. mpfr, mpg123, mplayer, mrouted, msmtp, mtd, mtools, mtr,
  2739. musepack, musl, mutt, mxml, mysql, nano, nanocom, nbd, ncftp,
  2740. ncurses, ndisc6, ne10, neard, neon, netatalk, netperf,
  2741. netsnmp, nettle, net-tools, network-manager, newt, nfs-utils,
  2742. ngrep, nmap, nodejs, nss-mdns, ntfs-3g, ntp, numactl, nut,
  2743. nuttcp, ofono, ola, omap-u-boot-utils, omniorb,
  2744. on2-8170-modules, opencore-amr, opencv, openntpd, openobex,
  2745. openocd, openpowerlink, openssh, openssl, openswan,
  2746. opentyrian, opentyrian-data, openvpn, opkg, oprofile, opus,
  2747. opus-tools, orbit, orc, ortp, p11-kit, pango, parted,
  2748. pciutils, pcmanfm, pcre, pcsc-lite, perf, perl, perl-gd,
  2749. perl-gdgraph, perl-io-socket-ssl, perl-json-tiny,
  2750. perl-module-build, perl-mojolicious, perl-net-ssleay,
  2751. perl-path-tiny, perl-xml-libxml, perl-xml-parser, php,
  2752. php-geoip, php-gnupg, php-imagick, php-memcached, php-ssh2,
  2753. php-yaml, php-zmq, picocom, pifmrds, pinentry, pixman,
  2754. pkg-autotools.mk, pkg-cmake.mk, pkg-download.mk,
  2755. pkg-generic.mk, pkg-kconfig.mk, pkg-luarocks.mk, pkg-perl.mk,
  2756. pkg-python.mk, pkg-utils.mk, poco, polarssl, polkit, poppler,
  2757. popt, portaudio, portmap, postgresql, powerpc-utils, pppd,
  2758. pptp-linux, prboom, procps-ng, proftpd, protobuf, protobuf-c,
  2759. psmisc, ptpd2, pulseaudio, pv, pwgen, python, python3,
  2760. python-dialog, python-ipy, python-keyring, python-mad,
  2761. python-netifaces, python-numpy, python-protobuf, python-pyasn,
  2762. python-pyparsing, python-pyro, python-pyusb, python-serial,
  2763. python-setuptools, qdecoder, qemu, qextserialport, qjson, qt,
  2764. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  2765. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  2766. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  2767. qt5serialport, qt5svg, qt5webkit, qt5webkit-examples,
  2768. qt5websockets, qt5x11extras, qt5xmlpatterns, qtuio, quagga,
  2769. quota, qwt, radvd, rapidjson, rdesktop, redis, rings, rpcbind,
  2770. rpi-firmware, rpi-userland, rpm, rp-pppoe, rrdtool,
  2771. rsh-redone, rsync, rsyslog, rtai, rtmpdump, rt-tests, rubix,
  2772. ruby, samba, sam-ba, samba4, sane-backends, schifra,
  2773. sconeserver, scons, screen, sdl, sdl_gfx, sdl_image,
  2774. sdl_mixer, sdl_net, sdl_sound, sdl_ttf, sed, ser2net,
  2775. setserial, sg3_utils, shared-mime-info, simicsfs, sispmctl,
  2776. slang, slirp, smcroute, smstools3, snmppp,
  2777. snowball-hdmiservice, socat, socketcand, sox, spawn-fcgi,
  2778. speex, spice, spice-protocol, sqlcipher, sqlite, squashfs,
  2779. squid, sredird, startup-notification, strace, stress,
  2780. strongswan, stunnel, subversion, sudo, sunxi-boards,
  2781. sunxi-cedarx, swig, sylpheed, synergy, sysklogd, sysstat,
  2782. systemd, sysvinit, taglib, tar, tcl, tcllib, tcpdump,
  2783. tcpreplay, texinfo, tftpd, thrift, thttpd, tiff, ti-utils,
  2784. tn5250, torsmo, trace-cmd, transmission, tslib, tstools,
  2785. tvheadend, twolame, tz, uboot-tools, uclibc, udisks, ulogd,
  2786. upmpdcli, upx, urg, usb_modeswitch, usbmount, usbredir,
  2787. usbutils, util-linux, valgrind, vde2, vim, vlc, vo-aacenc,
  2788. vorbis-tools, vpnc, vsftpd, vtun, wayland, webkit, webp,
  2789. webrtc-audio-processing, weston, wget, whois, wireless-regdb,
  2790. wireshark, wpa_supplicant, wvstreams, x11r7, x11vnc,
  2791. xapp_xcalc, xapp_xdm, xapp_xdpyinfo, xapp_xf86dga, xapp_xfs,
  2792. xapp_xinit, xapp_xkbevd, xapp_xmh, xapp_xrandr, xapp_xsm,
  2793. xbmc, xbmc-pvr-addons, xcb-proto, xcursor-transparent-theme,
  2794. xdriver_xf86-input-mouse, xdriver_xf86-video-{ast,intel},
  2795. xdriver_xf86-video-vmware, xenomai, xerces,
  2796. xfont_font-adobe-{100,75}dpi,
  2797. xfont_font-adobe-utopia-{100dpi,75dpi,type1},
  2798. xfont_font-alias, xfont_font-arabic-misc,
  2799. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  2800. xfont_font-bh-lucidatypewriter-100dpi,
  2801. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  2802. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  2803. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  2804. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  2805. xfont_font-daewoo-misc, xfont_font-dec-misc,
  2806. xfont_font-ibm-type1, xfont_font-isas-misc,
  2807. xfont_font-jis-misc, xfont_font-micro-misc,
  2808. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  2809. xfont_font-misc-meltho, xfont_font-misc-misc,
  2810. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  2811. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  2812. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  2813. xfont_font-xfree86-type1, xfsprogs, xinetd, xkeyboard-config,
  2814. xlib_libdmx, xlib_libFS, xlib_libpciaccess, xlib_libSM,
  2815. xlib_libX11, xlib_libXaw, xlib_libXext, xlib_libXfont,
  2816. xlib_libXi, xlib_libXinerama, xlib_libXrandr, xlib_libXrender,
  2817. xlib_libXres, xlib_libXScrnSaver, xlib_libXt, xlib_libXv,
  2818. xlib_libXvMC, xlib_libXxf86dga, xlib_libXxf86vm, xmlstarlet,
  2819. xproto_xcmiscproto, xproto_xextproto, xscreensaver,
  2820. xserver_xorg-server, xterm, xz, zeromq, zlib, zlog, zmqpp,
  2821. znc, zsh, zxing
  2822. New packages: adwaita-icon-theme, am335x-pru-package,
  2823. bcache-tools, biosdevname, botan, canfestival, clamav,
  2824. cppunit, dos2unix, dovecot, dovecot-pigeonhole, getent, glm,
  2825. gst1-validate, hicolor-icon-theme, ipmitool, leafnode2,
  2826. libdvbcsa, libgtk3, libphidget, libshout, libunistring,
  2827. libupnpp, mesa3d-demos, modplugtools, mono, monolite, mp4v2,
  2828. netcat-openbsd, nginx, odhcploc, openvmtools,
  2829. phidgetwebservice, pps-tools, pure-ftpd,
  2830. python-configshell-fb, python-rtslib-fb, python-urwid, qlibc,
  2831. qt5location, shairport-sync, spidev_test, targetcli-fb,
  2832. tinyalsa, trinity, x264, yaml-cpp, ympd
  2833. Removed packages: libelf
  2834. Issues resolved (http://bugs.uclibc.org):
  2835. #261: New package: wxWidgets
  2836. #325: New package: ratpoison
  2837. #405: New package: OpenVZ tools
  2838. #1309: New package: rdiff-backup
  2839. #3427: New package: nginx
  2840. #3655: New package: libav
  2841. #3991: New Package: open-vm-tools (Vmware Tools)
  2842. #6878: dmraid: disabled on ARC
  2843. #6950: Full unicode support in ncurses
  2844. #7010: jamvm builds and runs fine under mips (be)
  2845. #7088: elfutils on Blackfin doesn't build
  2846. #7142: ecryptfs needs getent to run
  2847. #7280: CMake toolchain file uses the FORCE attribute on CMAKE_CXX_FLAGS
  2848. #7346: [2014.08rc3] vim-8ae50e3ef8bf.tar.gz can not be downloaded, ...
  2849. #7352: [2014.08-rc3] diffutils-3.3 failed on building
  2850. #7358: rpi-userland: linking with bcm_host doesn't give vc_dispmanx_*
  2851. #7364: monit builds a static application, even though BR2_PREFER_...
  2852. #7370: ngrep - requires --with-pcap-includes fully defined to find...
  2853. #7442: rootfs remount does not work as expected with sysvinit
  2854. #7448: Having export MACHINE="something" breaks glibc build on IMX6...
  2855. #7568: musl buildroot-toolchain does not put libgcc_s.so.1 into place
  2856. #7574: quota-4.01 fails to build statically
  2857. 2014.08, Released September 1st, 2014
  2858. Minor manual fixes/additions.
  2859. Updated/fixed packages: btrfs-progs, cmake, cppcms, exim,
  2860. lftp, libdaemon, libev, libgpgme, libiqrf, libnl, libplist,
  2861. libroxml, libwebsockets, mesa3d, mpd, mtdev2tuio, musepack,
  2862. perl-gd, php-geoip, php-gnupg, php-imagick, php-memcached,
  2863. php-ssh2, php-yaml, php-zmq, polarssl, ruby, systemd, taglib,
  2864. uboot-tools, upmpdcli, webkit, xapp_xfs, xapp_luit,
  2865. xscreensaver, yajl
  2866. Issues resolved (http://bugs.uclibc.org):
  2867. #7346: vim-8ae50e3ef8bf.tar.gz can not be downloaded, 404 not found
  2868. 2014.08-rc3, Released August 26th, 2014
  2869. Minor fixes.
  2870. User manual update / restructuring.
  2871. Updated/fixed packages: cairo, ecryptfs-utils, gettext,
  2872. gstreamer, gstreamer1, gutenprint, icu, imagemagick, jack2,
  2873. lbreakout2, libevas-generic-loaders, libftdi, libinput,
  2874. libtorrent, ltris, msgpack, ntp, php, procps-ng, pulseaudio,
  2875. thrift, tvheadend, usb_modeswitch, xmlstarlet,
  2876. Issues resolved (http://bugs.uclibc.org):
  2877. #7136: ecryptfs-utils needs gettext to run when glibc/eglibc...
  2878. #7322: libgomp dependency issue with imagemagick
  2879. #7328: Git dl of versions in x/y broken
  2880. 2014.08-rc2, Released August 18th, 2014
  2881. Fixes all over the tree.
  2882. User manual restructured / reworked.
  2883. Toolchain: Fix for C++ exceptions / pthread_exit() on
  2884. uClibc/glibc, C++-11 features with uClibc.
  2885. Updated/fixed packages: bandwidthd, bluez5_utils, empty,
  2886. espeak, fbv, ffmpeg, gd, gnupg2, gst1-plugin-good, iftop,
  2887. infozip, libcuefile, libeml, libnftl, localedef, ltrace,
  2888. matchbox, mpd, network-manager, nftables, ngrep, nut, openssl,
  2889. oprofile, perl, perl-net-ssleay, postgresql, pppd, procps-ng,
  2890. qt, subversion, synergy, systemd, tar, tftpd, webkit,
  2891. xapp_rstart, xbmc, xbmc-pvr-addons
  2892. Issues resolved (http://bugs.uclibc.org):
  2893. #7124: Use BR toolchain externally results a non-bootable...
  2894. #7208: Glibc C++ aplications crash if they use exceptions
  2895. #7250: Cannot build with -std=c++11
  2896. #7262: Generating locale en_US.UTF-8 fails on 64bit fedora..
  2897. #7286: systemd 215 doesn't build
  2898. 2014.08-rc1, Released August 8th, 2014
  2899. Fixes all over the tree and new features.
  2900. Architecture: Powerpc64 BE/LE added, AVR32 deprecated.
  2901. Improved altivec / SPE /atomic instructions
  2902. handling. Additional PowerPC CPU variants added.
  2903. Defconfigs: Atmel SAMA5D3, Congatec QMX6, Lego ev3, TS-5x00,
  2904. qemu-system-xtensa, qemu-aarch64-virt added. A number of
  2905. tweaks to existing ones. lpc32xx defconfigs removed.
  2906. Toolchain: Microblaze support for internal musl toolchain.
  2907. Default to GCC 4.8 for internal toolchain, remove deprecated
  2908. 4.3 and 4.6 versions.
  2909. External CodeSourcery / Linaro toolchain updates, option to
  2910. copy gconv libraries for external toolchains.
  2911. Infrastructure: graph-depends: misc fixes, transitive
  2912. dependencies are not drawn by default. Download handling is
  2913. now done using helper scripts. Integrity of downloads can now
  2914. be verified using sha* hashes. Subversion download now uses
  2915. peg revisions for robustness.
  2916. Legal-info: License info of local or overridden packages are
  2917. saved as well. Toolchain packages are also taken into account.
  2918. autotools: Static linking with libtool / v1.5 improvements.
  2919. Gettextize support, similar to autoreconf.
  2920. kconfig package infrastructure added.
  2921. Misc: Version selection for busybox dropped.
  2922. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  2923. alsamixergui, argus, armadillo, at, atftp, atk, avahi,
  2924. avrdude, axel, b43-firmware, b43-fwcutter, bandwidthd, bc,
  2925. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  2926. bmon, boa, bonnie, bootutils, bsdiff, btrfs-progs, bustle,
  2927. busybox, bwm-ng, bzip2, ca-certificates, cairo, can-utils,
  2928. ccache, ccrypt, chrony, cifs-utils, classpath, cloog, cmake,
  2929. collectd, connman, coreutils, cosmo, cppcms, cramfs, crda,
  2930. cryptodev-linux, cryptodev, ctorrent, cvs, dbus-cpp,
  2931. dbus-glib, dbus-python, dbus, dcron, dejavu, devmem2,
  2932. dfu-util, dhcp, dhcpcd, dhcpdump, dhrystone, dialog, dillo,
  2933. distcc, dmidecode, dmraid, dnsmasq, doom-wad, dropbear,
  2934. dropwatch, dsp-tools, dtv-scan-tables, dvb-apps, e2fsprogs,
  2935. e2tools, eeprog, eigen, elf2flt, elftosb, enlightenment,
  2936. enscript, espeak, ethtool, eudev, evemu, exim, expedite,
  2937. explorercanvas, ezxml, faifa, fan-ctrl, fconfig, feh,
  2938. fetchmail, ffmpeg, fftw, file, fio, fis, flann, flashrom,
  2939. flex, flot, fltk, fontconfig, freerdp, freescale-imx,
  2940. freetype, ftop, gcc, gd, gdb, genimage, genromfs, gettext,
  2941. giblib, glib-networking, glibc, gmp, gnupg, gnutls, gpm, gpsd,
  2942. gptfdisk, gpu-viv-bin-imx6q, gqview, grantlee, gst-ffmpeg,
  2943. gst-fsl-plugins, gst1-libav, gst1-plugins-bad,
  2944. gst1-plugins-ugly, gtk2-engines, gtk2-theme-hicolor, gtkperf,
  2945. gvfs, haserl, hdparm, hostapd, httping, i2c-tools, icu,
  2946. imagemagick, imx-lib, inadyn, inotify-tools, input-tools,
  2947. ipkg, iproute2, iputils, irda-utils, iw, jack2, jpeg, jquery,
  2948. jquery-keyboard, jquery-mobile, jquery-validation, jsmin, kbd,
  2949. kexec, kmod, knock, latencytop, lcdapi, leafpad, lesstif,
  2950. lftp, libaio, libarchive, libargtable2, libart, libatasmart,
  2951. libatomic_ops, libbsd, libcap-ng, libcec, libcgicc, libcgroup,
  2952. libconfuse, libcurl, libdrm, libdvdnav, libdvdread,
  2953. libeXosip2, libedit, liberation, libesmtp, libev, libevas,
  2954. libevdev, libevent, libfcgi, libffi, libfreefare, libfslcodec,
  2955. libfslparser, libfslvpuwrap, libgail, libgcrypt, libglade,
  2956. libglib2, libgpgme, libgtk2, libhid, libical, libiconv,
  2957. libiqrf, libjpeg, liblog4c-localtime, libmbus, libmicrohttpd,
  2958. libmms, libndp, libnftnl, libnl, libnspr, libnss, liboauth,
  2959. libpcap, libpng, libpthsem, libqmi, libraw, libraw1394,
  2960. librsvg, libsoc, libsoup, libsvgtiny, libsysfs, libtasn1,
  2961. libtirpc, libtorrent, libusb, libv4l, libwebsockets, libxcb,
  2962. libxml2, libyaml, links, linux-firmware, linux-fusion,
  2963. linux-headers, linux-pam, lite, live555, lm-sensors,
  2964. lockfile-progs, lpc3250loader, lshw, lsof, lsuio, ltrace,
  2965. ltris, lua-messagepack, luainterpreter, luajit, luaposix,
  2966. luarocks, lvm2, lxc, lz4, lzo, make, makedevs, mdadm,
  2967. mediastreamer, mesa3d, metacity, minidlna, mkpasswd,
  2968. modem-manager, mongoose, mpd, mpg123, msgpack, mtd, mtools,
  2969. mtr, musepack, musl, mysql, nano, nasm, nbd, ncurses, ndisc6,
  2970. netatalk, netplug, network-manager, nftables, ngircd, nodejs,
  2971. nss-mdns, ntp, nut, olsr, open2300, opencv, openntpd, openocd,
  2972. openpgm, openpowerlink, openssh, openssl, openswan, openvpn,
  2973. opkg, oprofile, opus-tools, orc, p910nd, pango, parted,
  2974. pax-utils, pcmanfm, perf, perl, perl-module-build, php,
  2975. pixman, pkgconf, poco, polarssl, popt, portmap, postgresql,
  2976. prboom, protobuf-c, proxychains-ng, psmisc, psplash, ptpd2,
  2977. python,
  2978. python-{bottle,dpkt,id3,mad,msgpack,nfc,pygame,pyzmq,simplejson},
  2979. python3, qhull, qt, qt5base, qt5connectivity, qt5declarative,
  2980. qt5graphicaleffects, qt5multimedia, qt5quickcontrols,
  2981. qt5sensors, qt5svg, qt5webkit, quagga, quota, radvd, rdesktop,
  2982. read-edid, rpcbind, rpi-firmware, rpi-userland, rpm,
  2983. rsh-redone, rsync, rt-tests, rtmpdump, rtorrent, rubix, ruby,
  2984. samba, samba4, sane-backends, sawman, sconeserver, setserial,
  2985. sg3_utils, shared-mime-info, smartmontools, smcroute, snappy,
  2986. socketcand, spawn-fcgi, sqlite, squashfs, squid, sredird,
  2987. startup-notification, statserial, strongswan, stunnel,
  2988. sunxi-mali, supervisor, synergy, sysklogd, sysprof, sysstat,
  2989. systemd, tcpdump, tcpreplay, texinfo, thrift, thttpd, ti-gfx,
  2990. ti-utils, tinyhttpd, torsmo, trace-cmd, transmission, tslib,
  2991. tstools, tvheadend, tzdata, uboot-tools, uclibc, udev,
  2992. udpcast, usb_modeswitch, usbmount, util-linux, valgrind, vim,
  2993. vlc, w_scan, wayland, webrtc-audio-processing, weston, wget,
  2994. wireless-regdb, wireless_tools, wireshark, wpa_supplicant,
  2995. xapp_{twm,xconsole,xcursorgen,xedit,xfs,xinit,xrandr},
  2996. xdriver_xf86-video-intel, xlib_lib{FS,ICE,Xext,Xfont,Xft,Xi},
  2997. xproto_fontsproto, xproto_inputproto, xserver_xorg-server,
  2998. x11vnc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons, xterm, xvkbd,
  2999. xz
  3000. New packages: flickcurl, fmc, fmlib, geoip, gnupg2,
  3001. google-breakpad, imx-vpu, isl, kexec-lite, libglew, libglu,
  3002. libinput, libksba, libmemcached, libmpdclient, librtlsdr,
  3003. libuv, libva, libva-intel-driver, linux-zigbee, memcached,
  3004. mpdecimal, ncmpc, opencore-amr, patchelf, perl-datetime-tiny,
  3005. perl-gd, perl-gdgraph, perl-gdtextutil, perl-io-socket-ssl,
  3006. perl-json-tiny, perl-mojolicious, perl-net-ssleay,
  3007. perl-path-tiny, perl-try-tiny, perl-xml-libxml,
  3008. perl-xml-namespacesupport, perl-xml-sax, perl-xml-sax-base,
  3009. php-geoip, php-memcached, pifmrds, pinentry, powerpc-utils,
  3010. procps-ng, pwgen, python-cffi, python-daemon, python-flup,
  3011. python-ipython, python-numpy, qt5enginio, qt5webkit-examples,
  3012. qt5websockets, simicsfs, sispmctl, sox, sshpass, tclap,
  3013. twolame, upmpdcli, whois, xlib_libxshmfence, xproto_dri3proto
  3014. Removed packages: procps
  3015. Issues resolved (http://bugs.uclibc.org):
  3016. #5750: Doing a Buildroot build from /usr doesn't work
  3017. #5900: config flags to the Xenomai build system
  3018. #6230: Cannot compile gcc without threads (uClibc-based)
  3019. #6626: procps Unknown HZ value! (XX) Assume 100
  3020. #7118: Package "thrift" requires atomic operations
  3021. #7154: Local uClibc config file gets overwritten using ...
  3022. #7160: host-xz not built
  3023. #7166: hostapd: segfault when using RT5370
  3024. #7172: Name collision of rpath token expansion and internal..
  3025. #7178: NTPd package cannot sync time without a proper ntp.conf
  3026. #7184: supervisord depends on libxml2 implicitly
  3027. #7196: Unable to build on UBUNTU13.10
  3028. #7268: python 2.7 compilation issue on a Debian/Ubuntu ...
  3029. 2014.05, Released May 31st, 2014
  3030. Minor fixes.
  3031. Minor manual fixes. U-Boot now defaults to spl/u-boot-spl.bin
  3032. for the spl file.
  3033. Updated/fixed packages: exim, glibc, gnutls, libfribidi,
  3034. qt5base, qt5webkit, sysklogd, thrift, u-boot
  3035. 2014.05-rc3, Released May 28th, 2014
  3036. Minor fixes.
  3037. Updated/fixed packages: acl, attr, connman, dosfstools,
  3038. dropbear, dvb-apps, exim, flite, gdb, httping, hwdata,
  3039. lesstif, libnss, libv4l, lttng-babeltrace, midori, monit,
  3040. mplayer, php, python2, rdesktop, rpi-userland, ruby, samba,
  3041. samba4, slang, xbmc
  3042. Issues resolved (http://bugs.uclibc.org):
  3043. #7100: license info for package 'acl' missing
  3044. #7106: license info for package 'attr' missing
  3045. #7112: license info for package 'hwdata'
  3046. 2014.05-rc2, Released May 21st, 2014
  3047. Fixes all over the tree.
  3048. Stripping using sstrip has been deprecated.
  3049. BR2_EXTERNAL can now also be used to implement custom
  3050. filesystem types.
  3051. The newly added BR2_GRAPH_DEPTH variable to limit the depth of
  3052. the generated dependency graph has been renamed to
  3053. BR2_GRAPH_DEPS_OPTS, so additional options can be supported in
  3054. the future.
  3055. The virtual package infrastructure will now error out early
  3056. if multiple packages providing the same virtual package has
  3057. been enabled (E.G. opengl). This change requires that the
  3058. packages explicitly declare what virtual package(s) they
  3059. provide.
  3060. Updated/fixed packages: acpid, armadillo, avahi, bellagio,
  3061. btrfs-progs, cairo, clapack, directfb, duma, ecryptfs-utils,
  3062. elfutils, eudev, fbgrab, fio, flann, fluxbox, gdb, gpm,
  3063. gpu-viv-bin-mx6q, gst1-plugins-good, gst-plugins-good,
  3064. imagemagick, iprutils, ipsec-tools, jack2, libdvdnav,
  3065. libdvdread, libnss, libunwind, linux-headers, lsof, lua,
  3066. luajit, matchbox-keyboard, mesa3d, mpd, mplayer, mtr, mysql,
  3067. netsnmp, nodejs, openpowerlink, openvpn, pciutils,
  3068. php-imagick, postgresql, pulseaudio, qt5quick1, rpi-userland,
  3069. rsyslog, samba, samba4, sane-backends, sunxi-mali, systemd,
  3070. ti-gfx, tstools, udev, webkit, wpa_supplicant, xbmc,
  3071. xlib_libXpm, xserver_xorg-server, zyre
  3072. Issues resolved (http://bugs.uclibc.org):
  3073. #5396: Boot hangs when starting samba if BR2_ENABLE_LOCALE...
  3074. #7016: Git issues in resulting buildroot tar
  3075. #7094: pciutils doesn't build on Blackfin
  3076. 2014.05-rc1, Released May 13th, 2014
  3077. Fixes all over the tree and new features.
  3078. Architectures: Support for MIPS o32 ABI on MIPS-64 targets has
  3079. been removed. Building o32 ELF files for MIPS64 is an exotic
  3080. configuration that nobody should be using. If o32 is required,
  3081. then is better if it's built for MIPS 32-bit cores so only
  3082. 32-bit instructions will be used leading to a more efficient
  3083. o32 usage.
  3084. Support for the ARM A12 variant and Intel corei7.
  3085. Configs: Minnowboard and Altera SoCkit added, QEMU updates.
  3086. Bootloaders: Grub2 and gummiboot support, syslinux support
  3087. extended.
  3088. Toolchains: GCC 4.9. Glibc 2.19. Support for the musl C
  3089. library for internal and external toolchains. 4.8-R3 support
  3090. for ARC, Internal toolchain support for Aarch64 and
  3091. Microblaze. Environment variable to control debug output of
  3092. toolchain wrapper renamed to BR2_DEBUG_WRAPPER to match the
  3093. other variables. Toolchain tuple vendor name can now be
  3094. customized. Updated external Linaro ARM/Aarch64
  3095. toolchains. Added external Linaro ARMEB toolchain.
  3096. A GDB gdbinit file is now generated for external toolchains to
  3097. automatically set the correct sysroot.
  3098. Kconfig handling for minimum kernel headers version required
  3099. for packages. Now packages needing specific kernel header
  3100. features can specify these requirements in Kconfig.
  3101. Infrastructure: Support for (but disabled as it leads to
  3102. unreproducible builds) toplevel parallel builds. See the
  3103. comment at the top of Makefile for details about how to enable
  3104. it and what the problems are if you want to test it.
  3105. Python package infrastructure extended to support Python 3.x
  3106. Perl and virtual package infrastructure support added.
  3107. PRE_*_HOOKS support for all build steps.
  3108. Updated/fixed packages: acpid, agentpp, aiccu, apr, avahi,
  3109. barebox, bash, beecrypt, bellagio, binutils, boost,
  3110. boot-wrapper-aarch64, bustle, busybox, ca-certificates, cairo,
  3111. ccache, ccid, cgilua, chrony, cifs-utils, civetweb, cmake,
  3112. collectd, connman, coreutils, coxpcall, cppcms, cppzmq, crda,
  3113. cryptodev, cryptsetup, cups, czmq, dbus, dhcpdump, directfb,
  3114. dmalloc, dmraid, dnsmasq, dosfstools, dsp-tools, dtc,
  3115. dvb-apps, ebtables, ecryptfs-utils, eigen, erlang, ethtool,
  3116. evemu, evtest, f2fs-tools, fdk-aac, feh, ffmpeg, file, filemq,
  3117. flac, flot, fmtools, fping, freetype, fswebcam, gcc, gd, gdb,
  3118. gettext, giblib, git, glibc, glibmm, glib-networking, gmp,
  3119. gnutls, gpm, gpsd, gpu-viv-bin-mx6q, grep, gst1-libav,
  3120. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  3121. gst1-plugins-ugly, gst-ffmpeg, gst-fsl-plugins, gst-omx,
  3122. gst-plugins-good, gstreamer1, gvfs, harfbuzz, haveged,
  3123. hostapd, htop, httping, ifplugd, iftop, igmpproxy,
  3124. imagemagick, imlib2, imx-lib, infozip, intltool, iproute2,
  3125. ipsec-tools, ipset, jansson, jpeg, jpeg-turbo, jquery,
  3126. jquery-keyboard, jquery-ui, jquery-ui-themes, json-glib,
  3127. json-javascript, kexec, kmod, lame, lbase64, lbreakout2,
  3128. lcdproc, lftp, libao, libatasmart, libatomic_ops, libcap,
  3129. libcdio, libcec, libcgicc, libcgroup, libcurl, libdrm,
  3130. libdvdnav, libdvdread, libegl, libeio, libenca, libesmtp,
  3131. libevas, libevdev, libfribidi, libfslcodec, libfslparser,
  3132. libfslvpuwrap, libgail, libgles, libglib2, libgtk2, libhid,
  3133. libjpeg, libmbim, libmicrohttpd, libmodplug, libnftnl,
  3134. libnspr, libogg, libopenmax, libopenvg, libpcap, libplayer,
  3135. libpng, libpthread-stubs, librsvg, libsigsegv, libsocketcan,
  3136. libsoup, libtasn1, libtool, libtpl, libunwind, liburcu,
  3137. libusb, libwebsockets, libxcb, libxml2, libxmlpp, libyaml,
  3138. lighttpd, linphone, linux-firmware, linux-headers, ljsyscall,
  3139. lmbench, lsof, ltp-testsuite, ltris, lttng-babeltrace,
  3140. lttng-libust, lttng-modules, lttng-tools, lua, lua-cjson,
  3141. luacrypto, lua-ev, luaexpat, luaexpatutils, luafilesystem,
  3142. luainterpreter, luajit, lua-msgpack-native, luaposix,
  3143. luarocks, luasec, luasocket, luasql-sqlite3, lvm2, macchanger,
  3144. memstat, mesa3d, metacity, minidlna, mmc-utils,
  3145. mobile-broadband-provider-info, modem-manager, mongrel2,
  3146. monit, mpd, mplayer, msmtp, mtd, mtools, mutt, mysql, nasm,
  3147. ncurses, ne10, netatalk, netsnmp, nettle, network-manager,
  3148. newt, nfs-utils, nmap, nodejs, ntfs-3g, ntp, nut, ofono, ola,
  3149. olsr, omniorb, opencv, opengl, openpgm, openssh, openssl,
  3150. openswan, openvpn, orbit, orc, p11-kit, pango, parted,
  3151. pciutils, pcre, pcsc-lite, perf, perl, perl-xml-parser, php,
  3152. picocom, pixman, pkgconf, poppler, popt, portmap, powervr,
  3153. pppd, pptp-linux, proftpd, protobuf, protobuf-c, ptpd2,
  3154. pulseaudio, python, python3, python-bottle, python-m2crypto,
  3155. python-netifaces, python-pyasn, python-pycrypto,
  3156. python-pygame, python-pysnmp, python-pysnmp-apps,
  3157. python-pysnmp-mibs, python-serial, python-setuptools,
  3158. qextserialport, qt, qt5, qt5base, qt5connectivity,
  3159. qt5declarative, qt5graphicaleffects, qt5imageformats,
  3160. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  3161. qt5sensors, qt5serialport, qt5svg, qt5webkit, qt5x11extras,
  3162. qt5xmlpatterns, qtuio, qwt, radvd, readline, rings,
  3163. rpi-firmware, rpi-userland, rsh-redone, rsync, rsyslog, rtai,
  3164. rtmpdump, rt-tests, ruby, samba, sconeserver, scons, sdl,
  3165. sdl_image, sdl_mixer, sg3_utils, slang, smstools3, snmppp,
  3166. socat, speex, sqlcipher, sqlite, squashfs, squid, strongswan,
  3167. stunnel, sunxi-boards, sunxi-mali, sunxi-tools, sylpheed,
  3168. syslinux, sysstat, systemd, taglib, tcl, tcllib, tcpreplay,
  3169. tidsp-binaries, ti-gfx, tmux, tvheadend, tzdata, uboot,
  3170. uboot-tools, uclibc, udev, udisks, ulogd, usb_modeswitch,
  3171. usb_modeswitch_data, usbmount, util-linux, valgrind, vlc,
  3172. webkit, weston, wget, wireshark, wpa_supplicant, wsapi,
  3173. w_scan, xapp_appres, xapp_bdftopcf, xapp_beforelight,
  3174. xapp_bitmap, xapp_editres, xapp_fslsfonts, xapp_fstobdf,
  3175. xapp_iceauth, xapp_ico, xapp_mkfontscale, xapp_rgb,
  3176. xapp_rstart, xapp_sessreg, xapp_showfont, xapp_twm,
  3177. xapp_viewres, xapp_xauth, xapp_xbacklight, xapp_xcalc,
  3178. xapp_xclock, xapp_xditview, xapp_xdpyinfo, xapp_xdriinfo,
  3179. xapp_xev, xapp_xfd, xapp_xfontsel, xapp_xfs, xapp_xfsinfo,
  3180. xapp_xgc, xapp_xhost, xapp_xinit, xapp_xkbutils, xapp_xkill,
  3181. xapp_xload, xapp_xlsclients, xapp_xlsfonts, xapp_xmag,
  3182. xapp_xman, xapp_xmessage, xapp_xmodmap, xapp_xprop,
  3183. xapp_xrandr, xapp_xrdb, xapp_xrefresh, xapp_xset,
  3184. xapp_xsetroot, xapp_xsm, xapp_xstdcmap, xapp_xvidtune,
  3185. xapp_xvinfo, xapp_xwd, xapp_xwininfo, xcb-util-wm,
  3186. xdriver_xf86-input-evdev, xdriver_xf86-input-joystick,
  3187. xdriver_xf86-input-keyboard, xdriver_xf86-input-mouse,
  3188. xdriver_xf86-input-synaptics, xdriver_xf86-input-vmmouse,
  3189. xdriver_xf86-video-ark, xdriver_xf86-video-ast,
  3190. xdriver_xf86-video-ati, xdriver_xf86-video-cirrus,
  3191. xdriver_xf86-video-dummy, xdriver_xf86-video-fbdev,
  3192. xdriver_xf86-video-geode, xdriver_xf86-video-glide,
  3193. xdriver_xf86-video-glint, xdriver_xf86-video-i128,
  3194. xdriver_xf86-video-intel, xdriver_xf86-video-mach64,
  3195. xdriver_xf86-video-mga, xdriver_xf86-video-neomagic,
  3196. xdriver_xf86-video-newport, xdriver_xf86-video-nv,
  3197. xdriver_xf86-video-openchrome, xdriver_xf86-video-r128,
  3198. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  3199. xdriver_xf86-video-sis, xdriver_xf86-video-tdfx,
  3200. xdriver_xf86-video-tga, xdriver_xf86-video-trident,
  3201. xdriver_xf86-video-vesa, xdriver_xf86-video-vmware,
  3202. xdriver_xf86-video-voodoo, xenomai, xerces, xl2tp, xlib_libFS,
  3203. xlib_xtrans, xproto_xproto, xserver_xorg-server,
  3204. xutil_util-macros, zeromq, zic, zmqpp, zyre
  3205. New packages: armadillo, btrfs-progs, clapack, cosmo, dado,
  3206. dbus-triggerd, dtv-scan-tables, e2tools, eudev, exim, expect,
  3207. fetchmail, flann, flite, gnu-efi, grub2, gummiboot, heimdal,
  3208. iprutils, iptraf-ng, jack2, jquery-mobile, libee, libestr,
  3209. libgc, libgl, liblogging, libndp, libsoxr, libstrophe,
  3210. libubox, libuci, libxmlrpc, ljlinenoise, lpeg, lpty, lrandom,
  3211. lsqlite3, lua-coat, lua-coatpersistent, lua-csnappy, luajson,
  3212. lualogging, lua-messagepack, lua-testmore, lunit, lzip, lzlib,
  3213. musl, nftables, opentyrian, opentyrian-data,
  3214. perl-module-build, php-gnupg, php-imagick, php-ssh2, php-yaml,
  3215. php-zmq, postgresql, python-libconfig, python-pypcap,
  3216. python-pyrex, qdecoder, qhull, samba4, smack, tz, tzdump, ucl,
  3217. upx, vo-aacenc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons,
  3218. yaffs2utils, zlog, znc
  3219. Removed packages: crosstool-ng, python-distutilscross, vala
  3220. Issues resolved (http://bugs.uclibc.org):
  3221. #6842: Checking external toolchain for eabihf
  3222. #6956: Packaging libsoxr
  3223. #6986: Make legal-info fails on uboot versions before 2014.01
  3224. #6992: Incorrect installation rights on external kernel module..
  3225. 2014.02, Released February 27th, 2014
  3226. Minor fixes.
  3227. Updated/fixed packages: cegui06, cppdb, e2fsprogs, gcc, gdb,
  3228. gst1-plugins-bad, gstreamer, gstreamer1, haserl, imagemagick,
  3229. libpng, libxml2, lua, luajit, luarock, ncftp, openswan,
  3230. pcsc-lite, qt5connectivity, ramsmp, strongswan, vlc
  3231. Issues resolved (http://bugs.uclibc.org):
  3232. #6938: mkuser script generates wrong password for new user in..
  3233. 2014.02-rc3, Released February 25th, 2014
  3234. Minor fixes.
  3235. Updated/fixed packages: aiccu, ala-lib, alsa-utils, binutils,
  3236. cairo, coreutils, dhcpcd, distcc, efl, evas, iputils, gdb,
  3237. gpsd, gst-fsl-plugins, icu, libcec, libcgi, libplayer,
  3238. libsecret, libsepol, libsigsegv, libtool, libv4l,
  3239. linux-headers, matchbox-lib, mpg123, ncftp, opencv, pcmanfm,
  3240. pixman, pv, qt, rt-tests, sawman, sconeserver, sdl, thrift,
  3241. tvheadend, util-linux, webkit, xscreensaver
  3242. Issues resolved (http://bugs.uclibc.org):
  3243. #4706: Removing .stamp_target_installed does not trigger...
  3244. #5030: busybox built fails if we use an override src dir...
  3245. #5420: Dbus and /var/run management
  3246. #5768: Not able to build ALSA-Lib for static build
  3247. #5774: Not able to build ALSA-Utils for static build
  3248. #6542: external python modules fail to compile to pyc if...
  3249. #6764: Support for kernel signed modules
  3250. #6794: Busybox compiled from buildroot hangs on pass from...
  3251. 2014.02-rc2, Released February 20th, 2014
  3252. Fixes all over the tree. Static linking / nommu fixes and
  3253. annotations for several packages.
  3254. Updated/fixed packages: boost, busybox, collectd, coreutils,
  3255. dropbear, elfutils, feh, gcc, gst1-libav, imagemagick, iozone,
  3256. jimtcl, kexec, libvncserver, lvm2, lxc, mplayer, netsnmp, nut,
  3257. opencv, python, python3, qtuio, systemd, thrift, transmission,
  3258. uclibc, vlc, webkit
  3259. Issues resolved (http://bugs.uclibc.org):
  3260. #5450: AT91SAM9260 Bootstrap compilation problem
  3261. #5582: libiconv 1.14 failed to build
  3262. #5624: When building directfb, BR2_TARGET_LDFLAGS not used by..
  3263. #5852: [2012.11] usb_modeswitch should depends of "BR2_PACK..
  3264. #6218: binutils-2.23.2/gas fails with undefined reference to..
  3265. #6236: binutils-2.23.2/bfd fails with undefined reference to..
  3266. #6470: If the build directory is a child of /usr, the build..
  3267. #6776: systemd error: static declaration of 'execvpe' follows..
  3268. #6818: toolchainfile.cmake has absolut path references
  3269. 2014.02-rc1, Released February 11th, 2014
  3270. Fixes all over the tree and new features.
  3271. Support for external packages/defconfigs (BR2_EXTERNAL). See
  3272. user manual for details.
  3273. Cleanup of environment variable names for consistency. The
  3274. download directory location override (BUILDROOT_DL_DIR) is now
  3275. called BR2_DL_DIR. Likewise the name of the current .config is
  3276. renamed from BUILDROOT_CONFIG to BR2_CONFIG. Please update
  3277. your post build scripts if you use this! BUILD_DIR is now also
  3278. exported to the post build/image scripts.
  3279. Toolchain: GCC 4.8 fix for ARM stack corruption, reverted
  3280. uClibc pread/pwrite backport as they cause issues on certain
  3281. architectures, new Linaro and Sourcery Codebench toolchains.
  3282. x86: Support for AMD Jaguar cores, SSE4.x, SH: SH2/SH3/SH3EB
  3283. variants removed, Microblaze: Internal toolchain support
  3284. Legal infrastructure: Info is now split between host and
  3285. target packages, large number of license annotations.
  3286. Lua: selection between lua 5.1 / 5.2, luarocks support
  3287. Python: package infrastructure, many new packages.
  3288. Defconfigs: Armadeus APF51 + Zedboard added, apf27, apf28,
  3289. beaglebone, microblaze, pandaboard, qemu, raspberry pi
  3290. updated.
  3291. Updated/fixed packages: aiccu, alsa-lib, alsa-utils,
  3292. am33x-cm3, aumix, autoconf, automake, barebox, bellagio,
  3293. berkeleydb, binutils, bison, blackbox, bluez_utils, boost,
  3294. bustle, busybox, cairo, can-utils, ccache, ccid, cgilua,
  3295. cifs-utils, civetweb, cmake, collectd, connman, copas,
  3296. coreutils, coxpcall, cppzmq, cramfs, crda, cryptodev-linux,
  3297. cryptsetup, cups, czmq, dhcpcd, dhcpdump, dhrystone, dialog,
  3298. dmraid, dnsmasq, dosfstools, dropbear, dropwatch, dtc, duma,
  3299. dvb-apps, e2fsprogs, eglibc, eigen, elf2flt, erlang, ethtool,
  3300. f2fs-tools, ffmpeg, file, filemq, fio, flashrom, flex,
  3301. fluxbox, fontconfig freerdp, freetype, gadgetfs-test, gawk,
  3302. gcc, gdb, gdbm, gettext, git, glibc, gnupg, gnutls, gob2,
  3303. gpsd, grep, grub, gst-ffmpeg, gst-plugins-good,
  3304. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  3305. gst1-plugins-ugly, gstreamer, gstreamer1, gtest, icu, iftop,
  3306. imagemagick, inadyn, infozip, iozone, iproute2, iptables, iw,
  3307. jpeg, jpeg-turbo, jq, kexec, kmod, knock, lbase64, lcdapi,
  3308. lftp, libcdaudio, libcgi, libcgicc, libcuefile, libcurl,
  3309. libdmtx, libdrm, libdvdnav, libdvdread, libegl, libevent,
  3310. libexif, libfcgi, libfreefare, libgles, libglib2, libllcp,
  3311. libmicrohttpd, libmpd, libnfc, libnl, libnss, libopenmax,
  3312. libopenvg, libpcap, libpfm4, libplayer, libpng, libqmi,
  3313. libreplaygain, libroxml, libsamplerate, libsexy, libsigsegv,
  3314. libsndfile, libsoc, libtasn1, libtorrent, libtpl, libupnp,
  3315. libusb, libusb-compat, libvorbis, libxcb, libxml2, libxmlpp,
  3316. libyaml, lighttpd, linknx, linux-firmware, linux-pam, live555,
  3317. lm_sensors, lmbench, lockdev, logrotate, lrzsz, ltrace, lua,
  3318. lua-ev, lua-msgpack-native, luabitop, luaexpat, luaexpatutils,
  3319. luafilesystem, luajit, luaposix, luasec, luasocket,
  3320. luasql-sqlite3, m4, matchbox, mdadm, minicom, mongrel2, mpc,
  3321. mpd, mpg123, mplayer, mtd, mysql, lvm2, mxml, ncurses, ne10,
  3322. neard, neardal, netsnmp, netstat-nat, network-manager, nodejs,
  3323. numactl, ofone, ola, olsr, omniorb, open2300, opencv,
  3324. openpowerlink, openssh, openssl, openvpn, oprofile, opus,
  3325. opus-tools, orbit, p11-kit, parted, pcre, pcsc-lite, perl,
  3326. php, poco, poppler, powervr, protobuf-c, psplash, python,
  3327. python-bottle,
  3328. python-{crc16,distutilscross,dpkt,id3,ipy,m2crypto,mad,meld},
  3329. python-{netifaces,nfc,protobuf,pygame,pyparsing,pyro,pyzmq},
  3330. python-{serial,setuptools}, qt, qt5base, qt5connectivity,
  3331. qt5declarative, qt5graphicaleffects, qt5jsbackend,
  3332. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  3333. qt5webkit, radvd, redis, rings, rng-tools, rpcbind,
  3334. rpi-firmware, rpi-userland, rt-tests, sam-ba, samba, sawman,
  3335. sconeserver, scons, sdl, sg3_utils, snappy, snmppp,
  3336. socketcand, spice, spice-protocol, sqlcipher, sqlite, squid,
  3337. sshfs, strace, subversion, sunxi-mali, supervisor, sysklogd,
  3338. sysprof, sysstat, systemd, sysvinit, taglib, tar, tcpdump,
  3339. ti-gfx, ti-utils, tinymembench, tn5250, trace-cmd,
  3340. transmission, tvheadend, tzdata, zxing, uboot, uboot-tools,
  3341. uclibc, udev, udpcast, ulogd, urg, usb_modeswitch_data,
  3342. util-linux, vala, valgrind, vorbis-tools, wavpack, wayland,
  3343. weston, wget, wireless-regdb, wireshark, wpa_supplicant,
  3344. wsapi, xavante, xapp_xdpyinfo, xapp_xrandr, xcb-proto,
  3345. xdriver_xf86-video-intel, xenomai, xkeyboard-config, xl2tp,
  3346. xlib_lib{FS,SM,X11},
  3347. xlib_libX{au,aw,composite,cursor,damage,ext,fixes,font,i},
  3348. xlib_libX{inerama,mu,pm,randr,render,res,t,tst,v,xf86dga},
  3349. xlib_libXxf86vm, xlib_libdmx, xlib_libfontenc,
  3350. xlib_libpciaccess, xlib_xtrans, xproto_dri2proto,
  3351. xproto_{glproto,inputproto,presentproto,randrproto,videoproto},
  3352. xproto_xextproto, xproto_xproto, xutil_util-macros,
  3353. xutil_makedepend, zic, zmqpp, zxing, zsh, zyre
  3354. New packages: apitrace, avrdude, c-ares, ca-certificates,
  3355. cwiid, dbus-cpp, evemu, fping, fswebcam, gpm, gst1-libav,
  3356. haveged, intel-microcode, iucode-tools, jasper, joe, ktap,
  3357. lbreakout2, libass, libbluray, libcdio, libenca, libevdev,
  3358. libmbim, libmodplug, libnfs, libnftnl, libplist, libshairplay,
  3359. libsocketcan, ljsyscall, log4cplus, ltris, luainterpreter,
  3360. luarocks, minidlna, mmc-utils, modemmanager, mtr, net-tools,
  3361. python-configobj, python-dialog, python-json-schema-validator,
  3362. python-keyring, python-msgpack, python-posix-ipc,
  3363. python-pyasn, python-pycrypto, python-pysnmp,
  3364. python-pysnmp-apps, python-pysnmp-mibs, python-pyusb,
  3365. python-simplejson, python-tornado, python-versiontools,
  3366. rtmpdump, rtptools, smcroute, smstools3, tcpreplay, thrift,
  3367. ti-uim, tinyxml, tmux, vlc, wmctrl, xconsole
  3368. Removed packages: autoconf, automake, ccache, cpanminus, lzma,
  3369. netkitbase, netkittelnet, pkg-config, squashfs3, ttcp, xstroke
  3370. Issues resolved (http://bugs.uclibc.org):
  3371. #65: new package: dbus c++ language bindings
  3372. #769: Update configuration menu for MIPS target
  3373. #2419: Add a bundle of Lua modules
  3374. #2629: Segmentation faults and division by zero in Grub on ext2
  3375. #3811: Added auto-mount for USB and SD Card (mdev) (for 2011.05)
  3376. #4339: Allow override of DL_DIR in extract step
  3377. #4363: Make sure that copied linux and busybox defconfig are...
  3378. #4454: There should be simple way to update image, when chang...
  3379. #5024: grub fails to build for x86_64 target architecture
  3380. #5066: New-Package: net-tools
  3381. #5072: ncurses: add ncurses-progs to target
  3382. #5294: uclibc build ignores target CFLAGS and LDFLAGS
  3383. #5366: Login doesn't work with util-linux versions of login/agetty
  3384. #5378: dropbear Makefile broken
  3385. #5390: System banner - change to empty doesn't remove /etc/issue
  3386. #5780: spurious build failure because it cannot remove ubinize.cfg
  3387. #5798: ncurses-5.9 fails to compile statically
  3388. #5810: Buildroot 2012.11: Additional GCC option "-msoft-float" ...
  3389. #6080: Git fetch caching
  3390. #6092: Bootable ISO image creation seems to have stopped working..
  3391. #6272: coreutils build fails
  3392. #6434: apply-patches.sh does not work recursively
  3393. #6446: eglibc doesn't install ldconfig to target
  3394. #6484: Add c-ares
  3395. #6596: Slow bootup if mdev is chosen
  3396. #6656: Build Qt5 with ccache
  3397. #6662: internal compiler error: Segmentation fault during making..
  3398. #6722: Usage of $($(PKG)_DIR_PREFIX) is an issue with linux package
  3399. #6752: genext2fs: e2fsck must run before tunefs -U random
  3400. #6770: openssl 1.0.1f fails with ccache
  3401. #6830: Qt5: no fonts are installed
  3402. #6848: Qt5: no text shown in simple QWidget / frame-buffer setup
  3403. #6854: Update to Qt 5.2.1
  3404. 2013.11, Released November 30th, 2013:
  3405. Minor fixes.
  3406. Updated/fixed packages: apr, binutils, dbus-python, dropwatch,
  3407. ecryptfs-utils, eglibc, gdb, gpsd, grantlee, hostapd,
  3408. iptables, qlibiscsi, libnspr, libnss, libpfm4, libtool,
  3409. lua-ev, lvm2, mplayer, qt, qt5, quagga, ruby, tinymembench,
  3410. tvheadend, util-linux, wpa_supplicant
  3411. Issues resolved (http://bugs.uclibc.org):
  3412. #1279: Buildroot compiled Busybox and Coreutils LFS issues
  3413. #2995: -fstack-protector-all causes ssh to SIGSEGV
  3414. #5570: Cannot compile software on the target machine
  3415. #6428: util-linux libmount segfaults with patch from buildroot
  3416. #6500: php fails to build for armel
  3417. #6554: gdb needs to dependents on host texinfo
  3418. #6692: GNU nano fails to compile for x86_64
  3419. #6704: wpa_supplicant: fix wrong path to executable file in D-Bus
  3420. 2013.11-rc3, Released November 26th, 2013
  3421. Fixes all over the tree.
  3422. Architecture: Mark MIPS I, II, III and IV as deprecated.
  3423. Updated/fixed packages: beecrypt, dbus, e2fsprogs, libcap-ng,
  3424. libglib2, libroxml, libsigsegv, libvncserver, lxc, mdadm,
  3425. mongoose, nut, ola, omniorb, openssl, pcre, php, poco,
  3426. protobuf-c, pv, qt5base, ruby, schifra, squid, sunxi-mail,
  3427. swig, ti-gfx, tinymembench, uclibc, udisks, vim
  3428. 2013.11-rc2, Released November 18th, 2013
  3429. Fixes all over the tree.
  3430. Defconfigs: qemu_arm_versatile, qemu_arm_nuri, sheevaplug:
  3431. Adjust kernel versions.
  3432. Toolchain: avr32: fix for modern kernel headers
  3433. Bootloader: Barebox updated to 2013.10.1
  3434. Updated/fixed packages: dhcp, e2fsprogs, gst1-plugins-bad,
  3435. libcurl, libvncserver, nano, pc, qt5base, squashfs, ttcp,
  3436. wayland, wvstreams
  3437. Issues resolved (http://bugs.uclibc.org):
  3438. #3601: DHCPD S80dhcp-server startup script issues
  3439. #6320: Fix kernel compile issue if BR2_LINUX_KERNEL_CUSTOM_GIT_VERS..
  3440. #6416: Xenomai package, patch alternative
  3441. #6590: directfb-examples build failed whit linaro toolchain
  3442. 2013.11-rc1, Released November 12th, 2013
  3443. Architectures: Nios-II support, MIPS arch handling fixes
  3444. Defconfigs: cubieboard2, freescale i.MX 6sololite evk,
  3445. sabre-sd, wandboard added, rpi renamed to raspberrypi_defconfig
  3446. Toolchain: glibc support, upstream uClibc fixes, uClibc 0.9.31
  3447. for avr32, crosstool-ng backend removed, external musl
  3448. toolchain support, gcc 4.8.2, updated Linaro external
  3449. toolchains. Fortran and objective-C support deprecated,
  3450. mudflap support
  3451. Bootloaders: U-Boot: u-boot.imx support, version bumps
  3452. Linux: use kmod instead of module-init-tools
  3453. System: default to devtmpfs for /dev
  3454. Infrastructure: Make 3.82 fixes, locales generation fixes, CVS
  3455. download support, post-rsync hooks
  3456. Fs: u-boot image support for cpio
  3457. Updated/fixed packages: aircrack-ng, alsamixergui, apr,
  3458. apr-util, atk, automake, bellagio, berkeleydb, bind, binutils,
  3459. bison, boost, busybox, can-utils, ccache, ccid, cgilua,
  3460. chrony, cifs-utils, cjson, collectd, connman, conntrack-tools,
  3461. copas, cppcms, cppzmq, czmq, dash, dbus, dhcpcd, diffutils,
  3462. directfb, dmidecode, dnsmaqs, docker, dosfstools, dropbear,
  3463. dropwatch, ebtables, eglibc, elf2flt, empty, enchant, erlang,
  3464. ethtool, fbgrab, fbv, fdk-aac, feh, ffmpeg, file, findutils,
  3465. fltk, fmtools, freetype, gdk-pixbuf, gettext, git,
  3466. glib-networking, gmp, gnupg, gnutls, gpu-viv-bin-mx6q, gsl,
  3467. gstreamer, gstreamer1, gst1-plugins-{bad,base,good,ugly},
  3468. gtest, gutenprint, hplip, i2c-tools, icu, ifplugd,
  3469. imagemagick, iozone, iproute2, ipset, iptables, iw, jamvm,
  3470. jansson, jpeg-turbo, kismet, kmod, lcms2, libassuan, libcap,
  3471. libcap-ng, libcdaudio, libcec, libcue, libcurl, libdrm,
  3472. libedit, libevas, libevent, libfreefare, libfuse,
  3473. libgpg-error, libiconv, liblog4c-localtime, libmicrohttpd,
  3474. libmnl, libmodbus,
  3475. libnetfilter_{acct,conntrack,cthelper,cttimeout,log,queue},
  3476. libnfnetlink, libnl, libpng, libqmi, libqrencode, libroxml,
  3477. libsecret, libsigsegv, libsoup, libtirpc, libunwind, libusb,
  3478. libvpx, lighttpd, linphone, linux-pam, lmbench,
  3479. lockfile-progs, log4cxx, logrotate, logsurfer, ltp-testsuite,
  3480. ltrace, luacrypto, luaposix, lvm2, m4, matchbox-lib,
  3481. media-ctl, mediastreamer, minicom, minidlna, mongoose, monit,
  3482. mpc, mpd, mpg123, mplayer, mrouted, mtdev, mutt, mysql_client,
  3483. nano, ncftp, ndisc6, neard, neardal, neon, net-snmp, netatalk,
  3484. netcat, netkitbase, netperf, netplug, nettle, nfacct,
  3485. nfs-utils, ngircd, ngrep, noip, nuttcp, olsr, openssh, opkg,
  3486. oprofile, opus-tools, orc, ortp, pciutils, pcre, pcsc-lite,
  3487. perf, perl, perl-cross, php, picocom, pkgconf, polarssl,
  3488. poppler, pppd, proftpd, protobuf, proxychains-ng, pulseaudio,
  3489. pv, qemu, qt, qt5base, qt5webkit, quagga, radvd, redis,
  3490. rpi-{firmware,userland}, rrdtool, rsync, rtorrent, ruby,
  3491. samba, scons, screen, sdl_sound, ser2net, setserial,
  3492. smartmontools, socat, socketcand, sqlcipher, sqlite, squid,
  3493. stress, strongswan, stunnel, sudo, syslinux, systemd,
  3494. sysvinit, tcl, ti-gfx, time, transmission, tremor, tslib,
  3495. tstools, tvheadend, tzdata, uboot-tools, uclibc, udpcast,
  3496. uemacs, ulogd, usb_modeswitch{,_data}, util-linux, vala,
  3497. valgrind, vde2, vorbus-tools, vpnc, vsftpd, vtun, wayland,
  3498. webkit, webp, webrtc-audio-processing, weston, wget,
  3499. wireshark, wsapi, xavante, xdriver_xf86-video-geode, xenomai,
  3500. xinetd, xlib_libpthread-stubs, xl2tp, xmlstarlet,
  3501. xserver_xorg-server, xz, zeromq, zic, zmqpp
  3502. New packages: aiccu, autossh, bc, civetweb, cppdb, cryptsetup,
  3503. duma, eigen, harfbuzz, igmpproxy, iputils, jq, knock, kobs-ng,
  3504. lesstif, libcgroup, libsepol, libsoc, libssh2, luasec, luasql,
  3505. lxc, nut, ola, omniorb, openpowerlink, orbit, p910nd, psplash,
  3506. python-crc16, python-ipy, python-pyzmq, qt5sensors,
  3507. qt5serialport, qt5x11extras, snmppp, subversion, tcping,
  3508. trace-cmd, xscreensaver, zsh
  3509. Removed packages: module-init-tools
  3510. Issues resolved (http://bugs.uclibc.org):
  3511. #1138: Buildroot fails to build packages if BR2_GCC_SHARED_LIBGCC=y
  3512. #5408: qt build failure with Sourcery CodeBench ARM 2010.09
  3513. #5630: makefile error with toolchain helpers.mk
  3514. #5672: htop: remove X11 stuff
  3515. #5678: linux.mk: linux-menuconfig fails
  3516. #5696: python3 installation is too large, patches from python2 needed
  3517. #5978: Erlang does not build for arm in 2013.02-rc3
  3518. #6392: Extended ARM uImage kernel options
  3519. #6404: Buildroot's coreutils 'uname -p' reports 'Unknown' on recent..
  3520. #6428: util-linux libmount segfaults with patch from buildroot
  3521. #6452: eglibc from Linaro 2013.07 not copied to target correctly
  3522. #6566: PHP segfault when crosscompiled to mips64 - patch included
  3523. #6572: [PowerPC] Buildroot uses wrong external toolchain libraries..
  3524. #6578: udisks package broken
  3525. #6602: ebtables 64 bit kernel + 32 bit userland alignment error..
  3526. #6608: ebtables missing ethertypes - fix included
  3527. #6620: Sysvinit package missing killall5 and symlinks - patch included
  3528. #6632: CMake use host pkg-config
  3529. #6638: pkgconf doesn't download
  3530. #6644: "all" target doesn't work in out-of-tree builds
  3531. #6650: Segmentation fault when trying to build latest buildroot
  3532. #6668: iptables limit module alignment problem on mips64
  3533. 2013.08, Released August 31th, 2013:
  3534. Minor fixes.
  3535. Documentation build fixed.
  3536. Updated/fixed packages: ltrace, strongswan
  3537. 2013.08-rc3, Released August 29th, 2013:
  3538. Fixes all over the tree.
  3539. External toolchain lib32/lib64 handling, ABI name for EABIhf,
  3540. misc fixes for generatelocales, apply-patches and module
  3541. stripping.
  3542. Top level menu names reordered and renamed for clarity.
  3543. Updated/fixed packages: acl, attr, bash, dbus, directfb,
  3544. dvb-apps, kexec, kmod, libbsd, linux-fusion, mesa3d, minidlna,
  3545. openssh, openssl, pulseaudio, python-setuptools, qt5,
  3546. qt5webkit, redis, strongswan, sunxi-mali
  3547. Issues resolved (http://bugs.uclibc.org):
  3548. #6464: dbus-daemon-launch-helper needs setuid
  3549. 2013.08-rc2, Released August 16th 2013:
  3550. Documentation improvements.
  3551. External toolchains fixes.
  3552. Updated/fixed packages: aircrack-ng, bash, boost, cairo,
  3553. cppcms, eglibc, ffmpeg, gcc, git, gnupg, imagemagick, libcec,
  3554. libffi, libgcrypt, linux, linux-headers, ltrace, netatalk,
  3555. opencv, opengl, readline, samba, strongswan, sunxi-cedarx,
  3556. uclibc, udev, wayland, webkit, zeromq.
  3557. Issues resolved (http://bugs.uclibc.org):
  3558. #6440: typo in ffmpeg makefile
  3559. 2013.08-rc1, Released August 5th, 2013:
  3560. Architectures:
  3561. - improved support for floating point on ARM and Thumb/Thumb2
  3562. - support for ARM OABI removed
  3563. Toolchains:
  3564. - support added for Sourcery CodeBench ARM and MIPS 2013.05
  3565. - Linaro ARM and Aarch64 toolchains updated
  3566. - support added for the Arago ARMv5 and ARMv7 toolchains
  3567. - gcc 4.8.x version bumped
  3568. - support for installing both FDPIC and FLAT libraries on
  3569. Blackfin
  3570. - support for uClibc 0.9.31 removed,
  3571. - convert the internal toolchain backend to use the package
  3572. infrastructure
  3573. - support added for eglibc in the internal toolchain backend
  3574. - toolchain components for the ARC architecture updated and
  3575. gdb for ARC added.
  3576. - support for Blackfin in the internal toolchain fixed
  3577. Defconfigs: beaglebone_defconfig updated, new defconfig for
  3578. CubieBoard, for Olimex mx233 Olinuxino, for Calao Systems
  3579. TNY-A9G20-LPW.
  3580. A number of packages have been fixed to use the
  3581. <pkg>_CONFIG_SCRIPTS mechanism to get their <pkg>-config shell
  3582. script installed and modified properly. Licensing informations
  3583. has been added to a number of packages.
  3584. Use XZ tarballs for a number of packages.
  3585. Noticeable package changes/additions:
  3586. - The glib2/libgtk2/webkit stack has been updated to recent
  3587. versions.
  3588. - Support for Gstreamer 1.x has been added.
  3589. - OpenGL support for TI OMAP platforms has been added.
  3590. - OpenGL support for Allwinner platforms has been added.
  3591. - OpenMAX support for RasberryPi has been added.
  3592. Updated/fixed packages: acl, attr, autoconf, avahi, barebox,
  3593. bind, binutils, busybox, bwm-ng, bzip2, cifs-utils, colletctd,
  3594. cpanminus, cups, curl, dash, dbus, dhcp, directfb,
  3595. directfb-examples, dnsmasq, dosfstools, dropbear, dtc,
  3596. e2fsprogs, ed, efl, enlightenment, erlang, ethtool, fbgrab,
  3597. fftw, firmware-imx, flot, fltk, freetype, gawk, gdk-pixbuf,
  3598. gettext, gmp, gnutls, gsl, gutenprint, gvfs, gzip, haserl,
  3599. hiawatha, httping, icu, imagemagick, imlib2, imx-lib,
  3600. intltool, iozone, ipset, iptables, jquery, jquery-keyboard,
  3601. jquery-sparkline, kmod, less, libart, libcdaudio, libcgicc,
  3602. libesmtp, libftdi, libfuse, libglib2, libgtk, libgtk2, libidn,
  3603. libiqrf, liblog4c-localtime, libnspr, libnss, libpcap,
  3604. libroxml, libserial, libsigsev, libsoup, libtool, libtpl,
  3605. libvncserver, libxml2, linphone, lm_sensors, logrotate,
  3606. ltrace, lttng, luafilesystem, luajit, minicom, monit, mpg123,
  3607. mtd, mutt, mxml, neard, netatask, netsnmp, nettle,
  3608. network-manager, nodejs, nss-mdns, openssh, openswan, openvpn,
  3609. opkg, opus, pcre, perl-cross, php, pixman, poco, polarssl,
  3610. pulseaudio, pv, python, python3, qt, qt5, qt5declarative,
  3611. qt5jsbackend, qt5quick1, readline, rpi-firmware, ruby, samba,
  3612. sane-backends, sconeserver, sdl_image, sdparm, ser2net,
  3613. socketcand, sqlite, squid, strace, tcl, tcpdump, tinyhttpd,
  3614. tvheadend, tzdata, uboot, udpcast, usb_modeswitch,
  3615. usb_modeswitch_data, usbutils, webkit, wireshark, wvstreams,
  3616. xapp_luit, xapp_xmodmap, xenomai, xfsprogs, xlib_libX11, zic,
  3617. zlib.
  3618. New packages: a10disp, aespipe, am33x-cm3, cppcms, dhcpcd,
  3619. dropwatch, dtc, ecryptfs-utils, eglibc, elf2flt, fdk-aac,
  3620. gcc-final, gcc-initial, gcc-intermediate, git,
  3621. gpu-viv-bin-mx6q, gst1-plugins-bad, gst1-plugins-base,
  3622. gst1-plugins-good, gst1-plugins-ugly, gst-omx,
  3623. gst-plugin-x170, gstreamer1, jimtcl, lbase64, libassuan,
  3624. libbsd, libcec, libdvbsi, libedit, libgpgme, libqmi,
  3625. libqrencode, libsvg, libsvg-cairo, libunwind, libvpx,
  3626. linux-headers, lockdev, luabitop, luacrypto, lua-ev,
  3627. luaexpatutils, msgpack, ocrad, on2-8170-libs,
  3628. on2-8170-modules, p11-kit, pax-utils, ptpd, ptpd2,
  3629. python-pyro, ramspeed/smp, snappy, strongswan, sunxi-boards,
  3630. sunxi-cedarx, sunxi-mali, sunxi-tools, ti-gfx, tinymembench,
  3631. tree, tstools, uclibc, w_scan.
  3632. Issues resolved (http://bugs.uclibc.org):
  3633. #4718: python (built for powerpc) distutils has paths to host
  3634. compiler toolchain
  3635. #5516: appended device tree blobs on uImage fails
  3636. #6302: Versions of packages retrieved from github.com are wrong
  3637. #6308: dosfstools download link is wrong
  3638. #6326: Dropbear: Add options to allow better config for
  3639. different target devices (e.g. routers)
  3640. #6338: Wrong download link for minicom package
  3641. #6344: Wrong handling of license text files with same name and
  3642. different directory
  3643. #6374: gnutls package broken if linux cryptodev module
  3644. selected
  3645. #6410: omap3_beagle has uimage error load address error
  3646. 2013.05, Released May 31th, 2013:
  3647. Minor fixes.
  3648. External toolchain wrapper fix for if host/usr/bin is placed
  3649. in the patch.
  3650. Updated/fixed packages: acpid, at91bootstrap, czmq, elf2flt,
  3651. flex, jamvm, kmod, libplayer, libtirpc, libv4,
  3652. lttng-babeltrace, opengl, qt5jsbackend, udpcast, wvstreams
  3653. Issues resolved (http://bugs.uclibc.org):
  3654. #4868: Buildroot compile failure for toolchain/gdb-7.4/intl/reloc...
  3655. #4988: flex and m4 problems
  3656. #5912: obsolete CVS files
  3657. 2013.05-rc3, Released May 25th, 2013:
  3658. Minor fixes.
  3659. Updated/fixed packages: aircrack-ng, bellagio, boost, crda,
  3660. dvb-apps, flot, libatomic_ops, libeXosip2, libosip2, libxml2,
  3661. mongrel2, poco, portaudio, pptp-linux, tvheadend, urg, weston,
  3662. wireshark
  3663. 2013.05-rc2, Released May 15th, 2013:
  3664. Fixes all over the tree.
  3665. Default number of parallel jobs is now number of CPUs + 1.
  3666. Defconfigs: Add Telit EVK-PRO3, AT91SAM9260-EK Nand flash.
  3667. Updated/fixed packages: aircrack-ng, busybox, cairo,
  3668. classpath, curlftpfs, czmq, dbus, f2fs-tools, fan-ctrl,
  3669. filemq, gst-plugin-bad, gutenprint, hplip, json-c,
  3670. libatomic_ops, libcurl, libdrm, libglib2, libnspr, libnss,
  3671. libsha1, libsigsegv, libxcb, linknx, linux-pam, lttng-modules,
  3672. lttng-tools, matchbox-lib, mcookie, mesa3d, neon, pixman,
  3673. pulseaudio, python-nfc, qt5imageformats, quota, openssl,
  3674. sconeserver, strace, sylpheed, wvstreams,
  3675. xapp_{appres,bdftopcf,beforelight,bitmap,edires,fonttosfnt},
  3676. xapp_{fslsfonts,fstobdf,iceauth,ico,listres,luit,mkfontdir},
  3677. xapp_{mkfontscale,oclock,rgb,rstart,scripts,sessreg,setxkbmap},
  3678. xapp_{showfont,smproxy,twm,viewres,x11perf,xauth,xbacklight},
  3679. xapp_x{biff,calc,clipboard,clock,cmsdb,cursorgen,dbedizzy,ditview},
  3680. xapp_x{dm,dpyinfo,driinfo,edit,ev,eyes,f86dga,fd,fontsel,fs,fsinfo},
  3681. xapp_x{gamma,gc,host,input-calibrator,input,kbcomp,kbevd,kbprint},
  3682. xapp_x{kbutils,kill,load,logo,lsatoms,lsclients,lsfonts,mag,man},
  3683. xapp_x{message,mh,modmap,more,pr,prop,randr,rdb,refresh,set,setmode},
  3684. xapp_x{setpointer,setroot,sm,stdcmap,vidtune,vinfo,wd,wininfo,wud},
  3685. xcb-util, xcursor-transparent-theme, xdata_xbitmaps,
  3686. xdata_xcursor-themes,
  3687. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synaptics},
  3688. xdriver_xf86-input-{tslib,vmmouse,void},
  3689. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,fbdev,geode,glide},
  3690. xdriver_xf86-video-{glint,i128,intel,mach64,mga,neomagic,newport},
  3691. xdriver_xf86-video-{nv,openchrome,r128,savage,siliconmotion,sis},
  3692. xdriver_xf86-video-{tdfx,tga,trident,v4l,vesa,vmware,voodoo,wsfb},
  3693. xfont_encodings, xfont_font-adobe-{100,75}dpi,
  3694. xfont_font-utopia-{100dpi,75dpi,type1},
  3695. xfont_font-{alias,arabic-misc,bh-100dpi,bh-75dpi},
  3696. xfont_font-bh-lucidatypewriter-{100,75}dpi, xfont_font-bh-{ttf,type1},
  3697. xfont_font-bitstream-{100dpi,75dpi,type1}, xfont_font-cronyx-cyrillic,
  3698. xfont_font-{cursor,daewoo,dec,isas,jis,micro}-misc,
  3699. xfont_font-ibm-type1, xfont_font-misc-{cyrillic,ethiopic,meltho,misc},
  3700. xfont_font-{mutt,schumacher}-misc,
  3701. xfont_font-{screen-cyrillic,sony-misc,sun-misc,util},
  3702. xfont_font-winitzki-cyrillic, xfont_font-xfree86-type1,
  3703. xlib_lib{FS,ICE,SM,X11,XScrnSaver,Xau,Xaw,Xcomposite,Xcursor},
  3704. xlib_libX{damage,dmcp,ext,fixes,font,ft,i,inerama,mu,pm,randr},
  3705. xlib_libX{render,res,t,tst,v,vMC,xf86dga,xf86vm},
  3706. xlib_lib{dmx,fontenc,pciaccess,pthread-stubs,xkbfile}, xlib_xtrans,
  3707. xproto_{applewm,bigreqs,composite,damage,dmx,dri2,fixes}proto,
  3708. xproto_{fontcache,font,gl,input,kb,randr,record,render}proto,
  3709. xproto_{resource,scrnsaver,video,windowswm,xcmisc,xext}proto,
  3710. xproto_{xf86bigfont,xf86dga,xf86dri,xf86vidmode,xinerama,x}proto,
  3711. xserver_xorg-server, xutil_{makedepend,util-macros}
  3712. Readded Packages: xapp_xinit
  3713. Issues resolved (http://bugs.uclibc.org):
  3714. #5054: amd64: cannot find init - due to missing /lib64 folder
  3715. 2013.05-rc1, Released May 8th, 2013:
  3716. Architectures: ARC support, Blackfin support, FLAT binary
  3717. format, ARM: Drop old CPU variants, add fa526/626, Marvell PJ4
  3718. Toolchains: Add new Microblaze external toolchains, Linaro
  3719. ARM/Aarch64 updates, GCC 4.6.4 / 4.7.3 / 4.8.0 added to
  3720. internal toolchain, default to GCC 4.7.x. Internal
  3721. Crosstool-ng backend deprecated.
  3722. Defconfigs: Add Atmel at91sam9g45m10ek, freescale mpc8315erdb
  3723. & p1010rdb, Armadeus apf27 / apf28, Openblocks A6, Raspberry
  3724. pi, gnublin board.
  3725. FS: LZO and XZ compression methods, extra ubifs options,
  3726. ext2 rev 0/1 and ext3/4 support.
  3727. Patch handling: apply-patches now has .patch.xz support,
  3728. Patch logic reworked as discussed during Febrary dev days:
  3729. http://elinux.org/Buildroot:DeveloperDaysFOSDEM2013
  3730. <pkg>-rsync now excludes version control files.
  3731. linux: uImage load address for ARM multiplatform kernels
  3732. Infrastructure for multiple OpenGL / ES / EGL / OpenVG
  3733. providers, similar to how libjpeg / libjpeg-turbo is handled.
  3734. Infrastructure for packages to add system users.
  3735. kconfig: updated to 3.9-rc2, support make olddefconfig
  3736. Updated/fixed packages: alsa-lib, alsa-utils, apr, apr-util,
  3737. argp-standalone, at, at91bootstrap, audiofile, aumix, avahi,
  3738. bash, blackbox, bind, binutils, bison, boost, bridge-utils,
  3739. busybox, ccache, cifs-utils, cmake, collectd, connman,
  3740. conntrack-tools, cpanminus, crosstool-ng, diffutils, directfb,
  3741. directfb-examples, divine, dmalloc, dnsmasq, dosfstools,
  3742. dropbear, e2fsprogs, ebtables, eeprog, erlang, ethtool,
  3743. fb-test-app, fbset, feh, ffmpeg, file, flex, flot, foomatic,
  3744. fxload, gd, gdb, gdisk, genimage, gettext, gmp, gnuchess,
  3745. gnutls, gob2, gperf, gpsd, gstreamer, haserl, hiawatha, htop,
  3746. httping, icu, inotify-tools, intltool, iproute2, ipset,
  3747. iptables, iw, jpeg, jquery, jquery-{sparkline,validation},
  3748. json-c, kbd, kexec, kismet, kmod, lcdproc, libarchive,
  3749. libatasmart, libcap, libconfig, libconfuse, libcurl, libdrm,
  3750. libeet, libev, libevas, libeXosip2, libffi, libfribi, libfuse,
  3751. libgcrypt, libglib2, libgtk2, libid3tag, libmicrohttpd,
  3752. libnetfilter_acct, libnetfilter_conntrack, libnl, libpcap,
  3753. libplayer, libsigc, libv4l, libxcb, linenoise, linux-pam,
  3754. lm_sensors, ltp-testsuite, luajit, lzop, madplay, make, mdadm,
  3755. mediastreamer, memtester, mesa3d,
  3756. mobile-broadband-provider-info, monit, mpd, mpfr, mpg123,
  3757. mrouted, msmtp, nbd, ncurses, ndisc6, neard, neardal, neon,
  3758. netperf, netsnmp, nettle, nfacct, ntfs-3g, ofono, olsr,
  3759. omap-u-boot-utils, openssh, openssl, openswan, openvpn,
  3760. oprofile, orc, patch, pciutils, pcre, perl, php, poco,
  3761. polarssl, proftpd, psmisc, pulseaudio, python,
  3762. python-{bottle,netifaces,serial,setuptools}, qt, quagga,
  3763. quota, radvd, rpi-firmware, rpi-userland, rt-tests, sam-ba,
  3764. samba, sawman, sdl, ser2net, smartmontools, socat, socketcand,
  3765. speex, squid, stress, stunnel, sudo, syslinux, sysstat,
  3766. sysvinit, tcl, tcprelay, tinyhttpd, tslib, tvheadend,
  3767. uboot-tools, udev, ulogd, util-linux, vala, vtun, webkit,
  3768. xapp_{iceauth,luit,makefontscale,sessreg,setxkbmap,smproxy},
  3769. xapp_{xauth,xcmsdb,xdpyinfo,xev,xgamma,xhost,xinput,xkbcomp},
  3770. xapp_{xkbevd,xlsatoms,xlsclients,xmodmap,xpr,xprop,xrandr,xrdb},
  3771. xapp_{xset,xwd,xwininfo}, xcb-{proto,util},
  3772. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synptics},
  3773. xdriver_xf86-input-{tslib,vmmouse,void},
  3774. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,geode,glide,glint},
  3775. xdriver_xf86-video-{i128,intel,mach64,mga,neomagic,newport},
  3776. xdriver_xf86-video-{openchrome,r128,savage,siliconmotion,sis},
  3777. xdriver_xf86-video-{tdfx,trident,vesa,vmware,wsfb}, xenomai,
  3778. xfont, xinetd, xkeyboard-config, xlib_lib{FS,ICE,SM,X11},
  3779. xlib_libX{scrnSaver,au,aw,cursor,dmcp,ext,fixes,font,ft,i},
  3780. xlib_libX{inerama,mu,pm,randr,res,tst,v,vMC,xf86dga,xf86vm},
  3781. xlib_lib{dmx,fontenc,pciaccess,xkbfile}, xlib_xtrans,
  3782. xproto_{applevm,bigreqs,dri2,fonts,gl,input,kbd,record}proto,
  3783. xproto_{resource,scrnsaver,xcmisc,xext,x}proto,
  3784. xserver_xorg-server, xutil_makedepend, xz, zeromq
  3785. New packages: aircrack-ng, bcusdk, chrony, crda,
  3786. cryptodev-linux, cppzmq, czmq, dtach, enscript, exfat,
  3787. exfat-utils, f2fs-tools, fan-ctrl, filemq, foomatic-filters,
  3788. genimage, genpart, glibmm, gnuplot, gtest, gutenprint, hplip,
  3789. iozone, jansson, jhead, jquery-keyboard, jquery-ui,
  3790. jquery-ui-themes, json-glib, json-javascript, lcms2, libpfm4,
  3791. libpthsem, libserial, libsigsegv, libtasn1, libwebsockets,
  3792. libxkbcommon, libxml++, linknx, log4cxx, mongoose, mongrel2,
  3793. mtools, ne10, nmap, nodejs, openobex, openpgm, poppler,
  3794. protobuf-c, python-m2crypto, python-thrift, qjson, qt5base,
  3795. qt5declarative, qt5graphicaleffects, qt5imageformats,
  3796. qt5jsbackend, qt5multimedia, qt5quick1, qt5script, qt5svg,
  3797. qt5webkit qt5xmlpatterns, rapidjson, redis, swig, texinfo,
  3798. tzdata, urg, ussp-push, wayland, webp, weston, wireless-regdb,
  3799. wireshark, wvdial, wvstreams, xcb-util-image, xcb-util-wm,
  3800. xcursor-transparent-theme, zic, zmqpp, zyre
  3801. Removed packages: microperl, ocf-linux, xapp_xinit,
  3802. xapp_xplsprinters, xapp_xprehashprinterlist,
  3803. xfont_font-bitstream-speedo,
  3804. xlib_lib{Xfontcache,XprintAppUtil,XprintUtil,Xp,oldX,xkbui},
  3805. xproto_{print,xf86rush}proto
  3806. Deprecated packages: vala
  3807. Issues resolved (http://bugs.uclibc.org):
  3808. #1291: Add support for Faraday 526 arm processor (fa526)
  3809. #2683: cups does not install correctly to target
  3810. #3313: mesa3d fails to build
  3811. #5186: initramfs/cpio should support lzo compression
  3812. #5636: agetty - cannot get controlling tty error - need updated...
  3813. #5906: collectd client headers not exported
  3814. #5966: bison unnecessarily required as build dependency
  3815. #6140: --enable-fileinfo not applied for php package
  3816. #6164: openvpn usage of ip tool from Busybox
  3817. 2013.02, Released February 28th, 2013:
  3818. Misc manual updates.
  3819. Updated/fixed packages: busybox, collectd, flashbench,
  3820. libgtk2, libupnp, mii-diag, quota
  3821. 2013.02-rc3, Released February 26th, 2013
  3822. Minor fixes.
  3823. Updated/fixed packages: conntrack-tools, dialog,
  3824. enlightenment, haserl, keyutils, libfif, libmad,
  3825. linux-firmware, linux-fusion, matchbox-desktop, matchbox-wm,
  3826. ruby, spawn-fcgi, vtun
  3827. Issues resolved (http://bugs.uclibc.org):
  3828. #5960: fusion.ko driver does not install to target rootfs
  3829. 2013.02-rc2, Released February 19th, 2013
  3830. Fixes all over the tree.
  3831. Various manual updates and fixes.
  3832. Updated/fixed packages: busybox, collectd, gesftpserver,
  3833. glib-networking, gnutls, inotify-tools, libcurl, libffi,
  3834. libglib2, libtorrent, libvorbis, neard, network-manager,
  3835. ntfs-3g, openssl, qt, rpi-userland, rtorrent, thttpd, vim.
  3836. Issues resolved (http://bugs.uclibc.org):
  3837. #5906: collectd client headers not exported
  3838. 2013.02-rc1, Released February 10th, 2013
  3839. Toolchain: Crosstool-ng 1.17.0, default to GCC 4.6.3, target
  3840. libraries install fixed. Add Linaro ARM
  3841. 2012.11/2012.12/2013.01, AArch64 12.11/12.12/13.01. Sourcery
  3842. CodeBench MIPS 2012.03/09. Infrastructure to warn about
  3843. missing 32bit support for binary toolchains. Toolchain wrapper
  3844. is now relocatable. Add GDB 7.5.1 / Remove 6.8 / 7.0 /
  3845. 7.1. Deprecate uClibc 0.9.31.
  3846. Architecture: Xtensa fixes, add missing powerpc variants, arm
  3847. 1136jf-s rev1, add A5/A15, neon support toggle, OABI
  3848. deprecated. Sparc: drop old unused variants
  3849. Bootloaders: At91bootstap: fix upstream URL, Barebox: add
  3850. 2012.12/2013.01/2013.02, remove 2012.08/09/10, lzop fixes,
  3851. environment image support, U-Boot: add 2013.01.01
  3852. Linux: fix appended dtb handling for v3.8+ kernels, support
  3853. multiple device trees
  3854. Defconfigs: calao USB-A9260, snowball, QEMU PPC440 on ML507
  3855. board, QEMU ARM Exynos4210, Kernel version in QEMU defconfigs
  3856. updated, at91rm9200df: misc fixes. Lock kernel headers to
  3857. match kernel.
  3858. Infrastructure: Git download fixes. Toolchain make target
  3859. renamed from 'cross' to 'toolchain'. Eclipse integration
  3860. support. Option to set root password, post image scripts,
  3861. config scripts handling.
  3862. Updated/fixed packages: alsa-lib, argp-standalone, argus,
  3863. arptables, atk, audiofile, axel, beecrypt, bind, bison,
  3864. bluez_utils, boost, cairo, can-utils, bmon, boa, busybox,
  3865. cairo, ccache, cdrkit, cifs-utils, cjson, cmake, collectd,
  3866. connman, coreutils, cpanminus, cups, dbus, dhcp, dialog,
  3867. diffutils, directfb, distcc, divine, dnsmasq, docker,
  3868. dosfstools, dstat, e2fsprogs, ebtables, ed, empty, ethtool,
  3869. expedite, fbset, fbv, ffmpeg, flex, fltk, fluxbox, freetype,
  3870. gadget-test, gawk, gdb, genext2fs, gettext, giblib,
  3871. glib-networking, gmp, gmpc, gnupg, gnutls, gpsd,
  3872. gst-plugins-{bad,base,good}, gstreamer, gzip, haserl, hdparm,
  3873. heirloom-mailx, hiawanta, hostapd, icu, imagemagick, imlib2,
  3874. inadyn, infozip, iproute2, ipset, iptables, iw, jpeg, jquery,
  3875. jquery-sparklines, jqeury-validation, kismet, kmod, lame,
  3876. libao, libcap, libcurl, libdvdnav, libdvdread, libecore,
  3877. libedbus, libedje, libeet, libefreet, libeina, libeio,
  3878. liberation, libelementary, libembryo, libethumb, libev,
  3879. libevas, libffi, libfribidi, libfuse, libgcrypt, libglib2,
  3880. libgpg-error, libgtk2, libhid, libidn, libmicrohttpd, libmpd,
  3881. libnl, libnspr, libnss, libogg, libpcap, libplayer, libpng,
  3882. libroxml, librsvg, libseccomp, libsigc, libsndfile, libungif,
  3883. libupnp, liburcu, libusb-compat, libvncserver, libvorbis,
  3884. libxml2, libxslt, lighttpd, links, linux-firmware,
  3885. linux-fusion, ltp-testsuite, ltrace,
  3886. lttng-{babel,libust,modules,tools}, lvm2, lua, luajit, lzop,
  3887. matchbox-{desktop,lib}, mdadm, metacity, midori, minicom, mpd,
  3888. mpfr, mplayer, mtd, mysql_client, ncurses, neon, netatalk,
  3889. networkmanager, nspr, ntfs-3g, nuttcp, ofone, olsr, openssl,
  3890. openvpn, opkg, oprofile, opus, opus-tools, orc, ortp, pango,
  3891. pciutils, pcmanfm, pcre, pcsc-lite, perl, php, pixman,
  3892. pkgconf, polarssl, pptp-linux, proxychains, pulseaudio,
  3893. python, python3, qemu, qextserialport, qt, quagga, radvd,
  3894. readline, rng-tools, rt-tests, rubix, ruby, sam-ba, samba,
  3895. sane-backends, sconeserver, scons, screen, sdl, sdl_gfx,
  3896. sdl_mixer, sdl_ttf, sdparm, sed, ser2net, smartmontools,
  3897. speex, sqlite, squid, sshfs, strace, sudo, sylpheed, tn5250,
  3898. taglib, tar, torsmo, transmission, tslib, uboot-tools, ulogd,
  3899. usb_modeswitch, util-linux, valgrind, vim, vsftpd, wavpack,
  3900. webkit, wipe, wireless_tools, wpa_supplicant, xapp_xinit,
  3901. xapp_xinput-calibrator, xapp_xman, xapp_xmh, xlib_libX11,
  3902. xlib_libXdmcp, xlib_libXft, xlib_libpthread-stubs,
  3903. xlib_xtrans, xproto_xcmiscproto, xproto_xextproto,
  3904. xserver_xorg-server, xstroke, xvkbd, xz
  3905. New packages: b43-firmware, b43-fwcutter, bustle,
  3906. cache-calibrator, cegui06, celt051, classpath, curlftpfs,
  3907. dvb-apps, dvbsnoop, elfutils, enlightenment, firmware-imx,
  3908. flashbench, gd, gesftpserver, gst-fsl-plugins, httping, iftop,
  3909. imx-lib, jamvm, jpeg-turbo, keyutils, libatasmart, libcofi,
  3910. libebml, libevas-generic-loaders, libfslcodec, libfslparser,
  3911. libfslvpuwrap, libgsasl, libiscsi, libmatroska, libmcrypt,
  3912. libmhash, libqwt, libseccomp, libsha1, linenoise, mcrypt,
  3913. media-ctl, ncdu, neard, neardal, nettle, perf, polkit,
  3914. proxychains, python-bottle, python-pyparsing, rpi-firmware,
  3915. rpi-userland, sg3_utils, slirp, snowball-hdmiservice, spice,
  3916. spice-protocol, tcllib, tvheadend, udisks, usbredir
  3917. ux500-firmware, vde2, xcb-utils-keysyms, yavta,
  3918. zd1211-firmware
  3919. Removed packages: customize, xdriver_xf86-input-{acecad,aiptek},
  3920. xdriver_xf86-video-{apm,chips,i740,rendition,s3,s3virge,sisusb},
  3921. xdriver_xf86-video-sun{cg14,cg3,cg6,ffb,leo,tcx},
  3922. xdriver_xf86-video-{tsend,xgi,xgixp}
  3923. Deprecated packages: xstroke
  3924. Issues resolved (http://bugs.uclibc.org):
  3925. #4237: building shared openssl w/-Os fails due to gcc bug
  3926. #5690: python3 does not obey to BR2_PACKAGE_PYTHON3_PYC_ONLY=y
  3927. #5602: python3 should install a "python" symbolic link
  3928. #5846: Extra slash added to last slash in URL
  3929. 2012.11.1, Released January 3rd, 2013:
  3930. Toolchain: Fixed non-largefile builds on recent Ubuntu
  3931. versions.
  3932. Arch: fix missing x86/generic handling, Build for Xtensa with
  3933. longcalls option.
  3934. Updated/fixed packages: dosfstools, qt
  3935. 2012.11, Released December 2nd, 2012:
  3936. Git shallow clone fix for older git version.
  3937. Updated/fixed packages: ctuio, libtool
  3938. Issues resolved (http://bugs.uclibc.org):
  3939. #5726: List all the available hook points
  3940. 2012.11-rc2, Released November 30th, 2012:
  3941. Minor fixes around the tree.
  3942. Various manual updates and fixes.
  3943. Add checks for legacy features.
  3944. Updated/fixed packages: acpid, alsa-lib, arptables, binutils,
  3945. busybox, ccache, cjson, cramfs, directfb, flex, fluxbox, gdb,
  3946. hiawatha, igh-ethercat, imagemagick, imlib2, lcdproc,
  3947. libdaemon, libecore, libhid, libmad, libpcap, libsigc, libusb,
  3948. linux-fusion, matchbox, ocf-linux, owl-linux, python, rrdtool,
  3949. scons, strace, sylpheed
  3950. Issues resolved (http://bugs.uclibc.org):
  3951. #5732: Error : package/alsa-lib/alsa-lib.mk
  3952. 2012.11-rc1, Released November 17th, 2012
  3953. Fixes all over the tree and new features.
  3954. Defconfigs: use u-boot 2012.10 on at91 and beaglebone,
  3955. sheevaplug + qemu: bump kernel version, add qemu-mips64-malta
  3956. + nitrogen6x defconfigs.
  3957. Bootloaders: add u-boot 2012.07/10, ais target format, add
  3958. barebox 2012.08/09/10/11, linker overlap issue fix for
  3959. at91bootstrap, mxs-bootlets updated for new Barebox versions.
  3960. Toolchains: binutils 2.23.1, gcc 4.7.2, default to gcc 4.6.x,
  3961. Codebench arm/sh/x86 2012.03/09, Linaro 2012.08/09/10.
  3962. Libtirpc support for modern glibc variants. Toolchain on
  3963. target has been deprecated.
  3964. Initial Aarch64 support, Xtensa support re-added.
  3965. Infrastructure: Use shallow git clone when possible, use
  3966. tarballs rather than git URLs for github. Moved to pkgconf
  3967. rather than pkg-config. System directory added, default
  3968. skeleton/device tables moved. More than 1 post-build script
  3969. can now be used. output/target now contains a
  3970. THIS_IS_NOT_YOUR_ROOT_FILESYSTEM warning, to help people
  3971. understand how to (not) use it.
  3972. Manual has been reworked and extended.
  3973. Legal-info: Lots of package annotations, CSV file fixes,
  3974. _LICENSE / _REDISTRIBUTE splitup, per-package hooks.
  3975. Updated/fixed packages: acpid, alsa-lib, alsa-utils,
  3976. alsamixergui, attr, autoconf, automake, bash, bind, binutils,
  3977. bison, blackbox, bluez-utils, busybox, cairo, can-utils,
  3978. cifs-utils, cjson, cmake, collectd, connman, conntrack-tools,
  3979. coreutils, cups, cvs, dbus, dhcp, directfb, dmalloc, dnsmasq,
  3980. dropbear, e2fsprogs, ethtool, fbdump, feh, fftw, file,
  3981. flashrom, fluxbox, gdb, gdisk, gdk-pixbuf, genext2fs, gettext,
  3982. gnutls, gpsd, gqview, grep, gsl, gst-plugins-{bad,good},
  3983. hdparm, hiawatha, hostapd, input-tools, iproute2, ipset,
  3984. iptables, iw, json-c, kexec, kmod, lcdproc, leafpad, less,
  3985. libcurl, libdrm, libdvdnav, libdvdread, libffi, libfuse,
  3986. libglib2, libhid, liblockfile, libmad, libmbus, libmnl,
  3987. libnetfilter_{acct,conntrack,cthelper,cttimeout,queue},
  3988. libnfc, libnfc-llcp, libnfnetlink, libnl, libnspr, libnss,
  3989. libpcap, libplayer, libtool, libtorrent, liburcu, libv4l,
  3990. libxcb, libxml2, libxslt, links, linux-firmware, lm-sensors,
  3991. lmbench, lockfile-progs, logrotate, lshw, lsof,
  3992. lttng-babeltrace, lttng-tools, lua, luajit, mesa3d, microperl,
  3993. mii-diag, module-init-tools, mpc, mpd, mpg123, mplayer,
  3994. mtd-utils, mysql_client, nbd, ncurses, netatalk, netkitbase,
  3995. netkittelnet, netsnmp, newt, nfs-utils, openntpd, openssh,
  3996. openssl, opkg, patch, pciutils, pcre, php, poco, polarssl,
  3997. popt, portmap, pppd, procps, pulseaudio, python, python-nfc,
  3998. python-protobuf, qt, quota, rp-pppoe, rtorrent, sam-ba, samba,
  3999. scons, sdl_gfx, smartmontools, sqlite, squid, strace, sudo,
  4000. sylpheed, tcpdump, tremor, ttcp, tiff, unionfs,
  4001. usb_modeswitch, usbutils, util-linux, vala, valgrind, vpnc,
  4002. vsftpd, webkit, wget, which, wpa_supplicant, x11vnc, xapp_*,
  4003. xdriver_*, xenomai, xfont_*, xinetd, xl2tp, xlib_*, xlsclient,
  4004. xproto_*, xserver_xorg-server, xutil_util-macros, xz, zeromq
  4005. New packages: arptables, at91bootstrap3, boot-wrapper-aarch64,
  4006. ccid, cpanminus, cpuload, erlang, evtest, fb-test-apps,
  4007. fxload, gdbm, gnupg, googlefontdirectory, grantlee, gsl,
  4008. lcdapi, liblo, liblog4c-localtime, libtirpc, linux-pam,
  4009. lua-msgpack-native, macchanger, mtdev, mtdev2tuio, nfacct,
  4010. opus, opus-tools, pcsc-lite, perl, pkgconf, python-meld3,
  4011. python3, qemu, qextserialport, qtuio, rpcbind, schifra,
  4012. sconeserver, supervisor, time, ulogd, usb_modeswitch_data,
  4013. yasm
  4014. Deprecated packages: netkitbase, netkittelnet
  4015. Issues resolved (http://bugs.uclibc.org):
  4016. #807: [PATCH] samba - make iconv and smbd optional
  4017. #3049: binutils have a sysroot bug in ld
  4018. #5330: update vsftpd to 3.0.0
  4019. #5486: libglib2 build fails on: libs/libglib-2.0.so: undefined...
  4020. #5666: Fails to build python 2.7.2 for 2440 arm
  4021. 2012.08, Release August 31th, 2012
  4022. Updated/fixed packages: microperl, cups, luajit, rrdtool,
  4023. prboom, oprofile.
  4024. Added license information for: sqlite.
  4025. Changed the source URLs of all packages located on Sourceforge
  4026. in order to use the automatic mirror selection URL
  4027. downloads.sourceforge.net, and get rid of the
  4028. BR2_SOURCEFORGE_MIRROR option.
  4029. 2012.08-rc3, Released August 25th, 2012
  4030. Updated/fixed packages: libglib2, netsnmp, freetype, libfuse,
  4031. libpng, x11vnc, zlib, gpsd, ifplugd, bash, distcc.
  4032. Added license informations for: barebox, grub, syslinux,
  4033. uboot, xloader, yajl, zlib, zxing, alsa-lib, alsa-utils,
  4034. faad2, nano, fbdump, rsync, librsync, fontconfig,
  4035. inotify-tools,
  4036. 2012.08-rc2, Released August 15th, 2012
  4037. Updated/fixed packages: imagemagick, sudo, crosstool-ng.
  4038. Added license informations for: mxml, nanocom, empty, expat,
  4039. lua, lucjson, xinetd, cjson, luaexpat, lmbench, bwm-ng,
  4040. input-event-daemon, luajit, cgilua, copas, coxpcall,
  4041. luafilesystem, luasocket, rings, wsapi, xavante, libtpl,
  4042. avahi, busybox, libfcgi, ifplugd, libcgicc, libcurl,
  4043. libdaemon, libdnet, libgpg-error, libpcap, libpng, lighttpd,
  4044. mtd, openssl, psmisc, socat, spawn-fcgi.
  4045. Fixes to Microblaze external toolchains
  4046. configuration. Improvements of the pkg-stats
  4047. script. Out-of-tree fix for the graph-depends script.
  4048. Kernel headers version bump.
  4049. 2012.08-rc1, Released August 1st, 2012
  4050. Fixes all over the tree and new features.
  4051. Integration of a legal information reporting infrastructure,
  4052. which allows to generate detailed informations about the
  4053. licenses and source code of all components of a system
  4054. generated by Buildroot. License information will progressively
  4055. be added on packages.
  4056. Default configuration files added for Calao-systems USB-A9263
  4057. and Calao-systems USB-A9G20-LPW.
  4058. External toolchains update: allow download of a custom
  4059. toolchain, add Linaro 2012.05 and 2012.06 for ARM, add
  4060. Blackfin toolchain 2012R1-BETA1, add Sourcery CodeBench MIPS
  4061. 2011.09.
  4062. Allow the restriction of downloads to the primary site only.
  4063. This is useful for project developers who want to ensure that
  4064. the project can be built even if the upstream tarball
  4065. locations disappear.
  4066. Add a 'System configuration' choice to select between 3
  4067. different init systems: Busybox init, SysV init and Systemd
  4068. init.
  4069. Cleanups to the package infrastructure. The visible change to
  4070. developers is that $(eval $(call AUTOTARGETS)) is now $(eval
  4071. $(autotools-package)), and similarly for other package
  4072. infrastructures and host packages. Refer to the documentation
  4073. for details.
  4074. By default, automatic detection of the number of compilation
  4075. jobs to use, depending on the number of CPUs available.
  4076. Improvements to generate systems with static libraries only
  4077. (infrastructure and package fixes).
  4078. Add proper support in the Linux kernel package to generate
  4079. Device Tree Blobs or combined Device Tree / Kernel
  4080. images. This will be useful on Microblaze, PowerPC and ARM,
  4081. which are architectures making extensive use of the Device
  4082. Tree.
  4083. Updated/fixed packages: audiofile, autoconf, automake, axel,
  4084. barebox, bash, beecrypt, berkeleydb, bind, bison, bluez_utils,
  4085. bonnie, boost, busybox, bsdiff, bwm-ng, bzip2, cifs-utils,
  4086. cgilua, cmake, connman, conntrack-tools, crosstool-ng, cups,
  4087. dbus, dhcp, dnsmasq, e2fsprogs, eeprog, ethtool, faad2, fbv,
  4088. ffmpeg, freetype, gmp, gnutls, gob2, gpsd, grep,
  4089. gst-plugins-base, gst-plugins-good, gzip, hiawatha, hostapd,
  4090. htop, icu, igh-ethercat, imagemagick, input-tools, iostat,
  4091. iproute2, ipset, iptables, iw, kmod, less, libcap, libgci,
  4092. libconfig, libcurl, libelf, libevas, libeXosip2, libexif,
  4093. libfuse, libidn, libmad, libmbus, libmnl,
  4094. libnetfilter-conntrack, libnl, libnspr, libnss, libogg,
  4095. libosip2, libpcap, libpng, libroxml, liburcu, libusb, libxml2,
  4096. libxslt, lighttpd, linux, ltrace, lttng-libust, lttng-modules,
  4097. lttng-tools, lua, m4, memtester, midori, mii-diag,
  4098. module-init-tools, mpfr, mpg123, mrouted, msmtp, mtd, mxml,
  4099. mysql_client, nasm, nbd, ncurses, nfs-utils, opencv, openocd,
  4100. openssl, pciutils, php, polarssl, portaudio, pppd,
  4101. pthread-stubs, pulseaudio, qt, quagga, quota, radvd, rpm,
  4102. rrdtool, samba, sam-ba, scons, sdl_gfx, sdl_sound, speex,
  4103. sqlite, squashfs, squid, sudo, synergy, syslinux, systemd,
  4104. tar, tcpdump, tcpreplay, udev, usbutils, valgrind, wget,
  4105. wpa_supplicant, wsapi, xavante, xserver_xorg-server, zlib
  4106. New packages: cjson, collectd, dfu-util, dmidecode, elftosb,
  4107. fbterm, flashrom, freerdp, inadyn, libfreefare,
  4108. libnetfilter_cttimeout, libnfc, libnfc-llcp, liboping,
  4109. libtorrent, linphone, logsurfer, lshw, luacjson, luaexpat,
  4110. luajit, mediastreamer, mobile-broadband-provider-info, monit,
  4111. mxs-bootlets, nanocom, nss-mdns, ofone, omap-u-boot-utils,
  4112. opkg, ortp, owl-linux, python-id3, python-nfc, quota,
  4113. ramspeed, rtorrent, sound-theme-borealis,
  4114. sound-theme-freedesktop, sysprof, webrtc-audio-processing,
  4115. xinetd, zxing
  4116. Issues resolved (http://bugs.uclibc.org):
  4117. #1315: Allow use of older external toolchains without sysroot
  4118. support [won't fix]
  4119. #5276: Hiawatha needs to manage IPV6 if so [fixed]
  4120. #5360: buildroot fails when building "host-libglib2 2.30.2
  4121. Building" [won't fix, upstream problem]
  4122. #5384: Can't build packages relying on gets on newer glibc
  4123. [fixed]
  4124. 2012.05, Released May 30th, 2012:
  4125. Updated/fixed packages: busybox, netsnmp, pptp-linux
  4126. 2012.05-rc3, Released May 25th, 2012:
  4127. Minor fixes around the tree.
  4128. Infra: Fix for DOWNLOAD macro when using primary mirrors with
  4129. scp targets.
  4130. Toolchain: Kernel headers 3.2.18 / 3.3.7.
  4131. Updated/fixed packages: binutils, bison, busybox, cifs-utils,
  4132. gnuchess, gpsd, iperf, libmpeg2, mtd, ntfs-3g, oprofile,
  4133. xserver-xorg
  4134. 2012.05-rc2, Released May 18th, 2012:
  4135. Fixes all over the tree.
  4136. Toolchain: uClibc: Use 0.9.33.2, Crosstool-ng: fix gperf
  4137. dependency, disable decimal floats support, Linux 3.2.17 /
  4138. 3.3.6 kernel headers. Fix sysroot copy handling for toolchains
  4139. without C++ support.
  4140. Updated/fixed packages: apr, apr-util, ccache, dnsmasq,
  4141. heirloom-mailx, gdb, ndisc6, opencv, openssl, socat, vala
  4142. 2012.05-rc1, Released May 10th, 2012:
  4143. Fixes all over the tree and new features.
  4144. Use /etc/os-release for version info rather than
  4145. /etc/br-version.
  4146. CMake toolchain file moved to $HOST_DIR/usr/share/buildroot.
  4147. Apply-patches.sh: cleanups, archived patches handling fixes,
  4148. support series files.
  4149. Defconfigs: beaglebone, mx53qsb, pandaboard, qemu configs for
  4150. arm-vexpress/microblaze/ppc-mpc88544ds, use 3.2.x for
  4151. atngw100, use 3.3.x for qemu configs.
  4152. Menu structure: Libraries moved out of multimedia section
  4153. Atom processor support. Prescott fix, blackfin ABI fix,
  4154. Microblaze architecture support (using ext toolchain). Cleanup
  4155. architecture names, deprecate Xtensa support.
  4156. Toolchain: Add GCC 4.4.7, 4.6.3, 4.7.0. uClibc 0.9.33.1,
  4157. default to uClibc 0.9.33.x, enable
  4158. UCLIBC_SUPPORT_AI_ADDRCONFIG by default, static and 64bit
  4159. fixes for external toolchains, linaro ext toolchains, new
  4160. sourcery codebench ext toolchains, GDB 7.4.1, crosstool-ng
  4161. 1.15.2.
  4162. Bootloaders: U-Boot: add 2012.04.01, SPL and u-boot.img
  4163. support. Barebox: add 2012.04, remove 2011.12.
  4164. Updated/fixed packages: alsa-lib, alsa-utils, at, atk, avahi,
  4165. barebox, berkeleydb, bind, bluez_utils, boost, busybox,
  4166. can-utils, ccache, cifs-utils, coreutils, cups, dbus, dhcp,
  4167. directfb, dnsmasq, doom-wad, dosfstools, e2fsprogs, expat,
  4168. fakeroot, feh, ffmpeg, file, fis, freetype, gamin, gawk,
  4169. gdk-pixbuf, gettext, giblib, glib-networking, gmp, gnutls,
  4170. gpsd, grep, gstreamer, gst-plugins-{bad,base,good,ugly},
  4171. haserl, hdparm, imagemagick, iproute2, iptable, iw, kexec,
  4172. kmod, lame, libaio, libarchive, libatomic_ops, libconfig,
  4173. libcurl, libdvdnav, libdvdread, libedbus, libethumb, libffi,
  4174. libfuse, libglib2, libgtk2, libhid, libmad, libmbus, libmpeg2,
  4175. libnl, libplayer, libpng, libsigc, libsoup, libupnp, liburcu,
  4176. libusb, libusb-compat, libxml2, libxml-parser-perl, libxslt,
  4177. lighttpd, linux-firmware, linux-fusion, lite, lsof, ltrace,
  4178. lttng-libust, lua, m4, makedevs, microperl, mpd, mpfr, mpg123,
  4179. mrouted, mtd, mysql_client, nbd, ncftp, ncurses, neon,
  4180. netsnmp, network-manager, nfs-utils, ngrep, ntfs-3g, openntpd,
  4181. openssh, openssl, parted, pango, pcre, php, pixman, poco,
  4182. psmisc, pulseaudio, python, qt, quagga, radvd, rpm, rsync,
  4183. ruby, samba, sam-ba, sane-backends, sawman, screen, sdl_net,
  4184. smartmontools, speex, sqlite, squashfs3, squid, sshfs, sudo,
  4185. syslinux, sysstat, taglib, tcpdump, tftp-hpa, transmission,
  4186. tiff, tinyhttpd, uboot-tools, udev, uemacs, unionfs, usbutils,
  4187. util-linux, vala, valgrind, vim, vsftpd, wget, wipe,
  4188. wpa_supplicant, xdriver_xf86-{input-vmmouse,video-fbdev},
  4189. xfsprogs, zlib
  4190. New packages: apr, apr-util, audiofile, bellagio,
  4191. conntrack-tools, empty, fmtools, glib-networking,
  4192. heirloom-mailx, hiawatha, latencytop, lcdproc, libcap-ng,
  4193. libdmtx, libfcgi, libnetfilter_conntrack, libnfnetlink,
  4194. libtpl, localedef, minicom, msmtp, ndisc6, netatalk,
  4195. ocf-linux, openswan, parted, polarssl, protobuf, read-edid,
  4196. socketcand, stress, systemd, ushare, zeromq
  4197. Deprecated packages: ttcp
  4198. Removed packages: ntfsprogs
  4199. Issues resolved (http://bugs.uclibc.org):
  4200. #2353: [lua] fix build with 2010.08-rc1
  4201. #2503: Microperl fails build on MIPSel or with Fedora13.x86_64
  4202. #2557: [PATCH] mkfs.xfs complains about missing libxfs.so.0
  4203. #2881: Can't build project statically with external toolchain
  4204. #3751: MIPS: fix BR2_GCC_TARGET_ABI for MIPS n64
  4205. #4808: ccache may build against wrong zlib
  4206. #4880: New package lcdproc
  4207. #4886: New package protobuf
  4208. #4892: build fails on ltp-testsuite-20101031/testcases/kernel/fs/...
  4209. #4898: * make: [target-finalize] Error 1 (ignored)*
  4210. #4985: Qt 4.7.4 build crashes with Linux 2.6.29
  4211. #4970: udev 181 fails to build if kernel version 3.3 is selected
  4212. #5018: dialog broken: exits with assert in uClibc
  4213. #5102: qt package moc, uic, rcc read from wrong place
  4214. #5144: Patch to fix ixon bug in uemacs
  4215. #5198: Line graphics output is broken in GNU Screen
  4216. #5204: Missing terminfo file(s) for GNU screen terminal type
  4217. 2012.02, Released February 29th, 2012:
  4218. Updated/fixed packages: libecore
  4219. 2012.02-rc3, Released February 27th, 2012:
  4220. Fixes all over the tree.
  4221. Automatic host dependencies handling for cmake packages
  4222. fixed. Customize package deprecated as using a post-build
  4223. script is nowadays the preferred way of adding extra stuff to
  4224. the rootfs.
  4225. Linux-headers 3.0.x / 3.2.x stable version bumped.
  4226. QEMU defconfigs updated to 3.2.x kernels and readme fixed.
  4227. Updated/fixed packages: dropbear, ffmpeg, libpng
  4228. 2012.02-rc2, Released February 19th, 2012:
  4229. Fixes all over the tree.
  4230. Toolchain: uClibc: Added upstream post-0.9.33 fixes, Bump
  4231. linux-headers 3.0.x / 3.2.x stable versions.
  4232. Documentation: Added makedev / <pkg>_DEVICES /
  4233. <pkg>_PERMISSIONS documentation.
  4234. Updated/fixed packages: busybox, ffmpeg, gst-dsp, libecore,
  4235. libvncserver, mxml, python.
  4236. 2012.02-rc1, Released February 12th, 2012:
  4237. Fixes all over the tree and new features.
  4238. Toolchain: Default to GCC 4.5.x, add binutils 2.22. Java
  4239. support removed, Powerpc SPE ABI support. GDB ELF support fix,
  4240. GDB 7.4, crosstool-NG 1.13.4.
  4241. Gentargets: scp and mercurial support.
  4242. Autotools: derive host dependencies from target by default.
  4243. Packages can now declare device table snippets.
  4244. Host utilities menu with commonly used host tools.
  4245. defconfigs: qemu configs for x86-64, mips and sparc, at91
  4246. defconfigs now use modern U-Boot / mainline Linux, added
  4247. lpc3250 defconfigs.
  4248. uClibc: remove 0.9.30, backport unshare() support, add
  4249. 0.9.32.1 / 0.9.33, use same config for ctng.
  4250. Bootloaders: U-Boot: add 2011.12, remove 2010.xx versions,
  4251. Barebox: add 2012.01/02, remove 2011.10/11, LPC32xx
  4252. bootloaders added.
  4253. Various manual updates. Release tarballs now contain generated
  4254. manual in text/html/pdf formats.
  4255. Buildroot now calls the stop function of scripts in
  4256. /etc/init.d at shutdown.
  4257. Updated/fixed packages: atk, avahi, barebox, bash, beecrypt,
  4258. bind, binutils, bison, bluez_utils, bzip2, busybox, cairo,
  4259. ccache, cdrkit, coreutils, cramfs, dbus, dbus-glib, dialog,
  4260. diffutils, dmalloc, dropbear, e2fsprogs, ebtables, ed,
  4261. ethtool, expat, ffmpeg, file, fis, flex, fluxbox, fontconfig,
  4262. freetype, gawk, grep, gst-dsp, gst-ffmpeg, gst-plugins-base,
  4263. hdparm, hostapd, htop, i2c-tools, icu, iproute2, ipsec-tools,
  4264. ipset, iptables, iw, jpeg, kismet, lame, libcap, libcgi,
  4265. libev, libeXosip2, libffi, libftdi, libgpg-error, libgtk2,
  4266. libidn, libmms, libmnl, libmodbus, libnl, libogg, libosip,
  4267. libpcap, libpng, libraw1394, libroxml, libusb, libusb-compat,
  4268. libv4l, libvorbis, libxcb, libxml-parser-perl, libxslt,
  4269. lighttpd, links, lm-sensors, lua, m4, module-init-tools, mpc,
  4270. mesa3d, mpd, mpfr, mplayer, mtd-utils, nano, nbd, ncurses,
  4271. netperf, netsnmp, ntp, opencv, openocd, openssl, openvpn, orc,
  4272. pciutils, pcre, pixman, pkg-config, poco, popt, proftpd,
  4273. python, python-serial, qt, ruby, samba, sdl, sdparm,
  4274. squashfs3, sshfs, sqlite, squid, sudo, syslinux, tcl, tcpdump,
  4275. ti-utils, tiff, tremor, uboot, uboot-tools, udev, usbmount,
  4276. util-linux, vala, valgrind, vsftpd, wpa_supplicant,
  4277. xapp_{bdftopcf,mkfontdir,mkfontscale,xkbcomp,xcursorgen,xinit},
  4278. xapp_xinput, xapp_xman, xcb-util, xdm, xenomai,
  4279. xf86-video-sis, xfont_{encodings,font-util},
  4280. xlib_lib{fontenc,X11,Xau,Xcursor,Xdmcp,Xfixes,Xfont,Xrender},
  4281. xlib_libxkbfile, xterm, xutil_makedepend, yajl
  4282. New packages: boost, connman, dstat, expedite, explorercanvas,
  4283. feh, flot, giblib, igh-ethercat, imlib2, jquery,
  4284. jquery-sparklines, jquery-validation, jsmin, kmod, libecore,
  4285. libedbus, libedje, libeet, libeina, libelementary, libesmtp,
  4286. libethumb, libevas, libical, libmbus, liboauth, liburcu,
  4287. libvncserver, linux-firmware,
  4288. lttng-{babeltrace,libust,modules,tools}, NetworkManager,
  4289. open2300, python-distutilscross, python-dpkt,
  4290. python-netifaces, python-pygame, python-setuptools, rt-tests,
  4291. sam-ba, sane-backends, sqlcipher, transmission, unionfs,
  4292. xf86-input-tslib, xinput-calibrator
  4293. Issues resolved (http://bugs.uclibc.org):
  4294. #743: Add Transmission bit torrent option to buildroot
  4295. #755: Add Boost libraries as a package
  4296. #2299: Add crypto support to libsoup
  4297. #2617: Pixman 0.19.2 & Cairo 1.10.0
  4298. #3403: libgpg-error: bump to version 1.10
  4299. #3409: libgpg-error: download from gnupg.org
  4300. #3421: nano: make tiny flag optional
  4301. #3691: New EFL packages
  4302. #4664: Cannot patch AT91Bootstrap
  4303. #4700: setlocalversion not working for combination svn/ubuntu 11.10...
  4304. #4760: Qt: add host-pkg-config to dependency-list
  4305. 2011.11, Released November 30th, 2011:
  4306. Fixes all over the tree.
  4307. Bump kernel headers / default Linux version to 3.1.4.
  4308. Updated/fixed packages: ruby
  4309. 2011.11-rc3, Released November 26th, 2011:
  4310. Fixes all over the tree.
  4311. Toolchain: Fix gdb dependencies for external toolchains,
  4312. adjust uClibc patches so they don't confuse modern versions of
  4313. patch, bump crosstool-ng, kernel headers and linux versions.
  4314. Updated/fixed packages: busybox, freetype, mplayer, opencv,
  4315. php, rsyslog, ruby, thttpd, xapp_xf86dga
  4316. Issues resolved (http://bugs.uclibc.org):
  4317. #4357: Prevent patch commands from accessing source control
  4318. #4369: Fix permissions on untared lsof archive
  4319. 2011.11-rc2, Released November 18th, 2011:
  4320. Fixes all over the tree and new features.
  4321. Updated asciidoc documentation
  4322. Toolchain: Bumped 3.x stable kernel headers, use wget in
  4323. crosstool-ng as well, bump crosstool-ng version, gdb fixes,
  4324. uClibc sparc fix.
  4325. Updated/fixed packages: distcc, file, gst-plugins-bad, libxcb,
  4326. mplayer, newt, qt, rpm, rrdtool, tar, tftpd
  4327. Issues resolved (http://bugs.uclibc.org):
  4328. #3355: mplayer fails to build
  4329. #4021: uClibc: undefined reference to `__GI___errno_location'
  4330. #4297: Qt's qmake uses wrong pkg-config
  4331. 2011.11-rc1, Released November 11th, 2011:
  4332. Fixes all over the tree and new features.
  4333. Moved misc scripts and support stuff to support/. Renamed
  4334. patch-kernel.sh to support/scripts/apply-patches.sh.
  4335. Documentation: Moved to asciidoc format, make targets to
  4336. generate text/html/pdf/epub output added.
  4337. Defconfigs: Qemu configs updated to 3.1 kernel and readmes
  4338. added.
  4339. Bootloaders: Add support for custom git tree / tarballs for
  4340. barebox, similar to how it's handled for u-boot. Clean up
  4341. menuconfig options.
  4342. Toolchain: Update external codesourcery toolchain download
  4343. URLs after Codesourcery got bought by Mentor, add x86
  4344. toolchain, update toolchain versions and optimize toolchain
  4345. sysroot copying. Fix uClibc 0.9.32 builds for e500 PPC,
  4346. updated GDB versions / download URLs. Binutils
  4347. libbfd/libopcodes static/dynamic linking fix. GCC 4.6.2 added,
  4348. use ctng-1.13.0.
  4349. Package infrastructure: Support for local packages /
  4350. overrides, package dir / name arguments dropped from
  4351. {GEN,AUTO,CMAKE}TARGETS.
  4352. Linux: Kernel extensions infrastructure support, Xenomai +
  4353. RTAI support.
  4354. Updated/fixed packages: acpid, bind, busybox, dash, dbus,
  4355. dbus-glib, directfb, dnsmasq, drystone, e2fsprogs, ethtool,
  4356. fakeroot, fbdump, file, freetype, fuse, gamin, gmp, gmpc,
  4357. gnutls, gob2, gst-plugins-{base,bad,good,ugly}, gstreamer,
  4358. hostapd, ifplugd, imagemagick, intltool, ipsec-tools, ipset,
  4359. iptables, iw, jpeg, kexec, leafpad, less, libargtable2, libao,
  4360. libconfuse, libcuefile, libcurl, libdaemon, libevent,
  4361. libglib2, libiconv, libmpd, libreplaygain, libroxml,
  4362. libsamplerate, libsndfile, libsoup, libsvgtiny, libtool,
  4363. libxcb, lighttpd, links, linux-fusion, lite, lrzsz, lsof, lzo,
  4364. lzop, makedevs, mcookie, mpg123, mpd, mpfr, mtd, musepack,
  4365. mutt, mysql_client, ncftp, ncurses, neon, netcat, netsnmp,
  4366. ntfs-3g, ntfsprogs, ntp, openntpd, openssh, openssl, oprofile,
  4367. orc, pciutils, psmisc, python, qt, quagga, radvd, rpm, rsync,
  4368. samba, sawman, sdl_sound, smartmontools, sqlite, squid,
  4369. stunnel, sudo, sylpheed, sysstat, taglib, tar, tcpreplay,
  4370. tslib, usbutils, util-linux, valgrind, wget, whetstone, which,
  4371. wpa-supplicant, xdata_xcursor-themes, xmlstarlet, xterm
  4372. New packages: bluez-utils, cifs-utils, fftw, fluxbox, json-c,
  4373. libev, libftdi, libgeotiff, libmodbus, libplayer, live555,
  4374. ngrep, noip, opencv, openocd, picocom, poco, portaudio,
  4375. pulseaudio, pv, rtai, vala, xenomai.
  4376. Removed packages: liboil, sfdisk, swfdec, webif
  4377. Issues resolved (http://bugs.uclibc.org):
  4378. #505: live555: new package
  4379. #507: Enable live and tv options in MPlayer-1.0rc2
  4380. #531: let e2fsprogs package to export headers to staging dir if needed
  4381. #1171: Linuxthreads new cannot find sysdep.h
  4382. #1357: Add bluez to buildroot system
  4383. #2107: New package: input-event-daemon
  4384. #2599: New package: orc (Oil Runtime Compiler)
  4385. #2605: gstreamer: Update to 0.10.30
  4386. #2677: introducing util-linux-ng as replacement for util-linux
  4387. #2917: Qt: Add declarative module
  4388. #3145: jffs2 image generation fails
  4389. #3271: netperf-2.4.5 fails to compile
  4390. #3331: xdata_xcursor-themes depends on xcursorgen
  4391. #3343: Add file:// download SITE_METHOD
  4392. #3391: Add support for specifying an external kernel tree
  4393. #3631: Error while compiling with Xorg
  4394. #3709: oprofile doesn't build for mipsel
  4395. #3925: midori not getting compile
  4396. #4045: Add support for downloading i386 toolchains from codesourcery
  4397. #4165: lrzsz-fix-symlink-at-rebuild.patch
  4398. #4171: makedevs-unused-but-set-variable.patch
  4399. #4183: Codesourcery toolchain download site has changed
  4400. #4231: libneon.so: undefined reference to `SSL_SESSION_cmp'
  4401. #4381: Add option to lighttpd to enable Lua support
  4402. #4387: Make sure that dest dir exists before installing mtd files
  4403. 2011.08, Released August 31th, 2011:
  4404. Fixes all over the tree.
  4405. Toolchain: Fix codesourcery 2009q3 ARM download, Linux 3.0.4
  4406. kernel headers.
  4407. Updated/fixed packages: ipset, python
  4408. 2011.08-rc2, Released August 29th, 2011:
  4409. Fixes all over the tree.
  4410. Toolchain: crosstool-NG 1.12.1, use binutils 2.21 on
  4411. mips/sh/older uClibc, disallow uClibc 0.9.32 on avr32/sh
  4412. (broken).
  4413. Defconfigs: kernel updates, fix mini2440 serial port config,
  4414. remove old arm toolchain configs.
  4415. Bootloaders: Fix grub patching, add barebox-{n,x,menuconfig}
  4416. targets similar to linux/busybox.
  4417. Updated/fixed packages: barebox, directfb, libsoup,
  4418. libxml-parser-perl, mtd, ncurses, python, ti-utils, udev,
  4419. usbmount, util-linux, xfont_font-misc-misc
  4420. Issues resolved (http://bugs.uclibc.org):
  4421. #3685: ncurses installation hangs due to old version of tic
  4422. #4093: Grub fails to install bz2 patch after conversion to...
  4423. 2011.08-rc1, Released August 4th, 2011:
  4424. Fixes all over the tree and new features.
  4425. Toolchain: uClibc 0.9.32 / NPTL support, 0.9.29 removed,
  4426. ext-toolchain-wrapper improvements, improved non-MMU
  4427. support. GCC 4.3.6 / 4.6.1.
  4428. GENTARGETS infrastructure extended to cover bootloaders and
  4429. Linux kernel as well. Options to retrive Linux/U-Boot from a
  4430. custom git repo instead of upstream tarballs.
  4431. Support for Linux 3.x and release candidate tarballs.
  4432. X-Loader bootloader for omap added.
  4433. Make source/external-deps now also works for external
  4434. toolchains / crosstool-ng backend.
  4435. Updated/fixed packages: autoconf, berkeleydb, bind, binutils,
  4436. bmon, bridge-utils, busybox, cmake, dbus, dbus-glib,
  4437. e2fsprogs, ethtool, ffmpeg, gst-plugins-{bad,base,good,ugly},
  4438. gvfs, hostapd, iproute2, iptables, iw, jpeg, lame, libarchive,
  4439. libdnet, libdrm, libgcrypt, libgtk2, libmpeg2, libpng,
  4440. libsoup, lighttpd, linux-fusion, lzo, midori, mtd-utils,
  4441. nfs-utils, openvpn, oprofile, orc, pkg-config, proftpd, qt,
  4442. ruby, samba, sdl, shared-mime-info, sudo, sqlite, squid,
  4443. synergy, udev, usbmount, usbutils, util-linux, valgrind,
  4444. webkit, xorg-xserver, xz, zlib
  4445. New packages: acl, attr, ebtables, gnutls, inotify-tools,
  4446. ipset, libargtable2, libiqrf, libmnl, libnspr, libnss,
  4447. libroxml, libyaml, live555, mxml, orc, rsyslog, sredird,
  4448. statserial, stunnel, ti-utils, uboot-tools, yajl
  4449. Deprecated packages: liboil, swfdec
  4450. Removed packages: hal
  4451. Issues resolved (http://bugs.uclibc.org):
  4452. #3559: libnspr: Add new package
  4453. #3595: patch to add libroxml
  4454. #3565: libnss: Add new package
  4455. #3583: xfonts_font-adobe-100dpi fails due to missing map file
  4456. #3649: [PATCH] Add mapdir to existing pkg-config patch
  4457. #3907: 2011.05 - Qt 4.7.3 not building on ARM
  4458. #3961: Nfs-utils: Remove SUSv3-function index
  4459. #3985: "help" target's defconfig list needs sort
  4460. #3997: bump libroxml to v2.1.0
  4461. 2011.05, Released May 27th, 2011:
  4462. Updated/fixed packages: makedevs
  4463. 2011.05-rc2, Released May 24th, 2011:
  4464. Fixes all over the tree.
  4465. Toolchain: Code sourcery ARM 2009q1 download URL fixed /
  4466. 2009q3 external toolchains added. Crosstool-NG bumped to
  4467. 1.11.3, eglic/glibc configuration fixes. Linux kernel 2.6.38.x
  4468. bumped to 2.6.38.7.
  4469. Updated/fixed packages: bind, fakeroot, kbd, psmisc, qt
  4470. 2011.05-rc1, Released May 18th, 2011:
  4471. Fixes all over the tree and new features.
  4472. External toolchain improvements: We now build a binary
  4473. toolchain wrapper and install it into HOST_DIR/usr/bin, which
  4474. enforces the correct compiler arguments, making an external
  4475. toolchain as easy to use outside of Buildroot as the internal
  4476. ones are. This also brought a cleanup of CFLAGS, making the
  4477. Buildroot build output easier to read.
  4478. Rootfs device handling improvements: Choice between static
  4479. /dev, devtmpfs and devtmpfs with either mdev or udev.
  4480. Toolchain: More preconfigured codesourcery external
  4481. toolchains, improved Crosstool-NG support, fix for GCC
  4482. snapshot versions, GCC 4.4.6 / 4.5.3, experimental GCC 4.6.0
  4483. support, target-GCC fixes, uClibc fixes, 0.9.32-rc3 support.
  4484. Bootloaders: U-boot 2011.03, Barebox 2011.05.0
  4485. Linux: support for custom kernel image targets, E.G. for
  4486. powerpc builds with embedded device trees.
  4487. Misc fixes for qemu defconfigs, ensuring correct serial
  4488. terminal setup out of the box.
  4489. Misc gentarget / autotools handling fixes.
  4490. Updated/fixed packages: alsa-lib, alsa-utils, alsamixergui,
  4491. atk, avahi, bind, bison, busybox, copas, dbus-glib, dhcp,
  4492. dhcpdump, dnsmasq, dropbear, ethtool, fakeroot, ffmpeg, file,
  4493. gamin, gnuconfig, gst-ffmpeg, gst-plugins-good, gtk2-engines,
  4494. haserl, hostapd, icu, imagemagick, iproute2, iw, kismet, less,
  4495. libcap, libdnet, libglade, libglib2, libgtk2, libnl, libpng,
  4496. libxml2, libxml2, libxslt, lighttpd, lockfile-progs, makedevs,
  4497. midori, mpg123, mpc, mpd, mpfr, mplayer, mtd-utils, ncurses,
  4498. netsnmp, openssh, openssl, openvpn, pango, pkg-config, popt,
  4499. procps, proftpd, qt, quagga, readline, rsync, samba, sdl,
  4500. socat, squashfs, squid, sudo, tslib, udev, usbutils, webkit,
  4501. wpa_supplicant, xerces, xfont_font-misc-misc, xlib_libX11,
  4502. xlib_libXfont, xlib_xtrans, xorg-server, xterm, xz
  4503. New packages: bonnie++, can-utils, gdisk, htop,
  4504. input-event-daemon, libexif, libraw, libv4l, ngircd
  4505. Removed packages: festival
  4506. Issues resolved (http://bugs.uclibc.org):
  4507. #2131: Add OpenMP support to the toolchain
  4508. #3379: New Package: bonnie++
  4509. #3445: Not working openssl-10.0.0d on 386sx
  4510. #3451: fakeroot package: wrong FAKEROOT_SITE variable
  4511. #3457: alsamixergui: broken URL
  4512. #3475: Calling sync on large filesystems when not always necessary
  4513. #3511: make busybox-menuconfig does not download busybox package
  4514. #3541: Quotes in the top Makefile:217 break buildroot/kernel config...
  4515. #3571: u-boot: fw_printenv does not build
  4516. #3643: popt source url is not responding
  4517. #3733: dropbear: make zlib optional
  4518. #3757: Buildroot can't build mplayer with libmad
  4519. 2011.02, Released February 28th, 2011:
  4520. Fixes all over the tree.
  4521. Updated/fixed packages: alsamixergui, avahi, ffmpeg, icu, mpd,
  4522. nuttcp, qt, slang, squashfs, sylpheed, synergy, xerces
  4523. Deprecated packages: devmem2, webif
  4524. Issues resolved (http://bugs.uclibc.org):
  4525. #2911: Qt: Disable qt3support-option, if gui-module isn't selected
  4526. #3259: Unable to build webkit (on arm)
  4527. #3295: slang fails to build on mipsel
  4528. #3325: ffmpeg fails to build
  4529. 2011.02-rc2, Released February 24th, 2011:
  4530. Fixes all over the tree.
  4531. Festival packages marked as broken. Unless someone steps up
  4532. to support them, they will be removed during the 2011.05
  4533. development cycle.
  4534. Updated/fixed packages: atk, avahi, bind, cairo, dbus,
  4535. enchant, fakeroot, gmpc, gpsd, gvfs, iperf, jpeg, libarchive,
  4536. libcgicc, libdaemon, libdrm, libevent, libgail, libglib2,
  4537. libgpg-error, libmicrohttpd, librsvg, libsoup, libxcp,
  4538. makedevs, matchbox-fakekey, matchbox-startup-monitor, mdadm,
  4539. metacity, mpd, nasm, nfs-utils, olsr, openssl, popt,
  4540. pthread-stubs, quagga, rpm, samba, sdl, sdl_gfx, sdl_image,
  4541. sdl_mixer, sdl_sound, sdl_ttf, squashfs, synergy, taglib,
  4542. tcpreplay, tiff, wpa_supplicant, xcb-util,
  4543. xdriver_xf86-input-{acepad,aiptek,evdev,joystick,keyboard},
  4544. xdriver_xf86-input-{mouse,synaptics,void},
  4545. xdriver_xf86-video-{chips,dummy,geode,glide,intel,nv,wsfb},
  4546. xlib_lib{ICE,SM,XScrnSaver,Xau,Xcursor,Xdmcp,Xi,Xinerama},
  4547. xlib_lib{Xrandr,Xt,Xtst,Xxf86dga,Xxf86vm,dmx,fontenc,pciaccess},
  4548. xserver_xorg-server, xz
  4549. Removed packages: ace_of_penguins, vlc
  4550. Issues resolved (http://bugs.uclibc.org):
  4551. #3205: Failing chmod when running "make" in buildroot (openssl)...
  4552. #3277: quagga fails to build with SNMP support
  4553. #3283: See why nfs-utils needs fakeroot, and convert to autotools
  4554. #3307: synergy fails to build due to missing XTest library
  4555. 2011.02-rc1, Released February 14th, 2011:
  4556. Fixes all over the tree and new features.
  4557. External toolchain improvements: clarification of the options,
  4558. and introduction of the toolchain profile concept, for
  4559. well-known toolchains. Buildroot is now capable of
  4560. automatically downloading and extracting well-known toolchains
  4561. (for the moment, CodeSourcery ARM, PowerPC, MIPS and SuperH
  4562. toolchains are supported). Crosstool-NG backend updated and
  4563. improved.
  4564. Complete rework of how hardware boards are supported.
  4565. Each board now only has a single defconfig file, and all
  4566. board-specific options have been removed. See
  4567. docs/buildroot.html#board_support for details.
  4568. Added support for the following boards: Mini2440, Qemu ARM
  4569. Versatile, Qemu MIPSel Malta, Qemu PowerPC G3beige, Qemu SH4
  4570. r2d and Qemu x86. The Qemu boards support allows to easily
  4571. build systems that are known to work under Qemu.
  4572. Initial support for Blackfin processors.
  4573. Staging directory moved into $(O)/host/usr/<tuple>/sysroot, in
  4574. preparation for support of SDK. For the same reason, the
  4575. toolchain binaries (cross-compiler and other related tools)
  4576. are now installed in $(O)/host/usr/bin/. The cross pkg-config
  4577. now also automatically returns correct values for cross
  4578. compilation, without needing any environment variables to be
  4579. set.
  4580. Ccache support reworked. Now used for both host and target
  4581. compilation, and cache is stored in ~/.buildroot-ccache.
  4582. Toolchain: uClibc 0.9.32-rc2, several components moved to
  4583. normal AUTOTARGET packages.
  4584. Generic cmake infrastructure, similar to the existing
  4585. GENTARGETS/AUTOTARGETS.
  4586. Support for bzr downloads, next to the existing git/svn support.
  4587. Kconfig infrastructure rebased against 2.6.38-rc3, bringing
  4588. misc fixes. 'xconfig' now uses Qt4 rather than Qt3.
  4589. EXT2 file system size handling improved, UBI image support, fs
  4590. configuration options cleanup, U-Boot/Barebox version bumps.
  4591. Updated/fixed packages: alsa-utils, at, autoconf, automake,
  4592. bash, binutils, bison, busybox, bzip2, cdrkit, cloop, cmake,
  4593. coreutils, cups, dbus, dbus-python, dhcp, directfb,
  4594. direcfb-examples, dmalloc, dnsmasq, dosfstools, e2fsprogs, ed,
  4595. fbset, ffmpeg, findutils, flac, freetype, gdk-pixbuf, gmp,
  4596. grep, gperf, gst-ffmpeg, gst-plugins-bad, gst-plugins-base,
  4597. gst-plugins-good, gst-plugins-ugly, gstreamer, gvfs, hdparm,
  4598. hostapd, i2c-tools, icu, imagemagick, input-tools, iproute2,
  4599. iptables, iw, jpeg, kexec, libaio, libart, libcap, libconfig,
  4600. libfuse, libglib2, libidn, libmad, libogg, libpcap, libpng,
  4601. libsndfile, libtheora, libtool, libusb-compat, libvorbis,
  4602. libxcb, libxml2, libxslt, links, linux-fusion, lm-sensors,
  4603. lsof, ltp-testsuite, ltrace, lvm2, lzo, m4, makedevs,
  4604. memtester, mesa3d, mii-diag, mpc, mpfr, mpg123, mplayer,
  4605. mrouted, mtd-utils, nano, netperf, netplug, ntfs-3g, ntp,
  4606. openssh, openssl, openvpn, oprofile, pango, patch, pciutils,
  4607. php, pkgconfig, portmap, psmisc, python, qt, rsync, ruby,
  4608. sawman, screen, sdl_gfx, sdl_sound, smartmontools, socat,
  4609. sqlite, squid, sshfs, sstrip, sysklogd, sysstat, sysvinit,
  4610. tar, tcpdump, tslib, udev, usbutils, vim, vtun, webkit, wipe,
  4611. x11vnc, xapp_xlogo, xcb-proto, xfont_font-util,
  4612. xkeyboard-config, xlib_libX11, xz, zlib
  4613. New packages: dhrystone, dsp-tools, faad2, fbgrab, gst-dsp,
  4614. gst-omapfb, irda-utils, lame, libao, libcue, libcuefile,
  4615. libffi, libhid, libreplaygain, libsamplerate, libsigc++,
  4616. lsuio, mpd, musepack, python-mad, python-serial, rsh-redone,
  4617. sdparm, tidsp-binaries, vorbis-tools, wavpack, whetstone,
  4618. xl2tp, xmlstarlet
  4619. Removed packages: hotplug, l2tp, libfloat, microcom,
  4620. ng-spice-rework
  4621. Issues resolved (http://bugs.uclibc.org):
  4622. #267: The make target: cross fails because toolchain_build_...
  4623. #415: Berkeley DB: mut_pthread.o: relocation R_X86_64_32 against...
  4624. #561: ltp-testsuite failed to install
  4625. #1447: Installing gfortran on PowerPC
  4626. #1651: Build fail caused by ccache in module-init-tools
  4627. #1681: Cross-compiled binaries shouldn't be installed into staging
  4628. #1723: [PATCH] axel: convert to generic package infrastructure and...
  4629. #1735: [PATCH] mplayer: convert to autotools infrastructure
  4630. #2551: [PATCH] native toolchain in the target filesystem fails
  4631. #2623: buildroot-snapshot-20100922 fails when compiling development...
  4632. #2647: makedevs package lacks support for 16-bit major/minor numbers
  4633. #2371: QT MYSQL Module does not build when MySQL installed on the host
  4634. #2839: compile fails in various packages with a odd message "error:...
  4635. #2887: tar "buffer overflow detected" error
  4636. #2893: Broken "make source" with external toolchain
  4637. #2905: Qt: Speed up compilation, if gui-module isn't selected
  4638. #2929: genext2fs: couldn't allocate a block (no free space)
  4639. #2935: Ntpdate isn't installed
  4640. #2965: Broken linkage to xkbcomp (blocking X server startup)
  4641. #2983: xlib_libX11 build failed
  4642. #3007: kexec doesn't build: Missing regdef.h file
  4643. #3085: Init scripts are not compatible with sysVinit (when busybox...
  4644. #3103: make external-deps wants to download gcc-.tar.bz2 when...
  4645. #3109: abnormal `make busybox-menuconfig`
  4646. #3115: How about board specific makefiles?
  4647. #3169: python patch has typo, aborts build in scenario
  4648. #3181: dhcp.mk copies S80dhcp-server to etc/init.d, not etc/init.d/
  4649. 2010.11, Released November 30th, 2010:
  4650. Fixes all over the tree.
  4651. Updated/fixed packages: libgcrypt, qt, squid, sysstat, tcpdump,
  4652. xserver-xorg
  4653. Issues resolved (http://bugs.uclibc.org):
  4654. #2773: squid with openssl support needs openssl on the host
  4655. #2857: OBJDUMP definition is missing from TARGET_CONFIGURE_OPTS
  4656. 2010.11-rc2, Released November 25th, 2010:
  4657. Fixes all over the tree.
  4658. Add support for LEON Sparc architecture variants. Fix make
  4659. source/external-deps for host packages.
  4660. Updated/fixed packages: bash, bind, busybox, dialog, gpsd,
  4661. libglib2, libcurl, libmad, lrzsz, midori, module-init-tools,
  4662. mtd-utils, openssh, openssl, pciutils, php, qt, sqlite,
  4663. sysstat, webkit, zlib
  4664. Issues resolved (http://bugs.uclibc.org):
  4665. #759: Sysstat build broken without libintl
  4666. #2479: host-module-init-tools 3.11 fails to build
  4667. #2725: Buildroot overrides kernel config
  4668. #2785: mtd-utils build fails due to missing libmtd
  4669. #2791: Added PHP-Process Control to the PHP-Package
  4670. #2797: pciutils dependencies on zlib not taken into account
  4671. #2809: failed to compile libglib2
  4672. #2821: [PATCH] Patch for JavaScriptCore in QtWebKit module
  4673. #2827: qt-4.7.0-pthread_getattr_np.patch invalid for qt 4.6...
  4674. #2833: Failed to compile webkit without X11
  4675. 2010.11-rc1, Released November 8th, 2010:
  4676. Fixes all over the tree and new features.
  4677. Kconfig infrastructure rebased against 2.6.36-rc1, bringing
  4678. misc fixes + nconfig and savedefconfig targets.
  4679. Toolchain: ARM cortex A9 support, experimental crosstool-ng
  4680. backend, GCC 4.5.x.
  4681. Fs: Squashfs 4.1 with lzo support
  4682. Old-style package hooks (*_HOOK_POST_*) removed. Use the more
  4683. generic new-style ones instead.
  4684. Download handling reworked and support for git/svn downloads
  4685. added.
  4686. Removed experimental shared config.cache support, as it is
  4687. too unreliable.
  4688. A convenience Makefile wrapper is created when using
  4689. out-of-tree building, similar to how it is done for the kernel.
  4690. Alpha, Cris, IA64 and Sparc64 architecture support removed.
  4691. New packages: argp-standalone, gdk-pixbuf, gpsd, gst-ffmpeg,
  4692. libmpeg2, kbd, librsvg, nuttcp, rng-tools, rrdtool, xz
  4693. Updated/fixed packages: acpid, alsa-lib, argus, at, autoconf,
  4694. automake, avahi, axel, beecrypt, berkeleydb, bind, bmon, boa,
  4695. bootutils, bridge-utils, bsdiff, busybox, cvs, dbus, directfb,
  4696. dmraid, docker, dosfstools, dropbear, e2fsprogs, ethtool,
  4697. expat, ezxml, fbset, fconfig, ffmpeg, freetype, gadgetfs-test,
  4698. gamin, gawk, genext2fs, gperf, gst-plugins-base,
  4699. gst-plugins-ugly, gtk2-themes, gtkperf, gvfs, haserl, hdparm,
  4700. hostapd, hwdata, ifplugd, imagemagick, iperf, ipsec-tools,
  4701. iproute2, iptables, iw, jpeg, kexec, kismet, less, libcgi,
  4702. libcurl, libdaemon, libdnet, liberation, libevent, libeXosip2,
  4703. libglade, libgtk2, libiconv, libidn, libintl, libmms, libmpd,
  4704. libnl, liboil, libosip2, libpcap, libpng, libtool, libungif,
  4705. libxml2, libxslt, lighttpd, lite, lm-sensors, lockfile-progs,
  4706. logrotate, m4, matchbox, mdadm, mesa3d, metacity, mplayer,
  4707. mtd-utils, mysql_client, nano, nbd, ncftp, neon, netperf,
  4708. netsnmp, ng-spice-rework, ntfsprogs, ntp, openntpd, openssh,
  4709. openssl, openvpn, oprofile, pango, patch, pcre, php,
  4710. pkg-config, portmap, pppd, pptp-linux, prboom, proftpd, radvd,
  4711. rdesktop, readline, rp-pppoe, ruby, qt, quagga, samba, sawman,
  4712. sdl_mixer, sdl_sound, sed, setserial, shared-mime-info, slang,
  4713. speex, sqlite, squashfs, startup-notification, strace,
  4714. sylpheed, sysstat, taglib, tcpdump, thttpd, tiff, tn5250,
  4715. torsmo, tslib, udev, udpcast, usbmount, usbutils, vsftpd,
  4716. vtun, which, wireless-tools, wpa_supplicant, xapp_twm,
  4717. xapp_xbacklight, xapp_xcursorgen, xapp_xinit, xapp_xinput,
  4718. xapp_xmore,
  4719. xdriver_xf86-input-{acecad,aiptek,evdev,joystick,keyboard},
  4720. xdriver-xf86-input-{mouse,synaptics,vmmouse,void},
  4721. xdriver-xf86-video-{apm,ark,ast,ati,chips,cirrus,dummy,fbdev},
  4722. xdriver-xf86-video-{geode,glide,glint,i128,i740,intel,mach64},
  4723. xdriver-xf86-video-{mga,neomagic,newport,nv,openchrome,r128},
  4724. xdriver-xf86-video-{rendition,s3,s3virge,savage,siliconmotion},
  4725. xdriver-xf86-video-{sis,sisusb,suncg3,suncg6,suncg14,sunffb},
  4726. xdriver-xf86-video-{sunleo,suntcx,tdfx,tga,trident,v4l,vesa},
  4727. xdriver-xf86-video-{vmware,voodeo,wsfb,xgi,xgixp},
  4728. xkeyboard-config, xlib_libX11, xserver_xorg-server, xstroke,
  4729. xterm, xvkbd, zlib
  4730. Deprecated packages: hotplug, lzma, ng-spice-rework, sfdisk
  4731. Removed packages: dillo, libglib12, libgtk12, microwin,
  4732. pcmcia
  4733. Issues resolved (http://bugs.uclibc.org):
  4734. #901: new package: gpsd
  4735. #2389: Generate a Makefile wrapper in $(O)
  4736. #2461: wireless_tools: install shared library if needed
  4737. #2521: Can't compile sdl_mixer, mikmod.h can't be found
  4738. #2533: xserver_xorg-server: Enable glx, if mesa3d is built
  4739. #2563: [PATCH] cairo: Expose the configure option to disable some...
  4740. #2581: libmms: Update to 0.6, and patch to work on architectures...
  4741. #2707: Can't compile linux kernel using buildroot + crosstool-ng
  4742. #2731: Build order
  4743. #2737: buildroot configuration tool crashing when the path exceeds...
  4744. #2767: Build for lsof broken in buildroot-2010.08
  4745. 2010.08: Released August 31th, 2010:
  4746. Fixes all over the tree.
  4747. Updated/fixed packages: atk, xstroke
  4748. Removed packages: lxdoom
  4749. 2010.08-rc2, Released August 30th, 2010:
  4750. Fixes all over the tree.
  4751. Mark the combination of uClibc 0.9.31, gcc 4.2.x, C++ and
  4752. locale support as broken. Remove deprecated GCC 4.2.[1-3]
  4753. versions.
  4754. Mark CRIS architecture as deprecated, as it is discontinued
  4755. upstream.
  4756. Marked shared config.cache as experimental and disabled by
  4757. default as it is known to break with certain package
  4758. combinations.
  4759. Toolchain: fixed gcc 4.2.x build after uClibc NPTL support got
  4760. added.
  4761. fs: old-style squashfs for big endian archs fixed.
  4762. Updated/fixed packages: busybox, gst-plugins-base,
  4763. imagemagick, kismet, libgail, libglib2, libgtk2, lua,
  4764. luafilesystem, lzo, ncurses, netcat, pango, php, pppd,
  4765. proftpd, qt, samba, startup-notification, swfdec, sysvinit,
  4766. util-linux
  4767. Removed packages: stunnel
  4768. Issues resolved (http://bugs.uclibc.org):
  4769. #635: util-linux fails to build in 2009.08
  4770. #2239: netcat package installs its binary to target as avr32-linux...
  4771. #2395: libglib2-2.24.1 and libxml2-2.7.7 fails build on MIPS because...
  4772. #2443: Initramfs: Don't overwrite $(TARGET_DIR)/init if it exists
  4773. #2449: Minor fixes for squashfs makefile and correct PowerPC e500 ...
  4774. 2010.08-rc1, Released July 30th, 2010:
  4775. Fixes all over the tree and new features.
  4776. Toolchain: GCC 4.3.5, older 4.3.x versions removed. GCC 4.1.2
  4777. and non-sysroot support removed. Added support for (snapshot)
  4778. NPTL in uClibc, 0.9.28.3 removed,
  4779. Bootloaders: Various cleanups, moved to boot/, added Barebox,
  4780. removed yaboot. Support building u-boot from custom tarball,
  4781. u-boot 2010.06.
  4782. New GTK-based configurator, usable using 'make gconfig'.
  4783. Java packages marked as broken. Unless someone steps up to
  4784. support this, they will be removed during the 2010.11
  4785. development cycle.
  4786. Alpha, IA64 and Sparc64 architectures marked as deprecated.
  4787. GTK+ on DirectFB has also been marked as deprecated, as it is
  4788. not supported in recent GTK+ versions, and more and more
  4789. packages depends on the new versions.
  4790. Unless someone steps up to support them, they will be removed
  4791. during the 2010.11 development cycle.
  4792. New packages: cgilua, copas, coxpcall, ffmpeg, libsvgtiny,
  4793. libgail, luafilesystem, luasocket, rings, wsapi, xavante, xterm
  4794. Updated/fixed packages: alsa-lib, alsamixergui, at, atk,
  4795. avahi, berkeleydb, bash, blackbox, busybox, bzip2, cairo,
  4796. cdrkit, cmake, dash, dhcp, dialog, diffutils, distcc, dmalloc,
  4797. dnsmasq, dropbear, e2fsprogs, fbv, file, flex, fontconfig,
  4798. gawk, gmpc, gnuchess, gst-plugins-base, gst-plugins-good,
  4799. gstreamer, gzip, icu, intltool, iostat, ipsec-tools, iptables,
  4800. iw, libart, libcgi, libcurl, libdrm, libeXosip, libfuse,
  4801. libglib2, libgpg-error, libiconv, libidn, liblockfile, libpng,
  4802. libsoup, lighttpd, links, linux-fusion, lmbench, lrzsz,
  4803. ltrace, make, midori, module-init-tools, mplayer,
  4804. mysql_client, nbd, ncurses, neon, netcat, netperf, netsnmp,
  4805. ntfsprogs, openssl, oprofile, pango, php, qt, quagga, samba,
  4806. setserial, sdl, sdl_mixer, sdl_sound, sdl_ttf, speech-tools,
  4807. sqlite, squashfs, swfdec, tftpd, thttpd, tn5250, tremor,
  4808. usbutils, webif, webkit, wireless_tools, xerces,
  4809. xkeyboard-config, xserver_xorg-server, xvkbd, zlib
  4810. Removed packages: modutils, portage, rxvt
  4811. Deprecated packages: dillo, libglib12, libgtk12, microwin, pcmcia
  4812. Issues resolved (http://bugs.uclibc.org):
  4813. #321: alsa-lib uses host include files for python which breaks ...
  4814. #361: linux kernel configuration choice works incorrectly
  4815. #387: Tremor not installed to toolchain
  4816. #401: new package: ffmpeg
  4817. #475: uImage target for U-boot failed generating
  4818. #543: ATK requires X11 on DirectFB target
  4819. #575: webkit: Buildroot Libtool Patch Fails
  4820. #583: build fails with external x86_64 toolchain
  4821. #729: sstrip creates corrupted headers
  4822. #829: Webkit r44552 needs libXt
  4823. #835: Package Dataflashboot-1.05 does not compile with buildroot...
  4824. #847: Compiling target-gcc v4.4 fails with "libc.so.0: cannot open...
  4825. #859: Add (head of) nptl branch to list of uClibc versions
  4826. #949: compile with debug info
  4827. #955: Grub fails to build with External Toolchain
  4828. #1051: Webkit doesn't compile (Linuxthreads new, x86)
  4829. #1213: Move .config into output directory
  4830. #1225: Buildroot fails to account for "nof" subdirectory (no float...
  4831. #1231: (sparc) Linux kernel fails to build
  4832. #1261: The getline() in output/build/linux-2.6.28/scripts/unifdef.c...
  4833. #1339: Busybox needs -fno-strict-aliasing to compile cleanly
  4834. #1393: neon config fails libxml/parser.h: libxml2 requires, but not ...
  4835. #1405: WebKit fails to build because pthread_getattr_np is not impl...
  4836. #1675: GMP Error during buildroot make process
  4837. #1741: external toolchain linking error
  4838. #1753: lmbench: convert to generic package infrastructure
  4839. #1771: Fakeroot and the target/generic/device_table.txt create bad...
  4840. #1807: LZMA 4.32.7, Required header file(s) are missing
  4841. #1813: xkeyboard-config fails to build because of intltool problem
  4842. #1879: Bump iptables to 1.4.8
  4843. #1885: Add a bunch of lua modules
  4844. #1897: Bump libusb to 1.0.7
  4845. #1903: Bump tn5250 to 0.17.4 and migrate to autotargets
  4846. #1909: netperf-2.4.5 fails to build because of undeclared SOCK_DCCP
  4847. #1927: Bump file to 5.03 and migrate to autotargets
  4848. #1933: Bump gawk to 3.1.8 and migrate to autotargets
  4849. #1945: PHP: add sqlite3 dependency when using external lib
  4850. #1951: Bump openssl to 0.9.8o
  4851. #1957: Bump sqlite to 3.6.23.1
  4852. #1975: Package removal/deprecation
  4853. #1981: zlib: bump to 1.2.5
  4854. #1987: intltool: Fix spelling mistake
  4855. #1993: Bump bash to 4.1.7(1) and migrate to autotargets
  4856. #1999: Typo in path checking
  4857. #2005: Bump dnsmasq to 2.55 and migrate to gentargets
  4858. #2035: ipsec-tools-0.7.2 fails to build with gcc-4.4.x
  4859. #2038: Bump ncurses to 5.7
  4860. #2095: make gconfig: undefined reference to symbol 'dlsym@@GLIBC_2.2.5'
  4861. #2101: blackbox depends on locale support
  4862. #2119: Tries to build kernel, although disabled in config
  4863. #2125: libXfont build fail
  4864. #2143: buildroot compiler generates segfaulting statically linked exe..
  4865. #2149: xterm build failure
  4866. #2155: Compression lzo don't set for ubifs
  4867. #2161: [SECURITY] Update libpng to 1.2.44
  4868. #2167: Bump busybox to 1.17.0, convert to gentargets, drop 1.12, ...
  4869. #2181: pixman can't apply pixman-0.10.0-no-tests.patch
  4870. #2191: linux-fusion build fail
  4871. #2221: Qt does not compile (dependencies not taken into account?)
  4872. #2233: Atmel atstk target skeletons have /etc/mtab as a file, not ...
  4873. #2245: Netcat does not work due to incorrect assumptions about signed..
  4874. #2251: directory output/build after make *_defconfig not found
  4875. #2257: Convert netsnmp package to autotargets
  4876. #2263: Bump samba to 3.3.13
  4877. #2269: setserial causes make error
  4878. 2010.05, Released May 30th, 2010:
  4879. Fixes all over the tree.
  4880. Updated/fixed packages: coreutils, hal, libcap,
  4881. lockfile-progs, ncftp, xserver_xorg-server
  4882. Issues resolved (http://bugs.uclibc.org):
  4883. #1789: binutils fails to build for i386
  4884. #1843: Fix libcap build failure
  4885. #1855: XORG Keyboard driver fails to compile
  4886. 2010.05-rc3, Released May 27th, 2010:
  4887. Fixes all over the tree.
  4888. Updated/fixed packages: aumix, atk, avahi, bmon, busybox, cairo,
  4889. cdrkit, dbus-glib, dbus-python, docker, enchant, fltk, gamin,
  4890. gettext, gmpc, gob2, grep, gstreamer, gst-plugins-bad,
  4891. gst-plugins-base, gvfs, hal, iconv, icu, iperf, libcgicc,
  4892. libdvdnav, libdvdread, libglade, libglib2, libgtk2, libidn,
  4893. libmms, libmpd, libpcap, libsoup, lmbench, lsof, ltrace, lvm2,
  4894. make, metacity, microperl, mtd-utils, mutt, nbd, netsnmp,
  4895. ntfsprogs, ntp, olsr, pango, pciutils, pcmanfm, php,
  4896. pkg-config, psmisc, qt, samba, shared-mime-info, squashfs,
  4897. squashfs3, sshfs, startup-notification, swfdec, sylpheed,
  4898. uemacs, util-linux, valgrind, vpnc, vsftpd, webkit, xstroke
  4899. Issues resolved (http://bugs.uclibc.org):
  4900. #75: arm buildroot "unrecognized option" error
  4901. #699: Buildroot fails to copy libstdc++ to target when using external...
  4902. #1693: NTP trys IPV6 even if not configured error: 'IPV6_MULTICAST...
  4903. #1729: alsamixergui fails to build
  4904. #1801: Avahi-autoipd doesn't create TARGET_DIR/var/lib
  4905. #1819: pciutils small bugs
  4906. #2065: Internal toolchain: bump gcc 4.3.x series to 4.3.5
  4907. 2010.05-rc2, Released May 11th, 2010:
  4908. Fixes all over the tree.
  4909. Updated/fixed packages: busybox, customize, gawk, gnuchess,
  4910. hal, hostapd, less, libgcrypt, libnl, libxcb, linux-fusion,
  4911. ltp-testsuite, mplayer, netplug, pciutils, php, sed,
  4912. shared-mime-info usb_modeswitch, usbutils, vlc wpa_supplicant,
  4913. xapp_bdftopcf, xapp_mkfontdir, xdriver_xf86-video-openchrome,
  4914. xfont_encodings, xlib_libX11, xlib_libXfont, xlib_xtrans,
  4915. xproto_fontcacheproto, xproto_fontsproto, xvkbd
  4916. Removed packages: vice
  4917. Issues resolved (http://bugs.uclibc.org):
  4918. #849: "customize" package copies files to wrong place in target tree
  4919. #985: Bump usb_modeswitch package to 1.1.0
  4920. #1135: Package customize. Wrong copying
  4921. #1525: Package hal deletes a whole <target>/etc/rc.d directory
  4922. #1531: libxcb 1.5 build fails, due to missing xcbgen Python module
  4923. #1669: Busybox failed to compile when using an external toolchain
  4924. #1699: Fix usbutils dependencies and bump
  4925. #1705: Fix pciutils broken cross compiling
  4926. #1717: External toolchain fixes for hostapd & wpa_supplicant
  4927. 2010.05-rc1, Released May 3rd, 2010:
  4928. Cleaned up / restructured package menu.
  4929. Toolchain: uClibc 0.9.30.3 / 0.9.31, older 0.9.30.x removed.
  4930. 2.6.33 kernel headers, binutils 2.20.1, GCC 4.4.4,
  4931. removed broken nios2 support, ppc e300cX/e500mc support,
  4932. improved external toolchain support, GDB 7.x support.
  4933. X.org updated to 7.5.
  4934. New packages: cdrkit, cramfs, genext2fs, genromfs,
  4935. libatomic_ops, librsync, libusb-compat, lmbench, netperf,
  4936. squashfs, squashfs3, squid
  4937. Updated/fixed packages: alsa-utils, argus, autoconf, bison,
  4938. busybox, bzip2, directfb, dnsmasq, dosfstools, e2fsprogs,
  4939. eeprog, fakeroot, fbv, findutils, freetype, haserl, hostapd,
  4940. iperf, iptables, iw, less, libaio, libcgi, libcgicc, libdrm,
  4941. libgcrypt, libglib2, libid3tag, libmad, liboil, libosip2,
  4942. libpng, libraw1394, libsysfs, libxml2, libxslt, linux-fusion,
  4943. ltrace, lua, lzma, madplay, makedevs, matchbox, mdadm,
  4944. memstat, mesa3d, mtd-utils, nano, ncurses, openssl, patch,
  4945. pciutils, php, pixman, portage, pppd, pthread-stubs, python,
  4946. qt, radvd, samba, setserial, smartmontools, tar, tslib,
  4947. udpcast, usb_modeswith, vtun, wget, xdata_xcursor-themes,
  4948. xdriver_xf86-video-intel, xkeyboard-config, xlib_libX11,
  4949. xlib_libXaw, xlib_libXfont, xlib_libXfontcache,
  4950. xlib_libXxf86misc, xlib_libXtst, xlib_libpciaccess,
  4951. xproto_dri2proto, xproto_eviext, xproto_fontcacheproto,
  4952. xproto_xf86miscproto, xserver_xorg-server
  4953. Removed packages: xapp_xtrap, xlib_libXTrap, xlib_libXevie,
  4954. xlib_libXxf86misc, xxproto_evieext, proto_trapproto,
  4955. xproto_xf86miscproto
  4956. Issues resolved (http://bugs.uclibc.org):
  4957. #513: Add new squid package
  4958. #661: lmbench: new package
  4959. #719: Add lua option to haserl
  4960. #800: [PATCH] iperf update to 2.0.4
  4961. #803: [PATCH] lua - add shared library patch and config option for...
  4962. #805: [PATCH] mdadm - version update
  4963. #817: integrator926_defconfig uses unsupported uboot board name
  4964. #851: Add option to specify --sysroot value for external toolchain
  4965. #1093: Upgrade libusb to v1.0.3 and add new libusb-compat
  4966. package for compatibility with old packages that expect
  4967. the pre-1.0 API.
  4968. #1105: Add new netperf package
  4969. #1111: Bump wget to 1.12 and migrate to Makefile.autotools.in
  4970. #1117: Bump nano to 2.2.3 and migrate to Makefile.autotools.in
  4971. #1123: Bump less to 436 and migrate to Makefile.autotools.in
  4972. #1129: Bump memstat to 0.8 and migrate to Makefile.package.in
  4973. #1189: Wrong u-boot configuration name for integrator926 target
  4974. #1219: kernel headers not correctly installed into toolchain/staging
  4975. #1267: Wrong BR2_EXTRA_VERSION
  4976. #1273: BR2_INET_IPV6 does not enable IPv6 in pppd
  4977. #1303: Add librsync package
  4978. #1321: Busybox link fails due to lack of --sysroot option
  4979. #1327: mtd-utils compile failure due to lack of --sysroot in CFLAGS
  4980. #1345: Bump pppd to 2.4.5 and convert to Makefile.autotools.in
  4981. #1369: cannot build radvd (flex problem)
  4982. #1387: xlib_libX11-1.3.2 can't find libjpeg
  4983. #1411: [SECURITY] Update openssl package to 0.9.8n
  4984. #1417: Bump iptables to 1.4.7
  4985. #1423: Bump e2fsprogs to 1.41.11
  4986. #1429: [SECURITY] Update php to 5.2.13
  4987. #1441: Add binutils 2.20.1
  4988. #1447: Package installation on target with debug symbols is broken
  4989. #1459: Misc QA fixes
  4990. #1489: radvd update to 1.6
  4991. #1513: Enable powerpc e300c2, e300c3 and e500mc optimization
  4992. #1537: dev entries not created anymore
  4993. #1555: Fix default uclibc-0.9.31 configuration
  4994. #1561: [SECURITY] Update samba to 3.3.12
  4995. #1567: openssl0.9.8n fails to compile
  4996. #1573: Alsa-utils alsactl/init/* not installed to target
  4997. #1591: portmap fails to compile
  4998. #1615: Convert eeprog package to gentargets
  4999. #1645: Bump hostapd package to 0.7.2
  5000. 2010.02, Release February 26th, 2010:
  5001. Fixes all over the tree.
  5002. Updated/fixed packages: avahi, busybox, cramfs, ipsec-tools, libcgicc,
  5003. libgtk2, libraw1394, madplay, netsnmp, pango, squashfs, sylpheed, qt,
  5004. xfont_font-util
  5005. Removed packages: hostap, openmotif, xpdf
  5006. Issues resolved (http://bugs.uclibc.org):
  5007. #165: openmotif does not build
  5008. #1147: Remove obsolete hostap package
  5009. #1183: make source fails to download gmp, mpfr and patches
  5010. 2010.02-rc2, Released February 23th, 2010:
  5011. Fixes all over the tree and new features.
  5012. New packages: intltool
  5013. Updated/fixed packages: ace_of_penguins, alsa-lib, alsa-utils, argus,
  5014. at, automake, ccache, dosfstools, e2fsprogs, flex, gob2, gmpc,
  5015. gst-plugins-good, imagemagick, iw, kexec, libeXosip, libgtk2,
  5016. libpcap, libpng, libsoup, libxcb, libxml-parser-perl, libxml2,
  5017. libxslt, lvm2, matchbox, mplayer, rsync, rubix, shared-mime-info,
  5018. tcl, webkit, xapp_mkfontscale, xfont_encodings, xfont_font-util,
  5019. xlib_libfontenc, xproto_trapproto, zlib
  5020. Removed package: xboard
  5021. Issues resolved (http://bugs.uclibc.org):
  5022. #335: atk looks for the path to the gnome library on the host
  5023. #355: Please update WebKit - it doesn't compile!
  5024. #453: libglib2 autoreconf
  5025. #457: e2fsprogs link problem
  5026. #459: libgtk2 autoreconf
  5027. #469: build of libgtk2 for host incorrectly assumes that X.org ...
  5028. #671: Bash fails to build when building buildront on Ubuntu 9.04
  5029. #711: WebKit host dependencies problems
  5030. #821: cp: illegal operation
  5031. #1039: Not compiled on ubuntu karmic
  5032. #1069: [PATCH] The AT91BOOTSTRAP makefile contains a typo
  5033. 2010.02-rc1, Released February 9th, 2010:
  5034. Fixes all over the tree and new features.
  5035. Generalized autotools infrastructure to be usable for
  5036. non-autotools packages, see package/Makefile.package.in for
  5037. details.
  5038. Cleaned up avr32 toolchain config, external source-based
  5039. toolchain support is gone.
  5040. Dependency checks: Also check for makeinfo, only print output
  5041. on errors.
  5042. Toolchain: uClibc 0.9.30.2, gcc 4.4.3
  5043. New packages: libcdaudio, libdvdnav, libdvdread, hostapd, ser2net,
  5044. tcpreplay
  5045. Updated/fixed packages: alsa-lib, alsa-utils, at, autoconf, bash,
  5046. bind, binutils, bootutils, busybox, dbus, directfb, dnsmasq,
  5047. e2fsprogs, gstreamer, gperf, gst-plugins-bad, gvfs, fbdump, flex,
  5048. hal, iptables, iw, jpeg, kismet, libfuse, libglib2, liboil, libpcap,
  5049. libungif, libxml2, libxslt, lighttpd, mesa, mpg123, mtd-utils, nbd,
  5050. neon, netstat-nat, newt, openvpn, pcre, php, qt, rdesktop, readline,
  5051. rpm, sawman, sdl, sdl_ttf, sqlite, sshfs, tremor, u-boot,
  5052. usb_modeswitch, usbutils, webkit, wpa_supplicant, xfsprogs, zlib
  5053. Removed package: asterisk, openswan
  5054. Issues resolved (http://bugs.uclibc.org):
  5055. #515: tcpreplay: new package
  5056. #553: Wrong DirectFB ps2mouse limitation
  5057. #559: mesa3d build fails
  5058. #679: Autoconf cannot find M4
  5059. #739: New/updated hostapd package
  5060. #749: Bump usbutils package to version 0.86
  5061. #751: Kernel 2.6 snapshot fetch fail
  5062. #753: Bump lighttpd package to 1.4.25
  5063. #757: U-Boot: mkimage cannot be installed using external toolchain
  5064. #761: Add binutils 2.20 to toolchain options
  5065. #763: [SECURITY] Update pcre to 7.9
  5066. #765: Add buildroot branding to gcc
  5067. #767: Bump iw package to 0.9.18
  5068. #773: [SECURITY] Update bind to 9.5.2-P1
  5069. #795: Minor edits to fix typos, grammar, spelling, usage in documen...
  5070. #813: Drop not very useful generic package selection options ...
  5071. #823: Editor backup files (~) is copied from the target_skeleton
  5072. #827: Bump mtd-utils package to version 1.2.0
  5073. #841: Build error
  5074. #913: Bump iptables to 1.4.6
  5075. #919: Bump usb_modeswitch package to 1.0.7
  5076. #925: Bump wpa_supplicant package to 0.6.10
  5077. #931: Bump kismet package to 2010-01-R1
  5078. #937: Bump openvpn package to 2.1.1
  5079. #943: Bump sqlite package to 3.6.22
  5080. #961: Bump dnsmasq to 2.52
  5081. #967: Bump netstat-nat to 1.4.10
  5082. #973: Bump iw to 0.9.19
  5083. #1003: DHCP options disabled with busybox-1.16.0
  5084. #1009: [SECURITY] Bump php to 5.2.12
  5085. #1015: [SECURITY] Bump bind to 9.5.1-P2
  5086. #1027: Busybox flash commands conflict with those from mtd-utils
  5087. #1063: [SECURITY] Update lighttpd to 1.4.26
  5088. 2009.11, Released December 1st, 2009:
  5089. Additional fixes and cleanups.
  5090. Updated/fixed packages: alsamixergui, autoconf, coreutils, fltk,
  5091. microperl, ncurses, vim
  5092. Issues resolved (http://bugs.uclibc.org):
  5093. #707: Cant configure fltk-1.1.7. configure: error: Configure could ...
  5094. 2009.11-rc2, Released November 29th, 2009:
  5095. Additional fixes and cleanups.
  5096. Updated/fixed packages: busybox, dbus, fltk, gvfs, ltrace
  5097. 2009.11-rc1, Released November 23rd, 2009:
  5098. Fixes all over the tree and new features.
  5099. Cleaned up / Simplified build directory layout. Refer to
  5100. docs/buildroot.html#using for details.
  5101. Target defconfig files moved to configs/ and listed in 'make help'
  5102. output.
  5103. Fixed *clean targets. Now clean removes everything generated,
  5104. so you can do a fresh rebuild. Distclean furthermore removes
  5105. kbuild tools and .config, bringing the source tree back in a
  5106. pristine state.
  5107. Toolchain: ARM cortex A8 support, GCC 4.4.2, sensible default
  5108. soft / hardfloat setting for architecture, ensure target-ldd
  5109. gets installed.
  5110. New packages: divine, gvfs, libarchive, libmicrohttpd,
  5111. sdl_sound, swfdec, sysstat
  5112. Updated/fixed packages: alsa-lib, alsamixergui, autoconf, bootutils,
  5113. busybox, gcc, directfb, dnsmasq, e2fsprogs, festival, gamin, gperf,
  5114. gqview, gstreamer, gst-plugins-bad, gst-plugins-base, gst-plugins-good,
  5115. imagemagick, ipkg, iptables, iw, kernel-headers, kismet, leafpad,
  5116. libelf, libevent, libglib2, libidn, liblockfile, libmad, libpcap,
  5117. libupnp, libuuid, libxml2, lighttpd, ltrace, lua, lzma, magiccube4d,
  5118. matchbox, mdadm, nbd, ncftp, ncurses, netkittelnet, netsnmp,
  5119. ng-spice-rework, ntfs-3g, openntp, openssl, pcmanfm, php, psmisc,
  5120. python, quagga, radvd, rpm, rsync, rubix, samba, sawman, sdl, sdl_image,
  5121. shared-mime-info, sfdisk, spawn-fcgi, speech-tools, sqlite, squashfs,
  5122. synergy, syslinux, sysklogd, target-binutils, tcpdump, torsmo, u-boot,
  5123. udpcast, util-linux, valgrind, vsftpd, wipe, wpa-supplicant, x11vnc,
  5124. xdata_xcursor-themes, xboard, xfsprogs, xstroke, zlib[5~
  5125. Removed package: mdnsresponder, mpatrol, gcc 3.4.6 + 4.0.4, vice
  5126. Issues resolved (http://bugs.uclibc.org):
  5127. #301: allow to install libsmbclient
  5128. #303: add gvfs package
  5129. #477: Add sdl_sound package
  5130. #487: Make kismet package sexier
  5131. #511: New package usb_modeswitch
  5132. #527: misc fixes for dnsmasq package
  5133. #565: libevent: Bump version and clean up makefile
  5134. #587: Use iptables multipurpose binaries and bump to 1.4.4
  5135. #593: Missing early check for patch(1)
  5136. #597: (REOP) Selecting busybox in buildroot's config clobbers ar ...
  5137. #609: libmicrohttpd: New package
  5138. #615: python: Don't delete .py files unless asked
  5139. #617: netkit/inetd requires RPC and fails to build if RPC is disabled
  5140. #619: netkittelnet requires netkitbase to install, but there's no ...
  5141. #645: allow to build nbd-server with NBD package
  5142. #653: [SECURITY] Update php package to version 5.2.11
  5143. #655: Update sqlite package to version 3.6.18
  5144. #657: Bug in imagemagick-clean target
  5145. #663: Add option for NAND flash with 512B Page and 16 kB erasesize ...
  5146. #665: [PATCH] Samba package
  5147. #667: [PATCH] e2fsprogs
  5148. #683: SDL-dfb does not select directfb
  5149. #701: make install problem with unstripped binaries
  5150. #703: [SECURITY] Update openssl package to 0.9.8l
  5151. #705: Bump spawn-fcgi package to 1.6.3
  5152. #709: Bump lighttpd package to 1.4.24
  5153. #713: Migrate openntpd package to Makefile.autotools.in
  5154. #715: Bump libidn package to 1.15 and other fixes
  5155. #717: Bump dnsmasq to 2.51 and introduce new IDN option
  5156. #731: Bump iw package to 0.9.17
  5157. 2009.08, Released August 31th, 2009:
  5158. Additional fixes and cleanups.
  5159. Updated/fixed packages: ctorrent, saveconfig/getconfig,
  5160. sdl_net, util-linux.
  5161. Issues resolved (http://bugs.uclibc.org):
  5162. #529: util-linux doesn't find headers and include libs correctly
  5163. #557: Build ctorrent with SSL support if available
  5164. 2009.08-rc3, Released August 26th, 2009:
  5165. Additional fixes and cleanups.
  5166. Updated/fixed packages: alsa-utils, berkeleydb, busybox, dbus,
  5167. directfb, enchant, kernel headers.
  5168. Issues resolved (http://bugs.uclibc.org):
  5169. #471: Allow directfb compilation with debug
  5170. #541: Removal of CVS directories in target filesystem broken
  5171. #547: berkeleydb: Update config.{sub, guess}
  5172. #549: enchant: Fix dependencies.
  5173. #569: Fix alsa-utils build for x86 on x86-64
  5174. 2009.08-rc2, Released August 6th, 2009:
  5175. Additional fixes and new features.
  5176. New packages: libuuid, gcc 4.3.4.
  5177. Updated/fixed packages: busybox, classpath, gzip, ipsec-tools,
  5178. jamvm, libusb, microperl, neon, popt, sed, webkit.
  5179. Fixed issue with 'make oldconfig'
  5180. Issues resolved (http://bugs.uclibc.org):
  5181. #525: sed broken with external toolchain
  5182. #537: Fix gzip build with recent glibc
  5183. 2009.08-rc1, Released August 2nd, 2009:
  5184. Fixes all over the tree and new features.
  5185. Improvement of external toolchain support:
  5186. - Support for glibc toolchains.
  5187. - The toolchain configuration announced to Buildroot is
  5188. verified against the real toolchain configuration.
  5189. - Fixes, documentation.
  5190. Cleanup X.org support: clarified configuration options, and
  5191. removed mandatory dependency on useless libraries such as
  5192. libXt or libXaw.
  5193. New QT-based configurator, usable using 'make xconfig'.
  5194. Support for the Xtensa architecture.
  5195. Toolchain: GCC 4.4.1, 2.6.30 kernel headers, removed < 2.6.26
  5196. headers.
  5197. New packages: bmon, ctorrent, dosfstools, enchant,
  5198. gst-plugins-bad, iw, libmms, libnl, netstat-nat, ntfsprogs,
  5199. sdl_gfx, spawn-fcgi.
  5200. Updated packages: bind, busybox, coreutils, sqlite, directfb,
  5201. expat, gamin, gnuconfig, haserl, ipsec-tools, classpath,
  5202. libcurl, libglib2, liblockfile, libpng, libsoup, libxml2,
  5203. lighttpd, ltp-testsuite, lvm2, matchbox, memstat,
  5204. gst-plugins-good, gstreamer, libogg, libvorbis, mplayer,
  5205. neon, openssl, pciutils, php, qt, ruby, sawman, webkit,
  5206. wpa-supplicant, xdriver_xf86-input-synaptics,
  5207. xdriver_xf86-video-intel, xlib_libXfont, xlib_libXft,
  5208. xlib_libXt, xproto_xproto, xserver-xorg, xutil_makedepend,
  5209. xutil_util-macros.
  5210. Issues resolved (http://bugs.uclibc.org):
  5211. #83: liblockfile fails to compile due to eaccess redefinition
  5212. #163: Xtensa architecture port
  5213. #171: xorg-server / kernel headers 2.6.26 - vm86.c compilation issue
  5214. #241: device mapper + lvm2: build together
  5215. #243: ctorrent: new package
  5216. #247: ntfsprogs: new package
  5217. #271: Library 'libgcc_s.so.1' not installed in search path
  5218. #287: New package libnl
  5219. #289: New package iw
  5220. #331: Update MPlayer to version 1.0rc2
  5221. #333: Bump sqlite package to 3.6.15
  5222. #349: update libsoup to version 2.26.2
  5223. #357: New package netstat-nat
  5224. #359,#413: Upgrade openvpn to Makefile.autotools.in
  5225. #367: linux kernel compile error for arm926t
  5226. #369: Add SDL_gfx package
  5227. #373: Support for building gstreamer without libxml
  5228. #379: update DirectFB to version 1.4.0
  5229. #383: gst-plugins-good: Allow soup plugin to be configured
  5230. #385: neon: Fix pkgconfig dependency
  5231. #387: Tremor not installed to toolchain
  5232. #389: New package bmon
  5233. #391: gstreamer: Bump version to 0.10.23
  5234. #393: gst-plugins-base: Bump version to 0.10.23
  5235. #395: gst-plugins-bad: New package
  5236. #403: Error while building iso9660 image
  5237. #409: Bump php package to 5.2.10
  5238. #411: ipsec-tools: Bump version to 0.7.2
  5239. #417: New package spawn-fcgi
  5240. #419: Bump lighttpd package to 1.4.23
  5241. #421: toolchain: Clean up toolchain locale support menu
  5242. #427: webkit: Update to WebKit svn r44552
  5243. #437: ltp-testsuite: Bump version to 20090630
  5244. #451: Upgrade from unmaintained dosfstools-2.11 to dosfstools-3.0.3
  5245. #467: DirectFB 1.4.1
  5246. #473: memstat_0.5.tar.gz has install with -D and that fails "make"
  5247. #491: libxml2: Bump version to 0.7.3
  5248. #495: Bump bind package to 9.5.1-P3 (security)
  5249. #497: OpenSSL RSA key generation hangs on x86_64
  5250. #509: Bump sqlite package to 3.6.16
  5251. #523: pciutils broken with external toolchain
  5252. #533: Update gamin to 0.1.10 to fix compilation
  5253. 2009.05, Released June 1st, 2009:
  5254. Fixes for dropbear & diffutils, bump linux-advanced 2.6.29.x
  5255. version and marked ubifsroot as broken.
  5256. 2009.05-rc3, Released May 27th, 2009:
  5257. Fixes for toolchain (gcc arm pr37436), stable kernel versions,
  5258. busybox, curl, libusb, readline, python and strace.
  5259. Issues resolved (http://bugs.uclibc.org):
  5260. #345: libcurl package needs a urandom fix
  5261. 2009.05-rc2, Released May 19th, 2009:
  5262. Fixes for toolchain (gcc w/softfloat on ppc, 3.4.6 buildfix
  5263. for newer hosts), stable kernel versions, busybox, cups,
  5264. dmraid, docker, mesa3d, rsync and updated defconfigs.
  5265. xserver marked as broken on AVR32 and atngw100-expanded
  5266. config removed.
  5267. Issues resolved (http://bugs.uclibc.org):
  5268. #167: metacity does not build
  5269. #295: gamin installs python support even if python is disabled
  5270. #323: gen_matypes fails to execute during build of Mesa when us...
  5271. 2009.05-rc1, Released May 5th, 2009:
  5272. Fixes all over the tree, further conversion of packages to
  5273. Makefile.autotools.in and we now build host versions of
  5274. packages where needed for build time dependencies instead of
  5275. relying on the correct versions being available on the build
  5276. host. Ancient toolchain / busybox versions have furthermore
  5277. been removed as announced in the 2009.02 release notes.
  5278. New packages: flac, gob2, lzop, taglib, wpa_supplicant
  5279. Updated packages: avahi, bind, binutils, busybox, dbus, dbus-glib,
  5280. directfb, dnsmasq, freetype, gcc, gmp, gstreamer, iptables, kernel
  5281. headers, kexec, libglib2, libpng, libsndfile, lua, mpfr, ntfs-3g,
  5282. openssl, php, qtopia4, rsync, samba, sqlite, tar, uboot, uclibc,
  5283. util-linux, xorg7, xerces
  5284. Issues resolved (http://bugs.uclibc.org):
  5285. #5,#77,#141,#143: Convert php package to Makefile.autotools.in
  5286. and a ton of other improvements
  5287. #19: page.h missing by util-linux
  5288. #37: update libglib2 to version 2.18.4
  5289. #61: tslib puts staging_dir into pkgconfig file
  5290. #69: tar refuses to build
  5291. #71,#175: ./wchar.h:41:12: error: empty filename in #include
  5292. #73: Bump openssl package to the latest version
  5293. #81: New package wpa_supplicant
  5294. #99: new package: flac
  5295. #101: update gstreamer packages
  5296. #105,#313: menuconfig segfaults on tinyx if wchar is not
  5297. selected
  5298. #107: convert libvorbis to Makefile.autotools.in
  5299. #109: Make pppd package avoid bsd err
  5300. #111: binutils 2.17 fails to build when texinfo >= 4.10
  5301. #133: Modify ncurses5-config to get correct include path
  5302. #137: Bump php to version 5.2.9
  5303. #139: Bump sqlite to 3.6.11 and convert to
  5304. Makefile.autotools.in
  5305. #145: Bump bind package to 9.5.1-P1 (security)
  5306. #147: buildroot toolchain fails to build w/binutils-2.19.1
  5307. #151: openssl package trivial fixes
  5308. #161: vim fails on patching with errors in configure.patch
  5309. #169: blackbox-0.70.1 does not build
  5310. #177: xdriver_xf86-input-keyboard does not build
  5311. #179: Upgrade dropbear to Makefile.autotools.in
  5312. #181: Update to Xorg 7.4
  5313. #187: ntfs-3g: could not build cross
  5314. #191: alsa-lib ARM binaries always built with EABI
  5315. #213: Bump wpa_supplicant package to version 0.6.9
  5316. #217: Bump openssl package to 0.9.8k (security)
  5317. #219: Toolchain build fails on m4
  5318. #225: m4 macros are out of place
  5319. #233: make ipv6 optional in iptables
  5320. #237: ncftp: convert to Makefile.autotools.in
  5321. #239: ntfs-3g: convert to Makefile.autotools.in
  5322. #245: lzop: new package
  5323. #271: Bump bind package to 9.5.1-P2 (security)
  5324. #277: Bump sqlite package to 3.6.16
  5325. #279: update libglib2 to version 2.20.1
  5326. #281: update DirectFB to version 1.2.8
  5327. #283: add taglib
  5328. #285: compilation of samba fails if IPV6 support is missing
  5329. #293: update samba to version 3.3.3
  5330. #299: add shared-mime-info package
  5331. #307: make openssl package respect build flags