CHANGES 374 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513
  1. 2020.08-rc1, released August 6th, 2020
  2. Toolchain:
  3. - GCC 10.x added, GCC 9.x is the default
  4. - binutils 2.34 added, binutils 2.33 is the default, binutils
  5. 2.31 removed
  6. - glibc updated to 2.31
  7. - ARC toolchain components updated to 2020.03-release.
  8. - Enable uClibc-ng usage for RISC-V 64-bit
  9. Infrastructure:
  10. - qmake-package was fixed to be compatible with
  11. BR2_PER_PACKAGE_DIRECTORIES
  12. - complete rewrite of the Gitlab CI Yaml configuration file,
  13. now generated directly by the Gitlab CI pipeline itselfs
  14. Misc:
  15. - cargo and cargo-bin packages removed, as cargo is now part
  16. of Rust itself
  17. Filesystem: ubinize configuration files can now use
  18. BINARIES_DIR to refer to the $(O)/images directory.
  19. New packages: bitwise, earlyoom, fuse-overlayfs, gloox,
  20. kodi-pvr-octonet, kodi-pvr-zattoo, libabseil-cpp, libcutl,
  21. libnids, libnpupnp, libodb, libodb-boost, libodb-mysql,
  22. libodb-pgsql, mbpfan, netopeer2, odb, parprouted,
  23. python-colorzero, python-gpiozero, python-pybind, python-yatl,
  24. python3-decorator, qt5quicktimeline, resiprocate, ttyd,
  25. unclutter-xfixes, urandom-scripts,
  26. New defconfigs: bananapi_m2_zero, freescale_imx8mnevk,
  27. globalscale_espressobin, imx6ullevk,
  28. microchip_sama5d27_wlsom1_ek, rock_pi_4, rock_pi_n10
  29. Removed packages: cargo, cargo-bin,
  30. kodi-peripheral-steamcontroller
  31. Issues resolved (http://bugs.uclibc.org):
  32. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_DIRECTORIES
  33. #12946: Grub: Decompressor is too big.
  34. #12986: Mtools: Error converting to codepage 850
  35. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  36. #13011: Incorrect selection of gcc version
  37. #13021: Minor code error when building granite-0.4.1
  38. #13026: rpi-firmware: must not rename start files
  39. #13046: Optimize for fast -Ofast is not compliant
  40. #13081: host-e2fsprogs attempts to create udev rules.d on build host if not exists
  41. #13101: BR audit2allow support
  42. 2020.05.1, released July 25th, 2020
  43. Important / security related fixes.
  44. Toolchain:
  45. - Make external toolchain version check also work for
  46. toolchains configured with --with-gcc-major-version-only
  47. - Do not handle SOURCE_DATE_EPOCH in toolchain wrapper if the
  48. compiler supports it, fixing an issue with precompiled
  49. headers
  50. - Ensure debug libs from external toolchains are not installed
  51. into target if debugging is disabled
  52. Download:
  53. - Correct reproducibility issue in handling of git submodules
  54. for older git versions.
  55. - Fix file locking over NFS
  56. fs: Ensure cpio archive element order is reproducible
  57. Br2-external: Fix error reporting for invalid br2-external trees
  58. Per-package:
  59. - Fix an issue with python3 sysconfig data not getting
  60. correctly expanded
  61. - Fix per-package building for packages using the qmake
  62. infrastructure
  63. Updated/fixed packages: a10disp, asterisk, bind, brltty,
  64. cdrkit, clamav, cryptodev-linux, dbus, docker-cli,
  65. docker-engine, dvb-apps, e2fsprogs, exim, exiv2, freerdp, gdb,
  66. gdk-pixbuf, gerbera, gnutls, go, granite, grub2, gssdp,
  67. gst1-plugins-good, gst1-plugins-ugly, gupnp, intel-microcode,
  68. iproute2, irrlicht, iwd, jq, kodi, libcamera, libcec,
  69. libconfuse, libcurl, libevdev, libhttpserver, libmicrohttpd,
  70. libnss, libressl, libvncserver, libxml2, libxmlrpc, lxc,
  71. mbedtls, mediastreamer, mesa3d, meson, minizip, mongodb,
  72. mtools, mutt, nano, network-manager, nghttp2, ngircd, nodejs,
  73. ntp, open-plc-utils, open2300, openjdk-bin, openssh,
  74. oracle-mysql, paho-mqtt-c, pango, php, poco, prosody, putty,
  75. python-greenlet, python-urllib3, python-validators, python3,
  76. readline, redis, rpi-firmware, rtl8821au, samba4, sdl2,
  77. sqlite, squid, strace, sunxi-mali-mainline-driver, syslog-ng,
  78. systemd, tcpreplay, tinydtls, upmpdcli, upx, vlc, webkitgtk,
  79. wireguard-linux-compat, wireshark, wpebackend-fdo, wpewebkit,
  80. x11vnc, znc, zstd
  81. Issues resolved (http://bugs.uclibc.org):
  82. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_..
  83. #12946: Grub: Decompressor is too big.
  84. #12986: Mtools: Error converting to codepage 850
  85. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  86. #13011: Incorrect selection of gcc version
  87. #13021: Minor code error when building granite-0.4.1
  88. #13026: rpi-firmware: must not rename start files
  89. #13031: nodejs: RangeError at new ArrayBuffer()
  90. #13046: Optimize for fast -Ofast is not compliant
  91. 2020.05, released June 1st, 2020
  92. Various fixes.
  93. Updated/fixed packages: arm-trusted-firmware, gcc, mp4v2, fmc,
  94. fmlib, glib-networking, libusb-compat, linux, qt5webengine,
  95. sysrepo, wampcc, xen
  96. 2020.05-rc3, released May 29th, 2020
  97. Fixes all over the tree.
  98. Infrastructure: Support checking download hashes for packages
  99. coming from Subversion.
  100. Defconfigs: Increase boot partition size to 64MB for Freescale
  101. boards to allow space for bigger kernels.
  102. Updated/fixed packages: audit, bind, dovecot, efl, erlang,
  103. ffmpeg, fio, gerbera, gnupg, leveldb, lrzip, ltrace, matio,
  104. mesa3d, mp4v2, prosody, qemu, qt5declarative, speexdsp,
  105. systemd, tremor, uboot-tools, unbound, wireshark
  106. Removed packages: wiringpi
  107. Issues resolved (http://bugs.uclibc.org):
  108. #12361: Init system (systemd) kills login on Raspberry Pi Zero
  109. #12686: recipe for target 'install_dev' failed (libcrypto.so..)
  110. 2020.05-rc2, released May 22nd 2020
  111. Fixes all over the tree.
  112. U-Boot: Support building with Python 3.x instead of Python
  113. 2.x. Since U-Boot 2020.01, various U-Boot build scripts use
  114. Python 3.x instead of Python 2.x, so add an option to pull in
  115. host-python3 rather than host-python. Also fix a number of
  116. defconfigs to use this new option.
  117. Updated/fixed packages: apparmor, binutils, bison, brltty,
  118. c-icap, cegui, checkpolicy, clamav, crda, cvs, docker-cli,
  119. docker-engine, domoticz, elf2flt, exfatprogs, fakeroot,
  120. ffmpeg, freerdp, gcc, glibc, gnuconfig, irrlicht, kmod,
  121. libexif, libpam-tacplus, libssh2, libv4l, libvncserver,
  122. localedef, lrzip, mariadb, matchbox, mbuffer, mesa3d,
  123. mesa3d-headers, meson, netsniff-ng, openldap, openocd,
  124. optee-os, p7zip, paho-mqtt-c, php, piglit, pigz,
  125. python-argon2-cffi, python-attrs, python-future,
  126. python-markdown, python-pycryptodomex, python-pyqt5, qt5base,
  127. rpi-firmware, rustc, squashfs, squid, stella, suricata,
  128. systemd, uacme, uclibc, util-linux, vboot-utils
  129. New packages: python3-pyelftools
  130. Removed packages: ezxml, mtdev2tuio, python-pycrypto
  131. Issues resolved (http://bugs.uclibc.org):
  132. #10551: PowerPC SPE and Musl
  133. #12256: package tar is outdated (1.29 is 3 years old)
  134. #12271: python-iptables runtime dependencies
  135. #12321: host-generic-package: PKG_DL_OPTS not used for host package
  136. #12391: CMake-based host package fails to include output/host/include
  137. #12431: ethernet no detected on nanopi neo 2
  138. #12521: RISCV RV32IA selected, RV64GC output
  139. #12586: avahi failure
  140. #12596: host-e2fsprogs: tune2fs incompatibility on older glibc..
  141. #12611: ntp hash is not matching with upstream 4.2.8p13
  142. #12626: PHP missing header files within 2020.02
  143. #12631: glibc support Power-PC SPE
  144. #12656: bison fails to relocate with relocate-sdk.sh
  145. #12661: cups problems in buildroot
  146. #12686: recipe for target 'install_dev' failed (libcrypto.so:..
  147. #12691: host-rust build fails
  148. #12761: Buildroot fails when building GCNano binaries for the STM..
  149. #12786: Systemd spawns two getty processes when the getty port..
  150. #12806: There are multiple issues in buildroot that faults cups..
  151. #12826: nodejs-12.16.1: error: 'uv_sleep' was not declared in..
  152. #12831: RPI-firmware package: DTB-overlay dependency
  153. #12836: libunwind: package does not show up in menuconfig for..
  154. #12841: util-linux/sfdisk 2.35.1 fails on sector-size header
  155. #12866: should we be disabling bash executable path caching?
  156. #12886: GMP built in wrong order (?)
  157. #12891: QEMU, libvirt-bin, qemu-kvm Package Support required
  158. #12901: GStreamer doesn't build on 2020-05 rc1 with GObject..
  159. #12906: qt PrefixPath is wrong on 2020.05-rc1
  160. #12921: nodejs-12.16.1: error: overriding 'virtual icu_65::..
  161. 2020.05-rc1, released May 7th 2020
  162. Addition of support for gobject-introspection: both the
  163. gobject-introspection package itself, but also introspection
  164. support was enabled in a number of other packages.
  165. Support for Qt 5.6 was dropped as its support was dropped
  166. upstream, only one version of Qt is supported at the moment:
  167. Qt 5.14.2.
  168. Addition of support for the apparmor Linux security module, by
  169. adding the necessary user-space packages.
  170. Addition of a qmake package infrastructure, now used by most
  171. Qt-related packages.
  172. The Luarocks package infrastructure has been extended to
  173. support build host packages.
  174. The package infrastructure was improved to allow each package
  175. to indicate the Linux kernel configuration options it needs.
  176. Addition of support for generating filesystem images using the
  177. EROFS filesystem.
  178. The logic that calculates the list of files installed by each
  179. package was reworked to be compatible with the top-level
  180. parallel build functionality.
  181. Addition of a package for a pre-compiled ARM32 bare-metal
  182. toolchain, which can be used to build ARM32 code in ARM64
  183. configurations, such as firmware/bootloader code.
  184. The Qemu defconfigs are now boot-tested in Qemu as part of the
  185. Gitlab continuous integration.
  186. Toolchain: gcc 9.x bumped to 9.3.0, gcc 8.x bumped to 8.4.0,
  187. gdb bumped to 8.3.1.
  188. New packages: apcupsd, apparmor, arm-gnu-a-toolchain, bearssl,
  189. belle-sip, belr, cage, chartjs, erofs-utils, exfatprogs,
  190. gobject-introspection, ibm-sw-tpm2, imx-seco, jbig2dec,
  191. libapparmor, libiberty, libfuse3, libtextstyle, libudfread,
  192. libuhttpd, libuwsc, lua-lyaml, matio, mbuffer, netdata,
  193. openfpgaloader, perl-i18n, perl-locale-maketext-lexicon,
  194. perl-lwp-protocol-https,
  195. perl-mojolicious-plugin-authorization,
  196. perl-mojolicious-plugin-cspheader,
  197. perl-mojolicious-plugin-i18n,
  198. perl-mojolicious-plugin-securityheader, perl-mozilla-ca,
  199. perl-path-class, pistache, pkcs11-helper, prelink-cross,
  200. python-argon2-cffi, python-canopen, python-cbor2,
  201. python-filelock, python-flatbuffers, python-greenlet,
  202. python-modbus-tk, python-pyalsa, python-pysftp, python-regex,
  203. python-snappy, rtty, tinyproxy, udev-gentoo-scripts, unbound,
  204. vuejs, wlroots.
  205. New defconfigs: freescale_imx6ullevk, freescale_imx8qmmek,
  206. nanopi_neo4, nanopi_r1, nitrogen8mm, nitrogen8mn, olpc_xo1,
  207. olpc_xo175, roc_rk3399_pc, stm32mp157a_dk1, zynq_qmtech
  208. Issues resolved (http://bugs.uclibc.org):
  209. #10386: Add an option to put all compiled executables that
  210. show up on target/ in staging/ as well
  211. #11866: iniramfs file system fails to boot using Grub on EFI x86_64
  212. #12666: Doesn't pick up a custom bash profile
  213. #12696: Uboot 2020.01 Problem loading Linux kernel on Nano PI NEO
  214. #12701: [patch] wpa_supplicant must depend on openssl
  215. #12711: host-localedef 2.30-20 fails to compile on fedora 32 (gcc 10.0.1)
  216. #12716: bio.h not found
  217. #12726: systemctl preset-all failed for ctrl-alt-del.target
  218. #12731: rtl8188eu not buildung for banana pi M1 (glib, systemd, 4.18.12)
  219. #12746: "sysdig" package description points to
  220. http://sysdig.org, which bounces to malware site
  221. #12751: OpenJdk package installation issues on target
  222. #12796: Update OpenSSL to Version 1.1.1g to patch CVE-2020-1967
  223. #12811: bootstrap stuck and no login prompt
  224. 2020.02.4, released July 26th, 2020
  225. Important / security related fixes.
  226. Toolchain:
  227. - Make external toolchain version check also work for
  228. toolchains configured with --with-gcc-major-version-only
  229. - Do not handle SOURCE_DATE_EPOCH in toolchain wrapper if the
  230. compiler supports it, fixing an issue with precompiled
  231. headers
  232. - Ensure debug libs from external toolchains are not installed
  233. into target if debugging is disabled
  234. Download:
  235. - Correct reproducibility issue in handling of git submodules
  236. for older git versions.
  237. - Fix file locking over NFS
  238. fs: Ensure cpio archive element order is reproducible
  239. Br2-external: Fix error reporting for invalid br2-external trees
  240. Per-package:
  241. - Fix an issue with python3 sysconfig data not getting
  242. correctly expanded
  243. - Fix per-package building for packages using the qmake
  244. infrastructure
  245. Updated/fixed packages: a10disp, asterisk, bind, cdrkit,
  246. checkpolicy, clamav, dbus, docker-cli, docker-engine,
  247. dvb-apps, e2fsprogs, exim, exiv2, freerdp, gnutls, go, grub2,
  248. gssdp, gst1-plugins-good, gst1-plugins-ugly, gupnp,
  249. intel-microcode, iproute2, irrlicht, iwd, jq, kodi, libcamera,
  250. libconfuse, libcurl, libglib2, libhttpserver, libmicrohttpd,
  251. libopenssl, libvncserver, libxml2, libxmlrpc, lxc, mbedtls,
  252. mesa3d, meson, mongodb, mtools, mutt, nghttp2, ngircd, nodejs,
  253. ntp, open-plc-utils, open2300, openjdk-bin, openssh,
  254. oracle-mysql, paho-mqtt-c, pcre, php, poco, prosody, putty,
  255. python-twisted, python-urllib3, python-validators, python3,
  256. qt5xmlpatterns, redis, rpi-firmware, rtl8821au, samba4, sdl2,
  257. sqlite, squid, syslog-ng, systemd, tcpreplay, tinydtls,
  258. upmpdcli, upx, vlc, webkitgtk, wireguard-linux-compat,
  259. wireshark, wpebackend-fdo, wpewebkit, zstd
  260. Issues resolved (http://bugs.uclibc.org):
  261. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_..
  262. #12946: Grub: Decompressor is too big.
  263. #12986: Mtools: Error converting to codepage 850
  264. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  265. #13011: Incorrect selection of gcc version
  266. #13026: rpi-firmware: must not rename start files
  267. #13031: nodejs: RangeError at new ArrayBuffer()
  268. #13046: Optimize for fast -Ofast is not compliant
  269. 2020.02.3, released June 3rd, 2020
  270. Important / security related fixes.
  271. Fix various build issues of host packages on hosts using GCC
  272. 10.
  273. Updated/fixed packages: arm-trusted-firmware, audit, bind,
  274. binutils, bison, clamav, crda, dovecot, dtc, efl, elf2flt,
  275. erlang, fakeroot, ffmpeg, fmc, fmlib, freerdp, gcc, git,
  276. glib-networking, gnupg, leveldb, libexif, libssh2,
  277. libusb-compat, linux-headers, lrzip, ltrace, mariadb, mesa3d,
  278. mp4v2, openldap, openocd, perl, php, prosody,
  279. python-pycryptodomex, python-pyqt5, qemu, rpi-firmware, rustc,
  280. speexdsp, sysrepo, systemd, tremor, vboot-utils, wireshark,
  281. xen
  282. Removed packages: python-pycrypto
  283. Issues resolved (http://bugs.uclibc.org):
  284. #12361: Init system (systemd) kills login on Raspberry Pi Zero
  285. #12656: bison fails to relocate with relocate-sdk.sh
  286. #12671: leveldb won't detect that snappy is present (static..
  287. #12691: host-rust build fails
  288. #12831: RPI-firmware package: DTB-overlay dependency
  289. 2020.02.2, released May 12th, 2020
  290. Important / security related fixes.
  291. Musl: Disallow on PPC64 cores without AltiVec support
  292. (E.G. e5500).
  293. fs/cpio: Correctly handle booting with 'console='
  294. release: Ensure temporary .br2-external.* files are not
  295. included in the release tarball
  296. Defconfigs: Fix various mistyped config options, or config
  297. options where the dependencies were no longer met.
  298. Updated/fixed packages: apache, azure-iot-sdk-c, binutils,
  299. boinc, c-ares, cvs, docker-cli, docker-containerd,
  300. docker-engine, domoticz, e2fsprogs, efl, evtest, exim, ffmpeg,
  301. freerdp, gcc, gflags, glibc, gnuconfig, haproxy, imx-gpu-2d,
  302. irrlicht, jpeg kodi-pvr-vuplus, libarchive, libcoap,
  303. libfpm-extra, libglib2, libhtp, libid3tag, libinput, libmad,
  304. libopenssl, libsepol, libssh, libv4l, libvncserver, libwpe,
  305. localedef, mariadb, matchbox, mbedtls, mc, mesa3d-headers,
  306. meson, midori, msgpack, netsnmp, nginx, ogre, openjdk,
  307. openldap, openvpn, p7zip, paho-mqtt-c, php, polkit, python,
  308. python-attrs, python-crossbar, python-dpkt, python-flask,
  309. python-future, python-iptables, python-jedi, python-markdown2,
  310. python3, qemu, qpdf, qt5, samba4, squashfs, squid, strongswan,
  311. suricata, tzdata, util-linux, vlc, wget, webkitgtk,
  312. wireguard-linux-compat, wireshark, wpebackend-fdo, wpewebkit,
  313. zic
  314. Issues resolved (http://bugs.uclibc.org):
  315. #11866: initramfs file system fails to boot using Grub on EFI x86_64
  316. #12271: python-iptables runtime dependencies
  317. #12726: systemctl preset-all failed for ctrl-alt-del.target
  318. #12751: OpenJdk package installation issues on target
  319. #12796: Update OpenSSL to Version 1.1.1g to patch CVE-2020-1967
  320. #12811: bootstrap stuck and no login prompt
  321. #12841: util-linux/sfdisk 2.35.1 fails on sector-size header
  322. 2020.02.1, released April 10th, 2020
  323. Important / security related fixes.
  324. core: Also fixup /lib references in libtool .la files, similar
  325. to how it is done for /usr/*.
  326. Various fixes for builds with per-package target/host
  327. directories.
  328. toolchain: Fix kernel headers validation check for external
  329. toolchains. Fix make 4.3+ compatibility in external toolchain
  330. logic.
  331. fs/initramfs: fix show-info so it also shows the usual
  332. rootfs-related variables.
  333. Updated/fixed packages: arm-trusted-firmware, barebox-aux,
  334. bluez5_utils, bubblewrap, busybox, civetweb, cog, collectd,
  335. ffmpeg, gcc, gnutls, gssdp, gvfs, haproxy, hiredis, hostapd,
  336. kmscube, kodi-screensaver-rsxs, libical, libinput, libexif,
  337. libopenssl, libsndfile, linux, linux-tools, llvm, localedef,
  338. mcrypt, mesa3d, meson, monit, nftables, ntp, opencv3,
  339. oprofile, php, pinentry, polkit, pure-ftpd, python-pyyaml,
  340. qt5, quagga, radvd, rcw, redis, rocksdb, samba4, screen,
  341. sdbusplus, swupdate, sysdig, sysklogd, syslinux, syslog-ng,
  342. tor, tslib, uacme, util-linux, vala, vlc,
  343. wireguard-linux-compat, wireguard-tools, wireshark,
  344. wpa_supplicant, xserver_xorg-server
  345. Issues resolved (http://bugs.uclibc.org):
  346. #12711: host-localedef 2.30-20 fails to compile on fedora 32
  347. #12746: "sysdig" package description points to http://sysdig.org, ..
  348. 2020.02, released March 8th, 2020
  349. Various fixes.
  350. br2-external: Fix compatibility with make 4.3+
  351. Updated/fixed packages: bash, bcm2835, binutils, cups,
  352. erlang-p1-acme, fbgrab, gr-osmosdr, gst1-plugins-base,
  353. gst1-validate, gstreamer1, guile, jhead, libdrm, libevdev,
  354. libinput, libnss, libsndfile, libvncserver, linux-firmware,
  355. mesa3d, nodejs, openjdk-bin, openvmtools, optee-test, patch,
  356. php, piglit, pppd, python-django, qemu, qt5base, ruby,
  357. ser2net, swupdate, thrift, zziplib
  358. Removed packages: classpath, jamvm
  359. Issues resolved (http://bugs.uclibc.org):
  360. #12606: fbgrab location has changed
  361. 2020.02-rc3, released March 2nd, 2020
  362. Fixes all over the tree.
  363. Infrastructure: Rework file list handling to fix race
  364. conditions when building with per-package target and host
  365. directories and top-level parallel builds.
  366. Updated/fixed packages: aufs, binutils, blktrace, brltty,
  367. cairo, dnsmasq, docker-compose, elf2flt, exim, exiv2, git,
  368. kodi-inputstream-adaptive, libarchive, libcgroup, libgdiplus,
  369. libssh2, libvncserver, libvorbis, linknx, linux-firmware, lxc,
  370. lz4, mosquitto, openjpeg, openrc, poco, proftpd, pure-ftpd,
  371. python3, python-multidict, python-setuptools-scm-git-archive,
  372. qpdf, qt5tools, rdesktop, rocksdb, shellinabox, squid,
  373. suricata, swig, systemd, taglib, util-linux, wireshark, zsh
  374. Issues resolved (http://bugs.uclibc.org):
  375. #12571: ltp-testsuite : Build failure
  376. #12576: 2020.02-RC1: error while loading shared libraries: ...
  377. #12581: 2020.02-rc1 glibc failing to build on fedora 31
  378. 2020.02-rc2, released February 26th, 2020
  379. Fixes all over the tree.
  380. Toolchain: Ensure strong SSP can only be enabled if the
  381. (external) toolchain supports it.
  382. Fix a race condition related to creating the output/staging
  383. symlink on systems with coreutils < 8.27.
  384. Drop support for the (end of life) Qt 5.6 variant.
  385. Updated/fixed packages: at, armadillo, audiofile, bash,
  386. busybox, erlang, fail2ban, fluidsynth, ipsec-tools, jpeg-turbo,
  387. kvm-unit-tests, libftdi1, libinput, libsvgtiny, libtomcrypt,
  388. libupnpp, libxml2, linux-tools, luv, mbedtls, mesa3d, minicom,
  389. openvmtools, php, qt5, qt5webengine, qwt, radvd, rcw,
  390. sdbusplus, systemd, tpm2-tss, vorbis-tools
  391. Issues resolved (http://bugs.uclibc.org):
  392. #12581: 2020.02-rc1 glibc failing to build on fedora 31
  393. 2020.02-rc1, released February 18th, 2020
  394. Fixes all over the tree and new features.
  395. Add experimental support for building with a per-package
  396. target and host directory. This still has some rough edges,
  397. but brings a number of advantages:
  398. - Packages will only be able to access the explicitly listed
  399. dependencies and not any other packages that happen to be
  400. built before, ensuring correct dependency information in
  401. Buildroot.
  402. - Possibility for top-level parallel builds, speeding up
  403. builds on multicore machines.
  404. Core: Ensure package-file-lists data is correct after
  405. incremental builds as well.
  406. Architecture: Add support for ARC-HS38 with 64bit multiplier
  407. variant, allow building glibc for big endian ARC, handle 16KB
  408. MMU page size for ARC in toolchain wrapper.
  409. Toolchain: Add binutils 2.33.1, GCC 7.5.0, Arm 9.2-2019.12
  410. toolchains, ARC 2019.09 toolchain. Allow using custom kernel
  411. headers newer than what is known by Buildroot.
  412. pkg-stats: Support for CVE vulnerability reporting by
  413. comparing to NVD database.
  414. Reproducible builds: The go -trimpath option is now used to
  415. get rid of absolute build paths, __FILE__ and __BASE_FILE__
  416. defines are now handled in the toolchain wrapper.
  417. Systemd: Build host variant and use systemctl to automatically
  418. enable unit files rather than manually managing symlinks.
  419. Util-linux: Ensure that hwclock is built without GPLv3
  420. code. Notice that builds with hwclock has contained
  421. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  422. New defconfigs: Beelink GS1, Raspberrypi4 64bit
  423. New packages: alura, avro-c, bubblewrap, cctz, cereal,
  424. cpuburn-arm, elixir, erlang-base64url, erlang-idna,
  425. erlang-jose, erlang-p1-acme, erlang-p1-mqtree,
  426. erlang-p1-yconf, fluid-soundfont, fluidsynth, gcnano-binaries,
  427. gensio, glslsandbox-player, libargon2, libmodsecurity,
  428. libpam-nfc, libtelnet, lua-codegen, lua-livr, lua-livr-extra,
  429. lua-rotas, lua-silva, mfoc, network-manager-openvpn,
  430. nginx-modsecurity, perl-crypt-openssl-aes,
  431. perl-math-prime-util, pipewire, ptm2human, python-aenum,
  432. python-aiohttp-debugtoolbar, python-aiohttp-mako,
  433. python-aiologstash, python-aiosignal, python-aiozipkin,
  434. python-async-lru, python-avro, python-bunch, python-crontab,
  435. python-dnspython, python-entrypoints, python-esptool,
  436. python-frozenlist, python-future, python-gitdb, python-janus,
  437. python-lockfile, python-logstash, python-nested-dict,
  438. python-pbr, python-pyaes, python-pydantic, python-smmap2,
  439. python-sockjs, python-zc-lockfile, raspi-gpio, rocksdb,
  440. sdbusplus, spidermonkey, thermald, ti-sgx-libgbm, tinyssh,
  441. tio, umtprd, weston-imx, wireguard-linux-compat,
  442. wireguard-tools, xdg-dbus-proxy
  443. Removed packages: bluez_utils, celt051, erlang-p1-iconv, fis,
  444. gadgetfs-test, libplayer, gstreamer, gst-ffmpeg,
  445. gst-fsl-plugins, gst-omapfb, gst-plugins-bad,
  446. gst-plugins-base, gst-plugins-good, gst-plugins-ugly,
  447. perl-digest-md5, perl-mime-base64, perl-net-ping,
  448. python-scapy3k, wireguard
  449. Issues resolved (http://bugs.uclibc.org):
  450. #11906: the new version of mesa3d cannot support etnaviv when..
  451. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  452. #12121: PyQt5.QtSerialPort and other modules not being built
  453. #12256: package tar is outdated (1.29 is 3 years old
  454. #12286: Can't import gobject in python 3.8
  455. #12376: python-scapy3k is deprecated
  456. #12386: carriage return issue when "make menuconfig"
  457. #12441: qt5webengine build error: asm/errno.h: No such file or..
  458. #12446: Buildroot fails to finish installing packages
  459. #12456: qtvirtualkeyboard: No such file or directory
  460. #12461: libglib2 build files with deep directory structure
  461. #12481: minicom fails when output directory path contains "m4"
  462. #12501: libnss-3.49.1: ld error: multiple definition of `gcm_..
  463. #12526: host-nodejs 12.14.1: configure fail: AttributeError: ..
  464. #12536: Linux-Headers extracting failure
  465. #12546: Ninja 1.10 build Error
  466. 2019.11.3, released April 10th, 2020
  467. Important / security related fixes.
  468. core: Fix compatibility with make 4.3+. Also fixup /lib
  469. references in libtool .la files, similar to how it is done for
  470. /usr/*.
  471. toolchain: Fix kernel headers validation check for external
  472. toolchains.
  473. fs/initramfs: fix show-info so it also shows the usual
  474. rootfs-related variables.
  475. Updated/fixed packages: barebox-aux, bluez5_utils, busybox,
  476. civetweb, cog, collectd, ffmpeg, gcc, gnutls, gssdp, gvfs, haproxy,
  477. hiredis, hostapd, kmscube, libical, libopenssl, libsndfile,
  478. linux-tools, llvm, monit, ntp, php, pure-ftpd, radvd, redis,
  479. samba4, screen, sysdig, syslinux, syslog-ng, tor, uacme,
  480. util-linux, vala, vlc, wpa_supplicant, xserver_xorg-server
  481. Issues resolved (http://bugs.uclibc.org):
  482. #12746: "sysdig" package description points to http://sysdig.org, ..
  483. 2019.11.2, released March 16th, 2020
  484. Important / security related fixes.
  485. Core: Ensure package-file-lists data is correct after
  486. incremental builds as well.
  487. Fix a race condition related to creating the output/staging
  488. symlink on systems with coreutils < 8.27.
  489. Toolchain: ARC tools bumped to arc-2019.09.
  490. Br2-external: Fix patch handling when external linux-extension
  491. packages are used. Fix compatibility with make 4.3+
  492. Util-linux: Ensure that hwclock is built without GPLv3
  493. code. Notice that builds with hwclock has contained
  494. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  495. Updated/fixed packages: armadillo, at, bcm2835, binutils,
  496. blktrace, bluez-alsa, bootstrap, brltty, busybox, cairo,
  497. clamav, cog, cups, czmq, dnsmasq, docker-containerd, dovecot,
  498. dovecot-pigeonhole, e2fsprogs, elf2flt, eudev, exim, exiv2,
  499. fbgrab, gettext-tiny, glibc, go, grep, gst1-validate, guile,
  500. imagemagick, jhead, jpeg-turbo, kvm-unit-tests, lapack,
  501. libarchive, libcgroup, libdrm, libevent, libexif, libftdi1,
  502. libgdiplus, libjpeg, libsigrok, libsndfile, libssh2,
  503. libsvgtiny, libvncserver, libvorbis, libxml2, libxslt, linknx,
  504. lxc, lz4, mariadb, mbedtls, meson, mongoose, mosquitto, musl,
  505. ncurses, nodejs, ntfs-3g, ogre, opencv3, openjdk, openjpeg,
  506. openrc, openswan, openvmtools, optee-test, patch, php, piglet,
  507. postgresql, pppd, proftpd, pure-ftpd, python-django,
  508. python-pyqt5, python-setuptools-scm-git-archive, python3,
  509. qemu, qt5base, qt5tools, qt5virtualkeyboard, qt5webengine,
  510. qwt, rdesktop, ruby, runc, samba4, shellinabox,
  511. skeleton-init-openrc, smartmontools, spdlog, sqlcipher, squid,
  512. suricata, swig, swupdate, sysklogd, taglib, thrift,
  513. ti-cgt-pru, uclibc, util-linux, vorbis-tools, webkitgtk,
  514. wireshark, wpebackend-fdo, wpewebkit, xen,
  515. xserver_xorg-server, zeromq, zsh, zziplib
  516. Issues resolved (http://bugs.uclibc.org):
  517. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  518. #12331: meson issue
  519. #12456: qtvirtualkeyboard: No such file or directory
  520. #12461: libglib2 build files with deep directory structure
  521. #12481: minicom fails when output directory path contains "m4"
  522. #12606: fbgrab location has changed
  523. 2019.11.1, released January 12th, 2020
  524. Important / security related fixes.
  525. Infrastructure: kconfig: Fix reconfigure logic, python: Ensure
  526. correct compiler and linker flags are used for compiled code
  527. utils/scanpypi: Remind users to update DEVELOPERS
  528. Defconfigs: imx6-sabresd: Fix the Qt5 display names,
  529. imx8: Drop extra copy of U-Boot DTB
  530. Updated/fixed packages: acsccid, bitcoin, boost, busybox,
  531. cc-tool, cmocka, cpio, cups, dante, dialog, dillo, docker-cli,
  532. docker-containerd, docker-engine, easy-rsa, ebtables,
  533. ecryptfs-utils, efl, ffmpeg, gdb, git, glibc, gnupg2, go,
  534. gpsd, grpc, gst1-plugins-bad, iputils, jasper,
  535. kf5-kcoreaddons, leveldb, libarchive, libfribi, libgit2,
  536. libkrb5, libp11, librsvg, libssh, libtomcrypt, libuio, libv4l,
  537. lirc-tools, log4cplus, lrzip, lvm2, mali-t76x,
  538. matchbox-desktop, mender-grubenv, mmc-utils, mosquitto,
  539. nodejs, ntp, openipmi, opencv3, openpowerlink, openrc, pango,
  540. perl-sys-cpu, pimd, postgresql, pulseaudio, python-brotli,
  541. python-coherence, python-crc16, python-django, python-dpkt,
  542. python-gobject, python-pyasn-modules, python-pypcap,
  543. python-pyqt5, python-subprocess32, python3, qpdf,
  544. qt-webkit-kiosk, qt5virtualkeyboard, qt5webengine, quota,
  545. rabbitmq-c, rauc, rpcbind, rtl8821au, runc, rygel, samba4,
  546. sdl2, setserial, snort, spidev_test,
  547. sunxi-mali-mainline-driver, syslog-ng, sysrepo, tcllib, tftpd,
  548. usbmount, w_scan, wavpack, wsapi, wsapi-fcgi, wsapi-xavante,
  549. x265, xserver_xorg-server, ytree, zip
  550. Issues resolved (http://bugs.uclibc.org):
  551. #12121: PyQt5.QtSerialPort and other modules not being built
  552. #12286: Can't import gobject in python 3.8
  553. 2019.11, released December 1st, 2019
  554. Various fixes.
  555. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  556. <pkg>_DL_OPTS by default, just like it is done for a number of
  557. other package variables.
  558. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  559. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  560. the (rare) case where the .py files are needed at runtime
  561. rather than .pyc.
  562. Updated/fixed packages: am33x-cm3, bind, collectd, go, gob2,
  563. gst1-plugins-bad, haproxy, jasper, jpeg-turbo, libdrm,
  564. libftdi, libftdi1, libnss, libselinux, libstrophe, lzma,
  565. minicom, network-manager, nodejs, oniguruma, opencv3,
  566. openvmtools, perl-gdgraph, perl-gdtextutil, prosody,
  567. python-cchardet, systemd, tiff, wolfssl,
  568. Issues resolved (http://bugs.uclibc.org):
  569. #11416: check-uniq-files staging issue
  570. #12146: Oprofile runtime issue
  571. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  572. #12171: Python-opencv needs config.py and config-3.7.py to run..
  573. #12196: duma package
  574. #12211: host-nodejs 10.15.3 package fail to build
  575. #12316: tzdata fails to install with empty "default local time"
  576. #12326: network-manager build fails with missing glib error
  577. #12366: Gstreamer1 gst1-plugins-bad do not compile with RPI-Userland
  578. 2019.11-rc3, released November 24th, 2019
  579. Fixes all over the tree.
  580. Updated/fixed packages: asterisk, clamav, domoticz, faifa,
  581. gerbera, kmod, kvm-unit-tests, libupnp18, linux-serial-test,
  582. lsof, ltp-testsuite, lxc, mesa3d, mesa3d-headers, perl, php,
  583. postgresql, qemu, rauc, redis, rpcbind, spice, spice-protocol,
  584. systemd, tftpd, waylandpp, webkitgtk, zip
  585. 2019.11-rc2, released November 16th, 2019
  586. Fixes all over the tree.
  587. Toolchain: ARC tools bumped to arc-2019.09-rc1, ensure
  588. external toolchain kernel headers version check correctly stop
  589. the build on mismatch
  590. Meson: Fix generation of global cross-compilation.conf
  591. Download: Also use the package download method for extra
  592. downloads from the same site, so it does not get confused by
  593. URLs containing '+'
  594. Defconfigs: Fix boot issue for beaglebone
  595. Updated/fixed packages: bird, chrony, connman, dhcp, domoticz,
  596. dropwatch, dtc, elf2flt, gettext-tiny, glog, intel-microcode,
  597. ipsec-tools, jailhouse, kodi, libfribi, libmbim, libressl,
  598. libsigrokdecode, libsvgtiny, linux-serial-test, ltp-testsuite,
  599. lvm2, lxc, mariadb, mesa3d, minizip, ndisc6, neardal, ninja,
  600. ofono, openvmtools, oracle-mysql, qt5wayland, safeclib, socat,
  601. sudo, systemd, wpewebkit, xserver_xorg-server
  602. 2019.11-rc1, released November 5th, 2019
  603. Fixes all over the tree and new features.
  604. Dependencies: Gcc/g++ 4.8 or newer is now required on the
  605. build host.
  606. Ensure host has JSON::PP perl module installed if
  607. webkitgtk/wpewebkit packages are enabled as it is needed
  608. during their build process.
  609. Toolchain: Add support for the D programming language (GCC
  610. 9.x, Glibc).
  611. GCC 9.x updated to 9.2.0, Glibc updated to 2.30, Musl updated
  612. to 1.1.24, uClibc-ng updated to 1.0.32, ARC toolchain updated
  613. to arc-2019.09-eng002.
  614. Musl: Add a patch to add support for
  615. sched_{get,set}scheduler() and sched_{get,set}param() for
  616. compatibility.
  617. Generate check-headers program under BUILD_DIR rather than
  618. /tmp to fix issues with distributions mounting /tmp noexec.
  619. Also copy libssp.so for external toolchains if SSP
  620. to handle toolchains providing SSP support in libssp rather
  621. than in the C library
  622. New defconfigs: Beaglebone AI, FriendlyARM Nanopi NEO Plus2,
  623. Libre Computer "La Frite", QEMU Armv7-A with trustzone/OP-TEE,
  624. STM32MP157 Discovery Kit
  625. Arch: RISC-V: Default to a sensible floating point ABI based
  626. on the selected ISA extensions rather than always defaulting
  627. to ILP32/64
  628. Graph-size: Package sizes are now shown in human readable form
  629. (Kib/Mib/Gib) rather than always in Kib. Binary (KB/MB/GB)
  630. format can be selected using the --binary option. The cut-off
  631. limit for classifying packages as "other" is now configurable
  632. using the --size-limit option.
  633. Br2-external: Linux kernel extensions can now also be provided
  634. in an external tree by adding packages under
  635. linux/linux-ext-*.mk. See the manual for details.
  636. Fakeroot now works correctly under Microsoft Windows 10
  637. Services for Linux, which does not provide SYSV IPC support
  638. The check-uniq-files logic which would complain if multiple
  639. packages would touch the same files has been removed as it
  640. causes issues in certain situations (when packages are
  641. rebuilt) and the issue is no longer considered a problem for
  642. toplevel parallel builds as those will use a per-package
  643. staging/target directory.
  644. With this removed, Python is no longer required for a basic
  645. build (only for optional scripts).
  646. support/scripts/genimage.sh will no longer make a copy of
  647. TARGET_DIR, speeding up post-build/image scripts.
  648. The runtime test logic now uses Python 3.x.
  649. A 'v' prefix has been dropped from the <pkg>_SOURCE variable
  650. for a number of packages to match the version numbers used by
  651. https://release-monitoring.org
  652. New packages: caps, collectl, dav1d, fstrcmp, ima-evm-utils,
  653. jitterentropy-library, kodi-vfs-rar, kodi-vfs-sftp, libavl,
  654. libhttpserver, libmspack, libnetconf2, libolm, libyang,
  655. linux-serial-test, lrzip, mdevd, minimodem, musl-fts, netifrc,
  656. ogre, openlayers, python-aioredis, python-asgiref,
  657. python-backports-functools-lru-cache, python-bluezero,
  658. python-brotli, python-channels, python-channels-redis,
  659. python-colorlog, python-daphne, python-django-enumfields,
  660. python-jaraco-functools, python-kiwisolver, python-msgfy,
  661. python-rpi-ws281x, python-setuptools-scm-git-archive,
  662. python-simplelogging, python-soupsieve, python-sqliteschema,
  663. python-sqlparse, python-tqdm, python-webencodings, qt5webview,
  664. restclient-cpp, ripgrep, snmpclitools, sunwait, sysrepo,
  665. uacme, utf8proc, uvw, ytree
  666. Removed packages: alljoyn, alljoyn-base, alljoyn-tcl-base,
  667. devmem2, eventlog, kodi-audiodecoder-opus,
  668. kodi-screensaver-planestate, kodi-visualisation-waveforhue,
  669. python-pysnmp-apps, riscv-pk, ustr
  670. Issues resolved (http://bugs.uclibc.org):
  671. #9881: systemd-resolved not setting resolv.conf link
  672. #10171: devmem2 w (word) is 8 bytes in x86 64 systems
  673. #10586: musl gcc has ifunc enabled when musl doesn't support it
  674. #10806: Allow nfs-utils to use ipv6
  675. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  676. #11411: check-uniq-files target issue
  677. #11766: Console (getty) issues with systemd
  678. #11781: mariadb build error
  679. #12031: Build of cups-filters fails while linking, apparently due..
  680. #12116: console prompt does not appear after login
  681. #12141: eudev package is missing "render" and "kvm" groups
  682. #12181: dropbear: norootlogin (-w) no longer works when PAM is enabled
  683. #12186: Raspberry Pi Zero-W build fails on newer kernel versions
  684. #12191: cmake BUILDDIR
  685. #12241: Permission denied while running "make"
  686. #12261: sudo versions prior to 1.8.28 are affected.
  687. #12276: make clean/distclean does not remove BR2_DL_DIR and BR2_HOST_DIR
  688. #12281: Custom configuration fails to build (based on raspberrypi3_..
  689. 2019.08.3, released December 7th, 2019
  690. Important / security related fixes.
  691. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  692. <pkg>_DL_OPTS by default, just like it is done for a number of
  693. other package variables
  694. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  695. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  696. the (rare) case where the .py files are needed at runtime
  697. rather than .pyc.
  698. Fix <pkg>-reconfigure handling for packages using the kconfig
  699. infrastructure.
  700. Toolchain: ensure external toolchain kernel headers version
  701. check correctly stop the build on mismatch
  702. Deconfigs: beaglebone: fix boot issue
  703. Updated/fixed packages: am33x-cm3, asterisk, bind, chrony,
  704. clamav, cmocka, collectd, connman, dhcp, dropwatch, faifa,
  705. gettext-tiny, gob2, haproxy, intel-microcode, ipsec-tools,
  706. jailhouse, jasper, jpeg-turbo, kodi, kvm-unit-tests, libftdi,
  707. libftdi1, libnss, libressl, libstrophe, libsvgtiny, lvm2,
  708. lzma, mariadb, minicom, mosquitto, neardal, ninja, nodejs,
  709. oniguruma, openvmtools, oracle-mysql, perl-gdgraph,
  710. perl-gdtextutil, php, postgresql, prosody, python-cchardet,
  711. python-django, qt5wayland, rabbitmq, rauc, redis, rpcbind,
  712. socat, spice, spice-protocol, tftpd, tiff, webkitgtk
  713. New packages: libmspack
  714. Issues resolved (http://bugs.uclibc.org):
  715. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  716. #12171: Python-opencv needs config.py and config-3.7.py to run..
  717. #12211: host-nodejs 10.15.3 package fail to build
  718. #12316: tzdata fails to install with empty "default local time"
  719. 2019.08.2, released November 9th, 2019
  720. Important / security related fixes.
  721. Toolchain: Also copy libssp.so for external toolchains if SSP
  722. to handle toolchains providing SSP support in libssp rather
  723. than in the C library
  724. Download: Also use the package download method for extra
  725. downloads from the same site, so it does not get confused by
  726. URLs containing '+'
  727. Fakeroot now works correctly under Microsoft Windows 10
  728. Services for Linux, which does not provide SYSV IPC support
  729. utils/test-pkg: ensure to exit with an error upon failure
  730. Updated/fixed packages: asterisk, azmq, binutils,
  731. cups-filters, domoticz, dtc, duma, elf2flt, eudev, exfat,
  732. exfat-utils, fakeroot, fdk-aac, file, freerdp, gcc, gd,
  733. ghostscript, go, gpsd, grpc, gst1-plugins-base, gvfs, icu,
  734. intel-microcode, kvm-unit-tests, libfribidi, libnspr, libnss,
  735. libopenssl, libpcap, libpciaccess, librsvg, libseccomp,
  736. libsigrok, libtorrent, libunwind, libva, linux-tools,
  737. lua-sdl2, lxc, minizip, mjpegtools, mongoose, mono, nbd,
  738. nfs-utils, php, piglit, python, python-autobahn,
  739. python-pysnmp-apps, python-tornado, python3, qemu, qt5base,
  740. ruby, safeclib, samba4, sdl_mixer, sox, sudo, suricata,
  741. systemd, tcpdump, unscd, util-linux, vdr-plugin-vnsiserver,
  742. vtun, wireshark, xvisor, yaffs2utils
  743. Issues resolved (http://bugs.uclibc.org):
  744. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  745. #12261: sudo versions prior to 1.8.28 are affected
  746. 2019.08.1, released October 3rd, 2019
  747. Important / security related fixes.
  748. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  749. Use default console settings
  750. Dependencies: Ensure host has JSON::PP perl module installed
  751. if webkitgtk/wpewebkit packages are enabled as it is needed
  752. during their build process.
  753. Toolchain: Generate check-headers program under BUILD_DIR
  754. rather than /tmp to fix issues with distributions mounting
  755. /tmp noexec.
  756. Updated/fixed packages: asterisk, augeas, axel, bind, bwm-ng,
  757. cups, cups-filters, docker-cli, docker-engine, docker-proxy,
  758. e2fsprogs, eudev, exim, expat, gcc, go, haveged, ifplugd, joe,
  759. kf5-extra-cmake-modules, kf5-modemmanager-qt,
  760. kf5-networkmanager-qt, libcamera, libcurl, libgcrypt,
  761. libglib2, libgpg-error, libnspr, libnss, libopenssl,
  762. logrotate, luksmeta, mariadb, mbedtls, mongodb, mosquitto,
  763. ncurses, nfs-utils, nghttp2, nodejs, openvmtools, php,
  764. protobuf, putty, qemu, samba4, snort, swupdate,
  765. systemd-bootchart, thttpd, uclibc, unzip, util-linux,
  766. wireshark
  767. Issues resolved (http://bugs.uclibc.org):
  768. #10806: Allow nfs-utils to use ipv6
  769. #11781: mariadb build error
  770. #12031: Build of cups-filters fails while linking, apparently due..
  771. #12141: eudev package is missing "render" and "kvm" groups
  772. #12241: Permission denied while running "make"
  773. 2019.08, released September 1st, 2019
  774. Various fixes.
  775. Defconfigs: Removed nanopc t4, nanopi m4 and neo4, pine64
  776. rockpro64 and raxda rock pi4 as they rely on a ARM32 toolchain
  777. on the build host to build ATF. These defconfigs will be added
  778. back once a package providing such toolchain is
  779. available. Also dropped ts4800 defconfig as it does not build
  780. with GCC >= 8.x.
  781. Updated/fixed packages: libxcb, php, python-numpy, webkitgtk,
  782. wpewebkit, xfont_font-util
  783. Issues resolved (http://bugs.uclibc.org):
  784. #12156: buildroot-2019.08-rc3 does not build for Pi Zero W
  785. 2019.08-rc3, released August 28th, 2019
  786. Fixes all over the tree.
  787. Updated/fixed packages: clamav, dovecot, dovecot-pigeonhole,
  788. gcc, intel-microcode, libmicrohttpd, libmodplug, mpg123,
  789. nginx, openldap, python, qemu, samba4, squid, strace, vlc
  790. Issues resolved (http://bugs.uclibc.org):
  791. #11686: fbdev_drv.so: undefined symbol: shadowUpdatePackedWeak,..
  792. 2019.08-rc2, released August 20th, 2019
  793. Fixes all over the tree.
  794. Compile fixes for a number of defconfigs.
  795. Updated/fixed packages: apache, autofs, batctl, batman-adv,
  796. bind, collectd, cwiid, dahdi-linux, dahdi-tools, daq,
  797. dehydrated, dhcp, dtc, efl, enlightenment, evtest, giflib,
  798. gnutls, go, gst-plugins-bad, gst-plugins-base,
  799. gst1-plugins-bad, gst1-plugins-base, gst1-rtsp-server, gtkmm3,
  800. gupnp, harfbuzz, imagemagick, lftp, libbsd, libcpprestsdk,
  801. libdnet, libfm, libgit2, libgtk2, libgtk3, libpri, librsvg,
  802. libss7, libssh2, libwpe, lua-cqueues, metacity, micropython,
  803. mpd, mpg123, musl, mpv, openblas, openbox, opencv, pango,
  804. pcmanfm, piglit, pigpio, pinentry, postgresql, qemu, qt5base,
  805. qt5enginio, qt5multimedia, qt5serialbus, quagga, quazip,
  806. rrdtool, rygel, samba4, stellarium, tcpreplay, ti-gfx, vte,
  807. wampcc, wilink-bt-firmware, wireless-regdb, wpebackend-fdo,
  808. xscreensaver
  809. Removed packages: libamcodec, odroid-mali, odroid-scripts
  810. Issues resolved (http://bugs.uclibc.org):
  811. #9481: NetworkManager/Ping unable to resolve domains
  812. #10566: php.mk is missing option --with-pgsql
  813. #10861: Package batman_adv Makefile is missing include header direct..
  814. #11641: linux kernel .config timestamp always out of date fixed with..
  815. #11671: russian locale ru_RU:145: LC_TIME: syntax error
  816. #11701: recuuring of usr and in bin shortcuts are created
  817. #11741: pigpio does not build host-pigpio
  818. #11876: automount using host mount/umount
  819. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  820. #11921: dahdi fails to build
  821. #11936: libcpprestsdk should install to staging
  822. #11946: wilink-bt-firmware: moved from github to http://git.ti.com/ti-bt
  823. #11961: libpri build failure
  824. #12086: dhcp shared libraries not installed to target
  825. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  826. #12106: daq: build fails if libdumbnet-dev is installed in the host
  827. #12126: vc4 has neon as hard dependency
  828. 2019.08-rc1, released August 9th, 2019
  829. Fixes all over the tree and new features.
  830. toolchain: ARC toolchain updated to 2019.03 (binutils 2.32.51
  831. / GCC 8.3.1 / glibc 2.29), ARM AAarch64/ARM toolchains updated
  832. to 2019.03. Add GCC 9.1.0, remove GCC 4.9 and 6.5, add GDB
  833. 8.3, remove GDB 7.12 and 8.0.1, default to GDB 8.2, GCC
  834. 8.3.0. Musl updated to 1.1.23, bringing support for RISC-V 64.
  835. Architectures: Internal toolchain support for C-SKY, support
  836. for ARC HS48 v3.1 and HS38 with Quad MAC & FPU, support for
  837. ARM A76, A76/A55 big.LITTLE, emag, neoverse-N1, phecda and
  838. tsv110.
  839. Filesystems: Pass extra pax options to tar for binary
  840. reproducibility. Build host-cpio for the --reproducible option
  841. support when BR2_REPRODUCIBLE is enabled. Genimage updated to
  842. version 11, bringing GPT support.
  843. Br2-external: Add support for injecting additional options to
  844. the list of preconfigured external toolchains and libjpeg and
  845. openssl providers using files under provides/. See the manual
  846. for details.
  847. Ensure custom <pkg>_OVERRIDE_SRCDIR_RSYNC_EXCLUSIONS are
  848. passed before the standard exclusions so they are not ignored
  849. by rsync when using override-srcdir.
  850. Gnuconfig updated to 2019-05-28, adding C-SKY support.
  851. test-pkg: Correct long option handling and clean output dir
  852. after a successful build to save disk space.
  853. support/testing: Emulate a machine with 256MB RAM to fix
  854. issues with certain tests running out of memory, use
  855. virtio-rng to provide needed entrophy.
  856. pkg-stats: support outputting in JSON format with --json for
  857. easier post processing. The classic HTML output is still
  858. available with --html. Parallelize access to
  859. release-monitoring.org to speed up runtime.
  860. Drop non-conventional version prefix/suffix/separators for
  861. packages for better compatibility with release-monitoring.org
  862. Packages:
  863. Init systems: Add basic openrc support and
  864. <pkg>_INSTALL_INIT_OPENRC variable in the infrastructure to
  865. install openrc service scripts if enabled.
  866. busybox: Build each applet as a separate binary when SELinux
  867. is enabled for more finegrained policy control. Use daemon
  868. mode for mdev rather than legacy hotplug.
  869. linux: Workaround -Werror related build failure on powerpc,
  870. by forcing CONFIG_PPC_DISABLE_WERROR on.
  871. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  872. partition is available before mounting.
  873. New defconfigs: HiFive Unleashed, I.MX8MM EVK and Pico, Nanopi
  874. m4 and neo4, Nanopc t4, Olimex A33 olinuxino, Pine64
  875. Rockpro64, PowerPC mac99, QEMU C-SKY 610/807/810/860 virt,
  876. Raspberry Pi 4, Raxda rock pi4, Solidrun Clearfog GT-8K
  877. Removed defconfigs: Odroid C2
  878. New packages: bitcoin, c-capnproto, fatcat, ifmetric, jack1,
  879. jailhouse, libubootenv, luasyslog, mender-grubenv,
  880. murata-cyw-fw, openrc, piglit, python-colorama, python-cycler,
  881. python-hiredis, python-ifaddr, python-inflection,
  882. python-iptables, python-matplotlib, python-periphery,
  883. python-pycairo, python-redis, python-termcolor,
  884. python-tinyrpc, python-txdbus, skeleton-init-openrc, spdlog,
  885. sshguard, stellarium, zziplib
  886. Removed packages: xapp_mkfontdir
  887. Issues resolved (http://bugs.uclibc.org):
  888. #11096: Upgrade from glibc 2.26 to 2.27 broke some locales...
  889. #11271: utils/check-package fails with exception depending on..
  890. #11991: [numpy] segfault when compiling for RPi3 64bits
  891. #12016: Grub fails to boot bzImage after upgrade to 2019.05
  892. #12046: Can’t login as root user after upgrading to buildroot..
  893. #12051: package/dhcp installs libtool wrapper scripts on tar...
  894. #12076: Patchelf can link against an incompatible libc++ ver...
  895. 2019.05.3, Released October 3rd, 2019
  896. Important / security related fixes.
  897. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  898. Use default console settings
  899. Dependencies: Ensure host has JSON::PP perl module installed
  900. if webkitgtk/wpewebkit packages are enabled as it is needed
  901. during their build process.
  902. Toolchain: Generate check-headers program under BUILD_DIR
  903. rather than /tmp to fix issues with distributions mounting
  904. /tmp noexec.
  905. Updated/fixed packages: asterisk, augeas, bind, bwm-ng, cups,
  906. cups-filters, docker-cli, docker-engine, docker-proxy,
  907. e2fsprogs, eudev, exim, expat, gcc, go, haveged, ifplugd,
  908. iptables, joe, kf5-extra-cmake-modules, kf5-modemmanager-qt,
  909. kf5-networkmanager-qtlibcamera, libcurl, libgcrypt,
  910. libgpg-error, libnftl, libnspr, libnss, libopenssl,
  911. libtorrent-rasterbar, luksmeta, mariadb, mbedtls, mongodb,
  912. mosquitto, ncurses, nfs-utils, nghttp2, nodejs, openvmtools,
  913. php, protobuf, putty, qemu, samba4, swupdate,
  914. systemd-bootchart, thttpd, uclibc, unzip, util-linux,
  915. wireshark
  916. Issues resolved (http://bugs.uclibc.org):
  917. #10806: Allow nfs-utils to use ipv6
  918. #11781: mariadb build error
  919. #12031: Build of cups-filters fails while linking, apparently due..
  920. #12141: eudev package is missing "render" and "kvm" groups
  921. #12241: Permission denied while running "make"
  922. 2019.05.2, Released September 3rd, 2019
  923. Important / security related fixes.
  924. Filesystems: Pass extra pax options to tar for binary
  925. reproducibility.
  926. Updated/fixed packages: apache, arm-trusted-firmware,
  927. asterisk, atk, autofs, batctl, batman-adv, berkeleydb,
  928. busybox, bzip2, clamav, cloop, cmake, collectd, connman-gtk,
  929. dahdi-linux, dahdi-tools, daq, dehydrated, dhcp, dovecot,
  930. dovecot-pigeonhole,, elfutils, evtest, exim, expect, giflib,
  931. git, glib-networking, glibc, gnupg2, gnutls, go,
  932. gst1-rtsp-server, gtkperf, gupnp-tools, gvfs, imagemagick,
  933. imx-uuc, intel-microcode, json-glib, lftp, libbsd, libcurl,
  934. libgit2, libgtk2, libgtk3, libmodplug, libnss, libpri,
  935. libshout, libss7, libssh2, libvips, libxcb, linux-headers,
  936. mdadm, mesa3d, metacity, mpg123, mosquitto, musl, nginx,
  937. oniguruma, openblas, opencv3, openjdk, openjdk-bin, openldap,
  938. openvmtools, pcmanfm, php, pigpio, postgresql, prboom,
  939. proftpd, proj, python, python-django, python-idna,
  940. python-numpy, python-urllib3, python3, qemu, qt5, qt5base,
  941. qt5enginio, quagga, rygel, squid, subversion, tcpreplay,
  942. unzip, vlc, vte, webkitgtk, wireless-regdb, xen,
  943. xfont_font-util, xlib_libICE, xlib_libXfont, xlib_libXfont2,
  944. yad, zeromq
  945. Issues resolved (http://bugs.uclibc.org):
  946. #11741: pigpio does not build host-pigpio
  947. #11876: automount using host mount/umount
  948. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  949. #11921: dahdi fails to build
  950. #11961: libpri build failure
  951. #12086: (dhcpd-missing-libs) - dhcp shared libraries not installed to..
  952. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  953. #12106: daq: build fails if libdumbnet-dev is installed in the host
  954. #12126: vc4 has neon as hard dependency
  955. 2019.05.1, Released July 7th, 2019
  956. Important / security related fixes.
  957. arch: x86: Fix typo breaking 'core-avx2' variant
  958. linux: Workaround -Werror related build failure on powerpc,
  959. by forcing CONFIG_PPC_DISABLE_WERROR on.
  960. support/testing: Emulate a machine with 256MB RAM to fix
  961. issues with certain tests running out of memory.
  962. test-pkg: Correct long option handling and clean output dir
  963. after a successful build to save disk space.
  964. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  965. partition is available before mounting.
  966. Updated/fixed packages: barebox, busybox, bzip2, davfs2,
  967. dialog, docker-cli, docker-engine, exim, expat, faad2,
  968. haveged, irssi, libcamera, libcdaudio, libcurl, libglib2,
  969. libressl, libsecret, lmbench, meson, monit, php, postgresql,
  970. psplash, python-django, qt5base, tvheadend, webkitgtk,
  971. xserver_xorg-server, znc
  972. 2019.05, released June 2nd, 2019
  973. Various fixes.
  974. Toolchain: Ensure pre-built Andes toolchains can only be
  975. selected when x86 32bit support is available on the host.
  976. Disallow PowerPC SPE ABI for GCC >= 8.x, as it is no longer
  977. supported.
  978. Infra: pkg-config: Use a dedicated timestamp file rather than
  979. .config as that gets touched by linux-4.19+, causing repeated
  980. builds.
  981. Add C-SKY support to our config.sub (gnuconfig)
  982. Updated/fixed packages: dosfstools, botan, brotli, dropbear,
  983. flare-engine, gst1-plugins-bad, libhtp, libnss, libopenssl,
  984. linuxptp, matchbox-panel, mender, mutt, netsurf,
  985. network-manager, opencv3, openjdk, openmpi, php,
  986. python-cython, qt5multimedia, qtwayland, qt5webkit-examples,
  987. supertux, suricata, tpm2-totp, v4l2loopback, wireshark,
  988. wpewebkit
  989. 2019.05-rc3, released May 25th, 2019
  990. Fixes all over the tree.
  991. check-bin-arch: Ignore /usr/lib/grub, similar to how /lib/grub
  992. is ignored.
  993. check-package: Warn about utf-8 characters in .mk files
  994. Linux: Default to 5.1.x series
  995. Updated/fixed packages: assimp, atop, chocolate-doom, cjson,
  996. ddrescue, dhcp, ffmpeg, gerbera, glibmm, gpsd, gst-ffmpeg,
  997. intel-microcode, jasper, keepalived, kismet, libcpprestsdk,
  998. libcurl, libssh2, libupnp18, luarocks, mono-gtksharp3, opus,
  999. postgresql, pcsc-lite, python, tslib, webkitgtk,
  1000. wpebackend-fdo, wpewebkit
  1001. 2019.05-rc2, released May 15th, 2019
  1002. Fixes all over the tree.
  1003. Updated/fixed packages: bind, bullet, ca-certificates,
  1004. collectd, cracklib, dhcp, gdb, libinput, libtorrent-rasterbar,
  1005. linknx, lynx, mono, netsurf, optee-os, postgresql, qt5enginio,
  1006. qt5multimedia, rpm, samba4, sqlite, strace, uclibc, woff2
  1007. Issues resolved (http://bugs.uclibc.org):
  1008. #11841: grub-efi.cfg not used when building EFI disk image
  1009. 2019.05-rc1, Released May 8th, 2019
  1010. Fixes all over the tree and new features.
  1011. Architecture: Andes 32-bit (nds32) support added.
  1012. Only build host-lzip / host-xz when really needed by packages,
  1013. not just when not available on the build host.
  1014. Toolchain: Glibc bumped to 2.29, musl bumped to 1.1.22,
  1015. binutils 2.32 added, 2.28/2.29 removed, default changed to
  1016. 2.31.1.
  1017. fs: Set FAKEROOTDONTTRYCHOWN environment variable to not
  1018. forward {f,l,}chown calls to libc when running under fakeroot
  1019. to fix issues when building in restricted environments
  1020. (E.G. user namespace with bubblewrap).
  1021. Linux: Also build default make target to ensure extra files
  1022. like the gdb scripts enabled by CONFIG_GDB_SCRIPTS are also
  1023. built. Notice: This may mean that extra host utilities like
  1024. uboot-mkimage are needed.
  1025. Infrastructure: show-info and <pkg>-show-info make targets
  1026. added to output package metadata in JSON format for external
  1027. use.
  1028. pkg-generic: Only tweak .la files needing it to ensure they
  1029. are not included in subsequent package file lists.
  1030. test-pkg: Generate a basic package config if none is
  1031. specified.
  1032. Gettext-tiny package added as an lightweight replacement for
  1033. GNU gettext for situations where NLS support is not needed.
  1034. New defconfigs: Andes AE3XX, Freescale imx8mpico / imx8qxpmek
  1035. / T2080 QDS RDB, Licheepi zero, Orangepi R1
  1036. Removed defconfigs: Olimx A20 Olinuxino Lime legacy
  1037. New packages: bats-core, bayer2rgb-neon, brickd, cog, dacapo,
  1038. enet, gettext-tiny, gli, gst1-plugins-bayer2rgb-neon,
  1039. imx-sc-firmware, intel-mediadriver, intel-mediasdk, libcamera,
  1040. libhtp, libp11, libwpe, lua-binaryheap, lua-gd, lua-lunitx,
  1041. mender-artifact, most, oniguruma, openjdk, openjdk-bin,
  1042. opensbi, optee-benchmark, optee-client, optee-examples,
  1043. optee-os, optee-test, paho-mqtt-cpp, python-aioblescan,
  1044. python-aioconsole, python-aiohttp-cors, python-aiomonitor,
  1045. python-backcall, python-jedi, python-parso, python-pyjwt,
  1046. python-terminaltables, suricata, tpm2-totp, uftp,
  1047. wpebackend-fdo, wpewebkit
  1048. Removed packages: libump, lunit, sunxi-mali
  1049. Issues resolved (http://bugs.uclibc.org):
  1050. #11716: Typo on website, saying latest release is 2018.2.11
  1051. #11756: package/syslinux: MBR's don't fit because of binutils..
  1052. #11761: Building custom kernel 5.1-rc3 or later breaks on objtool
  1053. #11816: Only selected coreutils binaries are installed
  1054. 2019.02.11, released April 9th, 2020
  1055. Important / security related fixes.
  1056. core: Fix compatibility with make 4.3+. Also fixup /lib
  1057. references in libtool .la files, similar to how it is done for
  1058. /usr/*.
  1059. toolchain: Fix kernel headers validation check for external
  1060. toolchains.
  1061. Updated/fixed packages: barebox-aux, bluez5_utils, busybox,
  1062. civetweb, collectd, ffmpeg, gcc, gnutls, gvfs, haproxy,
  1063. hiredis, kmscube, libical, libopenssl, libsndfile,
  1064. linux-tools, ntp, php, pure-ftpd, screen, sysdig, tor,
  1065. util-linux, vala, vlc, xserver_xorg-server
  1066. Issues resolved (http://bugs.uclibc.org):
  1067. #12746: "sysdig" package description points to http://sysdig.org, ..
  1068. 2019.02.10, released March 16th, 2020
  1069. Important / security related fixes.
  1070. Core: Ensure package-file-lists data is correct after
  1071. incremental builds as well.
  1072. Fix a race condition related to creating the output/staging
  1073. symlink on systems with coreutils < 8.27.
  1074. Br2-external: Fix compatibility with make 4.3+
  1075. Util-linux: Ensure that hwclock is built without GPLv3
  1076. code. Notice that builds with hwclock has contained
  1077. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  1078. Updated/fixed packages: armadillo, at, binutils, blktrace,
  1079. bootstrap, busybox, cairo, cups, czmq, dnsmasq,
  1080. docker-containerd, dovecot, dovecot-pigeonhole, e2fsprogs,
  1081. eudev, exim, exiv2, fbgrab, grep, gst1-validate, guile,
  1082. imagemagick, jhead, kvm-unit-tests, lapack, libcgroup,
  1083. libftdi1, libjpeg, libsigrok, libsndfile, libssh2, libsvgtiny,
  1084. libvncserver, libvorbis, libxml2, libxslt, linux, lz4,
  1085. mariadb, mbedtls, meson, mfgtools, mongoose, ncurses, ntfs-3g,
  1086. opencv3, openjpeg, openswan, openvmtools, patch, php,
  1087. postgresql, pppd, proftpd, pure-ftpd, python-django,
  1088. python-pyqt5, python3, qemu, qt5base, qt5webengine, qwt,
  1089. rdesktop, ruby, runc, samba4, shellinabox, smartmontools,
  1090. sqlcipher, squid, swupdate, sysklogd, taglib, thrift,
  1091. ti-cgt-pru, uboot, util-linux, vorbis-tools, webkitgtk,
  1092. wireshark, xen, xserver_xorg-server, zeromq, zsh
  1093. Issues resolved (http://bugs.uclibc.org):
  1094. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  1095. #12331: meson issue
  1096. #12461: libglib2 build files with deep directory structure
  1097. #12606: fbgrab location has changed
  1098. 2019.02.9, released January 12th, 2020
  1099. Important / security related fixes.
  1100. pkg-python infrastructure: Ensure correct compiler and linker
  1101. flags are used for compiled code
  1102. utils/scanpypi: Remind users to update DEVELOPERS
  1103. Updated/fixed packages: busybox, cc-tool, cpio, cups, dante,
  1104. dillo, docker-cli, docker-containerd, docker-engine, easy-rsa,
  1105. ecryptfs-utils, efl, git, glibc, gnupg2, gst1-plugins-bad,
  1106. kf5-kcoreaddons, libarchive, libgit2, libkrb5, librsvg,
  1107. libssh, libtomcrypt, libuio, lirc-tools, lvm2,
  1108. matchbox-desktop, nodejs, ntp, opencv3, openpowerlink,
  1109. python-django, python-ecdsa, python-pyasn-modules,
  1110. python-pyqt5, python-subprocess32, python3, qpdf, runc, rygel,
  1111. samba4, sdl2, wavpack, xserver_xorg-server, zip
  1112. Issues resolved (http://bugs.uclibc.org):
  1113. #12121: PyQt5.QtSerialPort and other modules not being built
  1114. 2019.02.8, released December 7th, 2019
  1115. Important / security related fixes.
  1116. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  1117. <pkg>_DL_OPTS by default, just like it is done for a number of
  1118. other package variables
  1119. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  1120. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  1121. the (rare) case where the .py files are needed at runtime
  1122. rather than .pyc.
  1123. Fix <pkg>-reconfigure handling for packages using the kconfig
  1124. infrastructure.
  1125. Toolchain: ensure external toolchain kernel headers version
  1126. check correctly stop the build on mismatch
  1127. Deconfigs: beaglebone: fix boot issue
  1128. Updated/fixed packages: am33x-cm3, asterisk, bind, chrony,
  1129. clamav, collectd, connman, faifa, gob2, haproxy,
  1130. intel-microcode, ipsec-tools, jasper, jpeg-turbo, kodi,
  1131. kvm-unit-tests, libftdi, libftdi1, libnss, libstrophe,
  1132. libsvgtiny, lvm2, lzma, mariadb, minicom, neardal, nodejs,
  1133. opencv3, openvmtools, oracle-mysql, perl-gdgraph,
  1134. perl-gdtextutil, php, postgresql, prosody, python-django,
  1135. rabbitmq-c, rauc, redis, rpcbind, socat, spice,
  1136. spice-protocol, tftpd, tiff, webkitgtk
  1137. New packages: libmspack
  1138. Issues resolved (http://bugs.uclibc.org):
  1139. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  1140. #12171: Python-opencv needs config.py and config-3.7.py to run..
  1141. #12211: host-nodejs 10.15.3 package fail to build
  1142. #12316: tzdata fails to install with empty "default local time"
  1143. 2019.02.7, Released November 10th, 2019
  1144. Important / security related fixes.
  1145. support/testing: use a kernel with HW_RANDOM_VIRTIO to work
  1146. around issues with lack of entrophy
  1147. Toolchain: Also copy libssp.so for external toolchains if SSP
  1148. is enabled to handle toolchains providing SSP support in
  1149. libssp rather than in the C library
  1150. Download: Also use the package download method for extra
  1151. downloads from the same site, so it does not get confused by
  1152. URLs containing '+'
  1153. Fakeroot now works correctly under Microsoft Windows 10
  1154. Services for Linux, which does not provide SYSV IPC support
  1155. utils/test-pkg: ensure to exit with an error upon failure
  1156. Updated/fixed packages: asterisk, azmq, cups-filters,
  1157. domoticz, duma, elf2flt, eudev, exfat, exfat-utils, fakeroot,
  1158. file, freerdp, gd, ghostscript, go, gvfs, intel-microcode,
  1159. kvm-unit-tests, libarchive, libnspr, libnss, libopenssl,
  1160. libpcap, libpciaccess, librsvg, libseccomp, libsigrok,
  1161. libtorrent, libunwind, linux-tools, lua-sdl2, lxc, minizip,
  1162. mjpegtools, mongoose, php, python, python-pysnmp-apps,
  1163. python3, qemu, qt5base, ruby, safeclib, samba4, sdl_mixer,
  1164. sox, sudo, systemd, tcpdump, unscd, util-lkinux, vtun, xvisor,
  1165. yaffs2utils
  1166. Issues resolved (http://bugs.uclibc.org):
  1167. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  1168. #12261: sudo versions prior to 1.8.28 are affected
  1169. 2019.02.6, Released October 3rd, 2019
  1170. Important / security related fixes.
  1171. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  1172. Use default console settings
  1173. Dependencies: Ensure host has JSON::PP perl module installed
  1174. if webkitgtk/wpewebkit packages are enabled as it is needed
  1175. during their build process.
  1176. Toolchain: Generate check-headers program under BUILD_DIR
  1177. rather than /tmp to fix issues with distributions mounting
  1178. /tmp noexec.
  1179. Updated/fixed packages: asterisk, augeas, bind, bwm-ng, cups,
  1180. cups-filters, docker-cli, docker-engine, docker-proxy,
  1181. dropbear, e2fsprogs, eudev, exim, expat, gcc, go, ifplugd,
  1182. haveged, iptables, joe, kf5-extra-cmake-modules,
  1183. kf5-modemmanager-qt, kf5-networkmanager-qt, libcurl,
  1184. libgcrypt, libgpg-error, libnftl, libnspr, libnss, libopenssl,
  1185. luksmeta, mariadb, mbedtls, mongodb, mosquitto, ncurses,
  1186. nfs-utils, nghttp2, nodejs, openvmtools, php, protobuf, putty,
  1187. qemu, qt5base, samba4, swupdate, systemd-bootchart, thttpd,
  1188. uclibc, unzip, util-linux, wireshark
  1189. Issues resolved (http://bugs.uclibc.org):
  1190. #10806: Allow nfs-utils to use ipv6
  1191. #11781: mariadb build error
  1192. #12031: Build of cups-filters fails while linking, apparently due..
  1193. #12141: eudev package is missing "render" and "kvm" groups
  1194. #12181: dropbear: norootlogin (-w) no longer works when PAM is enabled
  1195. #12241: Permission denied while running "make"
  1196. 2019.02.5, Released September 2nd, 2019
  1197. Important / security related fixes.
  1198. Filesystems: Pass extra pax options to tar for binary
  1199. reproducibility.
  1200. Updated/fixed packages: apache, arm-trusted-firmware,
  1201. asterisk, atk, autofs, batctl, batman-adv, berkeleydb, brotli,
  1202. busybox, bzip2, clamav, cloop, cmake, collectd, connman-gtk,
  1203. cryptopp, dahdi-linux, dahdi-tools, daq, dehydrated, dovecot,
  1204. dovecot-pigeonhole,, elfutils, evtest, exim, expect, giflib,
  1205. git, glib-networking, glibc, gnupg2, gnutls, go,
  1206. gst1-rtsp-server, gtkperf, gupnp-tools, gvfs, imagemagick,
  1207. imx-uuc, intel-microcode, json-glib, lftp, libbsd, libcurl,
  1208. libgit2, libgtk3, libmodplug, libnss, libpri, libshout,
  1209. libss7, libssh2, libvips, libxcb, linux-headers, mdadm,
  1210. mesa3d, metacity, mpg123, mosquitto, musl, nginx, openblas,
  1211. opencv3, openldap, openvmtools, pcmanfm, php, pigpio,
  1212. postgresql, prboom, proftpd, proj, python, python-django,
  1213. python-idna, python-numpy, python-urllib3, python3, qemu, qt5,
  1214. qt5base, qt5enginio, quagga, rygel, squid, subversion,
  1215. tcpreplay, unzip, vlc, vte, webkitgtk, weston, wireless-regdb,
  1216. xen, xfont_font-util, xlib_libICE, xlib_libXfont,
  1217. xlib_libXfont2, yad, zeromq
  1218. Issues resolved (http://bugs.uclibc.org):
  1219. #11741: pigpio does not build host-pigpio
  1220. #11876: automount using host mount/umount
  1221. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  1222. #11921: dahdi fails to build
  1223. #11961: libpri build failure
  1224. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  1225. #12106: daq: build fails if libdumbnet-dev is installed in the host
  1226. #12126: vc4 has neon as hard dependency
  1227. 2019.02.4, Released July 10th, 2019
  1228. Important / security related fixes.
  1229. arch: x86: Fix typo breaking 'core-avx2' variant, add Westmere
  1230. variant.
  1231. linux: Workaround -Werror related build failure on powerpc,
  1232. by forcing CONFIG_PPC_DISABLE_WERROR on.
  1233. support/testing: Emulate a machine with 256MB RAM to fix
  1234. issues with certain tests running out of memory.
  1235. test-pkg: Correct long option handling and clean output dir
  1236. after a successful build to save disk space.
  1237. Ensure custom <pkg>_OVERRIDE_SRCDIR_RSYNC_EXCLUSIONS are
  1238. passed before the standard exclusions so they are not ignored
  1239. by rsync when using override-srcdir.
  1240. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  1241. partition is available before mounting.
  1242. Updated/fixed packages: barebox, bzip2, davfs2, dbus, dialog,
  1243. docker-cli, docker-engine, expat, faad2, ffmpeg, freeswitch,
  1244. gerbera, haveged, irssi, libcdadio, libgit2, libglib2,
  1245. libsecret, libvncserver, lmbench, logrotate, mariadb, meson,
  1246. mongoose, monit, mpd, openblas, php, postgresql, psplash,
  1247. python, python-django, python3, qt5base, samba4, taglib,
  1248. tvheadend, vlc, webkitgtk, xserver_xorg-server, znc
  1249. 2019.02.3, Released June 7th, 2019
  1250. Important / security related fixes.
  1251. Infra: pkg-config: Use a dedicated timestamp file rather than
  1252. .config as that gets touched by linux-4.19+, causing repeated
  1253. builds.
  1254. check-bin-arch: Also ignore /usr/lib/grub to support merged
  1255. /usr setups, similar to how /lib/grub is ignored.
  1256. gnuconfig/config.sub: Add C-SKY architecture support.
  1257. Updated/fixed packages: assimp, atftp, atop, botan, busybox,
  1258. ca-certificates, chocolate-doom, cjson, coreutils, cracklib,
  1259. ddrescue, dhcp, docker-cli, docker-containerd, docker-engine,
  1260. dosfstools, dovecot, dovecot-pigeonhole, dropbear, exim,
  1261. ffmpeg, flare-engine, gcc, gdb, gerbera, glibmm, go, gpsd,
  1262. gst-ffmpeg, gst1-plugins-bad, gst1-plugins-base, imagemagick,
  1263. intel-microcode, jasper, kf5-kcoreaddons, kismet, libcurl,
  1264. libglib2, libnss, libopenssl, libsigrok, libssh2, libupnp18,
  1265. linuxptp, luajit, lynx, matchbox-panel, mender,
  1266. netcat-openbsd, netsurf, nfs-utils, opus, orc, owfs,
  1267. pcsc-lite, php, popt, postgresql, python, python-cython,
  1268. python-django, python-ply, qt5enginio, rpm, runc, samba4,
  1269. sqlite, subversion, supertux, systemd, tslib, uclibc,
  1270. v4l2loopback, webkitgtk, woff2
  1271. Issues resolved (http://bugs.uclibc.org):
  1272. #11816: Only selected coreutils binaries are installed
  1273. #11841: grub-efi.cfg not used when building EFI disk image
  1274. #11911: systemd v240 memory leak in systemd-journald
  1275. 2019.02.2, Released April 29th, 2019
  1276. Important / security related fixes.
  1277. Only build host-lzip / host-xz when really needed by packages,
  1278. not just when not available on the build host.
  1279. fs: Set FAKEROOTDONTTRYCHOWN environment variable to not
  1280. forward {f,l,}chown calls to libc when running under fakeroot
  1281. to fix issues when building in restricted environments
  1282. (E.G. user namespace with bubblewrap).
  1283. Linux: Also build default make target to ensure extra files
  1284. like the gdb scripts enabled by CONFIG_GDB_SCRIPTS are also
  1285. built. Notice: This may mean that extra host utilities like
  1286. uboot-mkimage are needed.
  1287. Defconfigs: ASUS tinker and Amarula vyasa rk3822: Support
  1288. larger kernel images, Atmel SAM5D27, SAM5D2,3,4 xplained:
  1289. Increase rootfs size to fit utilities, Raspberry Pi 64bit:
  1290. Include overlays in sdcard image
  1291. Updated/fixed packages: android-tools, apache, bind, binutils,
  1292. busybox, civetweb, cjson, copas, davfs2, docker-cli,
  1293. docker-containerd, docker-engine, dovecot, dovecot-pigeonhole,
  1294. freerdp, gerbera, ghostscript, git, gnutls, go, gst-omx,
  1295. gst1-plugins-base, gst1-plugins-ugly, haproxy, hostapd,
  1296. ipsec-tools, libfreefare, libfuse, libkrb5, libpng, libxml2,
  1297. libxslt, linknx, linux, linux-firmware, linux-tools, live555,
  1298. lldp, lrzsz, lynx, madplay, make, minicom, mongodb, msmtp,
  1299. musl, mutt, neon, netsnmp, numactl, opus, perl, php,
  1300. postgresql, pure-ftpd, python-urllib3, python3, qt5base,
  1301. rapidxml, rpm, rsyslog, ruby, runc, samba4, sane-backends,
  1302. softether, stunnel, sysklogd, syslinux, syslog-ng,
  1303. systemd-bootchart, thttpd, thrift, tiff, tor, tpm2-tools,
  1304. tpm2-tss, webkitgtk, yaffs2utils, wget, wpa_supplicant, wsapi,
  1305. xapp_xfd, xapp_xload, xlib_libXpm, xserver_xorg-server, xz,
  1306. znc
  1307. Issues resolved (http://bugs.uclibc.org):
  1308. #11756: package/syslinux: MBR's don't fit because of binutils..
  1309. #11761: Building custom kernel 5.1-rc3 or later breaks on objtool
  1310. 2019.02.1, Released March 29th, 2019
  1311. Important / security related fixes.
  1312. pkg-generic: Only tweak .la files needing it to ensure they
  1313. are not included in subsequent package file lists.
  1314. test-pkg: Generate a basic package config if none is
  1315. specified.
  1316. Updated/fixed packages: asterisk, avahi, bash, beecrypt,
  1317. binutils, busybox, clamav, cups, efl, eigen, fetchmail, file,
  1318. flashrom, fltk, gerbera, git, glibc, gnuradio, go,
  1319. gst-plugins-bad, intel-gmmlib, jq, kexec, kf5-modemmanager-qt,
  1320. leveldb, libcurl, libdrm, libftdi1, libglib2, libiio, libpcap,
  1321. libseccomp, libssh2, log4cplus, lvm2, mariadb, mender,
  1322. mongodb, mosquitto, musl, nodejs, ntp, openjpeg, owfs, php,
  1323. pure-ftpd, putty, python-aiojobs, qt5webkit, rdesktop, samba4,
  1324. sunxi-tools, supertux, swupdate, tpm2-abrmd, tpm2-tss,
  1325. wavemon, wireshark, vsftpd, xapp_xdm, xen,
  1326. xdriver_xf86-video-fbdev, xlib_libXdmcp
  1327. Issues resolved (http://bugs.uclibc.org):
  1328. #11716: Typo on website, saying latest release is 2018.2.11
  1329. 2019.02, released March 4th, 2019
  1330. Minor fixes.
  1331. Libressl support added for Qt 5.6 as a replacement for
  1332. openssl, as 5.6 is not compatible with openssl 1.1.x.
  1333. Updated/fixed packages: cutelyst, devmem2, gqrx,
  1334. gst-plugins-bad, libraw, libsoxr, qt5base, runc, systemd, tor
  1335. 2019.02-rc3, released March 1st, 2019
  1336. Fixes all over the tree.
  1337. Openssl support dropped from Qt 5.6, as it isn't compatible
  1338. with openssl 1.1.x.
  1339. Toolchain: GCC 8.x updated to 8.3.0, fixing a number of
  1340. issues.
  1341. Dependencies: Require CMake 3.8 or newer to fix compilation
  1342. issue with certain packages. If not available, host-cmake will
  1343. instead be built.
  1344. Printvars: Fix performance regression since 2018.02
  1345. Scanypi: Correctly handle underscores in python package names.
  1346. Updated/fixed packages: botan, clamav, cryptopp, i2pd,
  1347. ibrcommon, iproute2, libcpprestsdk, libssh, lua-curl,
  1348. luaexpat, qt5base, runc, stress-ng, syslinux, systemd,
  1349. upmpdcli, zbar
  1350. Issues resolved (http://bugs.uclibc.org):
  1351. #9966: util-linux-2.30/.stamp_built' failed
  1352. #11696: possible typo in board/pc/post-build.sh
  1353. 2019.02-rc2, released February 23th, 2019
  1354. Fixes all over the tree.
  1355. Removed zynq_zybo defconfig, as it hasn't seen any update
  1356. since it was added in 2016, and uses a U-Boot version not
  1357. compatible with openssl-1.1.x.
  1358. Linux: Ignore user supplied downloadable hashes, as no hash
  1359. checksums are available for those.
  1360. Updated/fixed packages: bind, cryptopp, docker-containerd,
  1361. dtc, efivar, gdb, imagemagick, ipmiutil, libcpprestsdk,
  1362. libcurl, libgpiod, libid3tag, libv4l, log4cplus, luvi,
  1363. madplay, mender, mosquitto, poco, postgresql, proftpd,
  1364. pulseaudio, python-django, qemu, qt5base, qwt, rabbitmq-c,
  1365. reaver, safeclip, stress-ng, swupdate, syslog-ng, systemd,
  1366. tor, unzip, xenomai
  1367. Issues resolved (http://bugs.uclibc.org):
  1368. #11501: compile sdl2 with enable wayland
  1369. #11681: .. unable to initialize decompress status for section..
  1370. 2019.02-rc1, released February 13th, 2019
  1371. Fixes all over the tree and new features.
  1372. Dependencies:
  1373. Require Python >= 2.7 as it is needed for E.G. building
  1374. libglib2.
  1375. Ensure GNU gzip is used for reproducible tarballs (instead of
  1376. pigz)
  1377. Infrastucture:
  1378. Ensure the PLATFORM and OS environment variables are not set,
  1379. as they cause build issues for some packages.
  1380. The package list infrastructure now correctly handles packages
  1381. installing files with old mtime.
  1382. Add a config option to force all optional host utilities to be
  1383. built, even if suitable versions are available on the build
  1384. machine.
  1385. graph-build-time: Also show time spent downloading
  1386. Download: fixes for SSH/SCP support
  1387. Ensure user provided permissions override permissions from
  1388. packages.
  1389. SDK: Fix handling of relative symlinks (targets starting with
  1390. '.' or '..')
  1391. BR2_SYSTEM_DEFAULT_PATH setting to customize the default path
  1392. for processes.
  1393. The custom skeleton logic will now populate the needed /bin,
  1394. /lib, /sbin directories/symlinks if not present. Merged /usr
  1395. can now be used with a custom skeleton.
  1396. Rootfs overlays can now override symbolic links from
  1397. packages. This was disabled to ensure the correct symbolic
  1398. links are present when merged /usr is used. Instead validate
  1399. that the rootfs overlays do not include invalid /bin, /sbin
  1400. and /lib entries.
  1401. The waf infrastructure now support the <pkg>_SUBDIR variable,
  1402. similar to the other package types.
  1403. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  1404. Various improvements to the meson infrastructure.
  1405. Luarocks: A Buildroot addon has been added to automate
  1406. creating a Buildroot package from luarocks, similar to
  1407. scancpan and scanpypi.
  1408. scanpypi: protect against zip-slip vulnerability in zip/tar
  1409. handling
  1410. check-package: fix Python 3 support
  1411. get-developers: Fix behaviour when called from elsewhere than
  1412. the toplevel directory.
  1413. pkg-stats: Show latest upstream version of each package, based
  1414. on data from release-monitoring.org
  1415. kconfig: Fix for make linux-menuconfig / uboot-menuconfig from
  1416. a clean tree when ccache is enabled.
  1417. Default to sha256 password encoding, drop md5 support.
  1418. Architecture:
  1419. Support for RISC-V 32bit architecture, ARM A55, 75 and Saphira
  1420. variants, MIPS support for mips32r3, mips64r3 and Marvell
  1421. Octeon II/III variants.
  1422. Toolchain:
  1423. ARC toolchain 2018.09, ARM 8.2-2018.11, Codescape IMG/MTI MIPS
  1424. 2018.09-02, MUSL 1.1.21, GCC 6.5.0 / 7.4.0, GDB 8.2.1
  1425. Packages:
  1426. openssl: Bump to 1.1.1x series, bringing TLSv1.3 support and
  1427. long term support.
  1428. fftw: Split into fftw-{single,double,long-double,quad}
  1429. packages for the different data precision options.
  1430. libcurl: Now has explicit TLS backend selection options.
  1431. linux: Support building device tree blobs with the -@ option
  1432. for device tree overlays.
  1433. weston: The weston-imx i.MX variant is now used when
  1434. imx-gpu-viv is enabled
  1435. pkgconf: Update to 1.5.3, which brings support for
  1436. --define-prefix (used by GStreamer)
  1437. Add host-python3-setuptools package to handle host python
  1438. packages needing python3 with setuptools support.
  1439. New defconfigs: Aarch64 EFI, Orangepi one plus, Orangepi lite
  1440. 2, QEMU RISC-V 32bit virt, Rock64
  1441. New packages: brcm-patchram-plus, clinfo, cunit, docker-cli,
  1442. erlang-p1-eimp, exempi, fail2ban, fftw-double,
  1443. fftw-double-long, fftw-quad, fftw-single, gerbera, grpc,
  1444. gst1-shark, intel-gmmlib, iwd, kf5-kcoreaddons, libeastl,
  1445. libpackagekite, libtorrent-rasterbar, lua-std-debug,
  1446. lua-std-normalize, mini-snmpd, netsurf, pamtester, pcm-tools,
  1447. python-aiodns, python-aiohttp, python-aiohttp-jinja2,
  1448. python-aiohttp-remotes, python-aiohttp-security,
  1449. python-aiohttp-session, python-aiohttpd-sse, python-aiojobs,
  1450. python-cchardet, python-pycares, python-sentry-sdk,
  1451. python-wtforms, python3-setuptools, rcw, rtc-tools, shim,
  1452. utp_com, vmtouch, websocketpp
  1453. Removed packages: fftw, lua 5.2.x, luacrypto, perl-time-hires,
  1454. python-pyqt, qt, qtuio, tn5250
  1455. Issues resolved (http://bugs.uclibc.org):
  1456. #10851: Patch to handle numpad Enter key properly
  1457. #11066: x11r7 X11 S40xorg leads to a black screen on QEMU x86..
  1458. #11126: Bash Shell Programming using Buildroot
  1459. #11426: pps-tools bash dependency
  1460. #11476: stdio2.h error invalid use of __builtin_va_arg_pack
  1461. #11536: dt-utils building fails with glibc 2.28
  1462. #11546: open-vm-tools with glibc 2.28
  1463. #11566: Fix init script
  1464. #11576: Unable to start apache with event MPM on raspberry pi 3
  1465. #11591: [pkgconf 1.5.3] xserver OpenGL support is missing
  1466. #11606: libjpeg has no Config.in
  1467. #11616: 2018.02.09 fails to build libzlib with full RELRO..
  1468. #11656: Custom device tree and u-boot boot.scr not integrated..
  1469. #11666: Touchscreen with (Py)Qt5 should use tslib instead of evdev
  1470. 2018.11.4, Released March 28th, 2019
  1471. Important / security related fixes.
  1472. Updated/fixed packages: avahi, beecrypt, binutils, botan,
  1473. busybox, clamav, cups, devmem2, efl, fetchmail, file, fltk,
  1474. gcc, gdb, git, go, gst-plugins-bad, iproute2, jq,
  1475. kf5-modemmanager-qt, leveldb, libopenssl, libraw, libseccomp,
  1476. libsoxr, libssh2, mariadb, mosquitto, nodejs, ntp, openjpeg,
  1477. perl, php, putty, qt5webkit, rdesktop, runc, samba4, swupdate,
  1478. systemd, tor, vsftpd, wireshark, xapp_xdm, xen, xlib_libXdmcp
  1479. 2018.11.3, Released February 23th, 2019
  1480. Important / security related fixes.
  1481. Ensure the PLATFORM and OS environment variables are not set,
  1482. as they cause build issues for some packages.
  1483. The package list infrastructure now correctly handles packages
  1484. installing files with old mtime.
  1485. Linux: Skip hash checks for user supplied downloadable
  1486. patches, as no hash checksums are available for those.
  1487. scanpypi: protect against zip-slip vulnerability in zip/tar
  1488. handling
  1489. Download: fixes for SSH/SCP support
  1490. SDK: Fix handling of relative symlinks (targets starting with
  1491. '.' or '..')
  1492. Updated/fixed packages: bind, dhcpcd, docker-compose,
  1493. docker-containerd, docker-engine, dovecot, dovecot-pigeonhole,
  1494. dtc, efivar, ghostscript, gnuradio, imagemagick, jpeg-turbo,
  1495. libarchive, libb64, libcurl, libgeotiff, libgpiod, libid3tag,
  1496. libupnp18, log4cplus, madplay, meson, mosquitto, openssh, php,
  1497. poco, postgresql, proftpd, pulseaudio, python, python-django,
  1498. python3, qt5base, reaver, runc, sg3_utils, sqlcipher,
  1499. swupdate, systemd, unzip, webkitgtk, xenomai
  1500. 2018.11.2, Released January 30th, 2019
  1501. Important / security related fixes.
  1502. Defconfigs: Fixes for imx6slevk, imx7dsabresd, imx8mqevk, Lego
  1503. EV3, QEMU AArch64-virt
  1504. Download: Fix scp download handling
  1505. check-package: fix Python 3 support
  1506. get-developers: Fix behaviour when called from elsewhere than
  1507. the toplevel directory.
  1508. kconfig: Fix for make linux-menuconfig / uboot-menuconfig from
  1509. a clean tree when ccache is enabled.
  1510. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  1511. Updated/fixed packages: acpica, apache, apr, avrdude, cargo,
  1512. cc-tool, dash, dhcpdump, dmalloc, docker-containerd, efivar,
  1513. fwts, glibc, gnuchess, gnupg2, go, leveldb, libarchive,
  1514. libassuan, libftdi1, libgpg-error, libhttpparser, libkcapi,
  1515. libmad, libsndfile, libsquish, liburiparser, libwebsock,
  1516. libxml2, lighttpd, llvm, lm-sensors, lua-msgpack-native, lxc,
  1517. mariadb, mbedtls, meson, mosquitto, netatalk, nodejs, odhcp6c,
  1518. openresolv, openssh, pango, patchelf, php, python-django,
  1519. python-numpy, python-pyyaml, rauc, rp-pppoe, s6-networking,
  1520. samba4, sdl_sound, shairport-sync, sqlite, subversion,
  1521. sunxi-cedarx, swupdate, systemd, tcpreplay, tekui, tmp2-abrmd,
  1522. tpm2-tools, tpm2-tss, udisks, unixodbc, usb_modeswitch,
  1523. webkitgtk, wireshark, wolfssl, xapp_rgb, xenomai, xerces
  1524. Issues resolved (http://bugs.uclibc.org):
  1525. #11576: Unable to start apache with event MPM on raspberry pi 3
  1526. 2018.11.1, Released December 20th, 2018
  1527. Important / security related fixes.
  1528. defconfigs: Fixes for bananapi m2 ultra, ci20
  1529. Download wrapper: Fix for urlencode handling
  1530. Updated/fixed packages: asterisk, docker-compose,
  1531. docker-engine, dt-utils, gnutls, go, grub, libbsd, libcurl,
  1532. libpgpme, libiscsi, liblo, libmpd, libopenssl, liboping,
  1533. libpam-tacplus, libpjsip, linux-firmware, liquid-dsp,
  1534. lua-cqueue, luvi, lxc, lynx, nginx, nodejs, openzwave, php,
  1535. pps-tools, proftpd, prosody, sdl2_net, squashfs, swupdate,
  1536. uclibc, vtu, webkitgtk, wine, xen
  1537. New packages: docker-cli
  1538. Issues resolved (http://bugs.uclibc.org):
  1539. #11426: pps-tools bash dependency
  1540. #11536: dt-utils building fails with glibc 2.28
  1541. 2018.11, Released December 1st, 2018
  1542. Minor fixes.
  1543. Updated/fixed packages: c-ares, quagga, squid
  1544. 2018.11-rc3, released November 30th, 2018
  1545. Fixes all over the tree.
  1546. Defconfigs: Fixes for Armadeus APF27, imx6sabre, Olimex A20
  1547. olinuxino lime legacy, Orangepi zero plus 2, PC, Riotboard.
  1548. graph-depends: Fix for package names starting with a non-alpha
  1549. character.
  1550. Updated/fixed packages: alsa-utils, botan, dante, domoticz,
  1551. dtc, freetype, gauche, gcc, gdb, ghostscript, glibc,
  1552. imx-usb-loader, libbsd, libid3tag, libkrb5, libmicrohttpd,
  1553. libopenssl, libsoxr, linux, motion, msgpack, mtd,
  1554. perl-net-ssleay, php, popt, python-numpy, qt5declarative,
  1555. samba4, shadowsocks-libev, stress-ng, systemd, usb_modeswitch,
  1556. webkitgtk, valgrind, weston, xfsprogs
  1557. 2018.11-rc2, released November 21th, 2018
  1558. Fixes all over the tree.
  1559. fs: Drop intermediate tarball from the filesystem handling to
  1560. fix an issue with xattrs handling related to fakeroot. Ensure
  1561. tarball target includes xattrs.
  1562. download: Fix confusion in git submodule handling if dl/ is a
  1563. symlink.
  1564. genrandconfig: Fix missing newline in BR2_WGET handling,
  1565. causing the following line to be ignored. This would affect
  1566. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  1567. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  1568. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  1569. show-build-order: Also include the dependencies of
  1570. rootfs-common.
  1571. Fix a number of build issues in packages for the recently
  1572. merged RISC-V architecture support.
  1573. Updated/fixed packages: dt-utils, easydbus, elfutils,
  1574. flare-engine, flatcc, glibc, gstreamer, gstreamer1, imx-uuc,
  1575. libassuan, libcorrect, libiscsi, libkrb5, libmicrohttpd,
  1576. libnftnl, libnspr, libnss, libsemanage, libsigsegv, libv4l,
  1577. ltp-testsuite, luv, luvi, make, ncmpc, netplug, openocd,
  1578. prosody, qemu, rpm, sconeserver, shadowsocks-libev,
  1579. supertuxcart, syslinux, systemd, trace-cmd, uclibc,
  1580. uclibc-ng-test, vtun, webkitgtk, weston, wireshark, xen,
  1581. xlib_libfontenc
  1582. Issues resolved (http://bugs.uclibc.org):
  1583. #11086: download/git submodule breaks on symlinked dl folder
  1584. #11216: Capabilities not applied to filesystem
  1585. 2018.11-rc1, released November 9th, 2018
  1586. Fixes all over the tree and new features.
  1587. Architecture: RISC-V support (64bit) added.
  1588. Toolchain: Glibc bumped to 2.28. Fortran support for external
  1589. toolchains. ARM (Linaro) toolchains updated to 8.2-2018.08.
  1590. Hardening flags (RELRO) are now handled by the toolchain
  1591. wrapper instead of explicitly through CFLAGS/LDFLAGS, fixing a
  1592. number of issues.
  1593. Filesystems: Support for creating btrfs and f2fs filesystems
  1594. added.
  1595. Add a number of patches to fix build errors for host utilities
  1596. on modern distributions using glibc-2.28.
  1597. mkusers: Ensure existing group members are preserved when a
  1598. group is reprocessed.
  1599. printvars: Fix issue with exceeding shell command line length
  1600. limits for certain setups.
  1601. Workaround added for incompatibility issues between host-dtc
  1602. and older U-Boot and Linux kernel versions.
  1603. Detect and reject build paths containing '@', as this confuses
  1604. a number of packages, including GCC.
  1605. utils/diffconfig: Make it work for (non-Buildroot) config
  1606. files not using the BR2_ prefix.
  1607. New defconfigs: Amarula a64-relic, Bananapi m2 ultra, Embest
  1608. riotboard, Hardkernel Odroid XU-4, QEMU riscv64-virt.
  1609. olimex_a20_olinuxion_lime_mali is renamed to _legacy.
  1610. OpenCL infrastructure support added, similar to how OpenGL is
  1611. handled.
  1612. Linux-headers: Support for kernel headers from a custom
  1613. tarball / git repo added.
  1614. New packages: bird, bluez5_utils-headers, btrfs-progs,
  1615. checksec, davici, duktape, ell, haproxy, libclc, libcorrect,
  1616. libopencl, libopenresolv, nss-myhostname,
  1617. perl-apache-logformat-compiler, perl-appconfig,
  1618. perl-astro-suntime, perl-class-inspector, perl-class-load,
  1619. perl-class-method-modifiers, perl-class-std,
  1620. perl-class-std-fast, perl-cookie-baker, perl-data-dump,
  1621. perl-data-optlist, perl-data-uuid, perl-data-manip,
  1622. perl-dbd-mysql, perl-dbi, perl-devel-globaldestruction,
  1623. perl-devel-stacktrace, perl-devel-stacktrace-ashtml,
  1624. perl-device-serialport, perl-dist-checkconflicts,
  1625. perl-exporter-tiny, perl-file-sharedir, perl-file-slurp,
  1626. perl-filesys-notify-simple, perl-hash-multivalue,
  1627. perl-http-entity-parser, perl-http-headers-fast,
  1628. perl-http-multipartparser, perl-io-interface,
  1629. perl-io-socket-multicast, perl-json-maybexs, perl-mime-tools,
  1630. perl-module-implementation, perl-module-runtime, perl-moo,
  1631. perl-number-bytes-human, perl-package-stash, perl-params-util,
  1632. perl-plack, perl-posix-strftime-compiler, perl-role-tiny,
  1633. perl-streams-buffered, perl-sub-exporter-progressive,
  1634. perl-sub-install, perl-sub-quote, perl-sys-cpu,
  1635. perl-sys-meminfo, perl-sys-mmap, perl-time-parsedate,
  1636. perl-type-tiny, perl-www-form-urlencoded, perl-x10, pigpio,
  1637. python-async-timeout, python-falcon, python-fire,
  1638. python-mimeparse, python-multidict, python-passlib,
  1639. python-pigpio, python-pip, python-ply, python-py,
  1640. python-pyasn1, python-pyasn1-modules, python-pycryptodomex,
  1641. python-pyhamcrest, python-pysmi, python-scapy, python-semver,
  1642. python-serial-asyncio, python-typing, python-uvloop,
  1643. pythonwrapt, python-yarl, python-zeroconf, riscv-pk, sedutil,
  1644. spandsp, tini, waffle, xapian
  1645. Removed packages: bootutils, dsp-tools, expedite, gst-dsp,
  1646. xloader
  1647. Issues resolved (http://bugs.uclibc.org):
  1648. #11116: Buildroot should set PYTHON_EGG_CACHE instead of writing ..
  1649. #11156: In python3 module 'socket' has no attribute 'AF_BLUETOOTH'
  1650. #11166: Erlang bad argument on valid uint64 when crosscompiled on..
  1651. #11206: zlib: fails to build with Linaro toolchain, BR2_RELRO_FULL..
  1652. #11241: ACPID shouldn't depend on BR2_x86_64 || BR2_i386
  1653. #11251: Util scanpypi failes when package change - to _ in tar file
  1654. #11266: qt5base-5.11.1 does not compile with musl, complains about..
  1655. #11286: python-rpi-gpio only should depend on BR2_arm || BR2_aarch64
  1656. #11321: Latest master fails to build readline with RELRO FULL
  1657. #11326: sysvinit fails to build in latest GIT master
  1658. #11331: Internal application no longer builds with latest GIT master
  1659. #11336: nfs-utils fails to build in latest GIT master
  1660. #11351: build root-2018-08, linaro aarch64 compile error
  1661. #11376: mdmon binary missing
  1662. #11391: Valgind availability on ARM
  1663. #11396: uboot environment image checksum invalid if target is big endian
  1664. #11421: GCC error message for ARM Cortex-A9/ARM.V7
  1665. #11451: Can't find libmpfr.so.4 when using external toolchain on ubuntu..
  1666. #11481: Docs: Is external.desc required?
  1667. 2018.08.4, Released December 20th, 2018
  1668. Important / security related fixes.
  1669. Defconfigs: Fixes for ci20, orangepi zero plus 2
  1670. Download wrapper: Fix for urlencode handling
  1671. Updated/fixed packages: c-ares, dante, docker-compose,
  1672. domoticz, freetype, ghostscript, gnutls, libcurl, libgpgme,
  1673. libid3tag, libiscsi, libmpd, libopenssl, liboping, libpjsip,
  1674. linux-firmware, liquid-dsp, luvi, lynx, msgpack, nginx,
  1675. nodejs, php, popt, pps-tools, prosody, python-numpy,
  1676. python-requests, samba4, sdl2_net, squashfs, swupdate,
  1677. systemd, uclibc, vte, webkitgtk, wine, xfsprogs
  1678. Issues resolved (http://bugs.uclibc.org):
  1679. #11426: pps-tools bash dependency
  1680. 2018.08.3, Released November 26th, 2018
  1681. Important / security related fixes.
  1682. fs: Drop intermediate tarball from the filesystem handling to
  1683. fix an issue with xattrs handling related to fakeroot. Ensure
  1684. tarball target includes xattrs.
  1685. download: Fix confusion in git submodule handling if dl/ is a
  1686. symlink.
  1687. toolchain: Only allow enabling stack protection on
  1688. architectures with control flow integrity (CFI) support. Only
  1689. allow FORTIFY_SOURCE support on gcc >= 6.
  1690. genrandconfig: Fix missing newline in BR2_WGET handling,
  1691. causing the following line to be ignored. This would affect
  1692. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  1693. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  1694. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  1695. show-build-order: Also include the dependencies of
  1696. rootfs-common.
  1697. Defconfigs: Fixes for Armadeus APF27, imx6sabre, Olimex A20
  1698. olinuxino lime legacy, Orangepi zero plus 2.
  1699. graph-depends: Fix for package names starting with a non-alpha
  1700. character.
  1701. Updated/fixed packages: attr, audit, bind, brotli, busybox,
  1702. dtc, easydbus, elfutils, flare-engine, flatcc, gauche, gcc,
  1703. giflib, gpsd, lcdproc, libcurl, libiscsi, libkcapi, libnfs,
  1704. libnspr, libnss, libsemanage, liburiparser, lighttpd,
  1705. lua-curl, mariadb, mmc, mosquitto, mysql, ncmpc, neardal,
  1706. netplug, network-manager, nfs-utils, nginx, openocd, openswan,
  1707. p11-kit, postgresql, prosody, qemu, qt, rpm, ruby, samba4,
  1708. squid, supertuxkart, systemd, tar, trace-cmd, traceroute,
  1709. twolame, uclibc, usb_modeswitch, vtun, webkitgtk, weston,
  1710. xdriver_xf86-video-geode, xlib_libfontenc, xserver_xorg-server
  1711. Issues resolved (http://bugs.uclibc.org):
  1712. #11086: download/git submodule breaks on symlinked dl folder
  1713. #11481: Docs: Is external.desc required?
  1714. 2018.08.2, Released October 25th, 2018
  1715. Important / security related fixes.
  1716. Workaround added for incompatibility issues between host-dtc
  1717. and older U-Boot and Linux kernel versions.
  1718. Detect and reject build paths containing '@', as this confuses
  1719. a number of packages, including GCC.
  1720. utils/get-developers: Add -e option for use with git
  1721. send-email.
  1722. utils/diffconfig: Make it work for (non-Buildroot) config
  1723. files not using the BR2_ prefix.
  1724. u-boot: Fix for environment image handling on big endian
  1725. systems.
  1726. Updated/fixed packages: binutils, ca-certificates,
  1727. cups-filters, dtc, erlang, file, freetype, gcc, git, gvfs,
  1728. jasper, leveldb, libarchive, libssh, live555, ljlinenoise,
  1729. mariadb, mongoose, netsnmp, nmap, nodejs, ntp, open-plc-utils,
  1730. poco, psmisc, ptpd2, python-enum34, qemu, qt, qt5base,
  1731. setools, spice, spice-protocol, tinc, ustr, wireshark,
  1732. Issues resolved (http://bugs.uclibc.org):
  1733. #11396: uboot environment image checksum invalid if target is big endian
  1734. 2018.08.1, Released October 7th, 2018
  1735. Important / security related fixes.
  1736. Add a number of patches to fix build errors for host utilities
  1737. on modern distributions using glibc-2.28.
  1738. mkusers: Ensure existing group members are preserved when a
  1739. group is reprocessed.
  1740. printvars: Fix issue with exceeding shell command line length
  1741. limits for certain setups.
  1742. Updated/fixed packages: acpid, android-tools, apache,
  1743. arp-scan, bandwidthd, bind, brltty, clamav, connman, cppcms,
  1744. domoticz, dtc, fio, gcc, gdb, ghostscript, gnupg, httpping,
  1745. igmpproxy, imlib2, ipsec-tools, libesmtp, libnfs, libxslt,
  1746. links, lua, mosquitto, nilfs-utils, ocrad, parted, php,
  1747. python-django, screen, shairport-sync, strongswan,
  1748. vboot-utils, webkitgtk, wireguard, x265 xen, xlib_libXdmcp,
  1749. xlib_libXfont, xlib_libXft, xlib_libxshmfence,
  1750. xutil_makedepend, zeromq
  1751. 2018.08, Released September 6th, 2018
  1752. Minor fixes.
  1753. Known issues:
  1754. - Glibc 2.28 on the build host breaks compilation of a number
  1755. of host packages. 2018.08 contains fixes for some of these
  1756. packages, but not all. Consider building on hosts (or in
  1757. containers) using older Glibc versions.
  1758. - host-dtc 1.4.7 breaks compilation of older U-Boot and Linux
  1759. kernel configurations using FDT/DTC. Consider updating the
  1760. Linux kernel to >= 4.17 and U-Boot to >= 2018.07 or
  1761. backporting commit 9130ba8846 (scripts/dtc: Update to
  1762. upstream version v1.4.6-9-gaadd0b65c987) for the Linux
  1763. kernel / commit db405d1980 for U-Boot.
  1764. Alternatively revert commit 7b929ddcf0 (dtc: bump version to
  1765. 1.4.7) and ensure your build host does not have the libfdt
  1766. development headers installed.
  1767. Updated/fixed packages: busybox, chipmunk, cutelyst,
  1768. domoticz, gcc, imagemagick, lcms2, libcurl, mediastreamer,
  1769. moarvm, php, qt, qt5virtualkeyboard, qt5webengine, screen,
  1770. sdl2, squashfs, uboot, xen
  1771. Issues resolved (http://bugs.uclibc.org):
  1772. #11261: ccache using wrong cached objects
  1773. #11276: Understanding the patch for kernel-4.9 and other..
  1774. 2018.08-rc3, Released August 31th, 2018
  1775. Fixes all over the tree.
  1776. linux: additional improvements to the flex / bison dependency
  1777. handling, use system provided variant if available. Ensure
  1778. toolchain is available when configuring for 4.18+ support.
  1779. Download: Fix handling of primary sites using file://
  1780. Toolchain: Correct external toolchain musl detection for
  1781. static toolchains.
  1782. Updated/fixed packages: aircrack-ng, bison, brltty, busybox,
  1783. cutelyst, dropbear, gr-osmosdr, i2c-tools, json-c, libconfuse,
  1784. libkcapi, libsoup, libssh, liburiparser, mbedtls, mender,
  1785. mesa3d, minicom, mjpegtools, mutt, openpowerlink, openssh,
  1786. oracle-mysql, php, postgresql, pv, qt5base, qt5quickcontrols,
  1787. rauc, shairport-sync, systemd, xlib_libX11, zeromq,
  1788. Issues resolved (http://bugs.uclibc.org):
  1789. #11091: BR2_PRIMARY_SITE doesn't work (wget is selected...
  1790. #11141: WF111 package no longer available
  1791. #11211: Internal compiler error: Killed (program cc1plus)..
  1792. #11236: util-linux fails to build on Travis CI when python..
  1793. #11246: Glibc 2.28 - fails to build host-bison and host-m4
  1794. #11256: Add python-falcon and python-mimeparse packages
  1795. 2018.08-rc2, Released August 20th, 2018
  1796. Fixes all over the tree.
  1797. pkg-kconfig: Support dependencies needed to run the
  1798. configurator, E.G. recent Linux kernel versions needing flex
  1799. and bison.
  1800. Defconfigs: ARM Juno: Bump ATF to fix a build
  1801. issue. Raspberrypi2: Bump rootfs size. Snps_archs38_vdk:
  1802. Correct /etc/inittab. Technologic ts7680: Correct genimage
  1803. configuration. Orange PI PC / Zero, Sheevaplug: Bump U-boot to
  1804. 2018.07 to fix build issue. Ensure host-openssl is pulled in
  1805. for kernel builds where needed.
  1806. Updated/fixed packages: aircrack-ng, bind, boost,
  1807. boot-wrapper-aarch64, bzip2, busybox, chrony, cryptsetup,
  1808. dahdi-tools, dbus, domoticz, eigen, ipsec-tools, libarchive,
  1809. libfuse, libgit2, libopenssl, libselinux, lighttpd, lvm2, m4,
  1810. makedevs, mariadb, mesa3d-headers, mono, ncmpc, ncurses,
  1811. nodejs, php, python-django, python-pyqt5, qt5base,
  1812. qt5serialbus, ruby, samba4, uboot-tools, uclibc, vlc,
  1813. waylandpp, wireless_tools, wireshark, wpa_supplicant, mtd,
  1814. xdriver_xf86-video-ati, xserver_xorg-server
  1815. Issues resolved (http://bugs.uclibc.org):
  1816. #10781: cryptsetup luksOpen container_file container causes..
  1817. #10996: bogus musl ARM toolchain
  1818. #11191: xattr and check-package issue
  1819. 2018.08-rc1, Released August 5th, 2018
  1820. Toolchain:
  1821. - add support for gcc 8.x, switch to gcc 7.x as the default
  1822. version
  1823. - add support for gdb 8.1, switch to gdb 8.0 as the default
  1824. and remove gdb 7.10/7.11
  1825. - add support for binutils 2.31
  1826. - NIOSII CodeSourcery toolchain updated
  1827. - Linaro AArch64 BE toolchain added, and other Linaro
  1828. toolchains updated
  1829. - Synopsys ARC pre-built toolchain updated
  1830. Architecture: add support for ARM Cortex-M7
  1831. Major updates:
  1832. - systemd bumped to 239
  1833. - Qt5 bumped to 5.11.1
  1834. - Rust bumped to 1.27
  1835. - GStreamer stack bumped to 1.14.2
  1836. - X.org server bumped to 1.20, and all X.org proto packages
  1837. replaced by the single xorgproto package
  1838. - i.MX6 support packages bumped to 6.2.4
  1839. - i.MX Vivante graphics version bumped to 6.2.4.p1.2,
  1840. adding support for Wayland and i.MX8MQ platforms
  1841. Linux: bumped to 4.17 by default.
  1842. Infrastructure: new package infrastructure added for packages
  1843. using the Meson build system
  1844. New packages: at-spi2-atk, at-spi2-core, capnproto, cmocka,
  1845. corkscrew, cutelyst, davfs2, flatcc, libidn2, libgit2,
  1846. libopusenc, mender, nghttp2, perl-convert-asn1, perl-crypt-blowfish,
  1847. perl-crypt-cbc, perl-digest-md5, perl-mime-base64-urlsafe,
  1848. perl-mojolicious-plugin-authentication, perl-net-ping,
  1849. perl-net-snmp, perl-net-ssh2, perl-net-telnet, pigz,
  1850. python-reentry, python-request-id, python-validators,
  1851. python-webob, shadowsocks-libev, speexdsp, xorgproto, wampcc
  1852. New defconfigs: NXP i.MX7D SDB, Boundary Devices Nitrogen 8M,
  1853. Olimex A10 OLinuxino, ZynqMP ZCU106
  1854. Removed packages: all xproto_* have been removed and replaced
  1855. by xorgproto
  1856. Issues resolved (http://bugs.uclibc.org):
  1857. #9411: MUSL build with RT Error relocating /lib/libgcc_s.so.1:
  1858. __cpu_indicator_init: symbol not found
  1859. #9921: lockfile module within python-daemon not available
  1860. #10341: gdb install of py files when using buildroot toolchain
  1861. includes build path
  1862. #10661: /etc/init.d/S29netplug starts multiple instances of netplugd
  1863. #10751: Missing dependency in pulseaudio package
  1864. #10811: kodi-17.6-Krypton does not compile for freescale_* devices
  1865. #10856: openblas on qemu_x86_64_defconfig fails with
  1866. "sgemm_kernel.o: No such file or directory"
  1867. #11056: Compiling a file that uses libdrm headers fails with:
  1868. fatal error: drm.h: No such file or directory
  1869. #11061: support/download: git version=master broken
  1870. #11071: Building postgresql package on Debian 9.4 x64 for armel target fails
  1871. #11076: Docker containerd installed to incorrect path
  1872. #11101: host-patchelf Endian Issue with relative RPATH
  1873. #11111: raspberry pi 3 b+: missing BSP for 64-bit kernel
  1874. #11121: statfs call corrupts memory struct statfs too small
  1875. #11181: Switching toolchain does not work
  1876. 2018.05.3, Released October 6th, 2018
  1877. Important / security related fixes.
  1878. Add a number of patches to fix build errors for host utilities
  1879. on modern distributions using glibc-2.28.
  1880. mkusers: Ensure existing group members are preserved when a
  1881. group is reprocessed.
  1882. printvars: Fix issue with exceeding shell command line length
  1883. limits for certain setups.
  1884. Updated/fixed packages: acpid, android-tools, apache,
  1885. arp-scan, bandwidthd, bind, bison, brltty, chipmunk, connman,
  1886. cppcms, fio, gcc, ghostscript, gnupg, httping, igmpproxy,
  1887. imagemagick, imlib2, ipsec-tools, lcm2, libcurl, libesmtp,
  1888. libnfs, libssh, libxslt, links, mediastreamer, minicom,
  1889. moarvm, nilfs-utils, ocrad, parted, php, postgresql, pv,
  1890. python-django, qt, qt5quickcontrols, qt5webengine, screen,
  1891. sdl2, shairport-sync, squashfs, strongswan, vboot-utils,
  1892. webkitgtk, wireguard, x265, xen, xlib_libXfont, xlib_libXft,
  1893. xlib_libxshmfence, zeromq
  1894. 2018.05.2, Released August 28th, 2018
  1895. Important / security related fixes.
  1896. Defconfigs: Raspberrypi2: Bump rootfs size, T7680: Fix
  1897. genimage.cfg issue, ARM Juno: Bump ATF to v1.3 to fix build
  1898. issue.
  1899. Updated/fixed packages: acl, attr, apache, bind,
  1900. boot-wrapper-aarch64, brltty, bzip2, chrony, crda, cryptsetup,
  1901. dahdi-tools, dmidecode, dropbear, eigen, ffmpeg, gawk, gcc,
  1902. ghostscript, gnutls, imx-gpu-viv, ipsec-tools, libarchive,
  1903. libfuse, libglib2, libopenssl, libselinux, libsoup, lighttpd,
  1904. linuxptp, lttng-modules, lttng-tools, lua-flu, lvm2, m4,
  1905. makedevs, mariadb, mbedtls, mesa3d-heders, mtd, ncurses,
  1906. nodejs, openssh, php, python-django, rauc, ruby, samba4,
  1907. stress-ng, ti-utils, uboot-tools, uclibc, vim, waylandpp,
  1908. wireless_tools, wireless-regdb, wireshark, wpa_supplicant,
  1909. xorriso, znc
  1910. Issues resolved (http://bugs.uclibc.org):
  1911. #10781: cryptsetup luksOpen container_file container causes..
  1912. #10986: Installing package attr when already supplied by..
  1913. #11191: xattr and check-package issue
  1914. 2018.05.1, Released July 20th, 2018
  1915. Important / security related fixes.
  1916. U-Boot: Ensure host version of ncurses is picked up and not
  1917. host-ncurses built by buildroot, as that otherwise causes
  1918. widechar/non-widechar conflicts and corrupted menuconfig
  1919. menus.
  1920. Linux: Enable CONFIG_PERF_EVENTS when perf is enabled.
  1921. Toolchain: ARC tools updated to arc-2018.03.
  1922. pkg-stats: Fix python 3.x compatibility.
  1923. dl-wrapper: Fix support for URIs containing '+', fix
  1924. no-check-hash for inferred site method.
  1925. Defconfigs: Raspberrypi3: Bump rootfs size, Minnowboard-max:
  1926. Support ethernet on Turbot variant.
  1927. Updated/fixed packages: audit, bind, btrfs-progs, cifs-utils,
  1928. clamav, collectd, coreutils, docker-containerd, dos2unix,
  1929. edid-decode, file, gcc, gdb, gnupg, gnupg2, heimdal, hidapi,
  1930. imagemagick, libcurl, libgcrypt, libglib2, liblogging,
  1931. libostree, libressl, libsoup, libv4l, libvncserver, libvorbis,
  1932. libwebsockets, libxslt, lm-sensors, mariadb, mpg123, ncurses,
  1933. network-manager, nodejs, patchelf, perl, php-amqp, pinentry,
  1934. pixiewps, qpdf, qt53d, qt5base, qt5charts, qt5script, redis,
  1935. systemd, triggerhappy, uboot, wireguard, wireless-regdb,
  1936. wireshark
  1937. 2018.05, Released June 1st, 2018
  1938. Minor fixes.
  1939. Download: Work around for hanging connections for packages
  1940. from CVS, by adding a 10 minute max timeout.
  1941. Updated/fixed packages: binutils, clang, dash, expect, git,
  1942. glibc, jpeg-turbo, libjpeg, log4cplus, openvmtools, xen,
  1943. Issues resolved (http://bugs.uclibc.org):
  1944. #11051: runtime issue on STM32 with usage of binutils 2.29.x
  1945. 2018.05-rc3, Released May 28th, 2018
  1946. Fixes all over the tree.
  1947. Toolchain: ARC tools updated to arc-2018.03-rc2.
  1948. Fs: Ensure hard links in TARGET_DIR are correctly copied for
  1949. filesystem input. With the recent changes to the file system
  1950. generation logic, hard links were "expanded" in file system
  1951. images leading to bloated rootfs images for setups with hard
  1952. links.
  1953. Infrastructure: Error out for packages using the 'local'
  1954. method but forgetting to specify <pkg>_SITE.
  1955. Build rpcgen for the host when needed to support distributions
  1956. no longer shipping rpcgen with glibc (E.G. recent Fedora).
  1957. Updated/fixed packages: autofs, bash-completion, binutils,
  1958. busybox, cjson, elf2flt, libcoap, libcurl, libtirpc, lrzsz,
  1959. poppler, procps-ng, qt-webkit-kiosk, quota, samba4, xfsprogs
  1960. Issues resolved (http://bugs.uclibc.org):
  1961. #11031: ld-elf2flt: host/bin/ld.real': execvp: No such file..
  1962. #11036: C compiler cannot create executables
  1963. #11046: Git package binaries are ~180MB (compared to ~20MB in..
  1964. 2018.05-rc2, Released May 22nd, 2018
  1965. Fixes all over the tree.
  1966. Dependencies: Check that the current working directory (.)
  1967. isn't listed in PATH as that causes various build issues.
  1968. Manual: Clarify that git branch names may not be used as
  1969. version identifiers. This has never been supported, but was
  1970. kind of working (with some limitations) before the git
  1971. download rework - Now it does not work at all.
  1972. Linux: Ensure host version of ncurses is picked up and not
  1973. host-ncurses built by buildroot, as that otherwise causes
  1974. widechar/non-widechar conflicts and corrupted menuconfig
  1975. menus.
  1976. Packages: Renamed a number of package options not prefixed
  1977. with BR2_PACKAGE_<pkg> for consstency.
  1978. Download infrastructure: Fix file:// protocol handling after
  1979. download rework.
  1980. Updated/fixed packages: acl, apr-util, asterisk, attr,
  1981. bluez5_utils, cifs-utils, clamav, clang, cups-filters,
  1982. dahdi-linux, exim, faketime, gdb, go, gst1-plugins-bad,
  1983. imx-mkimage, ipsec-tools, jamvm, janus-gateway,
  1984. jquery-ui-themes, libcap, libcurl, libftdi, libkcapi, libkrb5,
  1985. libmediaart, libmodbus, libmodplug, libmpd,
  1986. libnetfilter_cthelper, libnetfilter_cttimeout, libnfc,
  1987. libnfnetlink, libnss, liboauth, libogg, libosip2,
  1988. libpam-radius-auth, libpcap, libpciaccess, llvm, log4cplus,
  1989. ltrace, lynx, mbedtls, modem-manager, nfs-utils,
  1990. python-cython, python-websockets, qt5cinex, qt5wayland, rauc,
  1991. snort, strace, ti-sgx-km, transmission, wavpack, wget, woff2,
  1992. xen, zmqpp, znc, zstd
  1993. Issues resolved (http://bugs.uclibc.org):
  1994. #10986: Installing package attr when already supplied by...
  1995. #11011: BUildroot for Raspberry Pi 2
  1996. #11016: Wrong compiler used for external user host packages
  1997. 2018.05-rc1, Released May 9th, 2018
  1998. Toolchain: glibc bumped to 2.27, musl bumped to 1.1.19,
  1999. uClibc-ng 1.0.30, Linux kernel headers bumped to 4.16.x.
  2000. Architecture: support for the Blackfin architecture has been
  2001. removed, as it was removed from Linux upstream, poorly
  2002. maintained in binutils/gdb, and abandoned by Analog Devices.
  2003. Numerous packages updated to have hashes for their license
  2004. files.
  2005. Systemd can now be built with uClibc toolchains.
  2006. Linux: addition of BR2_LINUX_KERNEL_NEEDS_HOST_LIBELF and
  2007. BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL to support building Linux
  2008. kernel configurations that need libelf on the host or openssl
  2009. on the host.
  2010. Coding style:
  2011. - all Python scripts are now verified with flake8
  2012. - check-package extended to check all Config.in and .mk files
  2013. in tree, not only the ones in package/
  2014. Infrastructure:
  2015. - The download infrastructure has seen a major overhaul, with
  2016. the main visible new feature being Git caching: a package
  2017. fetched from Git no longer needs to be re-cloned entirely
  2018. everytime its version is changed. Anoter visible change is
  2019. that the download folder now has subfolders per package. See
  2020. http://lists.busybox.net/pipermail/buildroot/2018-April/217923.html
  2021. for more details about those changes.
  2022. - The logic that generates the root filesystem images has been
  2023. reworked, with the main goal of allowing several filesystem
  2024. images to be produced in parallel, also a requirement for
  2025. top-level parallel build. Now, a .tar filesystem image is
  2026. always created, and re-extracted in a private directory to
  2027. create each format-specific filesystem image.
  2028. - A new package infrastructure was introduced for Go-based
  2029. packages: golang-package.
  2030. - Dependencies on extraction tools are now handled as proper
  2031. per-package dependencies, using
  2032. <pkg>_EXTRACT_DEPENDENCIES. Beyond a cleanup, this is also a
  2033. preparation step for top-level parallel build support.
  2034. - When a file being downloaded is part of a package with a
  2035. .hash file, but there is no hash listed for this file, the
  2036. file is now preserved in the download directory rather than
  2037. removed. This helps when updating a package, as it gives the
  2038. ability to easily calculate the hash of the file.
  2039. - Addition of '<pkg>-show-recursive-depends' and
  2040. '<pkg>-show-recursive-rdepends' make targets, to
  2041. respectively display the recursive list of dependencies and
  2042. the recursive list of reverse dependencies of a given
  2043. package.
  2044. - The /etc/shells file is now automatically generated with the
  2045. list of shell programs installed on the system.
  2046. - Addition of -Ofast optimization level as an available
  2047. option.
  2048. Major updates: Go updated to 1.10, Erlang bumped to 20.3, Qt5
  2049. bumped to 5.10.1.
  2050. New packages: 18xx-ti-utils, abootimg, bluez-alsa, brotli,
  2051. chipmunk, clang, docker-compose, docker-proxy, flare-engine,
  2052. flare-game, gst1-interpipe, gstreamer1-editing-services,
  2053. hackrf, i2pd, imx-alsa-plugins, imx-mkimage, libcdio-paranoia,
  2054. libkrb5, llvm, pixiewps, python-backports-ssl-match-hostname,
  2055. python-cached-property, python-cython, python-docker,
  2056. python-dockerpty, python-docker-pycreds,
  2057. python-flask-sqlalchemy, python-functools32, python-influxdb,
  2058. python-json-models, python-libusb1, python-networkx,
  2059. python-psycopg2, python-pymodbus, python-sqlalchemy,
  2060. python-subprocess32, python-texttable,
  2061. python-websocket-client, python-yieldfrom, quotatool, reaver,
  2062. snort, sunxi-mali-mainline, sunxi-mali-mainline-driver, tk,
  2063. tpm2-abrmd, tpm2-tools, tpm2-tss, udftools, vte, woff2.
  2064. New defconfigs: ARC HS Development Kit, Arcturus ucls1012a,
  2065. Freescale i.MX6UL EVK (with vendor kernel), Freescale i.MX6
  2066. SoloLite EVK (with vendor kernel), Freescale i.MX31 3Stack,
  2067. Freescale i.MX8Q EVK Freescale p1025twr, Freescale t1040d4rdb,
  2068. Qemu PPC64 E5500, SolidRun ClearFog Base, Tinker RK3288, Vyasa
  2069. RK3288,
  2070. Removed packages: iqvlinux, kodi-adsp-*, mplayer
  2071. Removed defconfigs: ci40, firefly_rk3288,
  2072. freescale_p1010rdb_pa, freescale_mpc8315erdb, riotboard,
  2073. teliv_evk_pro3
  2074. Issues resolved (http://bugs.uclibc.org):
  2075. #10151: toolchain eclipse register : fails with a custom
  2076. BR2_HOST_DIR
  2077. #10511: Packages get downloaded uncompressed with wget
  2078. #10531: QtWebengine doesn't build if the host hasn't a 32 bits
  2079. C++ compiler working
  2080. #10846: error in compiling gnutls
  2081. #10886: openssl-1.0.2n fails to build
  2082. #10896: /bin/sh not in /etc/shells
  2083. #10961: Grub2 fails to build for x86_64 when BR2_SSP_ALL is
  2084. enabled
  2085. 2018.02.12, Released March 29th, 2019
  2086. Important / security related fixes.
  2087. Updated/fixed packages: avahi, beecrypt, busybox, clamav,
  2088. cups, devmem2, fetchmail, file, fltk, gcc, gdb, git, jq,
  2089. leveldb, libopenssl, libraw, libseccomp, libssh2,
  2090. libunistring, mariadb, mosquitto, nodejs, ntp, openjpeg, perl,
  2091. php, putty, qt5webkit, rdesktop, systemd, wireshark, vsftpd,
  2092. xapp_xdm, xlib_libXdmcp
  2093. 2018.02.11, Released February 23th, 2019
  2094. Important / security related fixes.
  2095. Ensure the PLATFORM and OS environment variables are not set,
  2096. as they cause build issues for some packages.
  2097. The package list infrastructure now correctly handles packages
  2098. installing files with old mtime.
  2099. Linux: Skip hash checks for user supplied downloadable
  2100. patches, as no hash checksums are available for those.
  2101. scanpypi: protect against zip-slip vulnerability in zip/tar
  2102. handling
  2103. Updated/fixed packages: bind, dhcpcd, dovecot, ghostscript,
  2104. gnuradio, imagemagick, jpeg-turbo, libarchive, libb64,
  2105. libcurl, libid3tag, madplay, mosquitto, openssh, php,
  2106. postgresql, proftpd, python, python-django, python3, qt5base,
  2107. sqlcipher, swupdate, systemd, unzip, webkitgtk
  2108. 2018.02.10, Released January 31th, 2019
  2109. Important / security related fixes.
  2110. Defconfigs: Fixes for Lego EV3, QEMU AArch64-virt
  2111. check-package: fix Python 3 support
  2112. get-developers: Fix behaviour when called from elsewhere than
  2113. the toplevel directory.
  2114. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  2115. Updated/fixed packages: acpica, apache, apr, asterisk,
  2116. avrdude, cargo, cc-tool, dash, dhcpdump, dmalloc, gnuchess,
  2117. gnupg2, leveldb, libarchive, libassuan, libftdi1,
  2118. libgpg-error, libhttpparser, libmad, libsndfile, libsquish,
  2119. liburiparser, libwebsock, libxml2, lighttpd, lm-sensors,
  2120. lua-msgpack-native, mbedtls, mosquitto, netatalk, nodejs,
  2121. openssh, pango, patchelf, php, python-django, python-pyyaml,
  2122. rauc, rp-pppoe, s6-networking, samba4, sdl_sound,
  2123. shairport-sync, sqlite, subversion, sunxi-cedarx, tcpreplay,
  2124. tekui, usb_modeswitch, webkitgtk, wireshark, wolfssl,
  2125. xapp_rgb, xenomai, xerces
  2126. Issues resolved (http://bugs.uclibc.org):
  2127. #11576: Unable to start apache with event MPM on raspberry pi 3
  2128. 2018.02.9, Released December 20th, 2018
  2129. Important / security related fixes.
  2130. defconfigs: Fixes for ci20
  2131. Updated/fixed packages: c-ares, dante, freetype, ghostscript,
  2132. glibc, gnutls, go, libcurl, libgpgme, libid3tag, libiscsi,
  2133. libmpd, libopenssl, libpjsip, linux, liquid-dsp, luvi, lynx,
  2134. msgpack, nginx, nodejs, php, popt, pps-tools, python-numpy,
  2135. python-requests, samba4, sdl2_net, squashfs, swupdate, uclibc,
  2136. wine, webkitgtk, xfsprogs
  2137. Issues resolved (http://bugs.uclibc.org):
  2138. #11426: pps-tools bash dependency
  2139. 2018.02.8, Released November 26th, 2018
  2140. Important / security related fixes.
  2141. fs: Drop intermediate tarball from the filesystem handling to
  2142. fix an issue with xattrs handling related to fakeroot. Ensure
  2143. tarball target includes xattrs.
  2144. download: Fix confusion in git submodule handling if dl/ is a
  2145. symlink.
  2146. toolchain: Only allow enabling stack protection on
  2147. architectures with control flow integrity (CFI) support. Only
  2148. allow FORTIFY_SOURCE support on gcc >= 6.
  2149. genrandconfig: Fix missing newline in BR2_WGET handling,
  2150. causing the following line to be ignored. This would affect
  2151. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  2152. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  2153. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  2154. show-build-order: Also include the dependencies of
  2155. rootfs-common.
  2156. Defconfigs: Fixes for Armadeus APF27, imx6sabre.
  2157. graph-depends: Fix for package names starting with a non-alpha
  2158. character.
  2159. Updated/fixed packages: attr, audit, bind, brotli, easydbus,
  2160. elfutils, gauche, gcc, giflib, gpsd, lcdproc, libcurl,
  2161. libiscsi, libnfs, libnspr, libnss, libkcapi, libsemanage,
  2162. liburiparser, lighttpd, linux, lua-curl, mariadb, mmc-utils,
  2163. mosquitto, mysql, neardal, netplug, network-manager,
  2164. nfs-utils, nginx, openocd, openswan, p11-kit, postgresql,
  2165. prosody, qemu, qt, rpm, ruby, samba4, squid, supertuxkart,
  2166. systemd, tar, trace-cmd, traceroute, twolame, uclibc,
  2167. usb_modeswitch, vtun, webkitgtk, xdriver_xf86-video-geode,
  2168. xlib_libfontenc, xproto_inputproto, xserver_xorg-server
  2169. Issues resolved (http://bugs.uclibc.org):
  2170. #11086: download/git submodule breaks on symlinked dl folder
  2171. #11251: Util scanpypi failes when package change - to _ in..
  2172. #11476: stdio2.h error invalid use of __builtin_va_arg_pack
  2173. #11481: Docs: Is external.desc required?
  2174. 2018.02.7, Released October 25th, 2018
  2175. Important / security related fixes.
  2176. Detect and reject build paths containing '@', as this confuses
  2177. a number of packages, including GCC.
  2178. utils/get-developers: Add -e option for use with git
  2179. send-email.
  2180. utils/diffconfig: Make it work for (non-Buildroot) config
  2181. files not using the BR2_ prefix.
  2182. u-boot: Fix for environment image handling on big endian
  2183. systems.
  2184. Updated/fixed packages: binutils, ca-certificates,
  2185. cups-filters, erlang, file, freetype, gcc, git, gvfs, leveldb,
  2186. libarchive, libcurl, libssh, live555, ljlinenoise, mariadb,
  2187. mongoose, netsnmp, nmap, nodejs, ntp, open-plc-utils, poco,
  2188. psmisc, ptpd2, python-enum34, qemu, qt, qt5base, setools,
  2189. spice, spice-protocol, tinc, ustr, wireshark
  2190. Issues resolved (http://bugs.uclibc.org):
  2191. #11396: uboot environment image checksum invalid if target is big endian
  2192. 2018.02.6, Released October 7th, 2018
  2193. Important / security related fixes.
  2194. Add a number of patches to fix build errors for host utilities
  2195. on modern distributions using glibc-2.28.
  2196. mkusers: Ensure existing group members are preserved when a
  2197. group is reprocessed.
  2198. printvars: Fix issue with exceeding shell command line length
  2199. limits for certain setups.
  2200. Updated/fixes packages: acpid, android-tools, apache,
  2201. arp-scan, bandwidthd, bind, bison, clamav, connman, cppcms,
  2202. cramfs, fio, gcc, ghostscript, glibc, gnupg, httping,
  2203. igmpproxy, imagemagick, imlib2, ipsec-tools, lcms2, libcurl,
  2204. libesmtp, libnfs, libssh, libxslt, links, linuxptp,
  2205. mediastreamer, minicom, moarvm, nilfs-utils, ocrad, parted,
  2206. php, pv, python-django, qt, qt5quickcontrols, qt5webengine,
  2207. screen, sdl2, shairport-sync, squashfs, strongswan,
  2208. vboot-utils, webkitgtk, wireguard, x265, xen, xlib_libXfont,
  2209. xlib_libXft
  2210. New packages: brotli, woff2
  2211. 2018.02.5, Released August 29th, 2018
  2212. Important / security related fixes.
  2213. Defconfigs: Raspberrypi2: Bump rootfs size, T7680: Fix
  2214. genimage.cfg issue, ARM Juno: Bump ATF to v1.3 to fix build
  2215. issue.
  2216. Updated/fixed packages: acl, apache, attr, bind,
  2217. boot-wrapper-aarch64, brltty, bzip2, chrony, crda, cryptsetup,
  2218. dahdi-tools, dmidecode, dropbear, eigen, erlang, ffmpeg, gawk,
  2219. gcc, ghostscript, gnutls, ipsec-tools, libarchive, libfuse,
  2220. libopenssl, libselinux, libsoup, lighttpd, linuxptp,
  2221. lttng-modules, lttng-tools, lua-flu, lvm2, m4, makedevs,
  2222. mariadb, mbedtls, mesa3d-headers, mtd, ncurses, nodejs,
  2223. openssh, php, postgresql, python-django, qt5xmlpatterns, ruby,
  2224. samba4, shairport-sync, stress-ng, ti-utils, uboot-tools, vim,
  2225. waylandpp, wireless_tools, wireshark, wpa_supplicant, xorriso,
  2226. znc
  2227. Issues resolved (http://bugs.uclibc.org):
  2228. #10781: cryptsetup luksOpen container_file container causes..
  2229. #10986: Installing package attr when already supplied by..
  2230. #11191: xattr and check-package issue
  2231. 2018.02.4, Released July 21th, 2018
  2232. Important / security related fixes.
  2233. U-Boot: Ensure host version of ncurses is picked up and not
  2234. host-ncurses built by buildroot, as that otherwise causes
  2235. widechar/non-widechar conflicts and corrupted menuconfig
  2236. menus.
  2237. Linux: Enable CONFIG_PERF_EVENTS when perf is enabled.
  2238. Defconfigs: Raspberrypi3: Bump rootfs size, Minnowboard-max:
  2239. Support ethernet on Turbot variant.
  2240. Updated/fixed packages: bind, clamav, collectd, dos2unix,
  2241. edid-decode, gcc, gdb, heimdal, hidapi, imx-gpu-viv, libcurl,
  2242. libglib2, liblogging, libostree, libsoup, libv4l, lm-sensors,
  2243. ncurses, network-manager, patchelf, pinentry, procps-ng, qpdf,
  2244. qt5, qt53d, qt5base, qt5charts, qt5script, qt5serialport,
  2245. systemd, wireguard, wireless-regdb
  2246. Issues resolved (http://bugs.uclibc.org):
  2247. #11101: host-patchelf Endian Issue with relative RPATH
  2248. 2018.02.3, Released June 18th, 2018
  2249. Important / security related fixes.
  2250. Various fixes for building on modern distributions (GCC 8.x,
  2251. no rpcgen utility).
  2252. ARM: Default to binutils 2.28 and warn about newer binutils
  2253. versions, which are known to cause boot failures for Linux
  2254. kernels built in thumb mode.
  2255. Busybox/mdev: Fix module autoloading.
  2256. Busybox/sysvinit: inittab: Add /dev/{stdin,stdout,stderr}
  2257. symlinks, call swapon -a to activate any configured swap
  2258. devices.
  2259. Dependencies: Check that PATH does not contain current working
  2260. directory, which triggers a number of build failures.
  2261. Infrastructure: Error out for packages erroneously using the
  2262. 'local' site method but not defining a _SITE.
  2263. Linux: Fix cuImage.<dtb> / simpleImage.<dtb> handling. Ensure
  2264. kconfig uses ncurses from the host to fix a ncurses/ncursesw
  2265. mixup, causing menuconfig display corruption.
  2266. Toolchain: Workarounds for fix-rpath issues with binutils and
  2267. elf2flt.
  2268. Util-linux: Fix blocking on getrandom() issue with recent
  2269. kernels.
  2270. Remove broken freescale_imx31_3stack,
  2271. freescale_imx6sololiteevk and freescale_imx6ulevk defconfigs.
  2272. Updated/fixed packages: apr-util, asterisk, attr, audit,
  2273. autofs, binutils, busybox, cifs-utils, cups-filters, dash,
  2274. ebtables, exim, expect, f2fs-tools, faketime, file, gdb, git,
  2275. glibc, gnupg, gnupg2, gst1-plugins-bad, imagemagick, jamvm,
  2276. jpeg-turbo, libcap, libcoap, libcurl, libgcrypt, libjpeg,
  2277. libnss, libressl, libtirpc, libvncserver, libvorbis, libxslt,
  2278. log4cplus, lrzsz, ltrace, lynx, mariadb, mbedtls, mpg123,
  2279. nasm, netplug, network-manager, nfs-utils, nodejs,
  2280. openvmtools, patch, perl, php-amqp, poppler, procps-ng,
  2281. python, python-websockets, quota, redis, samba4, sysvinit,
  2282. transmission, triggerhappy, util-linux, wavpack, wget,
  2283. wireshark, xen, zmqpp
  2284. Issues resolved (http://bugs.uclibc.org):
  2285. #10986: Installing package attr when already supplied by busybox..
  2286. #11031: ld-elf2flt: host/bin/ld.real': execvp: No such file or..
  2287. 2018.02.2, Released May 4th, 2018
  2288. Important / security related fixes.
  2289. Tweak package size/file instrumentation to better handle
  2290. package rebuilds.
  2291. Revert /etc/shells creation when bash is enabled.
  2292. Exclude /lib/firmware from the rpath fixup logic, as it may
  2293. contain non-native ELF files.
  2294. Scanpypi: Support the new PyPi infrastructure.
  2295. Handle GCC 8.x on the host.
  2296. Ensure timestamp of /usr is updated to support the systemd
  2297. ConditionNeedsUpdate option.
  2298. Updated/fixed packages: bluez5_utils, flann, gdb, gnupg2,
  2299. grub2, libcec, libcgi, libglib2, libgpg-error, libgpgme,
  2300. libtomcrypt, mbedtls, mkpasswd, php, python, python-requests,
  2301. python-watchdog, qt53d, qt5websockets, sdl2, sdl2_image,
  2302. syslog-ng, systemd, tcl, tcllib, uclibc, usb_modeswitch,
  2303. wireguard, wmctrl
  2304. Issues resolved (http://bugs.uclibc.org):
  2305. #10896: /bin/sh not in /etc/shells
  2306. #10961: Grub2 fails to build for x86_64 when BR2_SSP_ALL is enabled
  2307. 2018.02.1, Released April 9th, 2018
  2308. Important / security related fixes.
  2309. Removed unmaintained defconfigs: Creator Ci40, Firefly rk3288,
  2310. Freescale mpc8315erdb / p1010rdb_pa, Riotboard, Teliv EVK
  2311. Pro3.
  2312. Infrastructure: Speed up instrumentation for package size by
  2313. comparing timestamps instead of md5 checksums, as doing
  2314. checksums could lead to up to 25% longer build time for big
  2315. configurations.
  2316. Rename the internal <pkg>_BASE_NAME variable to <pkg>_NASENAME
  2317. to avoid name clashes with packages ending on '-base'.
  2318. Add a better fix for build issues for autotools based packages
  2319. checking for C++ support on toolchains without C++ support.
  2320. Build host-tar if tar is older than 1.27 on the build machine
  2321. to work around reproducibility issues with git archives
  2322. containing long paths.
  2323. check-unique-files: Fix for filenames not representable in the
  2324. users' locale.
  2325. Check-bin-arch: Add support for per-package ignore paths
  2326. (<pkg>_BIN_ARCH_EXCLUDE).
  2327. Toolchain: Fix SSP support detection for external toolchains.
  2328. linux: Add _NEEDS_HOST_OPENSSL / LIBELF options to ensure
  2329. these dependencies are available for Linux configurations
  2330. needed these dependencies, similar to how it is done for
  2331. U-Boot.
  2332. Support custom (not in tree) device tree files in addition to
  2333. in-tree ones.
  2334. U-Boot / uboot-tools: Fix header conflict with libfdt-devel
  2335. installed on host.
  2336. Updated/fixed packages: apache, busybox, c-ares, cmake,
  2337. docker-engine, enlightenment, eudev, fbgrab, freescale-imx,
  2338. gtest, imagemagick, intel-microcode, irssi, jimtcl, kmod,
  2339. kodi, ktap, libcoap, libcurl, libfcgi, libhttpparser,
  2340. libminiupnpc, libopenssl, libpjsip, libss7, libssh2, libupnp
  2341. libupnpp, libuv, libvorbis, memcached, motion, musl, nodejs,
  2342. ntp, openblas, opencv3, openocd, opus-tools, patch, php,
  2343. pkgconf, postgresql, powerpc-utils, python-jsonschema,
  2344. python-webpy, qemu, qt5bsae, qt5script, qt5webkit, rapidjson,
  2345. rauc, sam-ba, samba4, sngrep, systemd, tremor, uboot-tools,
  2346. uclibc-ng-test, upmpdcli, wireshark, xerces, xterm, zstd
  2347. New packages: docker-proxy, python-functools32
  2348. Issues resolved (http://bugs.uclibc.org):
  2349. #10766: upmpdcli: Segmentation fault
  2350. #10776: ktap fails to build
  2351. #10846: error in compiling gnutls
  2352. #10856: openblas on qemu_x86_64_defconfig fails with "sgemm_..
  2353. 2018.02, Released March 4th, 2018
  2354. Fixes all over the tree.
  2355. Issues with systemd with a readonly rootfs and DBus fixed.
  2356. Instructure:
  2357. - check-uniq-files: fix Python 2.6 compatibility.
  2358. - dependencies.sh: check for external argparse module for
  2359. Python 2.6.
  2360. - Add infrastructure to detect and use a UTF-8 locale on the
  2361. host, needed by systemd.
  2362. Update/fixed packages: clamav, dash, dhcp, dovecot, efl,
  2363. ffmpeg, libv4l, mono, mosquitto, php, postgresql, qt,
  2364. scanpypi, sdl2, systemd, tor, tvheadend, uboot, wavpack
  2365. Issues resolved (http://bugs.uclibc.org):
  2366. #10831: qemu_x86_64_defconfig build fails on linux-headers..
  2367. 2018.02-rc3, Released February 27th, 2018
  2368. Fixes all over the tree.
  2369. check-bin-arch: skip /lib/modules to allow 32-bit userland
  2370. with 64bit kernel.
  2371. dependencies: Blacklist tar 1.30+ and build our own host-tar
  2372. if needed as tar 1.30+ changed the --numeric-owner output for
  2373. long path names. Build host-tar before other host-dependencies
  2374. as they need it to extract their source tarballs.
  2375. Update/fixed packages: asterisk, azmq, bluez5_utils, domoticz,
  2376. e2fsprogs, erlang, exim, glibc, gpsd, jq, libglib2, libvorbis,
  2377. mariadb, mbedtls, mesa3d, mesa3d-headers, mpv, patch, pcre2,
  2378. php, qt5, qt5multimedia, qt5wayland, qt5webengine, qt5webkit,
  2379. systemd, quagga, rustc, uboot, wireguard, zic, zlib-ng
  2380. Issues resolved (http://bugs.uclibc.org):
  2381. #10726: Current libglib2.mk creates broken libglib2 binary...
  2382. #10786: Linux fails to build unless make linux-menuconfig...
  2383. #10796: Cannot generate cpio image without selecting CON...
  2384. 2018.02-rc2, Released February 15th, 2018
  2385. Fixes all over the tree.
  2386. Dependencies: Ensure C++ support is available like for C
  2387. support for packages needing 32bit host support.
  2388. utils/genrandconfig: Check host dependencies for config.
  2389. Updated/fixed packages: busybox, dnsmasq, dropbear, ffmpeg,
  2390. glibc, keepalived, libcpprestsdk, libgpiod, libmaxminddb,
  2391. librsvg, libtasn1, libv4l, libxml2, lightning, ltp-testsuite,
  2392. mesa3d, mesa3d-demos, mesa3d-headers, nftables, open-lldp,
  2393. php, postgresql, python-crossbar, qt5, qt53d, qt5enginio,
  2394. qt5tools, qt5webengine, qt5webkit, rsync, rust-bin, rustc,
  2395. systemd
  2396. Issues resolved (http://bugs.uclibc.org):
  2397. #9781: ti-sgx-km build on kernel >4.1
  2398. #10141: Squashfs extended attribute failures
  2399. 2018.02-rc1, Released February 5th, 2018
  2400. The global source-check and per-package <pkg>-source-check
  2401. targets have been removed.
  2402. Architecture: Add x86 Silvermont variant. Add several new ARM
  2403. variants, rework MIPS NaN logic. Support mainline binutils/gcc
  2404. for ARC.
  2405. Toolchains: Linaro toolchains upgraded to 2017.11 release, ARC
  2406. external toolchains upgraded to arc-2017.09. Libatomic is now
  2407. also copied for external musl based toolchains.
  2408. Add binutils 2.30.x and switch to binutils 2.29.x by default.
  2409. Added hardening options to build with RELRO and FORTITY.
  2410. New defconfigs: Bananapi M64, FriendlyARM Nanopi A64 & NEO2,
  2411. imx6slevk, imx6sx-sdb, imx6ulevk, Olimex A64-OLinuXino,
  2412. Orangepi lite / pc plus / pc / prime / win / win plus / zero
  2413. plus2, Pine64, Solidrun MacchiatoBin. Sopine.
  2414. Add utils/diffconfig, a simple utility for comparing
  2415. configuration files - Adapted from the version in the
  2416. Linux kernel.
  2417. Infrastructure: Check that the same file is not touched by
  2418. multiple packages, as a preparation for toplevel parallel
  2419. builds.
  2420. Hashes for the license files for a large number of packages
  2421. have been added, ensuring that license changes will not be
  2422. missed when packages are bumped.
  2423. Fix build issue for autotools based packages checking for C++
  2424. support on toolchains without C++ support and on a distro
  2425. lacking /lib/cpp (E.G. Arch Linux).
  2426. Support for the meson build system.
  2427. Pie charts generated by 'graph-build' or 'graph-size' are now
  2428. sorted according to the size of each piece.
  2429. System: Only show getty options when busybox init or sysvinit
  2430. are used.
  2431. ARM-trusted-firmware: Support ATF bundled in U-Boot as
  2432. well as U-Boot bundled in ATF.
  2433. Zlib is now a virtual package, provided by either libzlib or
  2434. zlib-ng, similar to openssl.
  2435. Support for the Rust programming language.
  2436. New packages: aoetools, armbian-firmware, binaries-marvell,
  2437. brltty, cargo, cargo-bin, cups-filters, curlpp, daq,
  2438. flatbuffers, gconf, glorytun, gstreamer1-mm, imx-m4fwloader,
  2439. imx-gpu-g2d, json-for-modern-cpp, libcpprestsdk, libgta,
  2440. libostree, libupnp18, luadbi, luadbi-sqlite3, lua-utf8, lynx,
  2441. meson, mv-ddr-marvell, nilfs-utils, opentracing-cpp,
  2442. open-lldp, pimd, proj, python-flask-cors,
  2443. python-jaraco-classes, python-more-itertools, python-oauthlib,
  2444. python-raven, python-remi, python-requests-oauthlib,
  2445. python-schedule, python-secretstorage, python-see,
  2446. python-tabledata, python-txtorcon, python-xlib, qt5charts,
  2447. rtl8189fs, rtl8723bu, rust, rustc, rust-bin, rygel, safeclib,
  2448. solatus, tcf-agent, traceroute, waylandpp, wolfssl,
  2449. zisofs-tools, zlib-ng
  2450. Removed packages: eeprog
  2451. 2017.11.2, Released January 21st, 2018
  2452. Important / security related fixes.
  2453. External toolchain: libatomic is now also copied for musl
  2454. based toolchains.
  2455. nconfig: Fix for ncurses/ncursesw linking issue causing crashes.
  2456. System: Only show getty options when busybox init or sysvinit
  2457. are used.
  2458. Infrastructure: Fix build issue for autotools based packages
  2459. checking for C++ support on toolchains without C++ support and
  2460. on a distro lacking /lib/cpp (E.G. Arch Linux).
  2461. Pie charts generated by 'graph-build' or 'graph-size' are now
  2462. sorted according to the size of each piece.
  2463. Updated/fixed packages: asterisk, avahi, bind, busybox,
  2464. coreutils, eeprog, intel-microcode, iputils, irssi, kmsxx,
  2465. libiio, linux-firmware, lz4, mariadb, matchbox-lib, mcookie,
  2466. ntp, php, pound, rpcbind, tar, ti-cgt-pru, webkitgtk, xen,
  2467. xlib_libXpm
  2468. Issues resolved (http://bugs.buildroot.org):
  2469. #9996: lz4 package does not install lz4 binaries in target
  2470. #10176: Rsyslog's S01logging is deleted by Busybox.mk from...
  2471. #10216: package/x11r7/mcookie/mcookie.c:207: bad size ?
  2472. #10301: systemd/getty unused options
  2473. #10331: kmsxx, host installation fails with BR2_SHARED_...
  2474. #10556: Building ntp package with SSL library libressl...
  2475. #10641: avahi-autoipd not starting when using systemd-tmpfiles
  2476. 2017.11.1, Released December 31th, 2017
  2477. Important / security related fixes.
  2478. Updated/fixed packages: asterisk, checkpolicy, dhcp, flann,
  2479. gdb, glibc, heimdal, kodi-pvr-mediaportal-tvserver,
  2480. kodi-pvr-stalker, libcue, libopenssl, libpqxx, libsoxr,
  2481. linknx, linux-tools, lldpd, ltp-testsuite, mariadb, mfgtools,
  2482. nodejs, nut, pulseaudio, python-cffi, qemu, rsync, tor, uboot,
  2483. uboot-tools, vlc, webkitgtk, weston, wireguard, wireshark,
  2484. xenomai, xfsprogs
  2485. 2017.11, Released November 30, 2017
  2486. Fixes all over the tree.
  2487. Toolchain: Use github mirror for Glibc.
  2488. Defconfigs: Correct boot.cmd for bananapi-m1.
  2489. Makefiles: Workaround include order issues for certain make
  2490. versions by explicitly sorting the result of wildcard where it
  2491. matters.
  2492. Download: Ensure subversion runs in non-interactive mode.
  2493. Updated/fixed packages: asterisk, boost, chrony, dovecot,
  2494. dvb-apps, exim, feh, freerdp, fwup, google-breakpad, jose,
  2495. kvm-unit-test, lftp, libcurl, libevent, libfastjson, libpjsip,
  2496. libupnp, linphone, localedef, lttng-tools, mp4v2, mtools,
  2497. ndisc6, oracle-mysql, parted, pdbg, qt, qt5connectivity,
  2498. qt5declarative, qt5webkit, rauc, runc, samba4, shairport-sync,
  2499. systemd-bootchart, webkitgtk, wireguard, xlib_libXcursor,
  2500. xlib_libXfont, xlib_libXfont2,
  2501. Issues resolved (http://bugs.buildroot.org):
  2502. 10501: host-localedef fails to compile on Ubuntu 17.10
  2503. 10506: Changed kernel image type (e.g. zImage to uImage)...
  2504. 2017.11-rc2, Released November 13th, 2017
  2505. Fixes all over the tree.
  2506. Updated/fixed packages: collectd, ffmpeg, freerdp,
  2507. go-bootstrap, imagemagick, jimtcl, libpjsip, libplist, libuv,
  2508. mesa3d, nodejs, ntp, openjpeg, postgresql, python-numpy, ruby,
  2509. snmp++, usb_modeswitch, util-linux, vboot-utils, webkitgtk,
  2510. wireshark, wpa_supplicant, xapp_xdriinfo
  2511. Issues resolved (http://bugs.buildroot.org):
  2512. #10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  2513. #10491: Cannot output security warning when compiled with buildroot..
  2514. 2017.11-rc1, Released November 6th, 2017
  2515. Fixes all over the tree and new features.
  2516. Openssl is now a virtual package, which may be provided by
  2517. OpenSSL (now renamed to libopenssl) or LibreSSL.
  2518. libssh2: there is now an explicit choice of the backend to use
  2519. (mbedtls, gnutls or openssl). Previously, the choice was implicit
  2520. based on the TLS library that was selected. Now, it is possible to
  2521. choose the backend, which is important if several TLS libraries are
  2522. selected.
  2523. netsnmp: all MIB files are now installed, making the target filesystem a
  2524. bit bigger than before. To remove unneeded MIBS, you should use a
  2525. post-build script.
  2526. Toolchain: Linaro toolchains updated to 2017.08, ARC toolchain
  2527. updated to 2017.09, Glibc updated to 2.26, Glibc support for
  2528. ARCv2. The toolchain wrapper now handles SOURCE_DATE_EPOCH for
  2529. older (pre-gcc7.x) toolchains for BR2_REPRODUCIBLE.
  2530. New defconfigs: Atmel SAM45D27, Bananapi M1 and M2 Plus,
  2531. Engicam i.CoreM6 Qt5 configuration, i.MX6 sabreauto (mainline
  2532. kernel/u-boot), i.MX6Q sabresd Qt5 configuration, i.MX7d-pico,
  2533. QEMU ppc64le, Raspberry pi3 Qt5 webengine configuration,
  2534. Technologic TS-7680.
  2535. New packages: asterisk, azmq, bcg729, boinc, dahdi-linux,
  2536. dahdi-tools, freeswitch-mod-bcg729, fscryptctl, libb64,
  2537. libpri, libss7, lua-basexx, lua-compat53, lua-cqueues,
  2538. lua-curl, lua-datafile, lua-fifo, lua-httpd,
  2539. lua-lpeg-patterns, lua-markdown, lua-sailor, lua-value,
  2540. luksmeta, minetest, minetest-game, pdmenu, prosody,
  2541. python-aiocoap, python-automat, python-ibmiotf,
  2542. python-iso8601, python-m2r, python-simplesqlite,
  2543. python-websockets, python-xmltodict, qt5wayland, qt5webengine,
  2544. restorecond, selinux-python, semodule-utils, uhubctl,
  2545. wireguard, wsapi-fcgi, wsapi-xavante
  2546. Removed packages: aiccu, rfkill, sepolgen
  2547. Issues resolved (http://bugs.buildroot.org):
  2548. #10281: lsblk does not compile for util-linux
  2549. #10336: lttng compilation fails : linking error
  2550. #10351: glibc missing in rootfs
  2551. #10356: nfs-utils missing header
  2552. #10361: python3 python-config script generates invalid includes
  2553. #10366: dropbear download url has changed
  2554. #10391: WiringPi retrieves wrong (old) version
  2555. #10406: Beaglebone black: Buggy SGX driver version, swapped...
  2556. #10426: uboot-tools' fw_setenv does not update the redundant...
  2557. #10451: libpcap 1.8.x and 1.7x does not compile on PPC
  2558. 2017.08.2, Released November 28th, 2017
  2559. Important / security related fixes.
  2560. Qt: 5.6 version updated to 5.6.3.
  2561. Reproducible: Do not override SOURCE_DATE_EPOCH if already set
  2562. in the environment.
  2563. Makefiles: Workaround include order issues for certain make
  2564. versions by explicitly sorting the result of wildcard where it
  2565. matters.
  2566. Updated/fixed packages: apr, apr-util, arqp-standalone,
  2567. azure-iot-sdk-c, collectd, dvb-apps, ffmpeg, go-bootstrap,
  2568. google-breakpad, gstreamer, imagemagick, irssi, jimtcl,
  2569. kvm-unit-test, libcurl, libfastjson, libglib2, libidn,
  2570. libpjsip, libplist, localedef, lttng-tools, luajit, mesa3d,
  2571. moarvm, mp4v2, openssh, openssl, oracle-mysql, postgresql,
  2572. python3, python-pyqt5, qt, qt5base, qt5canvas3d,
  2573. qt5connectivity, qt5declarative, qt5engineio,
  2574. qt5graphicaleffects, qt5imageformats, qt5location,
  2575. qt5multimedia, qt5quickcontrols, qt5quickcontrols2, qt5script,
  2576. qt5sensors, qt5serialbus, qt5serialport, qt5svg, qt5tools,
  2577. qt5webchannel, qt5webkit, qt5websockets, qt5x11extras,
  2578. qt5xmlpatterns, quagga, redis, ruby, samba4, sdl2, snmppp,
  2579. swupdate, ti-gfx, uboot-tools, usb_modeswitch, vboot-utils,
  2580. webkitgtk, wget, wireshark, xapp_xdriinfo.
  2581. Issues resolved (http://bugs.buildroot.org):
  2582. 10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  2583. 10361: python3 python-config script generates invalid includes
  2584. 10501: host-localedef fails to compile on Ubuntu 17.10
  2585. 2017.08.1, Released October 23rd, 2017
  2586. Important / security related fixes.
  2587. Webkitgtk bumped to the 2.18.x series, fixing a large number
  2588. of security issues.
  2589. Defconfigs: galileo: fix ext4 related kernel config, bump
  2590. kernel for gcc 6.x compatibility, enable wchar support for
  2591. grub2. wandboard: correct rootfs offset
  2592. support: Ensure gzip compression level 6 is used for git
  2593. tarballs. check-bin-arch: Correctly handle (ignore) symbolic
  2594. links. check-rpath: Also handle PIE binaries
  2595. External toolchain: Correctly handle glibc Buildroot
  2596. toolchains built with merged /usr
  2597. musl: fix ARMv4 build with binutils 2.27.51+, fix for
  2598. CVE-2017-15650
  2599. Updated/fixed packages: apache, augeas, bind, bluez5_utils,
  2600. busybox, bzip2, cmake, dnsmasq, ejabberd, gcc, git, go, ffmpeg, file,
  2601. flashrom, gd, gdk-pixbug, gnupg2, hostapd, ifupdown-scripts,
  2602. imagemagick, iucode-tool, kernel-module-imx-gpu-viv, lame,
  2603. libarchive, libcurl, libffi, libidn, libmbim, libnspr, libnss,
  2604. libressl, librsync, libsoup, libxml2, libzip, mbedtls, musl,
  2605. netplug, nginx, openvpn, pkgconf, poppler, proxychains-ng,
  2606. qemu, qt, rpi-userland, syslog, ruby, samba4, softether,
  2607. sqlite, strongswan, subversion, supertuxkart, supervisor, tcpdump,
  2608. tor, unrar, urq, vboot-utils, webkitgtk, wpa_supplicant, xen,
  2609. xmlstarlet, xlib_libXfont, xlib_libXfont2,
  2610. xserver_xorg-server, zsh
  2611. 2017.08, Released September 1st, 2017
  2612. Minor fixes.
  2613. Toolchain: Don't allow internal toolchain builds for MIPS
  2614. M6201/P6600, as support for these are not yet in mainline GCC.
  2615. Updated/fixed packages: bcusdk, connman, dialog, dnsmasq,
  2616. gnupg, grub2, iostat, iucode-tool, libgcrypt, libkcapi,
  2617. libphidget, libv4l, linux-tools, mediastreamer, minidlna,
  2618. nss-pam-ldapd, nvidia-driver, qt-webkit-kiosk, rpcbind, squid,
  2619. transmission, vde2, vim
  2620. Updated/fixed defconfigs:
  2621. Removed packages: simicfs.
  2622. Issues resolved (http://bugs.buildroot.org):
  2623. #10261: Grub2 fails to build for x86_64
  2624. 2017.08-rc3, Released August 23rd, 2017
  2625. Fixes all over the tree.
  2626. Updated/fixed packages: alsa-lib, alsa-utils, cc-tool,
  2627. dbus-cpp, e2fsprogs, elf2flt, faad2, fakeroot, gcc, git, gpsd,
  2628. gst1-validate, kvmtool, libconfuse, libepoxy, librsync,
  2629. libspatialindex, libunwind, linux, linux-headers, lua,
  2630. mariadb, mesa3d, mtd, openocd, python3, syslinux, sysvinit,
  2631. whois, xen, zmqpp.
  2632. Updated/fixed defconfigs: ci20, socrates_cyclone5,
  2633. toradex_apalis_imx6.
  2634. Removed defconfig: Armadeus APF9328.
  2635. skeleton-* packages introduced in -rc1 have been renamed to
  2636. skeleton-init-* instead.
  2637. Issues resolved (http://bugs.buildroot.org):
  2638. #10141: Squashfs extended attribute failures
  2639. 2017.08-rc2, Released August 11th, 2017
  2640. Fixes all over the tree.
  2641. Updated/fixed packages: bind, dbus, erlang-p1-xml, faad2,
  2642. ficl, gcc, gdb, glibc, jack2, libcurl, linux, linux-headers,
  2643. lua, mutt, nvme, qt5base, skeleton-common, snappy, stella,
  2644. swupdate, uclibc, valgrind, webkitgtk.
  2645. Updated/fixed defconfigs: beaglebone_qt5, minnowboard_max,
  2646. nanopi_m1{, _plus}, olimex_a20_olinuxino_lime, qemu_sparc,
  2647. qemu_sparc64.
  2648. The cmake-package infrastructure for host packages has been
  2649. fixed to not incorrectly detect target packages through
  2650. pkg-config.
  2651. Issues resolved (http://bugs.buildroot.org):
  2652. #9926: systemd-resolved.service: Failed at step NAMESPACE (systemd 233)
  2653. #10021: libqeglfs-viv-integration.so file is missing for qt5 on armv7
  2654. #10026: lua-5.3.4: fix lua linker error in swupdate
  2655. #10146: package/skeleton-common fix recursive variable
  2656. #10156: glibc compilation fails for X86 32bits (i386)
  2657. #10201: toolchain-wrapper.c:192: (error) Memory leak:
  2658. #10221: Buildroot Support
  2659. 2017.08-rc1, Released August 2nd, 2017
  2660. Infrastructure:
  2661. - The skeleton package has been split into multiple packages:
  2662. skeleton-sysv (when Busybox or SysV init are used),
  2663. skeleton-systemd (when systemd is used), skeleton-none (when
  2664. no init system is used) and skeleton-custom (when a custom
  2665. skeleton is used). Those packages, except skeleton-custom,
  2666. share common logic and data in a new package called
  2667. skeleton-common. The skeleton package becomes a virtual
  2668. package. This change allows to generate a filesystem that is
  2669. compliant with systemd expectations.
  2670. - Support for using a read-only filesystem with systemd has
  2671. been fixed.
  2672. - Major revamp of the gettext handling, with user-visible
  2673. effect:
  2674. - prior to this revamp, when BR2_ENABLE_LOCALE=y, each
  2675. package could decide to enable or not NLS support. When
  2676. BR2_ENABLE_LOCALE was disabled, NLS support was forced off
  2677. by passing --disable-nls to packages.
  2678. - after this revamp, a new BR2_SYSTEM_ENABLE_NLS option
  2679. controls whether NLS support should be enabled or not in
  2680. packages. This option defaults to disabled, which means
  2681. that now, NLS support is by default disabled in all
  2682. packages.
  2683. Therefore, if you need NLS support in packages, you must now
  2684. explicitly enable the BR2_SYSTEM_ENABLE_NLS option.
  2685. - The host directory no longer has a usr/ component. This
  2686. makes it much more natural to use that directory as an
  2687. externally used toolchain. For compatibility with existing
  2688. scripts, a usr -> . link is still added.
  2689. - Hashes are now checked on tarballs by Buildroot when a
  2690. package is sourced from a Git repository.
  2691. - Patches are no longer being downloaded from Github, since
  2692. auto-generated patches could change over time, and break
  2693. hashes. All patches that were downloaded from Github are now
  2694. stored in their respective package directories.
  2695. - Hash files in packages can now contain hashes for the
  2696. license files contained in the package source code. This
  2697. allows to detect changes in such license files.
  2698. - Binaries in $(TARGET_DIR) are now cleaned up from invalid
  2699. RPATHs at the end of the build.
  2700. - A new "make sdk" target prepares $(HOST_DIR) to be
  2701. relocatable: turns RPATHs in host binaries into relocatable
  2702. ones, removes bogus RPATHs from staging binaries/libraries,
  2703. and provides a relocate-sdk script that can be executed to
  2704. relocate the SDK after installation.
  2705. - Addition of utils/genrandconfig which generates a random
  2706. configuration based on a set of pre-defined toolchain
  2707. configurations (support/config-fragments/autobuild/) and a
  2708. random selection of packages. It is now used by the
  2709. autobuilders to generate the random configurations.
  2710. Filesystems:
  2711. - ext2/3/4 filesystems are now generated using mkfs.ext from
  2712. e2fsprogs instead of using genext2fs.
  2713. Architecture:
  2714. - Addition of support for ARM big.LITTLE variants
  2715. - Improved MIPS support, with options to select NaN encoding
  2716. and FP32 mode.
  2717. Toolchain:
  2718. - Switch to gcc 6.x as the default gcc version, add support
  2719. for gcc 7.x, remove support for gcc 4.8
  2720. - Switch to binutils 2.28 as the default binutils version, add
  2721. support for binutils 2.29, remove support for binutils 2.26
  2722. - Support added for gdb 8.0
  2723. - uClibc-ng bumped to 1.0.26
  2724. - CodeSourcery toolchains for x86 and SuperH have been
  2725. removed, they were using a too old glibc version
  2726. (2.17). External toolchains with glibc 2.17 or earlier are
  2727. no longer supported.
  2728. - The version selection in the glibc package has been
  2729. removed. Like musl and uClibc-ng, we now use the latest
  2730. glibc version.
  2731. - Improved support for Xtensa toolchain overlays, which can
  2732. now be downloaded.
  2733. Tools:
  2734. - Numerous improvements to the runtime test infrastructure
  2735. - Tests are now executed by Gitlab CI on a regular basis
  2736. - Tools that are directly useful to the user have been moved
  2737. from support/scripts/ to utils/: brmake, check-package,
  2738. get-developers, scancpan, scanpipy, size-stats-compare,
  2739. test-pkg.
  2740. New defconfigs: A13 Olinuxino, Engicam platforms (i.CoreM6
  2741. Solo/Dual/DualLite/Quad, RQS SOM, GEAM6UL SOM, Is.IoT MX6UL
  2742. SOM), Nano Pi M1 (Plus), OrangePi Zero and Plus.
  2743. New packages: azure-iot-sdk-c, cracklib, dt-utils, easy-rsa,
  2744. erlang-jiffy, erlang-p1-oauth2, erlang-p1-xmpp,
  2745. ifupdown-scripts, irrlicht, kodi-inputstream-adaptive,
  2746. kodi-inputstream-rtmp, kvazaar, let-me-create, libloki,
  2747. libpwquality, libressl, libspatialindex, libva-utils,
  2748. linuxconsoletools, linuxptp, luaossl, lua-sdl2, lua-stdlib,
  2749. lsscsi, paxtest, pcre2, pixz, python-asn1crypto,
  2750. python-backports-shutil-get-terminal-size, python-bcrypt,
  2751. python-cheroot, python-h2, python-hpack, python-hyperframe,
  2752. python-hyperlink, python-ipython-genutils, python-pathlib2,
  2753. python-pickleshare, python-priority, python-portend,
  2754. python-scandir, python-systemd, python-tempora,
  2755. python-traitlets, python-typepy, qt5virtualkeyboard,
  2756. ratpoison, rauc, refpolicy, rhash, sdl2_mixer, sdl2_net,
  2757. xr819-xradio, zstd
  2758. Removed packages: cloog, input-tools, mke2img
  2759. Issues resolved (http://bugs.buildroot.org):
  2760. #7892: systemd-journald is broken
  2761. #9341: avahi-utils does not compile with uClibc + libglib2
  2762. #9441: Link BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY to
  2763. BR2_ENABLE_DEBUG
  2764. #9746: ext4 image generated by Buildroot is not working
  2765. properly with U-Boot
  2766. #9886: Build fails with "unexpected EOF while looking for
  2767. matching `"'" if PATH contains a newline
  2768. #9891: parted 3.1 => 3.2?
  2769. #9911: qt5 does not build on sparc
  2770. #9916: qt5 does not build on
  2771. arm-buildroot-linux-uclibcgnueabihf for ARMv8 cores
  2772. #9936: Host QEMU does not build with SDL support because of
  2773. pkg-config
  2774. #9941: nodejs option disappears for arm
  2775. #9951: SCANCPAN failure
  2776. #9966: util-linux-2.30/.stamp_built' failed
  2777. #9976: License file for package 'rtl8821au' incorrect
  2778. #9991: SGX Error implicit declaration of function
  2779. ‘dmac_map_area’
  2780. #10011: wget does not work from Buildroot
  2781. #10036: Buildroot builds Raspbian Jessie headless image
  2782. presenting incorrect prompt
  2783. #10051: make: *** No rule to make target
  2784. 'raspberrpi3_defconfig'. Stop reported with Buildroot
  2785. v2017.05.1
  2786. #10056: No .config file was produced in /buildroot folder
  2787. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer
  2788. failure
  2789. #10071: fakeroot: replace hard-coded paths in post install
  2790. #10076: Makefile:4113: recipe for target 'all-gcc' failed
  2791. #10091: gcc7.1 does not build with graphite support due to old
  2792. isl
  2793. #10121: webkit without the multimedia option causes build
  2794. error
  2795. 2017.05.2, Released July 27th, 2017
  2796. Important / security related fixes.
  2797. Webkitgtk bumped to the 2.16.x series, fixing a large number
  2798. of security issues.
  2799. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  2800. which default to PIE mode.
  2801. Updated/fixed packages: aespipe, apache, bind, binutils,
  2802. busybox, ccache, collectd, dieharder, efibootmgr, efivar,
  2803. expat, ffmpeg, gcc, heimdal, iproute2, irssi, libglib2,
  2804. libmemcached, libosip2, libtirpc, libxml-parser-perl,
  2805. linux-fusion, linux-zigbee, mpg123, orc, pcre, php, protobuf,
  2806. pulseaudio, python-setproctitle, qt5base, rpi-firmware,
  2807. samba4, syslinux, systemd, spice, tcpdump, tiff, uboot-tools,
  2808. webkitgtk, x265, xserver_xorg-server, xvisor
  2809. Issues resolved (http://bugs.buildroot.org):
  2810. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  2811. 2017.05.1, Released July 4th, 2017
  2812. Important / security related fixes.
  2813. Update support/scripts/scancpan to use METACPAN v1 API as v0
  2814. has been shutdown.
  2815. Update support/scripts/mkusers to handle setups where
  2816. /etc/shadow is a symlink.
  2817. External toolchain: Don't create musl dynamic loader symlink
  2818. for static builds.
  2819. Setlocalversion: Correct detection of mercurial revisions for
  2820. non-tagged versions.
  2821. Defconfigs: at91sam9x5ek_mmc: workaround boot rom issue.
  2822. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  2823. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, glmark2,
  2824. gnutls, gst1-plugins-bad, imagemagick, imx-uuc, intltool,
  2825. iperf, ipsec-tools, irssi, kmod, libcurl, libgcrypt, libmad,
  2826. libnl, lugaro, mosquitto, mpg123, ncurses, nodejs, ntp,
  2827. openssh, openvpn, pngquant, python-simplegeneric, qt5base,
  2828. qt5multimedia, rtl8821au, socat, spice, systemd, tor, trinity,
  2829. tslib, vlc, x264, xen, xlib_libxshmfenc, xserver_xorg-server
  2830. Issues resolved (http://bugs.buildroot.org):
  2831. #9976: License file for package 'rtl8821au' incorrect
  2832. 2017.05, Released May 31st, 2017
  2833. Minor fixes.
  2834. External toolchain: musl dynamic linker symlink for mips-sf
  2835. corrected.
  2836. Updated/fixed packages: agentpp, bash, exim, hans, madplay,
  2837. qpid-proton, rtl8188eu, snmppp, stm32flash, strongswan, sudo,
  2838. xen
  2839. Issues resolved (http://bugs.buildroot.org):
  2840. #9906: genimage: Disk full
  2841. 2017.05-rc3, Released May 30th, 2017
  2842. Fixes all over the tree.
  2843. ARC toolchain bumped to 2017.03
  2844. Runtime testing improvements and cleanups.
  2845. Updated/fixed packages: acpica, armadillo, audiofile, c-icap,
  2846. cppcms, dhcp, docker-engine, dropbear, elfutils, erlang,
  2847. fbgrab, ffmpeg, flashrom, ftop, gnutls, google-breakpad,
  2848. keepalived, kodi, libcdio, libepoxy, libev, libminiupnpc,
  2849. libqmi, libtasn1, libv4l, mariadb, mono, mosh, mosquitto,
  2850. mxml, ntp, opencv, openpowerlink, oracle-mysql, popt,
  2851. pulseview, python-enum34, rabbitmq-c, redis, samba4, stella,
  2852. xen
  2853. Removed packages: firejail, ola
  2854. Issues resolved (http://bugs.buildroot.org):
  2855. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  2856. #9876: aarch64 support with gcc 4.8 toolchain
  2857. #9896: host-gcc-initial error downloading because incorrect URL
  2858. 2017.05-rc2, Released May 17th, 2017
  2859. Fixes all over the tree.
  2860. ARC toolchain bumped to 2017.03-rc2
  2861. Updated/fixed packages: bluez_utils, boost, clamav, daemon,
  2862. efibootmgr, efl, espeak, expedite, faketime, ffmpeg, fxload,
  2863. git, gpsd, kvm-unit-tests, libcdio, libv4l, lua, mke2img,
  2864. mpir, mpv, odroid-scripts, openblas, opencv3, openvpn, php,
  2865. postgresql, protobuf, qt5declarative, qwt, radvd, rpcbind,
  2866. rtmpdump, strongswan, sudo, ltp-testsuite, uclibc-ng-test,
  2867. vlc, x11vnc, xfsprogs
  2868. Issues resolved (http://bugs.buildroot.org):
  2869. #9796: source-check broken for Git downloads
  2870. #9866: BASE_DIR usage
  2871. 2017.05-rc1, Released May 8th, 2017
  2872. Fixes all over the tree and new features.
  2873. Infrastructure:
  2874. - Installed binaries are now checked for correct architecture
  2875. to catch natively built binaries or binaries built for other
  2876. architecture variants.
  2877. - Luarocks infrastructure improvements to extraction handling,
  2878. support for upstream name != Buildroot package name.
  2879. - 'make printvars' output format has changed to make it easier
  2880. to use in scripts. It now has options to quote the variables
  2881. and to show the expanded/unexpanded values.
  2882. - Automatic ext2 rootfs size calculation has been removed. The
  2883. logic was not working working reliable in all setups as it
  2884. depends on the host filesystem behaviour, so instead now the
  2885. size has to be specified explicitly (defaults to 60MB).
  2886. - The git download infrastructure now ensures that GNU format
  2887. tar files are created.
  2888. - Fixed a variable clashing issue in the mkusers script with
  2889. internal bash variables.
  2890. - Fakeroot now links against libacl to fix issues on
  2891. distributions using acls.
  2892. - Correct permissions for /dev/pts/ptmx when systemd is used
  2893. with recent glibc versions.
  2894. - br2-external: Improve error reporting.
  2895. - A wrapper script for genimage has been added in
  2896. support/scripts/genimage.sh for easy use of genimage from
  2897. post-image scripts.
  2898. - A script to check for common style issues in new packages
  2899. before submitting has been added in support/scripts/check-package
  2900. - Defconfigs are now tested by gitlab-CI instead of Travis:
  2901. https://gitlab.com/buildroot.org/buildroot
  2902. - Infrastructure for runtime testing has been added to
  2903. support/testing
  2904. Toolchain:
  2905. - External linaro toolchains updated to 2017.02, ARC toolchain
  2906. updated to 2017.03-rc1, NIOSII CodeSourcery to 2017.05
  2907. - A number of fixes and improvements to the external toolchain
  2908. handling, including C library detection, multilib and ld.so
  2909. handling
  2910. - Glibc 2.25 and uClibc-ng 1.0.24 added, wordexp support enabled
  2911. for uClibc-ng
  2912. - Binutils 2.28 added and default changed to 2.27
  2913. Architectures:
  2914. - Support for the C-SKY architecture has been added.
  2915. License handling:
  2916. - The package license markings for legal info now uses the
  2917. SPDX short identifiers for the license string where possible.
  2918. - License info has been improved / added for a number of packages.
  2919. Misc:
  2920. - Cmake 3.7.x installed on the host is no longer ignored as a
  2921. workaround for the RPATH issues has been implemented.
  2922. - Docker-engine can now be built statically on an otherwise
  2923. dynamic linked build for docker-in-docker setups.
  2924. - U-Boot now supports out-of-tree device trees, similar to
  2925. Linux
  2926. - Nodejs 0.10.x support (and with it, support for <ARMv6) has
  2927. been removed as this is now EOL upstream.
  2928. New defconfigs: AT91sam9x5ek dev/mmc/mmc-dev, banana pro,
  2929. Nationalchip gx6605s, MIPS creator ci40, nexbox a95x, 64bit
  2930. defconfig for raspberry pi 3, stm32f429-disc1.
  2931. The raspberry pi zero-w and rpi3 compute module are now also
  2932. supported by the rpi0 / rpi3 defconfigs, beaglebone green is
  2933. supported by the beaglebone defconfig.
  2934. Removed defconfig: minnowboard, via imx6 vab820, altera
  2935. socdk/sockit
  2936. New packages: arp-scan, atest, augeas, bluez-tools, daemon,
  2937. dc3dd, dieharder, execline, fmt, ghostscript, gqrx,
  2938. gst1-vaapi, jo, keepalived, kmscube, kodi-jsonschemabuilder,
  2939. kodi-skin-confluence, kodi-texturepacker, lensfun, leptonica,
  2940. libbson, libcsv, libgphoto2, libkcapi, libmaxminddb,
  2941. libmediaart, libnpth, libscrypt, lua-bit32, lua-resty-http,
  2942. lugaru, memtool, mpir, nanomsg, physfs, phytool, pngquant,
  2943. python-decorator, python-simplegeneric,
  2944. python-sortedcontainers, rpi-bt-firmware, rpi-wifi-firmware,
  2945. s6, s6-dns, s6-linux-init, s6-linux-utils, s6-networking,
  2946. s6-portable-utils, s6-rc, supertux, tesseract-ocr,
  2947. uccp420wlan, wilink-bt-firmware
  2948. Broken packages: ola
  2949. Removed packages: cosmo, kodi-visualisation-fountain,
  2950. polarssl, portmap, xdriver_xf86-video-glide,
  2951. xdriver_xf86-video-v4l, xdriver_xf86-video-wsfb
  2952. Issues resolved (http://bugs.buildroot.org):
  2953. #8831: image generation fails on host ZFS due to "no free space"
  2954. #9436: e2fsprogs remove busybox applets even of unselected e2fs..
  2955. #9456: mkusers script bash errors
  2956. #9496: mke2img fails during build on ntfs-3g host partition
  2957. #9531: NPM fails to build embedded modules
  2958. #9596: KODI: --enable-lirc needs "HAVE_LIRC" compiler definition..
  2959. #9691: Wrong cryptsetup package include files location
  2960. #9696: Wrong cryptsetup package include files location
  2961. #9706: Can't download newer revisions of package from PyPI
  2962. #9711: Recent libCEC version bump seems to break kodi package
  2963. #9716: exit, shutdown, reboot from kodi
  2964. #9721: version 2017.02: no acceptable m4 could be found in $PATH
  2965. #9726: Raspberry Pi version B - Problems with UART speed in..
  2966. #9751: expat legal info - manifest.csv: GPLv2 Source site: MIT..
  2967. #9756: glibc fails to build on buildroot-sh4*-buildroot-linux-gnu
  2968. #9766: support/scripts/pkgutil.py conflicts with the pkgutil.py..
  2969. #9776: libubox build failed
  2970. #9791: Python searches for packages in the user site directory
  2971. #9806: libseccomp is not available when BR2_arm=y
  2972. #9826: post-build scritp - symlinks created in post-build script..
  2973. #9836: triggerhappy: systemd unit broken
  2974. #9846: musl libc not installed correctly in target folder
  2975. #9856: build libubox failed on ubuntu 17.04 64bit
  2976. 2017.02.11, Released April 11th, 2018
  2977. Important / security related fixes.
  2978. dependencies: Blacklist tar 1.30+ and build our own host-tar
  2979. if needed as tar 1.30+ changed the --numeric-owner output for
  2980. long path names. Build host-tar before other host-dependencies
  2981. as they need it to extract their source tarballs.
  2982. Updated/fixed packages: apache, busybox, clamav, dhcp,
  2983. dnsmasq, dovecot, exim, imagemagick, irssi, jq, libcurl,
  2984. libpjsip, librsvg, libtasn1, libvorbis, libxml2, lz4, mariadb,
  2985. mbedtls, mosquitto, ntp, openblas, opencv3, openssl, patch,
  2986. postgresql, python-webpy, qt53d, qt5tools, quagga, rsync,
  2987. samba4, sngrep, tremor, wavpack, wireshark, xerces, xterm
  2988. Issues resolved (http://bugs.uclibc.org):
  2989. #10856: openblas on qemu_x86_64_defconfig fails with "sgemm_..
  2990. 2017.02.10, Released January 31st, 2018
  2991. Important / security related fixes.
  2992. nconfig: Fix for ncurses/ncursesw linking issue causing crashes.
  2993. System: Only show getty options when busybox init or sysvinit
  2994. are used.
  2995. Infrastructure: Fix build issue for autotools based packages
  2996. checking for C++ support on toolchains without C++ support and
  2997. on a distro lacking /lib/cpp (E.G. Arch Linux).
  2998. Updated/fixed packages: avahi, berkeleydb, bind, busybox,
  2999. ccache, clamav, coreutils, dovecot, eeprog, eudev, fis,
  3000. intel-microcode, iputils, irssi, kmsxx, libcurl, liberation,
  3001. libiio, lz4, mariadb, matchbox-lib, mcookie, openocd, php,
  3002. pound, rpcbind, squid, tar, ti-cgt-pru, transmission,
  3003. util-linux, webkitgtk, wireshark, xen
  3004. Issues resolved (http://bugs.buildroot.org):
  3005. #9996: lz4 package does not install lz4 binaries in target
  3006. #10176: Rsyslog's S01logging is deleted by Busybox.mk from...
  3007. #10216: package/x11r7/mcookie/mcookie.c:207: bad size ?
  3008. #10301: systemd/getty unused options
  3009. #10331: kmsxx, host installation fails with BR2_SHARED_...
  3010. #10536: Finding non-relative paths in the ccache
  3011. #10641: avahi-autoipd not starting when using systemd-tmpfiles
  3012. 2017.02.9, Released January 1st, 2018
  3013. Important / security related fixes.
  3014. Fix divide by zero issue in size-stats script.
  3015. Fix makefile include ordering issue with certain make versions
  3016. in the external toolchain handling.
  3017. Updated/fixed packages: dhcp, exim, flann, gdb, heimdal,
  3018. libcue, libcurl, libevent, libpqxx, libsoxr, linphone, lldpd,
  3019. mariadb, mfgtools, mtools, nodejs, nut, openssl, rsync,
  3020. samba4, tor, vlc, webkitgtk, wireshark, xfsprogs,
  3021. xlib_libXcursor, xlib_libXfont, xlib_libXfont2
  3022. 2017.02.8, Released November 27th, 2017
  3023. Important / security related fixes.
  3024. Qt: 5.6 version updated to 5.6.3.
  3025. Reproducible: Do not override SOURCE_DATE_EPOCH if already set
  3026. in the environment.
  3027. Updated/fixed packages: apr, apr-util, arqp-standalone,
  3028. collectd, dvb-apps, ffmpeg, google-breakpad, gstreamer,
  3029. imagemagick, libfastjson, libglib2, libpjsip, libplist,
  3030. localedef, luajit, mesa3d, openssh, openssl, postgresql,
  3031. python3, python-pyqt5, qt5base, qt5canvas3d, qt5connectivity,
  3032. qt5declarative, qt5engineio, qt5graphicaleffects,
  3033. qt5imageformats, qt5location, qt5multimedia, qt5quickcontrols,
  3034. qt5quickcontrols2, qt5script, qt5sensors, qt5serialbus,
  3035. qt5serialport, qt5svg, qt5tools, qt5webchannel, qt5webkit,
  3036. qt5websockets, qt5x11extras, qt5xmlpatterns, quagga, ruby,
  3037. samba4, snmppp, ti-gfx, vboot-utils, webkitgtk, wireshark,
  3038. xapp_xdriinfo.
  3039. Issues resolved (http://bugs.buildroot.org):
  3040. 10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  3041. 10361: python3 python-config script generates invalid includes
  3042. 10501: host-localedef fails to compile on Ubuntu 17.10
  3043. 2017.02.7, Released October 28th, 2017
  3044. Important / security related fixes.
  3045. Webkitgtk bumped to the 2.18.x series, fixing a large number
  3046. of security issues.
  3047. Defconfigs: wandboard: Correct rootfs offset
  3048. Toolchain: Linaro toolchains updated to 2017.08 release,
  3049. fixing a number of issues. Musl: fix for CVE-2017-15650.
  3050. Updated/fixed packages: busybox, bzip2, dnsmasq, git, go,
  3051. hostapd, irssi, iucode-tool, lame, libcurl, libffi, libnspr,
  3052. libnss, nodejs, openssh, openvpn, qemu, qt, redis, sdl2,
  3053. webkitgtk, wget, wpa_supplicant, xen, xlib_libXfont,
  3054. xlib_libXfont2, xserver_xorg-server
  3055. 2017.02.6, Released September 24th, 2017
  3056. Important / security related fixes.
  3057. Cmake: Ensure correct pkg-config is used when building host
  3058. packages
  3059. fs/iso9660: Ensure files from earlier builds are not included.
  3060. Updated/fixed packages: apache, bcusdk, bind, binutils,
  3061. bluez5_utils, botan, cmake, connman, dbus, dialog, e2fsprogs,
  3062. faad2, fakeroot, ffmpeg, file, flashrom, gcc, gd, gdb,
  3063. gdk-pixbuf, git, gnupg, gpsd, grub2, gst1-plugins-bad,
  3064. imagemagick, iostat, iucode-tool, jack2, libarchive, libcurl,
  3065. libgcrypt, libidn, libphidget, librsync, librsvg, libsoup,
  3066. libxml2, linux-tools, lua, mariadb, mbedtls, mediastreamer,
  3067. minidlna, netplug, nss-pam-ldapd, nvidia-driver, openjpeg,
  3068. postgresql, proxychains-ng, python-libconfig,
  3069. python-service-identity, qt, rpcbind, ruby, samba4, squashfs,
  3070. squid, strongswan, subversion, supervisor, sysvinit, tcpdump,
  3071. tor, transmission, unrar, valgrind, vim, webkitgtk, whois,
  3072. xen, zmqpp
  3073. Issues resolved (http://bugs.buildroot.org):
  3074. #10141: Squashfs extended attribute failures
  3075. #10261: Grub2 fails to build for x86_64
  3076. #10276: BR2_PACKAGE_LINUX_TOOLS_GPIO fails for MIPS with...
  3077. 2017.02.5, Released July 27th, 2017
  3078. Important / security related fixes.
  3079. Webkitgtk bumped to the 2.16.x series, fixing a large number
  3080. of security issues.
  3081. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  3082. which default to PIE mode.
  3083. Updated/fixed packages: aespipe, apache, bind, binutils,
  3084. busybox, ccache, collectd, efibootmgr, efivar, expat, ffmpeg,
  3085. gcc, heimdal, iproute2, irssi, libglib2, libmemcached,
  3086. libosip2, libtirpc, libxml-parser-perl, linux-fusion,
  3087. linux-zigbee, mpg123, nodejs, orc, pcre, php, pulseaudio,
  3088. python-setproctitle, qt5base, rpi-firmware, samba4, syslinux,
  3089. systemd, spice, tcpdump, tiff, webkitgtk, x265, xen,
  3090. xserver_xorg-server, xvisor
  3091. Issues resolved (http://bugs.buildroot.org):
  3092. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  3093. 2017.02.4, Released July 4th, 2017
  3094. Important / security related fixes.
  3095. Update support/scripts/scancpan to use METACPAN v1 API as v0
  3096. has been shutdown.
  3097. Update support/scripts/mkusers to handle setups where
  3098. /etc/shadow is a symlink.
  3099. External toolchain: Don't create musl dynamic loader symlink
  3100. for static builds.
  3101. Setlocalversion: Correct detection of mercurial revisions for
  3102. non-tagged versions.
  3103. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  3104. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, gnutls,
  3105. gst1-plugins-bad, imagemagick, imx-uuc, intltool, iperf,
  3106. ipsec-tools, irssi, libgcrypt, libmad, libnl, mosquitto,
  3107. mpg123, ncurses, nodejs, ntp, openssh, openvpn, qt5base,
  3108. qt5multimedia, rtl8821au, socat, spice, systemd, tor, tslib,
  3109. vlc, x264, xserver_xorg-server
  3110. Issues resolved (http://bugs.buildroot.org):
  3111. #9976: License file for package 'rtl8821au' incorrect
  3112. 2017.02.3, Released June 2nd, 2017
  3113. Important / security related fixes.
  3114. Download: <pkg>-source-check fixed for packages from git.
  3115. External toolchain: musl dynamic linker symlink for mips-sf
  3116. corrected.
  3117. Updated/fixed packages: armadillo, audiofile, bash,
  3118. bluez_utils, cppcms, dbus, dhcp, dropbear, efibootmgr, efl,
  3119. elfutils, faketime, fbgrab, flashrom, ftop, gdb, git,
  3120. google-breakpad, gpsd, hans, kvm-unit-tests, kyua, libev,
  3121. libmicrohttpd, libminiupnpc, libtasn1, libubox, ltp-testsuite,
  3122. lua, madplay, mariadb, mono, mosquitto, mxml, ntp,
  3123. nvidia-driver, openblas, openvpn, oracle-mysql, picocom, popt,
  3124. postgresql, pulseview, qt5base, qwt, rabbitmq-c, redis,
  3125. rpcbind, rtmpdump, samba4, strongswan, sudo, vlc
  3126. Issues resolved (http://bugs.buildroot.org):
  3127. #9796: source-check broken for Git downloads
  3128. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  3129. 2017.02.2, Released May 1st, 2017
  3130. Important / security related fixes.
  3131. Use HTTPS for the Codesourcery external toolchains as the HTTP
  3132. URLs no longer work.
  3133. Updated/fixed packages: bind, busybox, dovecot, freetype,
  3134. ghostscript, glibc, granite, hiredis, icu, imagemagick,
  3135. gst-plugins-base, gst1-plugins-base, libcroco, libcurl, libnl,
  3136. libnspr, libnss, libsamplerate, libsndfile, libunwind,
  3137. minicom, mplayer, mpv, nodejs, python-django, python-pyyaml,
  3138. python-web2py, samba4, syslinux, systemd, tiff, trinity,
  3139. uboot, wireshark, xen
  3140. Issues resolved (http://bugs.buildroot.org):
  3141. #9791: Python searches for packages in the user site directory
  3142. 2017.02.1, Released April 4th, 2017
  3143. Important / security related fixes.
  3144. Fix a variable clashing issue in the mkusers script with
  3145. internal bash variables.
  3146. Improve external toolchain version detection.
  3147. Correct permissions for /dev/pts/ptmx when systemd is used
  3148. with recent glibc versions.
  3149. Fix python module name clash for graph-depends.
  3150. Fakeroot now links against libacl to fix issues on
  3151. distributions using acls.
  3152. Ensure that the git download infrastructure creates GNU format
  3153. tar files.
  3154. br2-external: Improve error reporting.
  3155. Updated/fixed packages: acl, apr, audiofile, busybox, cairo,
  3156. dbus-cpp, dbus-glib, dbus-triggerd, domoticz, elfutils,
  3157. fakeroot, filemq, fmc, gdb, git, gnutls, gst-ffmpeg,
  3158. gst1-plygins-bad, harfbuzz, htop, imagemagick, jasper, libcec,
  3159. libiio, libplatform, librsvg, libselinux, libsidplay2, libsoc,
  3160. libwebsockets, libxkbcommon, linux-firmware, logrotate,
  3161. lpt-testsuite, lttng-libust, mariadb, mbedtls, memcached,
  3162. mesa3d, mpd, mplayer, nbd, ncftp, ntp, openssh, opentyrian,
  3163. pcre, perl-gd, python, qt5base, rpi-userland, rpm, samba4,
  3164. skalibs, slang, sngrep, squashfs, syslog-ng, taglib,
  3165. tcpreplay, tor, upmpdcli, wget, wireshark,
  3166. xdriver_xf86-video-vmware, xlib_libXv, zmqpp
  3167. Issues resolved (http://bugs.buildroot.org):
  3168. #9456: mkusers script bash errors
  3169. 2017.02, Released February 28th, 2017
  3170. Minor fixes, mainly fixing autobuilder issues.
  3171. Don't use cmake 3.7.x from the build host as it is also
  3172. affected by the RPATH handling issues, and instead build our
  3173. own if needed.
  3174. Updated/fixed packages: assimp, classpath, genimage, mplayer,
  3175. mpv, openocd, python-libconfig, qt5base, qt5quickcontrols,
  3176. vlc, xterm
  3177. 2017.02-rc3, Released February 26th, 2017
  3178. Fixes all over the tree.
  3179. Cmake reverted to version 3.6.3 to workaround regressions
  3180. related to RPATH handling.
  3181. Updated/fixed packages: bctoolbox, berkeleydb, binutils,
  3182. btrfs-progs, classpath, directfb, glibc, gstreamer1,
  3183. gst1-plugins-{base,good,bad,ugly}, gst1-libav,
  3184. gst1-rtsp-server, gst1-validate, gst-omx, htop, libcurl,
  3185. libepoxy, libimxvpuapi, libpcap, libuv, ncurses, openssh,
  3186. oracle-mysql, poco, python, qt5base, qt5webkit, sslh, synergy,
  3187. trousers, uclibc-ng-test, util-linux, vlc, xfsprogs
  3188. Issues resolved (http://bugs.buildroot.org):
  3189. #9251: Shared C++ libraries for Microblaze results in Segmentation...
  3190. #9456: mkusers script bash errors
  3191. #9506: Collectd 5.7.0 fails to build with libcrypt
  3192. #9581: VagrantFile provisioning step fails due to issue with grub-pc
  3193. #9586: usbmount: usbmount slows down the system... to a state of...
  3194. #9616: CMake host packages cannot provide CONF_ENV
  3195. #9641: Need raptor package installed in staging
  3196. #9671: stunnel build error
  3197. 2017.02-rc2, Released February 20th, 2017
  3198. Fixes all over the tree.
  3199. Support for SOURCE_DATE_EPOCH in the toolchain wrapper for
  3200. older gcc versions for reproducible builds has been
  3201. (temporarily) reverted because of licensing compatiblity
  3202. concerns.
  3203. Defconfigs: SD card generation fix for the Udoo Neo board
  3204. Infrastructure to handle .lz compressed tarballs added, and
  3205. affected packages updated to use it.
  3206. Updated/fixed packages: bctoolbox, bind, canelloni,
  3207. cbootimage, ccache, classpath, cups, dbus, ddrescue, directfb,
  3208. ed, erlang, gcc, gdb, glmark2, gstreamer, gstreamer1, hiredis,
  3209. kmod, kmsxx, lcdapi, libasplib, libgpiod, libnss, libraw,
  3210. libv4l, mesa3d-headers, mosquitto, mpd, mpv, musl, ntfs-3g,
  3211. ocrad, openswan, postgresql, qt5base, qt5quickcontrols, redis,
  3212. riemann-c-client, samba4, sunxi-mali, tcping, trousers,
  3213. uclibc, util-linux, vim, wavpack, wget, wiringpi, xfsprogs,
  3214. xserver_xorg-server
  3215. Issues resolved (http://bugs.buildroot.org):
  3216. #8941: Valgrind fails to build with stack protection turned on
  3217. #9291: perl: SysV message queues not configured, even if available
  3218. #9651: libxcb-1.12 built Error
  3219. #9656: util-linux: schedutils doesn't build on target w/o enabl...
  3220. #9666: qt5quickcontrols install fails
  3221. 2017.02-rc1, Released February 11th, 2017
  3222. Fixes all over the tree and new features.
  3223. Infrastructure:
  3224. - numerous improvements to support reproducible builds
  3225. - new waf-package package infrastructure to support packages
  3226. that use the Waf build system. 6 packages converted to
  3227. this infrastructure.
  3228. - add option <pkg>_PREFER_INSTALLER to the perl package
  3229. infrastructure
  3230. Architecture:
  3231. - add support for the OpenRISC CPU architecture
  3232. - merge description of the ARM and ARM64 options, and add
  3233. support for selecting a specific ARM64 core
  3234. Toolchain:
  3235. - major rework of the external toolchain support. It is now
  3236. split into several packages, one per external toolchain,
  3237. and a common infrastructure.
  3238. - important fix for musl to prevent a conflict between musl
  3239. and kernel headers (fixes the build of numerous packages
  3240. with musl)
  3241. - uClibc-ng bumped to 1.0.22, and therefore enable uClibc
  3242. for ARM64, mips32r6 and mips64r6
  3243. - add gdb 7.12.1, and switch to gdb 7.11 as the default
  3244. - Linaro toolchains updated to 2016.11, ARC toolchain
  3245. components updated to arc-2016.09, MIPS Codescape
  3246. toolchains bumped to 2016.05-06, CodeSourcery AMD64 and
  3247. NIOS2 toolchains bumped
  3248. - remove Analog Devices toolchain for the Blackfin
  3249. architecture, remove pre-built musl toolchains from
  3250. musl.codu.org
  3251. New defconfigs: Freescale i.MX23EVK, Qemu OpenRISC emulation,
  3252. Qemu NIOS2 emulation, Grinn chiliBoard, Freescale i.MX6Q
  3253. SabreSD, BeagleBoard X15, OrangePi One, ARC HS38 HAPS
  3254. New packages: angular-websocket, aubio, bctoolbox, darkhttpd,
  3255. ddrescue, easydbus, fakedate, git-crypt, hiredis, ifenslave,
  3256. jsmn, libgpiod, libgsm, linux-syscall-support, mariadb, mimic,
  3257. nginx-dav-ext, nmon, opkg-utils, policycoreutils,
  3258. pru-software-support, python-arrow, python-attrs,
  3259. python-babel, python-bitstring, python-chardet,
  3260. python-constantly, python-flask-babel, python-gunicorn,
  3261. python-incremental, python-jsonschema, python-logbook,
  3262. python-markdown2, python-mbstrdecoder, python-mutagen,
  3263. python-pathpy, python-pudb, python-pyqrcode,
  3264. python-pytablereader, python-setuptools-scm, python-sh,
  3265. python-toml, python-vcversioner, python-whoosh,
  3266. raspberrypi-usbboot, riemann-c-client, rtl8723bs, skalibs,
  3267. sslh, sngrep, ti-cgt-pru, uclibc-ng-test, udpxy, uhttpd,
  3268. upower, ustream-ssl, waf, xlib_libXfont2
  3269. Removed packages: perl-db-file, snowball-hdmiservice,
  3270. snowball-init
  3271. Tooling: addition of a test-pkg script to help contributors
  3272. build test their package.
  3273. Issues resolved (http://bugs.buildroot.org):
  3274. #8946: Valgrind fails to build with stack protection turned on
  3275. #9461: odroidc2 - toolchain Linaro AArch64 2016.11 compile error
  3276. #9466: VIM_REMOVE_DOCS removes rgb.txt
  3277. #9486: xorg-server 1.19 fails to compile for glibc with systemd init (x86_64)
  3278. #9501: eudev fails to build with older kernel headers
  3279. #9526: Embedded NPM fails to start with "no such file or directory" error
  3280. #9541: Platform drivers autoloading from info in device tree does not work
  3281. #9546: seems BR2_PACKAGE_RPI_FIRMWARE_INSTALL_DTB_OVERLAYS do nothing
  3282. #9551: Coreutils fails to build target src/src_libsinglebin_pinky_a-pinky.o
  3283. #9566: [kmod] Compilation fails with uclibc
  3284. #9571: buildroot fails while building opencv for arm64 platform
  3285. #9576: External tree with BR 2016.11 does not work anymore
  3286. #9606: xorg-server cannot build for ARM target
  3287. 2016.11.3, Released March 9th, 2017
  3288. Important / security related fixes.
  3289. Updated/fixed packages: bind, dbus, gnutls, imagemagick,
  3290. lcms2, libcurl, ntfs-3g, ntp, openssl, php, quagga, redis,
  3291. squid, stunnel, tcpdump, vim, wavpack, wireshark, xlib_libXpm
  3292. 2016.11.2, Released January 25th, 2017
  3293. Important / security related fixes.
  3294. A fix for BR2_EXTERNAL trees referenced using relative paths,
  3295. which broke in 2016.11.
  3296. Updated/fixed packages: bind, docker-engine, gd, gnutls, go,
  3297. imagemagick, irssi, libpng, libvncserver, musl, opus, php,
  3298. php-imagick, rabbitmq-server, runc, wireshark,
  3299. Issues resolved (http://bugs.buildroot.org):
  3300. #9576: External tree with BR 2016.11 does not work anymore
  3301. 2016.11.1, Released December 29th, 2016
  3302. Important / security related fixes.
  3303. Updated/fixed packages: apache, cryptopp, docker-engine,
  3304. dovecot, exim, gdk-pixbuf, libcurl, libupnp, links, monit,
  3305. nodejs, openssh, php, python, python-bottle, samba4, squid,
  3306. uboot, vim, wireshark, xorg-server uboot
  3307. Issues resolved (http://bugs.buildroot.org):
  3308. #9466: VIM_REMOVE_DOCS removes rgb.txt
  3309. 2016.11, Released November 30th, 2016
  3310. Minor fixes.
  3311. Updated/fixed packages: bzip2, gcc, jasper, sane-backends,
  3312. uboot, uclibc
  3313. Issues resolved (http://bugs.buildroot.org):
  3314. #9451: packages/postgresql/postgresql.mk contains wrong POST...
  3315. 2016.11-rc3, Released November 28th, 2016
  3316. Fixes all over the tree, including a number of security fixes.
  3317. The move from fakeroot to pseudo unfortunately brought a
  3318. number of issues. The SELinux issue described in #9386 which
  3319. triggered the move to pseudo has been investigated further and
  3320. a workaround implemented and the pseudo changes reverted.
  3321. Linux kernel: update default to 4.8.11.
  3322. Defconfigs: Updates/fixes for imx28ek, mx6udoo, imx6ulpico,
  3323. olimex a20 olinuxino lime mali, roseapplepi, synopsis aarch64
  3324. vdk, axs101, axs103 and hs38 smd vdk.
  3325. Updated/fixed packages: autossh, chrony, dosfstools,
  3326. dtv-scan-tables, e2fsprogs, gcc, gdb, gnuchess, gnuradio,
  3327. gpsd, gst1-plugins-bad, gst1-plugins-good, imagemagick,
  3328. kvm-unit-tests, libfribi, libuv, mesa3d, mpfr, mplayer, mpv,
  3329. ntp, ola, olsr, openblas, openjpeg, openssh, postgresql,
  3330. ptpd2python3, qemu, qextserialport, qt5base, quagga, xqwt,
  3331. taskd, tiff, tremor, trousers, udisks, uclibc, wireshark,
  3332. xapp_xload, xenomai, xmlstarlet
  3333. Issues resolved (http://bugs.buildroot.org):
  3334. #9386: ubinize fails with or without custom config
  3335. #9431: A misspelling
  3336. #9446: make raspberrypi3_defconfig compilation failure
  3337. 2016.11-rc2, Released November 13th, 2016
  3338. Fixes all over the tree.
  3339. Architecture: add support for MIPS XBurst cores; remove MIPS
  3340. support for M5100 cores.
  3341. Updated/fixed packages: mesa3d, lttng-babeltrace, tinyalsa, pseudo,
  3342. czmq, libxml2, makedevs, binutils, kvm-unit-tests, libnss, privoxy,
  3343. qemu, ser2net, net-tools, ffmpeg, assimp, libmpeg2, ccache, mpv,
  3344. libxslt, python, python3, php, valgrind, guile, domoticz, efl,
  3345. jasper, kvmtool, go, wget, sane-backends, weston, tinymembench,
  3346. strace, openjpeg, lcms2, quota.
  3347. Linux kernel: update default to 4.8.7.
  3348. CMake support: fix cmake wrapper to properly pass NDEBUG flag.
  3349. Filesystems: use a wrapper to pseudo, to better mimick the behaviour
  3350. of fakeroot; makedevs no longer breaks of the destination already
  3351. exists and is of the correct type/major/minor.
  3352. Defconfigs: a few legacy and broken defconfigs have been removed
  3353. because they now fail to build: kb9202_defconfig, mini2440_defconfig,
  3354. freescale_p2020ds, qmx6, calao*, atmel_sama5d4ek. Other defconfigs
  3355. have been updated: nanopi-neo, olimex_a20_olinuxino_lime_mali,
  3356. armadeus_apf51, armadeus_apf28, freescale_imx31_3stack, ci20,
  3357. olimex_a20_olinuxino_lime2, atmel_at91sam9260eknf,
  3358. atmel_at91sam9rlek, atmel_at91sam9g20dfc, atmel_at91sam9g45m10ek,
  3359. atmel_sama5d3xek.
  3360. 2016.11-rc1, Released November 3rd, 2016
  3361. Fixes all over the tree and new features.
  3362. It is now possible to specify multiple BR2_EXTERNAL
  3363. directories. The required files in a BR2_EXTERNAL directory
  3364. have changed to accomodate this feature. Refer to the
  3365. documentation for details of how to update them. External
  3366. trees now have a name and a description. Also, it is possible
  3367. to override a defconfig in the external tree.
  3368. The default skeleton now uses UID 65534 for the "nobody"
  3369. user instead of UID 99, like most distros do. See
  3370. https://lwn.net/Articles/695478/ for a complete discussion.
  3371. Programs and configuration files that explicitly refer to UID
  3372. 99 will have to be updated.
  3373. When the build environment already has a suitable cmake version
  3374. (3.1 or later), that one will be used instead of building
  3375. host-cmake. This can speed up the build significantly.
  3376. The ExtUtils::MakeMaker perl module is now required in the
  3377. build environment.
  3378. An additional check is done during the build that files are
  3379. not installed in the output directory within the output
  3380. directory. This happens e.g. when the target directory is
  3381. contained both in --prefix and in DESTDIR. The build will
  3382. terminate with an error message that specifies which package
  3383. and which file caused the failure.
  3384. The concept of "deprecated packages" and the BR2_DEPRECATED
  3385. option have been removed. Instead, packages are removed
  3386. immediately. Packages are only removed when they don't work
  3387. for some reason. If you still need a removed package and
  3388. you have a solution for the problem(s) that caused the
  3389. removal, please contribute it.
  3390. Architecture: support for sh64 removed, improved support for
  3391. MIPS core selection.
  3392. Toolchain: support for musl powerpc64le, mips64 and mipsr6
  3393. toolchains, ARC toolchain components updates, gcc 6.x series
  3394. bumped to 6.2.0, default binutils version switched to 2.26,
  3395. default gcc version switched to gcc 5.x, Linaro toolchains
  3396. updated, uclibc-ng bumped to 1.0.19. GCC is now always built
  3397. with TLS support. Checking of unsafe compiler options (that
  3398. point to host directories) has been extended with -isystem,
  3399. -idirafter and -iquote.
  3400. Package infrastructure: new variable $(PKG)_DL_OPTS, addition
  3401. of <pkg>-show-rdepends to list reverse dependencies, and
  3402. <pkg>-graph-rdepends to graph reverse dependencies. Linux tools
  3403. are now in a separate linux-tools package instead of in the
  3404. kernel build. Fakeroot has been replaced by pseudo.
  3405. CMake support: the toolchainfile.cmake file now provides a
  3406. definition of the CMAKE_BUILD_TYPE variable. The
  3407. toolchainfile.cmake also no longer forces the compiler/linker
  3408. flags defined by Buildroot.
  3409. New defconfigs: WaRP7, Solidrun's MX6 Cubox/Hummingboard,
  3410. TS-4900, Grinn's liteBoard, Udoo MX6Q/DL, Qemu ARM noMMU,
  3411. BeagleBone Qt5 demo, Digilent Zybo, FriendlyARM Nanopi NEO.
  3412. New packages: arm-trusted-firmware, amd-catalyst, atop, aufs,
  3413. aufs-util, fwts, gst1-rtsp-server, libglob, libite, mfgtools,
  3414. mksh, motion, paho-mqtt-c, php-amqp, pseudo, python-couchdb,
  3415. python-crcmod, python-cssutils, python-docutils,
  3416. python-futures, python-mwclient, python-mwscrape,
  3417. python-mwscrape2slob, python-pyelftools, python-pyicu,
  3418. python-pylru, python-pyqt5, python-requests-toolbelt,
  3419. python-simpleaudio, python-slob, rabbitmq-server, shapelib,
  3420. vdr, vdr-plugin-vnsiserver, vexpress-firmware, xvisor, iio and
  3421. gpio linux tools.
  3422. Removed packages: binutils 2.24, fakeroot, gcc 4.7, ipkg,
  3423. kodi-addon-xvdr, libgail, sstrip, torsmo, webkit, webkitgtk24,
  3424. wvdial, wvstreams.
  3425. Documentation: the list of packages that was present in the
  3426. Buildroot manual has been removed.
  3427. Legal info: the "licenses.txt" file that concatenates all
  3428. license texts is no longer generated - it was not considered
  3429. useful. The manifest.csv contains an empty cell instead of
  3430. "not saved" when no license file is available.
  3431. Other: addition of a DEVELOPERS file listing developers taking
  3432. care of packages or architectures.
  3433. Issues resolved (http://bugs.buildroot.org):
  3434. #7802: host-python build hangs compiling getbuildinfo.o
  3435. #8206: mplayer uses host xorg development files
  3436. #8516: mkcubiecard.sh uses outdated sfdisk switch -D
  3437. #8536: Building sudo with PAM results in unusable sudo
  3438. #8646: check-host-rpath script returns false positives when rpath
  3439. contains symlink
  3440. #8696: xdriver_xf86-input-mouse install header files in target
  3441. directory
  3442. #8811: rp-pppoe - generated scripts commands use HOST pathnames,
  3443. not necessarily TARGET
  3444. #8846: Orphaned/missing toolchain borks eclipse plugin
  3445. #8856: python tornado runtime wasn't met on buildroot 2016.02
  3446. #8901: gcc failes to build if fortran is enabled
  3447. #8916: LDFLAGS pass to openssh
  3448. #8941: "ls" of an NFSv4 share only works when pumped through strace
  3449. #8946: Valgrind fails to build with stack protection turned on
  3450. #9021: Kodi - Broken: Illegal instruction (core dumped)
  3451. #9096: rootfs.ubi not created
  3452. #9111: glibc 2.23: libmvec.so not copied
  3453. #9176: minnowboard : USB not mounted
  3454. #9196: raspberry pi 3 default build seem broken
  3455. #9201: Permission denied make: *** [core-dependencies] Error 126 in
  3456. Buildroot-2015.08.1
  3457. #9216: log4cpp package build fails to build within install
  3458. #9221: Kodi needs "Python .py and .pyc support" otherwise it crashes when
  3459. pressing buttons.
  3460. #9229: Firefly boot fails with: "failed to find part:boot"
  3461. #9256: [Config file] New device: Odroid-U2/U3
  3462. #9296: Buildroot Fails on applying patches
  3463. #9301: U-boot fails to build with default zynq_zed_defconfig configuration
  3464. #9316: U-boot fails to build if libssl-dev is not installed
  3465. #9321: Vanilla libcrypt++ v5.6.3 doesn't allow to work Nvidia Tegra's
  3466. flash utility (tegrarcm)
  3467. #9326: Odroid-C2 build results in non-bootable image
  3468. #9336: Improve iconv support for external toolchain based builds
  3469. #9356: gdb package
  3470. #9366: no link rootfs.ext4 -> rootfs.ext2
  3471. #9371: openssl: download failes with "Only allow downloads from primary
  3472. download site" + local server
  3473. #9381: check-host-rpath issues
  3474. #9386: ubinize fails with or without custom config
  3475. 2016.08, Released September 1st, 2016
  3476. Minor fixes.
  3477. Toolchain: ARC tools updated to arc-2016.09-eng010.
  3478. Updated/fixed packages: libshout, luajit, mpd, mplayer
  3479. Issues resolved (http://bugs.buildroot.org):
  3480. #7520: CodeSourcery toolchain ARM: C++11 std::exception_ptr..
  3481. #8341: Getting EGL Error: Could not create the egl surface:..
  3482. #9121: gst1-imx for i.MX6 compile failed, cannot find PXP, ..
  3483. 2016.08-rc3, Released August 29th, 2016
  3484. Fixes all over the tree.
  3485. Toolchain: C++ support for the internal blackfin toolchain
  3486. re-enabled.
  3487. Architecture: Default to bf532 CPU variant for blackfin,
  3488. Fix flat one memory region support for m68k and disable flat
  3489. seperate data support because of compatibility issues.
  3490. Defconfigs: Minnowboard and Raspberrypi: Fix errors with
  3491. post-build scripts when systemd is used.
  3492. Zynq microzed/zc706/zed: Fix u-booot configuration.
  3493. netbsd-queue package extended and renamed to
  3494. musl-compat-headers. With this, a number of musl compatibility
  3495. patches are no longer needed.
  3496. Updated/fixed packages: aircrack-ng, android-tools, babeld,
  3497. bcusdk, binutils, boa, busybox, connman, cpupower,
  3498. docker-engine, domoticz, elf2flt, ffmpeg, fwup, gcc,
  3499. glib-networking, gnupg, hplip, igd2-for-linux, imagemagick,
  3500. imx-uuc, iputils, jack2, kismet, kmsxx, libaio, libamcodec,
  3501. libconfuse, libffi, libfreeimage, libgcrypt, libgpg-error,
  3502. libiio, libraw, libsepol, libserialport, libxmlrpc, linknx,
  3503. linux-pam, lirc-tools, lldpd, logrotate, lshw, musl, ncurses,
  3504. neon, nettle, norm, ntfs-3g, openblas, openmpi, openswan,
  3505. pinentry, pixman, protobuf, python-meld3, qlibc, qt, qt5base,
  3506. quagga, rpcbind, rt-tests, runc, sane-backends, sconeserver,
  3507. squeezelite, stella, tftpd, tinycbor, tinydtls, trace-cmd,
  3508. trousers, tstools, uboot-tools, uclibc, ulogd, ustr, vlc,
  3509. webkitgtk, wireshark, xdriver_xf86-video-intel
  3510. Issues resolved (http://bugs.buildroot.org):
  3511. #9101: Error on support/download/git with system git older than 1.8.4
  3512. #9181: Compiling linux kernel fails if BR2_LINUX_KERNEL_TOOL_CPU..
  3513. 2016.08-rc2, Released August 17th, 2016
  3514. Fixes all over the tree.
  3515. Toolchain: disable broken C++ support for internal blackfin
  3516. toolchains, ARC toolchain bumped to arc-2016.09-eng008 (GCC 6)
  3517. to fix various issues.
  3518. System: Zoneinfo is available for the musl C library as well.
  3519. Updated/fixed packages: am33x-cm3, axel, barebox, bdwgc,
  3520. blktrace, cairo, dante, enlightenment, fbterm, ffmpeg, flex,
  3521. fontconfig, gcc, gmp, gnuplot, gnuradio, gst1-imx, hidapi,
  3522. inotify_tools, iproute2, kmsxx, lftp, libaio, libcofi,
  3523. libical, libpjsip, libsidplay2, libunwindow, libxml2,
  3524. linux-zigbee, lttng-libust, mpv, mtd, ncdu, netplug, ntp,
  3525. openblas, openipmi, owfs, php, poco, procps, qt, quota,
  3526. sg3_utils, spidev_test, systemd-bootchart, thrift,
  3527. uboot-tools, uclibc, webrtc-audio-processing, wayland, weston,
  3528. xdriver_xf86-video-savage, xserver_xorg-server, xen
  3529. Issues resolved (http://bugs.buildroot.org):
  3530. #9136: make graph-size fails with "ValueError: too many values to..
  3531. #9151: qt: fix build with ALSA >= 1.1.x
  3532. #9156: qt: Fix missing runtime Qt3Support dependency
  3533. #9161: modsetting patch not applied to xserver 1.18.4
  3534. #9166: Missing overlays directory in VFAT image for raspberry pi 3
  3535. 2016.08-rc1, Released August 6th, 2016
  3536. Fixes all over the tree and new features.
  3537. Toolchain: Fortran support added. eglibc support removed, musl
  3538. support no longer experimental. Blackfin and Microblaze
  3539. support for internal uClibc-ng toolchain, m68k/coldfire
  3540. improvements. The check for unsafe (build host) directories
  3541. access (/usr/include and /usr/lib) is now enabled by default.
  3542. Unused locales are now purged by default to save space (and
  3543. the default list of locales shrunk). The option to control
  3544. this has now moved from the toolchain menu to system
  3545. configuration.
  3546. Legal info improvements: sources are now hardlinked instead of
  3547. copied if possible to save space. Patches and extra downloads
  3548. are also saved.
  3549. An experimental configuration knob (BR2_REPRODUCIBLE) has been
  3550. added to make the builds more reproducible (E.G. less
  3551. differences in the binary output between builds of the same
  3552. configuration). This is still work in progress.
  3553. An option to execute a custom script inside the fakeroot
  3554. environment used to the generate the filesystem (E.G. to tweak
  3555. permissions or similar) has been added.
  3556. Git support now supports git submodules if
  3557. <pkg>_GIT_SUBMODULES is enabled.
  3558. Hash files for integritry validation have been added for all
  3559. packages.
  3560. Scanpypi utility to help creating packages from the Python
  3561. package index (pypi) has been added.
  3562. The makedevs utility now has support for adding file
  3563. capabilities using extended attributes.
  3564. New defconfigs: Arcturus uCP1020, Atmel sama5d{2,3,4} xplained
  3565. development configs, Blackfin GDB simulator, Linksprite
  3566. pcDuino, Minnow Board Max graphical demo, NXP i.MX25 PDK,
  3567. i.MX51 EVK, i.MX6UL Pico, i.MX7 sabresd, QEMU MIPS32r6{,el} and
  3568. MIPS64r6{,el} malta, Roseapple Pi, Samsung Snow chromebook,
  3569. Toradex Apalis i.MX6 COM, TS-4800, x86-64 PC BIOS and EFI
  3570. demos. A number of defconfigs have been updated and extended
  3571. to generate SD card images. Synopsys HS38 VDK defconfig removed.
  3572. New packages: 4th, acpica, acpitool, alljoyn, alljoyn-base,
  3573. alljoyn-tcl, alljoyn-tcl-base, argparse, babeld, batman-adv,
  3574. circus, dante, docker-containerd, docker-engine, domoticz,
  3575. efibootmgr, efivar, ficl, fwup, gsettings-desktop-schemas,
  3576. gtksourceview, gupnp-dlna, gupnp-tools, igd2-for-linux,
  3577. jemalloc, kmsxx, lapack, lft, libaacs, libamcodec, libbdplus,
  3578. libcoap, libdvdcss, libebur128, libfastjson, libminiupnpc,
  3579. libnatpmp, libpqxx, libuio, libvdpau, log4cpp, minissdpd,
  3580. mxsldr, nginx-nasxi, nginx-upload, ninja, nodm, odroid-mali,
  3581. odroid-scripts, omxplayer, openblas, openmpi, openzwave,
  3582. p7zip, pdbg, python-argh, python-dataproperty,
  3583. python-dateutil, python-dialog3, python-dicttoxml,
  3584. python-dominate, python-engineio, python-flask-jsonrpc,
  3585. python-flask-login, python-humanize, python-pathtools,
  3586. python-pathvalidate, python-pillow, python-prompt-toolkit,
  3587. python-pytablewriter, python-pytz, python-scapy3k,
  3588. python-sdnotify, python-socketio, python-tomako,
  3589. python-ubjson, python-u-msgpack, python-watchdog,
  3590. python-wcwidth, python-xlrd, python-xlsxwriter,
  3591. python-xlutils, python-xlwt, rs485conf, runc, sdl2_gfx,
  3592. sdl2_image, sdl2_ttf, shellinabox, sphinxbase, stella,
  3593. supertuxkart, systemd-bootchart, tekui, terminology, tinycbor,
  3594. tinydtls, ti-sgx-demos, ti-sgx-km, ti-sgx-um, tunctl, wavemon,
  3595. wiringpi, xen
  3596. Deprecated packages: ipkg, sstrip
  3597. Removed packages: sunxi-mali-prop
  3598. Issues resolved (http://bugs.buildroot.org):
  3599. #8931: segment fault when compile argp-help.c using aarch64-bu...
  3600. #8966: eglfs error. buildroot don't compile the library libeglfs.so
  3601. #8971: build for beaglebone fails
  3602. #8986: qt5imageformats fails to build on AArch64
  3603. #8991: grub2 fails to compile
  3604. #9001: Nodejs option not available
  3605. #9006: gcc with c++ support v4 and v5 fail to compile on fedora 24
  3606. #9016: arceb-buildroot-linux-uclibc ld uses incorrect default format
  3607. #9066: 8139TOO - faulty behaviour
  3608. #9086: Syntax Error (missing ")" in boot/uboot/uboot.mk on line 203)
  3609. #9091: U-Boot fails to boot with large ramdisk
  3610. 2016.05, Released May 31st, 2016
  3611. Minor fixes.
  3612. External toolchain: Fix for symlink handling when copying
  3613. links to target.
  3614. Updated/fixed packages: gcc, grantlee, gst-ffmpeg,
  3615. ipsec-tools, iptraf-ng, libcurl, libdrm, libsigsegv, ltris,
  3616. lttng-babeltrace, mbedtls, mesa3d, moarvm, mplayer, mtools,
  3617. net-tools, openpowerlink, pulseview, rpm, tinyalsa,
  3618. xdriver_xf86-video-fbturbo, xserver_xorg-server
  3619. 2016.05-rc3, Released May 26th, 2016
  3620. Fixes all over the tree.
  3621. Tweaks for SSP handling for external toolchains.
  3622. Updated/fixed packages: aircrack-ng, bluez5_utils, connman,
  3623. cups, erlang-p1-stringprep, expat, ffmpeg, flann, flannel, go,
  3624. gst1-libav, hidapi, hplip, iptraf-ng, jamvm, kodi,
  3625. kodi-screensaver-matrixtrails, libcurl, libepoxy, libgpgme,
  3626. libsemanage, libxslt, liquid-dsp, ltris, lxc, mesa3d, midori,
  3627. mpg123, mtr, openpgm, openpowerlink, oprofile, php,
  3628. postgresql, putty, python-service-identity, python-treq,
  3629. qlibc, qt5serialbus, ruby, stress-ng, strongswan, time, tinc,
  3630. ustr, valgrind, webkitgtk, libxml2, xorriso,
  3631. xserver_xorg-server
  3632. Issues resolved (http://bugs.uclibc.org):
  3633. #8936: Aircrack-ng - Alot of missing dependencies
  3634. 2016.05-rc2, Released May 17th, 2016
  3635. Fixes all over the tree.
  3636. Rootfs overlay handling now refuses to overwrite
  3637. /{usr,bin,sbin,lib} symlinks from BR2_ROOTFS_MERGED_USR option
  3638. even if these directories are present in the overlay.
  3639. External toolchain: Unbreak user provided libraries deployment
  3640. (BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS) handling after refactoring.
  3641. QEMU coldfire: Fix for signal handling kernel issue, enable
  3642. networking support.
  3643. Updated/fixed packages: android-tools, assimp, boost, gcc,
  3644. glibc, glmark2, gmrender-resurrect, go, go-bootstrap, iputils,
  3645. jack2, kodi-screensaver-asterwave, kodi-screensaver-rsxs,
  3646. kodi-visualisation-shadertoy, libarchive, libinput, libpjsip,
  3647. mali-t76x, mtr, nginx, opencv, openvpn, python-coherence,
  3648. qt5multimeda, quagga, samba4, sg3-utils, stress-ng, turbolua
  3649. 2016.05-rc1, Released May 10th, 2016
  3650. Fixes all over the tree and new features.
  3651. Architectures: new ARM variants: Cortex A17 and M4, improved
  3652. nonmmu (cortex-M) support, m68k has been re-enabled with
  3653. support for ColdFire. For x86, support for the i386 variant
  3654. has been dropped.
  3655. Toolchain: Add GCC 6 support, remove GCC 4.5, mark GCC 4.7 as
  3656. deprecated. Go programming language support, Add Binutils 2.26
  3657. support. Old Sourcery PowerPC external toolchains removed,
  3658. Sourcery MIPS 2016.06-8, AMD64 2015.11-139, NiosII 2015.11-130
  3659. added, Linaro ARM/ARMeb/Aarch64 toolchains updated.
  3660. New defconfigs: Firefly RK3288, Boundary Devices i.MX7 Nitrogen7,
  3661. STM32F429 and STM32F469 Discovery boards, Hardkernel ODROID-C2,
  3662. Raspberry Pi Zero and Raspberry Pi 3. Some Qemu defconfigs were
  3663. added for m68k, eXtensa-nommu and ColdFire.
  3664. Linux: use zImage by default on ARM, subversion repository
  3665. support (for u-boot as well).
  3666. New packages: aer-inject, android-tools, cannelloni,
  3667. cbootimage, cgroupfs-mount, connman-gtk, crudini, dt,
  3668. gmrender-resurrect, flannel, font-awesome, freeswitch, go,
  3669. go-bootstrap, gr-osmosdr, granite, i7z, imx-uuc,
  3670. kodi-adsp-basic, kodi-adsp-freesurround,
  3671. kodi-audiodecoder-opus, kodi-pvr-hdhomerun,
  3672. kodi-screensaver-asterwave, kodi-screensaver-cpblobs,
  3673. kodi-screensaver-matrixtrails, kodi-screensaver-planestate,
  3674. kodi-screensaver-rsxs, kodi-visualisation-fishbmc,
  3675. kodi-visualisation-fountain, kodi-visualisation-goom, libgee,
  3676. libimxvpuapi, libpjsip, libtomcrypt, libtommath, libusbgx,
  3677. lksctp-tools, mali-t76x, mkpimage, mpv, msr-tools, nload,
  3678. norm, nvme, owfs, pound, privoxy, procrank_linux, putty,
  3679. python-autobahn, python-characteristic, python-crossbar,
  3680. python-cryptography, python-iniparse, python-iowait,
  3681. python-lmdb, python-pexpect, python-ptyprocess,
  3682. python-pyasn-modules, python-pygments, python-pymysql,
  3683. python-pynacl, python-pyopenssl, python-pysocks,
  3684. python-pytrie, python-rpi-gpio, python-service-identity,
  3685. python-setproctitle, python-shutilwhich, python-treq,
  3686. python-txaio, python-ujson, python-wsaccel, qt5canvas3d,
  3687. qt5location, qt5quickcontrols2, qt5serialbus, qt5tools,
  3688. raptor, scrub, taskd, tegrarcm, turbolua, valijson,
  3689. wayland-protocols, webkitgtk, wilc1000-firmware, wpan-tools,
  3690. xdriver_xf86-video-amdgpu
  3691. Removed packages: foomatic-filters, python-m2crypto,
  3692. qt5quick1, qt5webkit-examples, samba, xdriver_xf86-input-void
  3693. Issues resolved (http://bugs.buildroot.org):
  3694. #6830: Qt5: no fonts are installed
  3695. #7562: musl buildroot-toolchain and BR2_MIPS_SOFT_FLOAT break
  3696. #7580: Invalid filesystem in Pandaboard defconfig
  3697. #8346: wf111 package removes all kernel module dependencies
  3698. #8436: xserver_xorg-server Segmentation fault
  3699. #8736: IPV6 forced on in busybox
  3700. #8746: At startup system stops with 'cannot set terminal proces..
  3701. #8751: make fail [fio does not build on sh]
  3702. #8766: Compiling host-gcc-final-4.9.3 broken on i386
  3703. #8771: make savedefconfig modifies sources
  3704. #8781: Unable to build uboot for imx28evk
  3705. #8786: gdb fails to build with xz and expat support at the same
  3706. #8801: Compilation of Buildroot 2016.2 for Raspberry Pi with...
  3707. #8806: Buildroot 2016.2 for Raspberry Pi requires that ext4...
  3708. #8836: Can't select Vim in menuconfig
  3709. #8851: Make sure fio can compile with libaio support if it...
  3710. #8861: With buildroot 2016.02 trying to build for corei7-avx
  3711. fails while trying to build host-binutils
  3712. #8866: Making an USB flash bootable with extlinux build with
  3713. buildroot does not work
  3714. 2016.02, Released March 1st, 2016
  3715. Minor fixes, mostly security related.
  3716. Circular dependency issue with same-as-kernel linux-headers
  3717. option fixed.
  3718. Updated/fixed packages: bluez5_utils, heirloom-mailx,
  3719. imx-gpu-viv, kodi-pvr-argustv, kodi-pvr-mediaportal-tvserver,
  3720. kodi-pvr-nextpvr, libfcgi, openssl, pifmrds, powerpc-utils,
  3721. python-m2crypto, slang, sox, squid, tn5250, xerces, zsh
  3722. 2016.02-rc3, Released February 27th, 2016
  3723. Fixes all over the tree.
  3724. Defconfigs: Ensure EABIhf is correctly enabled for ARM cores
  3725. where VFP is optional (but present on the specific hw). Fix
  3726. ARM variant selection for freescale_imx31_3stack_defconfig.
  3727. Ensure tarballs of downloaded git trees do not contain a
  3728. timestamp.
  3729. Clarify license of patches in COPYING.
  3730. Updated/fixed package: avahi, binutils, cairo, can-festival,
  3731. chrony, cifs-utils, dnsmasq, dvdauthor, e2fsprogs, efl,
  3732. erlang-rebar, eudev, fbterm, gawk, gnupg2, gnuradio, gpm,
  3733. gst1-plugins-good, hostapd, imagemagick, iproute2, iputils,
  3734. jack2, kexec, kismet, lftp, libarchive, libeXosip2, libfm,
  3735. libglib2, libsoil, libssh, libssh2, libuci, links, lshw, lxc,
  3736. mediastreamer, mono, mraa, mutt, nfs-utils, numactl, ofono,
  3737. omniorb, openipmi, openobex, patch, pax-utils, perf,
  3738. pulseaudio, pure-ftp, qhull, qt, quagga, quota, sdl_sound,
  3739. shairport-sync, spice, sysklogd, syslog-ng, trace-cmd,
  3740. trousers, tvheadend, util-linux, vim, webkitgtk24, wireshark,
  3741. wpa_supplicant, xerces, zsh
  3742. Issues resolved (http://bugs.uclibc.org):
  3743. #8651: libMonoPosixHelper.so wrong link reference in buildroot..
  3744. 2016.02-rc2, Released February 18th, 2016
  3745. Fixes all over the tree.
  3746. Toolchain: PR19405 backport to binutils 2.25.1 to fix NIOS ld
  3747. crash, backport of Xtensa .init/.fini literals handling.
  3748. glibc security patches for CVE-2014-8121, CVE-2015-1781
  3749. and CVE-2015-7547.
  3750. Defconfigs for Acmesystems Arietta g25 added.
  3751. Updated/fixed packages: binutils, boost, chrony, dovecot,
  3752. e2fsprogs, fio, gdb, glibc, graphite2, icu, kbd, libbsd,
  3753. libcue, libgcrypt, libraw, links, mc, mosquitto, nodejs,
  3754. postgresql, pptp-linux, pulseaudio, samba4, spice, squid,
  3755. sysklogd, systemd, tiff, uclibc, ulogd, util-linux, valgrind.
  3756. Issues resolved (http://bugs.uclibc.org):
  3757. #8576: Building embedded Linux for Atmel SAMA5D4_Xplained...
  3758. #8606: Problem compiling on Arch Linux
  3759. #8681: kbd 2.0.3 does not build on rpi
  3760. 2016.02-rc1, Released February 10th, 2016
  3761. Fixes all over the tree and new features.
  3762. Toolchain: Support for GCC 5.3.x. ARC toolchain updated to
  3763. arc-2015.12. Support for legacy uClibc dropped, default to
  3764. uClibc-ng instead. Added sys/queue.h implementation for MUSL
  3765. for compatibility. Updated versions of Code sourcery and
  3766. Linaro toolchains. MIPS Codescape toolchains added. Version
  3767. selection for preconfigured external toolchains removed.
  3768. New Defconfigs: ARM Juno r0/r1 development boards, Freescale
  3769. i.MX6UL Evaluation Kit, Intel Galileo Gen 2, Orange Pi PC.
  3770. A number of defconfigs have been extended to generate complete
  3771. system images using genimage.
  3772. Linux: Automatically patch timeconst.pl for <3.9 kernels,
  3773. which isn't compatible with modern perl versions, breaking the
  3774. build when building on recent (Fedora 23, Debian
  3775. Testing/Unstable, ..) distributions.
  3776. Makedevs utility now accepts textual (non-numerical) user and
  3777. group names.
  3778. Vagrant file to easily setup a working development environment
  3779. in a VM has been added.
  3780. Size-stats-compare script to compare rootfs sizes between
  3781. builds has been added.
  3782. Infozip package renamed to zip. EFL packages restructured.
  3783. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  3784. angularjs, apache, apr, argp-standalone, armadillo, arptables,
  3785. at, atk, audiofile, aumix, autoconf-archive, avahi, bash, bc,
  3786. bcache-tools, bdwgc, beecrypt, bind, binutils, bluez5_utils,
  3787. bluez_utils, bonnie, boost, busybox, cairo, cdrkit, chrony,
  3788. clamav, cmake, collectd, connman, coreutils, cppcms, crda,
  3789. cryptodev-linux, cryptsetup, cups, cwiid, cxxtest, dbus,
  3790. dbus-cpp, dbus-glib, debianutils, dhcp, dhcpcd, dhrystone,
  3791. dillo, directfb, directfb-examples, dmraid, dnsmasq, doom-wad,
  3792. dovecot, dovecot-pigeonhole, dropbear, dtv-scan-tables,
  3793. dvb-apps, dvbsnoop, ecryptfs-utils, eigen, ejabberd,
  3794. elementary, elfutils, enlightenment, erlang, espeak, eudev,
  3795. eventlog, exfat, exfat-utils, exiv2, expedite, faifa,
  3796. fakeroot, fastd, fbgrab, fetchmail, ffmpeg, findutils, fio,
  3797. firmware-imx, flann, flashrom, flite, flot, fmlib, freerdp,
  3798. freescale-imx, freetype, gauche, gawk, gcc, gcc-final, gcr,
  3799. gdb, gdk-pixbuf, geoip, gesftpserver, gettext, giflib, git,
  3800. glibc, glibmm, glog, gmp, gnupg, gnupg2, gnutls, gob2, gpsd,
  3801. gptfdisk, grep, gst1-libav, gst1-plugins-{bad,base,good,ugly},
  3802. gst-ffmpeg, gst-plugins-{bad,base,good,ugly}, gstreamer,
  3803. gstreamer1, guile, gvfs, gzip, harfbuzz, haserl, hiawatha,
  3804. hostapd, hplip, icu, ifupdown, imagemagick, imx-gpu-viv,
  3805. imx-kobs, imx-lib, input-tools, intel-microcode, iperf3,
  3806. ipmitool, iproute2, iprutils, ipsec-tools, ipset, iptables,
  3807. iputils, irda-utils, irssi, iucode-tool, jack2, janus-gateway,
  3808. jpeg-turbo, jquery-datetimepicker, jquery-keyboard,
  3809. jquery-sparkline, jquery-ui, jquery-ui-themes,
  3810. jquery-validation, json-c, kbd, kernel-module-imx-gpu-viv,
  3811. keyutils, kmod, knock, kodi, lcdproc, lcms2, leafnode2,
  3812. leafpad, libass, libatomic_ops, libbroadvoice, libbsd,
  3813. libcap-ng, libcdaudio, libcue, libcurl, libdrm, libecore,
  3814. libedbus, libedit, libedje, libeet, libefreet, libeina,
  3815. libeio, libelementary, libembryo, libepoxy, libethumb, libev,
  3816. libevas, libevas-generic-loaders, libevdev, libevent, libffi,
  3817. libfm, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  3818. libftdi, libfuse, libgail, libglew, libglib2, libgtk2,
  3819. libgtk3, libgudev, libhttpparser, libidn, libinput, libiscsi,
  3820. libjpeg, liblinear, libmbim, libmicrohttpd, libndp, libnspr,
  3821. libnss, liboauth, liboping, libpciaccess, libplist, libpng,
  3822. libraw, libraw1394, librsvg, libseccomp, libsecret,
  3823. libserialport, libsigc, libsigrok, libsigrokdecode,
  3824. libsndfile, libsoc, libsodium, libsoup, libssh2, libsvg,
  3825. libsvg-cairo, libtasn1, libtirpc, libtorrent, libungif,
  3826. libunwind, libupnpp, liburcu, libuv, libv4l, libva,
  3827. libva-intel-driver, libvips, libvncserver, libxml2, libxmlpp,
  3828. lightning, lighttpd, linknx, linux-firmware, linux-fusion,
  3829. linux-headers, liquid-dsp, lirc-tools, live555, lm-sensors,
  3830. lockdev, lshw, ltp-testsuite, ltrace, lttng-babeltrace,
  3831. lttng-libust, lttng-modules, lttng-tools, lua, luabitop,
  3832. luarocks, luv, lvm2, lxc, makedevs, mc, memcached, memtest86,
  3833. mesa3d, mesa3d-demos, mesa3d-headers, micropython,
  3834. micropython-lib, minicom, minidlna, mjpg-streamer, mke2img,
  3835. moarvm, modem-manager, mongoose, mongrel2, monkey, mono,
  3836. monolite, mosh, mosquitto, mpd, mplayer, msgpack, mtdev2tuio,
  3837. musepack, musl, mysql, nano, nasm, nbd, neard, netatalk,
  3838. netsnmp, nettle, net-tools, network-manager, nfs-utils, nginx,
  3839. nmap, nodejs, ntfs-3g, ntp, numactl, nut, nvidia-driver,
  3840. odhcp6c, ofono, ola, olsr, omniorb, opencv, opencv3, openipmi,
  3841. openldap, openntpd, openobex, openocd, openpgm,
  3842. open-plc-utils, openpowerlink, openssh, openssl, openswan,
  3843. openvpn, opkg, oprofile, opus, opusfile, p11-kit, package,
  3844. pango, pax-utils, pciutils, pcmanfm, perl, perl-db-file,
  3845. perl-io-socket-ssl, perl-libwww-perl, perl-net-dns, perl-uri,
  3846. perl-xml-libxml, php, php-ssh2, picocom, pinentry, pixman,
  3847. polarssl, popt, portaudio, pppd, procps-ng, proftpd, protobuf,
  3848. psmisc, ptpd2, pulseaudio, pulseview, pv, python, python3,
  3849. python-alsaaudio, python-can, python-cffi, python-cherrypy,
  3850. python-httplib2, python-jinja2, python-lxml, python-m2crypto,
  3851. python-mako, python-msgpack, python-psutil, python-pyasn,
  3852. python-pycparser, python-pydal, python-pyftpdlib,
  3853. python-pyroute2, python-pyxml, python-pyzmq, python-requests,
  3854. python-serial, python-setuptools, python-six, python-spidev,
  3855. python-tornado, python-twisted, python-web2py, python-webpy,
  3856. python-werkzeug, python-zope-interface, qemu, qhull, qpdf, qt,
  3857. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  3858. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  3859. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  3860. qt5serialport, qt5svg, qt5webchannel, qt5webkit,
  3861. qt5webkit-examples, qt5websockets, qt5x11extras,
  3862. qt5xmlpatterns, qt-webkit-kiosk, racehound, radvd, read-edid,
  3863. readline, redis, rpcbind, rpi-firmware, rpi-userland, rrdtool,
  3864. rsync, rsyslog, rtai, rtorrent, rt-tests, rubix, ruby, samba4,
  3865. sconeserver, setools, shairport-sync, sigrok-cli, skeleton,
  3866. smack, snowball-init, socat, sp-oops-extract, sqlite,
  3867. squashfs, squeezelite, squid, sredird, sshfs,
  3868. start-stop-daemon, strace, strongswan, stunnel, subversion,
  3869. sunxi-tools, swig, sysdig, syslog-ng, sysstat, systemd,
  3870. sysvinit, taglib, tcl, tcpreplay, thrift, ti-gfx, tinyalsa,
  3871. tor, torsmo, trace-cmd, transmission, tremor, triggerhappy,
  3872. trinity, tvheadend, tzdata, uboot-tools, uclibc, udisks,
  3873. udpcast, unionfs, upmpdcli, usb_modeswitch,
  3874. usb_modeswitch_data, ustr, util-linux, vala, valgrind,
  3875. vboot-utils, vde2, vlc, vnstat, webkit, webkitgtk24, weston,
  3876. wget, whetstone, whois, wine, wipe, wireless-regdb, wireshark,
  3877. wpa_supplicant, w_scan, x11r7, xapp_xbacklight, xapp_xcompmgr,
  3878. xapp_xinput, xapp_xkbcomp, xdriver_xf86-input-evdev,
  3879. xdriver_xf86-input-libinput, xdriver_xf86-input-synaptics,
  3880. xdriver_xf86-video-ati, xdriver_xf86-video-fbturbo,
  3881. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  3882. xfont_encodings, xfont_font-adobe-100dpi,
  3883. xfont_font-adobe-75dpi, xfont_font-adobe-utopia-100dpi,
  3884. xfont_font-adobe-utopia-75dpi, xfont_font-adobe-utopia-type1,
  3885. xfont_font-alias, xfont_font-arabic-misc,
  3886. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  3887. xfont_font-bh-lucidatypewriter-100dpi,
  3888. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  3889. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  3890. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  3891. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  3892. xfont_font-daewoo-misc, xfont_font-dec-misc,
  3893. xfont_font-ibm-type1, xfont_font-isas-misc,
  3894. xfont_font-jis-misc, xfont_font-micro-misc,
  3895. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  3896. xfont_font-misc-meltho, xfont_font-misc-misc,
  3897. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  3898. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  3899. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  3900. xfont_font-xfree86-type1, xfsprogs, xkeyboard-config, xl2tp,
  3901. xlib_libfontenc, xlib_libXi, xmlstarlet, xscreensaver,
  3902. xserver_xorg-server, xtables-addons, xvkbd, xz, yad, yasm,
  3903. ympd, zeromq, zic, znc, zsh,
  3904. New packages: acsccid, assimp, atkmm, autofs, bcm2835,
  3905. cairomm, cantarell, chocolate-doom, comix-cursors, cxxtest,
  3906. edid-decode, emlog, gcr, gtkmm3, hidapi, jquery-sidebar,
  3907. kernel-module-imx-gpu-viv, libasplib, libcroco, libdvbpsi,
  3908. libfreeglut, libgdiplus, libglfw, libhdhomerun, libnet,
  3909. libsoil, lldpd, luvi, mbedtls, minizip, miraclecast, mongodb,
  3910. mraa, netbsd-queue, netsniff-ng, nss-pam-ldapd,
  3911. obsidian-cursors, openal, openbox, pangomm,
  3912. python-backports-abc, python-beautifulsoup4, python-cbor,
  3913. python-click, python-cssselect, python-ecdsa, python-html5lib,
  3914. python-idna, python-ipaddress, python-mistune, python-netaddr,
  3915. python-paho-mqtt, python-paramiko, python-pyparted,
  3916. python-pysmb, python-pyudev, python-singledispatch,
  3917. python-smbus-cffi, python-urllib3, qt53d, rabbitmq-c, rfkill,
  3918. sbc, spi-tools, tpm-tools, trousers, ubus, unrar, unscd,
  3919. unzip, v4l2grab, xdriver_xf86-video-nouveau, xdotool, zbar
  3920. Removed packages: libungif, python-pyxml,
  3921. Issues resolved (http://bugs.uclibc.org):
  3922. #7886: gettext: link failure with locally-installed libxml2
  3923. #7892: systemd-journald is broken
  3924. #8066: nodejs crashes when built with gcc 4.9
  3925. #8296: nodejs 0.12.7 - npm crashes (seg core dump)
  3926. #8501: gunzip fails to uncompress files
  3927. #8541: fail to build host-fakeroot-1.20.2
  3928. #8546: build instructions for raspberry pi don't work
  3929. #8571: strace for ARC compile error
  3930. #8581: pciutils.mk PCIUTILS_MAKE_OPTS typo
  3931. #8616: Fail to build for raspberrypi_defconfig with big endian
  3932. #8621: sqlite package, properly enable readline
  3933. 2015.11, Released November 30th, 2015
  3934. Minor fixes.
  3935. Merged/seperate /usr handling is now also performed for
  3936. staging so cross-gdb / gdbserver can find the libraries.
  3937. Updated/fixed packages: autossh, conntrack-tools, dcron,
  3938. espeak, gcc, glmark2, gpsd, gstreamer1, libglib2, libsigsegv,
  3939. libsoc, libv4l, minidlna, mongrel2, opencv, polarssl,
  3940. rpi-userland, rubix, skeleton, tovid, uemacs, valgrind, yad,
  3941. zmqpp
  3942. Issues resolved (http://bugs.uclibc.org):
  3943. #8441: Invalid directory for X11 fonts in target (RPi2)
  3944. #8491: libglib2 2.46.1 not Building for armv5 on 2015.11-rc3
  3945. 2015.11-rc3, Released November 26th, 2015
  3946. Fixes all over the tree.
  3947. We have a new modern website!
  3948. Updated/fixed packages: apitrace, audiofile, autossh, bullet,
  3949. c-ares, collectd, conntrack-tools, cryptodev-linux, dropbear,
  3950. fastd, gmp, gpsd, gst-plugins-bad, gst-plugins-base,
  3951. gst-plugins-good, gst-plugins-ugly, gstreamer, gstreamer1,
  3952. guile, iodine, iproute2, jimtcl, kompexsqlite, libethumb,
  3953. libfreeimage, libgsasl, libgtk3, libxml2, localedef,
  3954. lttng-tools, macchanger, mongrel2, mpd, openntpd, openssl,
  3955. oprofile, pcre, qt5base, quagga, rpi-userland, sconeserver,
  3956. sdl, spidev_test, sqlite, strongswan, ustr, xapp_sessreg,
  3957. yajl, zmqpp
  3958. Issues resolved (http://bugs.uclibc.org):
  3959. #6872: gpsd: disabled on microblaze
  3960. #8321: invalid opcode error with minidlna and ffmpeg
  3961. #8336: Default systemd configuration fails to boot correctly in 2015-08
  3962. #8446: rpi-userland failed to build with glibc 2.22
  3963. 2015.11-rc2, Released November 19th, 2015
  3964. Fixes all over the tree.
  3965. LD_LIBRARY_PATH is no longer used to ensure host binaries find
  3966. their libraries, fixing issues on recent Fedora.
  3967. Toolchain fixes for powerpc e5500 / e6500. Fix for an issue
  3968. with ${TARGET}-cc after the move to use a toolchain wrapper
  3969. for the internal toolchain.
  3970. Appy-patches.sh now correctly applies all files listed in
  3971. series files.
  3972. Fixes for merged /usr handling when a custom skeleton is used.
  3973. Updated/fixed packages: axfsutils, boost, busybox, dhcp,
  3974. directfb, dropbear, ebtables, fastd, ffmpeg, gauche, gcc,
  3975. gettext, gst1-plugins-bad, hostapd, ibrdtnd, libcurl,
  3976. libecore, libgudev, libnss, libpng, libserial, libssh2,
  3977. libuecc, libxml2, linux-headers, liquid-dsp, ltris,
  3978. lua-periphery, minidlna, mongrel2, mpd, mpg123, mplayer,
  3979. mysql, opencv, opencv3, package, perl-file-util, php-ssh2,
  3980. polarssl, pulseaudio, python-protobuf, qemu, qt5base, ranger,
  3981. ruby, skeleton, slang, squeezelite, strongswan, tovid, uclibc,
  3982. ushare, wine, wpa_supplicant, x265,
  3983. xdriver_xf86-video-siliconmotion, zxing-cpp
  3984. Issues resolved (http://bugs.uclibc.org):
  3985. #4790: Running udhcpc on a system with NFS root kills NFS
  3986. #8456: Building host-pkgconf on Fedora 23 fails due to..
  3987. 2015.11-rc1, Released November, 7th 2015
  3988. Fixes all over the tree and new features.
  3989. Architectures:
  3990. - Support for sparc64 added (internal toolchain with glibc
  3991. only).
  3992. - Support for mips32r6 and mips64r6 added.
  3993. - Support for Intel Quark X1000 CPU.
  3994. - Switch to EABIhf by default on ARM when a VFP is available.
  3995. Toolchains:
  3996. - glibc 2.22, gdb 7.10, use gdb 7.9 by default, musl 1.1.12,
  3997. uclibc-ng 1.0.8, host-gdb enabled on AArch64.
  3998. - The toolchain wrapper which was used only for external
  3999. toolchains is now also used for Buildroot internal
  4000. toolchains. This allowed to fix the ccache support, prepare
  4001. the way for top-level parallel build support and remove gcc
  4002. patches used to detect header/library path poisoning.
  4003. - Remove Analog Devices Blackfin toolchain 2012R2.
  4004. - Fix several Xtensa build failures by switching from
  4005. text-section-literals to auto-litpools.
  4006. - Enable MIPS64 support in uClibc-ng, use uClibc on ARC
  4007. rather than a specific fork.
  4008. - Linaro toolchains for ARM, ARMeb and AArch64 updated to
  4009. 2015.08. 2014.09 version is kept since 2015.08 only runs on
  4010. x86_64 hosts.
  4011. Bootloaders:
  4012. - Fix ARM64 support in U-Boot.
  4013. Defconfigs:
  4014. - Added: ARC HS38 VDK virtual boards, Avnet Microzed, Boundary
  4015. Devices Nitrogen SoloX, Freescale i.MX6 SoloX Sabre SD,
  4016. OLinuxino A20 Lime2, Qemu Sparc64, Qemu SuperH 4 big endian,
  4017. Synopsys AArch64 VDK virtual platform.
  4018. - Updated: calao_qil_a9260, calao_usb_a9g20_lpw, ci20,
  4019. cubieboad, freescale_imx6_*, imx53loco, imx6_vab820,
  4020. mpc8315erdb, qmx6, p1010rdb, qemu, raspberrypi,
  4021. raspberrypi2, riotboard, snps_axs10*, wandboard.
  4022. - Removed: at91rm9200df, at91sam9260dfc, at91sam9263ek,
  4023. calao_snowball_defconfig, gnublin, integrator926_defconfig.
  4024. Infrastructure:
  4025. - Support for fetching from Mercurial tags fixed.
  4026. - Introduce LINUX_NEEDS_MODULES, which allows to enforce
  4027. module support to be enabled in the kernel when a package
  4028. builds out-of-tree kernel modules (through the
  4029. pkg-kernel-module infrastructure or on its own).
  4030. - Improve the perl package infrastructure to automatically add
  4031. the dependency to the perl interpreter to target perl module
  4032. packages.
  4033. - Remove trailing slashes in <pkg>_SITE and addition of a
  4034. check to ensure such trailing slashes are no longer added.
  4035. - Extend the legal infrastructure to allow packages to declare
  4036. their actual source code. This is useful for packages for
  4037. which <pkg>_SOURCE points to pre-built binaries (as is the
  4038. case for external toolchains). The new <pkg>_ACTUAL_SOURCE
  4039. variable allows to point to the source code in such cases.
  4040. - Improved ccache support, thanks to the usage of a toolchain
  4041. wrapper for internal toolchain. Now a single cache directory
  4042. can be shared between different Buildroot builds.
  4043. - Addition of a 'graph-size' make targets, which generates a
  4044. PDF graph of per-package size of the root filesystem.
  4045. - Addition of <pkg>_EXCLUDES so that packages can request
  4046. certain parts of the source code tarball to not be
  4047. extracted. This feature is currently used by gcc and
  4048. toolchain-external.
  4049. - Packages can now use the <pkg>_PKGDIR variable, provided by
  4050. the package infrastructure, to reference their package
  4051. directory, instead of explicitly using package/<pkg>/.
  4052. Filesystems:
  4053. - Add high lz4 compression to squashfs.
  4054. - Simplification of shell profile files in the default
  4055. skeleton.
  4056. - Remove ftp user and /home/ftp from the skeleton, and let ftp
  4057. server packages create these when needed.
  4058. - Add support for /bin, /sbin and /lib to be symlinks to their
  4059. corresponding directories in /usr. This is enforced for
  4060. systemd configurations, and optional for other
  4061. configurations.
  4062. - Support for AXFS filesystem image generation added.
  4063. - New options to add extra space/inodes to ext2/3/4 images.
  4064. Updated/fixed packages:
  4065. adwaita-icon-theme, apache, apitrace, atk, audit, avahi,
  4066. barebox, bash, batctl, bind, binutils, bluez_utils, boost,
  4067. bridge-utils, cairo, ccache, chrony, clapack, cloog, cmake,
  4068. collectd, connman, conntrack-tools, coreutils, cpio,
  4069. cryptsetup, dbus, dbus-cpp, devmem2, dhcp, dhcpcd, dhcpdump,
  4070. dhrystone, dillo, directfb, directfb-examples, dmraid,
  4071. dos2unix, dovecot, dovecot-pigeonhole, drbd-utils, dropbear,
  4072. dropwatch, dtc, e2fsprogs, ebtables, efl, eigen, ejabberd,
  4073. elf2flt, elfutils, erlang, ethtool, eudev, evemu, exfat,
  4074. exfat-utils, expat, faifa, fbterm, fdk-aac, feh, ffmpeg, file,
  4075. flashrom, fping, freerdp, freescale-imx, freetype, gdk-pixbuf,
  4076. genimage, gettext, git, glib-networking, glmark2, gnupg2,
  4077. gnuradio, gnutls, gpsd, grep, grub2, gst1-imx, gst1-libav,
  4078. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  4079. gst1-plugins-ugly, gst1-validate, gst-fsl-plugins,
  4080. gst-plugins-bad, gstreamer1, guile, gvfs, harfbuzz, haveged,
  4081. hostapd, icu, imagemagick, impiutil, imx-gpu-viv, imx-vpu,
  4082. inadyn, intltool, iostat, iperf3, ipmiutil, iproute2,
  4083. iptables, iw, jpeg-turbo, jq, jsoncpp, kexec-lite, kmod, kodi,
  4084. kodi-audioencoder-flac, kodi-pvr-argustv, kodi-pvr-filmon,
  4085. kodi-pvr-hts, kodi-pvr-mythtv, kodi-pvr-pctv,
  4086. kodi-pvr-stalker, kodi-pvr-vbox,
  4087. kodi-visualisation-waveforhue, less, lftp, libbluray,
  4088. libcgroup, libconfuse, libcurl, libdcadec, libdrm, libevdev,
  4089. libffi, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  4090. libgcrypt, libglew, libglib2, libgtk3, libidn, liblinear,
  4091. liblockfile, libmicrohttpd, libnetfilter_conntrack, libnfs,
  4092. libnftnl, libnl, libnspr, libnss, libpcap, libpfm4, libpng,
  4093. libselinux, libserial, libsoup, libsoxr, libstrophe, libtasn1,
  4094. libtirpc, libtorrent, libupnpp, liburcu, libusb-compat, libuv,
  4095. libv4l, libva, libva-intel-driver, libxcb, lighttpd, links,
  4096. linux, linux-firmware, linux-fusion, linux-headers,
  4097. lirc-tools, localedef, lpeg, lsof, ltp-testsuite,
  4098. lttng-libust, lttng-tools, lua-periphery, luaposix, lvm2, lxc,
  4099. lz4, mdadm, mesa3d, mesa3d-headers, minicom, minidlna, moarvm,
  4100. modem-manager, mosquitto, mpd, mpdecimal, mpg123, mplayer,
  4101. mrouted, msmtp, mtd, mutt, nettle, network-manager, nfs-utils,
  4102. nftables, nginx, nodejs, noip, ntp, ofono, opencv3, openpgm,
  4103. openssl, openswan, openvpn, pango, parted, perl, perl-cross,
  4104. perl-crypt-openssl-random, perl-http-message,
  4105. perl-io-socket-ssl, perl-module-build, perl-mojolicious,
  4106. perl-netaddr-ip, perl-net-dns, perl-net-http, perl-net-ssleay,
  4107. perl-uri, perl-xml-libxml, php, picocom, pixman, pkgconf,
  4108. poco, polarssl, portaudio, portmap, postgresql, proftpd,
  4109. protobuf, protobuf-c, pulseaudio, python-configshell-fb,
  4110. python-networkmanager, python-numpy, python-pyparsing,
  4111. python-pypcap, python-rtslib-fb, python-spidev, python-urwid,
  4112. python-web2py, qemu, qt5base, redis, rngtools, rng-tools,
  4113. rpi-firmware, rpi-userland, rtmpdump, rtorrent, ruby, samba,
  4114. samba4, sane-backends, sconeserver, sdl, sed, setools,
  4115. shairport-sync, shared-mime-info, sland, smartmontools,
  4116. softether, spice-protocol, sqlcipher, sqlite, squid,
  4117. strongswan, stunnel, subversion, sudo, sunxi-tools,
  4118. supervisor, systemd, tar, targetcli-fb, tcpdump, tiff, tor,
  4119. tvheadend, tzdata, uboot-tools, udisks, unionfs, upmpdcli,
  4120. util-linux, vala, valgrind, vim, vlc, vorbis-tools, vsftpd,
  4121. vtun, wavpack, webkitgtk24, weston, whois, wireless-regdb,
  4122. wireshark, wpa_supplicant, xdriver_xf86-input-vmmouse,
  4123. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  4124. xdriver_xf86-video-sis, xlib_libXi, xorg-server,
  4125. xtables-addons, xterm, xz, zic, znc, zsh
  4126. New packages:
  4127. axfsutils, bitstream, check, dvblast, eventlog, fastd, gauche,
  4128. gmock, graphite2, gssdp, gupnp, gupnp-av, ibrcommon, ibrdtn,
  4129. ibrdtnd, ibrdtn-tools, imx-kobs, iqvlinux, irssi,
  4130. kompexsqlite, libbroadvoice, libcddb, libcodec2, libcrossguid,
  4131. libg7221, libhttpparser, libilbc, libldns, libmng,
  4132. libopenh264, libpam-radius-auth, libpam-tacplus, libsilk,
  4133. libsoundtouch, libssh, libuecc, libyuv, liquid-dsp, luv,
  4134. micropython, micropython-libs, python-pyratemp,
  4135. python-pyroute2, python-ranger, rapidxml, scrypt, sdl2,
  4136. sp-oops-extract, squeezelite, stress-ng, swupdate, syslog-ng,
  4137. x265, xdriver_xf86-video-fbturbo, xxhash, yad, zxing-cpp
  4138. Removed packages:
  4139. blackbox (was deprecated), divine (merged in directfb),
  4140. kobs-ng (replaced by imx-kobs), mediactl (merged in libv4l),
  4141. sawman (merged in directfb), schifra (marked broken since a
  4142. long time), texinfo (host variant only, no longer used), zxing
  4143. (replaced by zxing-cpp),
  4144. Issues resolved (http://bugs.uclibc.org):
  4145. #4099: cut utility from GNU coreutils works incorrect
  4146. #7772: libxml-parser-perl build failure: missing dependency
  4147. ExtUtils/MakeMaker
  4148. #7931: Default configuration for Cubieboard v1 is outdated
  4149. #8116: 2015.05-rc2 raspberrypi2_defconfig network interface
  4150. not coming up
  4151. #8246: X.org DRI2 build issue
  4152. #8256: pointing to /usr/bin/objcopy old version (x86) instead
  4153. of the generated one
  4154. #8266: mplayer build issue
  4155. #8281: pyrexc fails to run when path is too long
  4156. #8316: lttng-tools and lttng-babeltrace executables contain
  4157. bad RPATH pointing to host machine
  4158. #8331: kexec wants shutdown in /sbin, but systemd installs it
  4159. in /usr/sbin
  4160. #8361: Buildroot 2015.08.1 skeleton inittab overwritten by
  4161. busybox's version
  4162. #8366: libevent does not build
  4163. #8386: build failed with external toolchain
  4164. #8391: Node.js 0.12.7 fails to build on raspberry_pi defconfig
  4165. #8396: CCACHE initialization
  4166. #8401: gpsd 3.15 NMEA support
  4167. #8416: cups depends on BR2_DEPRECATED_SINCE_2015_05
  4168. #8421: util-linux installs systemd files in output/target/home/
  4169. 2015.08, Released August 31st, 2015
  4170. Minor fixes.
  4171. OpenCV 3.x package renamed to opencv3. OpenCV 2.4.x
  4172. reintroduced as opencv.
  4173. Updated/fixed packages: bootutils, canfestival, cppcms,
  4174. curlftpfs, dhcpdump, dropbear, erlang-p1-tls, exfat, gnuradio,
  4175. ipkg, libgudev, libmbim, libwebsock, linux-pam, lm-sensors,
  4176. ltrace, midori, network-manager, openssh, perl-file-listing,
  4177. perl-http-cookies, perl-http-daemon, perl-http-negotiate,
  4178. perl-www-robotrules, python-can, qt5base, qt5multimedia,
  4179. setools, sysvinit, tinyalsa, tn5250, tvheadend, uboot, vlc,
  4180. x264, xserver_xorg-server, zyre
  4181. 2015.08-rc2, Released August, 24th 2015
  4182. Fixes all over the tree.
  4183. Toolchain: fix gcc build on NIOS-II.
  4184. Infrastructure: add <fs>_POST_GEN_HOOKS mechanism to fix
  4185. hybrid ISO image generation.
  4186. Architectures: add arm1136j-s variant.
  4187. Updated/fixed packages: apitrace, audit, bcusdk, bdwgc,
  4188. beecrypt, boost, bwm-ng, cdrkit, c-icap, cifs-utils, clapack,
  4189. c-periphery, cpio, cramfs, czmq, dawgdic, dnsmasq, dosfstools,
  4190. dropbear, elfutils, empty, eudev, fan-ctrl, filemq, gnutls,
  4191. guile, haveged, imlib2, libcec, libepoxy, libev, libgpgme,
  4192. libiio, libnetfilter_queue, libnfnetlink, libpfm4, libpthsem,
  4193. librtas, libselinux, libsigsegv, libsodium, libv4l, lightning,
  4194. linux, lirc-tools, lrzsz, mono, mosh, mpd, msmtp, nbd,
  4195. netatalk, nodejs, ola, opencv, oprofile, php, poco,
  4196. postgresql, powertop, protobuf, protobuf-c, qt5base,
  4197. qt5quickcontrols, rapidjson, rng-tools, squid, sysdig,
  4198. sysstat, tftpd, tinc, tz, util-linux, webkitgtk24, weston,
  4199. wireshark, wvstreams, xdriver_xf86-input-synaptics, zyre.
  4200. Issues resolved (http://bugs.uclibc.org):
  4201. #8276: package/dropbear: symlink resolution incorrect
  4202. #8286: Error with buildroot
  4203. #8301: ldconfig parameter in Makefile
  4204. 2015.08-rc1, Released August, 5th 2015
  4205. Fixes all over the tree and new features.
  4206. Architectures:
  4207. - Refactor how the availability of an MMU is described.
  4208. - Minimal support for Cortex-M3
  4209. - Minimal support for AArch64 big-endian
  4210. Toolchains:
  4211. - Add CodeSourcery MIPS 2015.05, remove MIPS 2013.11
  4212. - Use uClibc-ng as the default uClibc version, instead of the
  4213. official uClibc, which hasn't done any release since 3+
  4214. years
  4215. - eglibc is now marked as deprecated
  4216. - GCC: gcc 4.9.x is now the default and was updated to 4.9.3,
  4217. support for gcc 5.x added.
  4218. - Binutils: use Binutils 2.24 as the default, 2.25.x series
  4219. bumped to 2.25.1, remove old Binutils 2.22.
  4220. - Update ARC toolchain components to 2015.06
  4221. - Add support for Fortran when building gcc
  4222. Bootloaders:
  4223. - Support for using the kconfig configuration system in
  4224. U-Boot
  4225. New Defconfigs:
  4226. - VIA VAB-820/AMOS-820
  4227. - OLimex OLinuxino A20 Lime
  4228. - Many new defconfigs for Atmel evaluation boards:
  4229. at91sam9rlek, at91sam9x5ek, sama5d3xek, sama5d4ek, sama5d4
  4230. Xplained Ultra, sama5d3 Xplained.
  4231. - ACME Systems Aria G25
  4232. - WarPboard
  4233. - Altera Cyclone 5 Development Board
  4234. - Xilinx zc706
  4235. - ARC AXS101 and AXS103 Software Development Platforms
  4236. - Significant updates to Raspberry Pi / Raspberry Pi 2
  4237. Infrastructure:
  4238. - Buildroot takes better care now of generating predictable
  4239. permissions in the target filesystem. However, existing
  4240. permissions on a custom skeleton or rootfs overlay will no
  4241. longer be preserved. Therefore, it is necessary to add a
  4242. permission table (BR2_ROOTFS_DEVICE_TABLE) to set the
  4243. required permissions.
  4244. - Add support for kconfig fragments.
  4245. - No longer pass --{enable,disable}-debug to autotools
  4246. packages depending on the value of
  4247. BR2_ENABLE_DEBUG. BR2_ENABLE_DEBUG now only controls
  4248. whether we build with -g or not.
  4249. - Support for extracting archives in .lzma in the generic
  4250. package infrastructure.
  4251. - Remove random-seed file from the default skeleton, since
  4252. seeding the entropy pool with a known seed makes more harm
  4253. than good.
  4254. - In the CVS download helper, add support to use a date as
  4255. the version.
  4256. - Add support for a per-package <pkg>_STRIP_COMPONENTS
  4257. variable, which packages can use to specify how many path
  4258. components should be stripped when extracting the tarball.
  4259. - Addition of a 'kernel-module' package infrastructure, which
  4260. simplifies the packaging of external kernel modules. Many
  4261. existing packages are converted to use it.
  4262. - Allow bootloaders to be implemented in $(BR2_EXTERNAL)
  4263. - Remove /etc/securetty from the default skeleton.
  4264. - Migration of sysV initscripts from the default skeleton to
  4265. a package called 'initscripts', installed only when Busbox
  4266. init or sysvinit are used.
  4267. - Migration of the skeleton logic to a proper 'skeleton'
  4268. package.
  4269. - Addition of a 'linux-tools' infrastructure in the 'linux'
  4270. package, to support building user-space tools bundled
  4271. within the Linux kernel sources, such as perf and cpupower.
  4272. - Usage of backticks instead of make $(shell ...) to execute
  4273. shell commands. This allows to delay the evaluation of such
  4274. commands when actually needed, and not when expanding the
  4275. variables. It is useful to make 'make printvars' less
  4276. noisy, and as a preparation to support top-level parallel
  4277. build.
  4278. - Libtool .la files are not mungled for all package types,
  4279. instead of being handled only for packages using the
  4280. autotools-package infrastructure.
  4281. - Add mechanism to allow packages to express a dependency on
  4282. gcc versions. This is needed for packages that use C++11 or
  4283. C11 support for example.
  4284. Important package updates:
  4285. - Complete rework of the matchbox packaging
  4286. - Lots of fixes in packages for compatibility with musl and
  4287. gcc 5.
  4288. - Hash files added to a large number of packages.
  4289. - Update a significant number of packages to use a new
  4290. hosting, after the announcement of Google Code and
  4291. Gitorious closing.
  4292. - Major packages needed for SELinux support have been merged,
  4293. but the support is not complete yet.
  4294. - Significant update of OpenCV to version 3.0, and addition
  4295. of lots of eatures.
  4296. - Significant update of all packages supporting the GPU and
  4297. VPU of i.MX ARM processors.
  4298. - Addition of systemd support in a significant number of
  4299. packages.
  4300. - Qt5 updated to 5.5.0
  4301. - Use modular X.org server by default instead of KDrive
  4302. Filesystems:
  4303. - Complete overhaul of the iso9660 support. Now allows to use
  4304. directly IS9660 as the root filesystem format and not only
  4305. an initrd, and supports Grub 2 and isolinux in addition to
  4306. Grub.
  4307. Updated packages: a10disp, agentpp, apache, at91bootstrap3,
  4308. audit, barebox, bc, bind, bmon, boost, btrfs-progs,
  4309. ca-certificates, can-utils, ccache, cloog, collectd, connman,
  4310. coreutils, c-periphery, cryptsetup, dado, dbus, dejavu,
  4311. dhcpcd, dnsmasq, dosfstools, dovecot, dovecot-pigeonhole,
  4312. e2fsprogs, ejabberd, erlang-p1-cache-tab, erlang-p1-sip,
  4313. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  4314. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml, ethtool,
  4315. eudev, evtest, exim, expect, explorercanvas, feh, ffmpeg,
  4316. file, flashrom, freescale-imx, freetype, gawk, gcc, gdb,
  4317. gettext, git, glib-networking, gnupg2, gnutls, gpsd, gptfdisk,
  4318. gpu-viv-bin-mx6q, gst-fsl-plugins, harfbuzz, hdparm, heimdal,
  4319. i2c-tools, imagemagick, imx-vpu, iproute2, ipset, isl, iw,
  4320. kodi, kodi-addon-xvdr, kodi-audioencoder-flac,
  4321. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  4322. kodi-audioencoder-wav, lftp, libass, libassuan, libcec,
  4323. libconfi, libcurl, libdrm, libevdev, libfreefare, libfslcodec,
  4324. libfslparser, libfslvpuwrap, libfuse, libglib2, libgpgme,
  4325. libgtk2, libgtk3, libical, libidn, libiio, libinput, libiscsi,
  4326. libllcp, libmicrohttpd, libnfc, libnss, libpcap, libpciaccess,
  4327. libpng, libserialport, libsigrok, libsoc, libtirpc, libubox,
  4328. libunistring, libupnp, libuv, libv4l, libva,
  4329. libva-intel-driver, libXrandr, lighttpd, linenoise, linux,
  4330. linux-firmware, linux-headers, live555, ltrace, lua,
  4331. lua-csnappy, lua-ev, luajit, lua-messagepack, luaperiphery,
  4332. lvm2, lxc, lzo, mesa3d, mesa3d-headers, midori, mmc-utils,
  4333. modem-manager, mono, mosquitto, mpd, mpd-mpc, mpfr, mpg123,
  4334. mtd, musl, nano, netperf, network-manager, nfs-utils, nginx,
  4335. nodejs, ntp, ola, opencv, openldap, openssh, openssl,
  4336. openswan, openvmtools, openvpn, opkg, orbit, orc, pcmanfm,
  4337. perl-cross, perl-encode-locale, perl-io-socket-ssl,
  4338. perl-mojolicious, perl-net-ssleay, perl-path-tiny, perl-uri,
  4339. perl-xml-libxml, php, pinentry, polarssl, postgresql,
  4340. pulseview, pure-ftpd, python, python-dpkt, python-lxml,
  4341. python-networkmanager, python-pyinotify, python-pypcap,
  4342. python-tornado, qextserialport, qt, qt5, rapidjson, redis,
  4343. rpcbind, rpi-firmware, rpi-userland, samba4, shairport-sync,
  4344. snmpp, sqlite, squid, strongswan, stunnel, sudo, sunxi-boards,
  4345. sunxi-mali, sysdig, sysstat, systemd, tcpdump, tiff, tmux,
  4346. tor, txheadend, tzdata, uboot, uclibc, ulogd, upmpdcli,
  4347. usb_modeswitch, usb_modeswitch_data, vala, vsftpd, wayland,
  4348. weston, whois, wireless-regdb, wireshark, x264, xapp_xvinfo,
  4349. xdriver_xf86-input-libinput, xdriver_xf86-input-vmmouse,
  4350. xdriver_xf86-video-cirrus, xdriver_xf86-video-geode,
  4351. xdriver_xf86-video-imx-viv, xdriver_xf86-video-mach64,
  4352. xdriver_xf86-video-neomagic, xdriver_xf86-video-r128,
  4353. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  4354. xdriver_xf86-video-vesa, xkeyboard-config, xlib_libfontenc,
  4355. xlib_libFS, xlib_libXaw, xlib_libxkbfile, xlib_libXrender,
  4356. xlib_libXt, xproto_kbproto, xproto_xproto, xproto_xrandrproto,
  4357. xscreensaver, xserver_xorg-server, xtables-addons, yaml-cpp,
  4358. zic.
  4359. New packages: angularjs, atf, audit, c-icap, c-icap-modules,
  4360. cpio, dawgdic, faketime, fcgiwrap, gflags, glog, initscripts,
  4361. jquery-datetimepicker, kodi-audioencoder-modplug,
  4362. kodi-audioencoder-nosefar, kodi-audioencoder-sidplay,
  4363. kodi-audioencoder-snesapu, kodi-audioencoder-stsound,
  4364. kodi-audioencoder-timidity, kodi-audioencoder-vgmstream,
  4365. kodi-platform, kodi-pvr-argustv, kodi-pvr-dvblink,
  4366. kodi-pvr-dvbviewer, kodi-pvr-filmon, kodi-pvr-hts,
  4367. kodi-pvr-iptvsimple, kodi-pvr-mediaportal-tvserver,
  4368. kodi-pvr-mythtv, kodi-pvr-nextpvr, kodi-pvr-njoy,
  4369. kodi-pvr-pctv, kodi-pvr-stalker, kodi-pvr-vbox,
  4370. kodi-pvr-vdr-vnsi, kodi-pvr-vuplus, kodi-pvr-wmc,
  4371. kodi-screensaver-asteroids, kodi-screensaver-biogenesis,
  4372. kodi-screensaver-crystalmorph, kodi-screensaver-greynetic,
  4373. kodi-screensaver-pingpong, kodi-screensaver-pyro,
  4374. kodi-screensaver-stars, kodi-visualisation-shadertoy,
  4375. kodi-visualisation-spectrum, kodi-visualisation-waveforhue,
  4376. kodi-visualisation-waveform, kvmtool, kyua, libfm,
  4377. libfm-extra, libplatform, librtas, libsodium, libsquish,
  4378. libucl, libump, linux-backports, lua-iconv, lutok, menu-cache,
  4379. moarvm, monkey, mono-gtksharp3, mosh, openipmi, python-can,
  4380. python-pycli, python-pydal, python-pyyaml, python-web2py,
  4381. qpid-proton, qt5webchannel, quazip, racehound, rtl8188eu,
  4382. rtl8821au, sepolgen, setools, skeleton, stm32flash,
  4383. webkitgtk24, xdriver_xf86-video-qxl, zynq-boot-bin.
  4384. Deprecated packages: webkitgtk, libgail, eglibc support in
  4385. glibc package.
  4386. Issues resolved (http://bugs.uclibc.org):
  4387. #4291: Segmentation fault with all binaries that use threads
  4388. when compiled with gcc 4.6
  4389. #6944: building toolchain for sh4 fails
  4390. #7592: Buildroot GCC: -lto requires plugin support in ranlib
  4391. #7628: Python SSL does not get built for Raspberry Pi
  4392. #7682: Missing dependencies for NFS
  4393. #7742: dhcp lacks important features when BR2_ENABLE_DEBUG
  4394. #7754: make: *** [/..../buildroot-2014.11/output/build/host-gcc-initial-4.8.3/.stamp_built] Error 2
  4395. #7946: libglib2-2.42.2 fails to build for sparc-buildroot-linux-gnu
  4396. #7956: glibc 2.20 and 2.21 fail to build for sh64-buildroot-linux-gnu
  4397. #7971: python-flask, python-werkzeug. No module named zlib
  4398. #7981: Target file system skeleton permissions hazard
  4399. #8006: rpcdebug in nfs-utils built for the host
  4400. #8036: alsa-lib headers problem that prevents to compile alsa
  4401. dependent projects
  4402. #8081: systemd init system: /tmp is not mode 1777
  4403. #8121: php opcache extension doesn't get installed
  4404. #8151: x86-64 make fails with ncurses 5.9
  4405. #8156: pkg-kconfig infra broken for *-update-{config, defconfig}
  4406. #8161: default /bin/sh symlink to busybox is full path and not relative
  4407. #8171: glamor missing
  4408. #8191: Request update support for the cubieboard series
  4409. #8201: Important security upgrades for node.js
  4410. 2015.05, Released May 31st, 2015
  4411. Minor fixes.
  4412. Updated/fixed packages: conntrack-tools, directfb, fio, flite,
  4413. gptfdisk, ipmiutil, iproute2, janus-gateway, keyutils, knock,
  4414. libelementary, libgcrypt, libgsasl, libjpeg, libstrophe,
  4415. lttng-libust, nbd, ncurses, nmap, php, postgresql, python,
  4416. python3, sconeserver, udpcast, upmpdcli
  4417. 2015.05-rc3, Released May 22nd, 2015
  4418. Several fixes, mainly related to static linking.
  4419. Updated/fixed packages: acl, alsa-utils, apr, armadillo, attr,
  4420. autoconf-archive, binutils, boost, czmq, dhcpcd, duma,
  4421. enlightenment, exim, fbterm, freerdp, gcc, gdk-pixbuf,
  4422. google-breakpad, gpsd, heirloom-mailx, hwloc, ipmiutil,
  4423. iproute2, jack2, jasper, kmod, lcdproc, leafnode2, libcap-ng,
  4424. libftdi1, libmatroska, libmemcached, libmodbus, libnftnl,
  4425. libsigrok, libupnpp, libuv, libxml-parser-perl, linux,
  4426. linux-headers, lirc-tools, lua-periphery, lxc, mongoose, mono,
  4427. mpg123, mosquitto, neardal, newt, ntp, ola, openldap, opencv,
  4428. php, postgresql, protobuf, pulseaudio, python-pyqt, qemu, qt,
  4429. qt5base, rpi-userland, rsyslog, snmppp, sqlite, tiff,
  4430. tinyxml2, uboot-tools, unionfs, ux5000-firmware, usbredir,
  4431. ushare, vpnc, vsftpd, wavpack, wireless_tools, wsapi,
  4432. wvstreams, xmlstarlet, zeromq, zmqpp
  4433. New packages: c-periphery
  4434. Issues resolved (http://bugs.uclibc.org):
  4435. #8106: mkfs.jffs2 uses the --pagesize parameter incorrectly
  4436. #8111: 2015.05.rc2 LIBFOO_CONF_OPTS not working
  4437. #8126: exim lacks plaintext and cram-md5 auth
  4438. 2015.05-rc2, Released May 11th, 2015
  4439. Minor fixes.
  4440. Toolchain: PR56780 backport to GCC 4.8.4 to fix GDB linking
  4441. issues. Context functions enabled for uClibc snapshot /
  4442. uClibc-NG.
  4443. Architectures: Endian handling symbol for Xtensa, binutils
  4444. fixes.
  4445. Infrastructure: Fix for kernel module stripping when
  4446. localversion contains spaces.
  4447. Updated/fixed packages: at, autoconf-archive, binutils,
  4448. cc-tool, cryptsetup, dstat, expedite, freerdp, giflib,
  4449. gnuchess, guile, ipmiutil, iproute2, mono, monolite, neard,
  4450. ola, poppler, postgresql, python-qt, qt, sqlite, valgrind,
  4451. xlib_libXfont
  4452. Issues resolved (http://bugs.uclibc.org):
  4453. #8086: Cannot select systemd as init with Linaro 2014.09...
  4454. 2015.05-rc1, Released May 4th, 2015
  4455. Fixes all over the tree and new features.
  4456. Architectures: Removed AVR32 support, deprecate SH64, added
  4457. support for steamroller, corei7-avx and core-avx2 x86
  4458. variants.
  4459. Toolchains: IPv6 and Largefile support now enforced for
  4460. uClibc. Corresponding Kconfig symbols removed.
  4461. External CodeSourcery AMD64 2014.05, MUSL-cross 1.1.6 added,
  4462. CS sh2, Xilinx microblaze v2/14.3 removed. Distro-class
  4463. external toolchains are now detected and blacklisted.
  4464. Internal toolchain support for Nios2 added, Blackfin
  4465. removed. Aarch64 and sh musl support. uClibc-ng support added.
  4466. Libatomic is now handled for internal and external
  4467. toolchains. Link time optimization (LTO) support.
  4468. New Defconfigs: Freescale i.MX28 EVK, i.MX31 PDK and SABRE
  4469. Auto, Raspberry Pi 2, RIoTboard,
  4470. Infrastructure: Hashes for a large number of packages have
  4471. been added. Missing hashes now stop the build unless
  4472. explicitly disabled.
  4473. Spaces and colons (:) are now supported in package
  4474. versions. Dependencies can now be listed for the patch step
  4475. (<PKG>_PATCH_DEPENDENCIES). Kconfig and Linux kernel
  4476. extensions infrastructure has been added.
  4477. Makedevs now has a recursive (r) option.
  4478. The variable containing the list of packages to build has been
  4479. renamed from TARGETS to PACKAGES.
  4480. Make external-deps / legal-info / source / source-check have
  4481. been reimplemented using the package infrastructure, so their
  4482. output/behaviour may differ from earlier (some packages were
  4483. not included in the past).
  4484. The old insecure DES password encoding is no longer supported.
  4485. U-Boot patch option now support direct references to patch
  4486. files and URLs in addition to directories of patches. The
  4487. i.MX28 SD format (u-boot.sd) is now supported.
  4488. Updated/fixed packages: agentpp, aircrack-ng, alsa-lib,
  4489. alsa-utils, apr-util, apr, atk, autossh, avahi, avrdude,
  4490. bcusdk, bdwgc, bind, binutils, bmon, boost, botan,
  4491. btrfs-progs, busybox, ca-certificates, cairo, can-utils,
  4492. canfestival, ccache, chrony, civetweb, clamav, cmake,
  4493. collectd, connman, copas, crda, cryptodev-linux, cryptsetup,
  4494. cups, czmq, dbus-cpp, dbus-glib, dbus-python, dbus, dfu-util,
  4495. dhcp, dhcpcd, dialog, dillo, dmraid, dnsmasq, dos2unix,
  4496. dosfstools, dovecot-pigeonhole, dovecot, dropbear, dropwatch,
  4497. dtv-scan-tables, dvdauthor, e2fsprogs, ecryptfs-utils,
  4498. libevas, elfutils, enscript, erlang, espeak, eudev, evemu,
  4499. exfat-utils, exim, f2fs-tools, feh, ffmpeg, fftw, flickcurl,
  4500. fltk, fluxbox, fmlib, fmtools, freeradius-client, freerdp,
  4501. gamin, gawk, gcc-final, gcc, gd, gdb, gengetopt, geoip, git,
  4502. glib-networking, gnu-efi, gnuchess, gnutls, gpsd, gptfdisk,
  4503. gpu-viv-bin-mx6q, gst-plugin-bad, gstreamer, gstreamer1,
  4504. gtest, gvfs, harfbuzz, haserl, haveged, hiawatha,
  4505. hicolor-icon-theme, hostapd, hplip, httping, i2c-tools, icu,
  4506. ifplugd, imagemagick, imlib2, iozone, iproute2, iptables,
  4507. iputils, irqbalance, iw, jack2, jhead, jimtcl, json-c, kexec,
  4508. kismet, kmod, kodi-audioencoder-flac,
  4509. kodi-audioencoder-vorbis, kodi-pvr-addons, kodi, ktap, lcms2,
  4510. libass, libatomic_ops, libbluray, libcap, libcgroup, libcurl,
  4511. libdrm, libdvbsi, libebml, libecore, libedit, liberation,
  4512. libev, libevas, libevdev, libftdi, libgcrypt, libglib2,
  4513. libgpgme, libgtk2, libgtk3, libiconv, libidn, libiio,
  4514. libinput, libiscsi, libksba, liblinear, libmatroska,
  4515. libmicrohttpd, libmodbus, libmpdclient, libnice, libnl,
  4516. libnspr, libnss, libpcap, libpciaccess, libphidget, libplayer,
  4517. libpthsem, libqmi, librsvg, libseccomp, libsigrok, libsoup,
  4518. libsrtp, libssh2, libtasn1, libtool, libunistring, liburcu,
  4519. libusb, libuv, libva-intel-driver, libva, libvncserver,
  4520. libvorbis, libvpx, libwebsockets, libxml2, libzip, lightning,
  4521. lighttpd, linknx, linphone, linux-firmware, linux-headers,
  4522. linux-pam, live555, ljsyscall, lmbench, lockdev, logrotate,
  4523. lpc3250loader, lpeg, lsof, lttng-libust, lttng-modules,
  4524. lttng-tools, lua, luacrypto, luafilesystem, luajit, luaposix,
  4525. luarocks, lvm2, lxc, make,
  4526. matchbox-{common,desktop,fakekey,keyboard,lib,startup-monitor,vm},
  4527. matchbox, mcelog, memcached, memstat, memtest86, mesa3d,
  4528. minidlna, mjpegtools, mjpg-streamer, modem-manager, mongoose,
  4529. monit, mono, monolite, mp4v2, mpc, mpd, mpdecimal, mpg123,
  4530. mplayer, musl, nano, nbd, ncftp, ncmpc, ncurses, ne10, neard,
  4531. neardal, net-tools, netatalk, netsnmp, network-manager, nginx,
  4532. nodejs, ntfs-3g, ntp, numactl, odhcp6c, ofono, open2300,
  4533. opencv, openldap, openntpd, openocd, openssh, openssl,
  4534. openswan, opentyrian, openvmtools, openvpn, oprofile, p11-kit,
  4535. pango, patch, patchelf, pciutils, pcre, perf, perl-gdgraph,
  4536. perl-io-socket-ssl, perl-json-tiny, perl-module-build,
  4537. perl-mojolicious, perl-net-ssleay, perl-path-tiny,
  4538. perl-xml-libxml, perl, phidgetwebservice, php-gnupg, php,
  4539. pkgconf, polarssl, poppler, popt, postgresql, powerpc-utils,
  4540. pppd, prboom, procps-ng, proftpd, psplash, ptpd2,
  4541. python-{cheetah,coherence,django,markdown,netifaces,pam,six},
  4542. python-tornado, python-twisted, python-zope-interface, python,
  4543. python3, qemu, qt, qt5, qt5base, qt5multimedia,
  4544. qt5xmlpatterns, qt5cinex, quagga, qwt, radvd, readline,
  4545. rng-tools, rpcbind, rpi-firmware, rpi-userland, rsync,
  4546. rsyslog, rtai, rtmpdump, ruby, sam-ba, samba, samba4,
  4547. sane-backends, sconeserver, shairport-sync, sigrok-cli, slang,
  4548. smcroute, snmppp, socat, socketcand, sofia-sip, sox,
  4549. spawn-fcgi, speex, sqlcipher, sqlite, squid, strace,
  4550. strongswan, stunnel, sudo, sunxi-boards, swig, sysstat,
  4551. systemd, tcpdump, tftpd, thrift, thttpd, ti-gfx, ti-utils,
  4552. tiff, tinyalsa, tn5250, transmission, trinity, tslib,
  4553. tvheadend, tzdata, uboot-tools, uclibc, ulogd, usb_modeswitch,
  4554. usbutils, ustr, util-linux, vala, valgrind, vlc, wayland,
  4555. webp, weston, wget, which, whois, wireless-regdb,
  4556. wireless_tools, wireshark, wpa_supplicant, wvstreams,
  4557. xapp_{bdftopcf,bitmap,fonttosfnt,fslsfonts},
  4558. xapp_{fstobdf,iceauth,mkfontscale,oclock,rgb,sessreg,setxkbmap},
  4559. xapp_{showfont,smproxy,twm,x11perf,xcalc,xclipboard,xcmsdb},
  4560. xapp_{xdbedizzy,xditview,xdpyinfo,xdriinfo,xedit,xev,xeyes},
  4561. xapp_{xf86dga,xfsinfo,xgamma,xgc,xhost,xinit,xinput,xkbcomp},
  4562. xapp_{xkbevd,xkbprint,xlsatoms,xlsfonts,xmag,xman,xmh,xmodmap},
  4563. xapp_xmore, xcb-util-image, xcb-util-keysyms,
  4564. xdata_xcursor-themes,
  4565. xdriver_xf86-input-{evdev,keyboard,synaptics,void},
  4566. xdriver_xf86-video-{ati,cirrus,geode,mach64,mga,neomagic},
  4567. xdriver_xf86-video-{r128,savage,siliconmotion,sis,tdfx},
  4568. xdriver_xf86-video-{trident,vmware,voodoo}, xenomai,
  4569. xfont_font-util, xkeyboard-config,
  4570. xlib_lib{ICE,X11,Xdmcp,Xfont,Xpm,XvMC},
  4571. xlib_lib{Xxf86vm,xshmfence,xtrans}, xproto_randrproto,
  4572. xproto_xproto, xserver_xorg-server, x11vnc, x264, xerces,
  4573. xorriso, xterm, xz, yaml-cpp, zeromq, zic, zmqpp
  4574. New packages: apache, autoconf-archive, batctl,
  4575. bitstream-vera, bullet, cc-tool, doxygen, drbd-utils,
  4576. dvdrw-tools, gnuradio, gst1-imx, hans, hwloc, ijs,
  4577. imx-usb-loader, inconsolata, iodine, iotop, ipmiutil, jsoncpp,
  4578. leveldb, libdcadec, libdri2, libfreeimage, libftdi1,
  4579. libsidplay2, lirc-tools, lua-periphery, mc, mesa3d-headers,
  4580. mosquitto, nvidia-driver, nvidia-tegra23{,-binaries,-codecs},
  4581. openjpeg, opusfile, perl-crypt-openssl-{random,rsa},
  4582. perl-db-file, perl-digest-{hmac,sha1},
  4583. perl-encode-{detect,locale}, perl-file-{listing,util},
  4584. perl-html-{parser,tagset}, perl-http-cookies,
  4585. perl-http-{daemon,date,message,negotiate}, perl-io-html,
  4586. perl-libwww-perl, perl-lwp-mediatypes, perl-mail-dkim,
  4587. perl-mailtools, perl-mime-base64, perl-net-{dns,http},
  4588. perl-netaddr-ip, perl-time-hires, perl-timedate, perl-uri,
  4589. perl-www-robotrules, powertop, pulseview,
  4590. python-{cherrypy,lxml,mako,pyqt,pyxml,sip,spidev,ws4py}, qpdf,
  4591. qt-webkit-kiosk, sl, softether, sysdig, tinyxml2, tor, tovid,
  4592. unixodbc, wf111, wine, libepoxy, xapp_xcompmgr,
  4593. xapp_xfindproxy, xcb-util-cursor, xcb-util-renderutil,
  4594. xdriver_xf86-input-libinput, xdriver_xf86-video-imx{,-viv},
  4595. xproto_xproxymanagementprotocol
  4596. Removed packages: gtk2-theme-hicolor
  4597. Deprecated packages: samba
  4598. Issues resolved (http://bugs.uclibc.org):
  4599. #7478: Multiple chosen python modules are not built due to...
  4600. #7508: Use of BR2_EXTERNAL and dependencies to existing packages
  4601. #7676: Package procps-ng installs binaries to nonsensical folder
  4602. #7724: Startx is not installed in the target
  4603. #7760: botan: wrong prefix in botan-1.10.pc
  4604. #7826: Building of cdparanoia
  4605. #7844: Lua with hard-float on MIPS by buildroot doesn't work
  4606. #7874: X.org configure error
  4607. #7941: glibc-2.20 fails to build for sparc-buildroot-linux-gnu
  4608. #7951: gcc 4.9.2 fails to build for sparc-buildroot-linux-gnu
  4609. #7961: Qt5 fails to build for xtensa-buildroot-linux-uclibc
  4610. #7976: mkuser script fails with: user already exists with...
  4611. #8011: When building only busybox and strace, strace fails...
  4612. #8016: collectd fails to build, network.c:171:19: error:...
  4613. #8041: error on building libcurl7.42.0
  4614. 2015.02, Released March 1st, 2015
  4615. Minor fixes.
  4616. Updated/fixed packages: civetweb, ding-libs,
  4617. directfb-examples, glibc, gnupg, gnupg2, gpm,
  4618. gst-plugins-good, gst1-plugins-good, freetype, libao, libevas,
  4619. libevent, libfribidi, libgcrypt, libgtk2, libshout, libsrtp,
  4620. libtheora, libupnpp, libxmlrpc, linux, make, opus, pinentry,
  4621. rpi-firmware, shared-mime-info, vlc, vorbis-tools,
  4622. xcb-util-keysyms
  4623. Removed packages: libgc
  4624. 2015.02-rc3, Released February 24th, 2015
  4625. Minor fixes.
  4626. Cmake and rebar (erlang) infrastructure fixes.
  4627. Updated/fixed packages: bind, btrfs-progs, busybox, e2fsprogs,
  4628. evtest, ffmpeg, fltk, gnutls, i2c-tools, imagemagick, libxcb,
  4629. make, mjpg-streamer, netsnmp, opentyrian, php, polarssl,
  4630. qt5base, samba, samba4, sudo, util-linux, xserver_xorg-server
  4631. 2015.02-rc2, Released February 15th, 2015
  4632. Minor fixes.
  4633. raspberrypi: fix kernel sha1 for DT variant.
  4634. Updated/fixed packages: dbus, dvdauthor, git, libsemanage,
  4635. libsepol, libssh2, mplayer, ntp, openvmtools, python3,
  4636. qt5base, qt5connectivity, xserver_xorg-server
  4637. 2015.02-rc1, Released February 8th, 2015
  4638. Fixes all over the tree and new features.
  4639. Static/shared library handling reworked. This is now a
  4640. tristate (shared only / shared and static / static
  4641. only). Default is now shared only to speed up the
  4642. build. BR2_PREFER_STATIC_LIB is now called BR2_STATIC_LIBS.
  4643. The toolchain (internal and external) will now warn when an
  4644. unsafe library or header path is used (such as /usr/include or
  4645. /usr/lib). If BR2_COMPILER_PARANOID_UNSAFE_PATH is enabled
  4646. under build options this instead becomes an error.
  4647. A installation path issue with the internal musl toolchain
  4648. support has been fixed so it is now possible to reuse it as an
  4649. external toolchain.
  4650. Architectures: Freescale E5500 and E6500 PowerPC support
  4651. added, deprecated MIPS 1/2/3/4 support removed.
  4652. New defconfigs: Freescale p2020ds, MIPS creator CI20,
  4653. Raspberrypi with DT, UDOO Quad.
  4654. 'make <foo>_defconfig' now saves the path to the defconfig in
  4655. the .config, so a 'make savedefconfig' automatically updates
  4656. it.
  4657. Infrastructure for packages using the Erland rebar tool has
  4658. been added.
  4659. Hashes for a large number of packages have been added. Hashes
  4660. are now checked for both target and host packages.
  4661. The system menu now has an option to automatically configure a
  4662. network interface through DHCP at bootup.
  4663. The default filesystem skeleton now uses a separate tmpfs for
  4664. /run instead of a symlink to /tmp/ for security reasons / to
  4665. protect against conflicts with user generated temporary files.
  4666. BR2_EXTERNAL is now exported to post-build and post-image
  4667. scripts.
  4668. New packages: bdwgc, benejson, blktrace, bootstrap, cgic,
  4669. ding-libs, dvdauthor, ejabberd, erlang-goldrush, erlang-lager,
  4670. erlang-p1-cache-tab, erlang-p1-iconv, erlang-p1-sip,
  4671. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  4672. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml,
  4673. erlang-p1-zlib, exiv2, freeradius-client, gengetopt, glmark2,
  4674. gpu-amd-bin-mx51, guile, host-qemu, ifupdown, iperf3,
  4675. janus-gateway, kodi, kodi-audioencoder-flac,
  4676. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  4677. kodi-audioencoder-wav, libcli, libiio, liblinear, libnice,
  4678. libselinux, libsemanage, libserialport, libsigro,
  4679. libsigrokdecode, libsrtp, liburiparser, libvips, libwebsock,
  4680. libz160, libzip, lightning, mcelog, memtest86, mjpegtools,
  4681. mjpg-streamer, mke2img, mpd-mpc, netsurf-buildsystem, odhcp6c,
  4682. openldap, python-alsaaudio, python-certifi, python-cheetah,
  4683. python-coherence, python-django, python-docopt, python-enum,
  4684. python-enum34, python-flask, python-gobject, python-httplib2,
  4685. python-ipaddr, python-itsdangerous, python-jinja,
  4686. python-markdown, python-markupsafe, python-networkmanager,
  4687. python-pam, python-psutil, python-pyftpdlib, python-pyinotify,
  4688. python-pysendfile, python-pyxb, python-requests, python-six,
  4689. python-twisted, python-webpy, python-werkzeug,
  4690. python-zope-interface, qt5cinex, sigrok-cli, sofia-sip,
  4691. start-stop-daemon, szip, triggerhappy, ustr, vnstat, xorriso,
  4692. xtables-addons
  4693. Removed packages (target): bison, distcc, gob2, m4
  4694. Issues resolved (http://bugs.uclibc.org):
  4695. #7556: make interactive CLI optional for nftables
  4696. #7730: Error while connecting Qt Cretaor to device
  4697. #7766: logrotate default gzip path is usually wrong
  4698. #7790: Invalid ext4 image generated by Buildroot
  4699. 2014.11, Released December 1st, 2014
  4700. Minor fixes.
  4701. Infrastructure: LD_LIBRARY_PATH handling tweak to ensure
  4702. current working directory isn't searched.
  4703. Updated/fixed packages: gd, gdb, libwebsockets, luajit, mono,
  4704. parted, shairport-sync, util-linux, xapp_bdftopcf,
  4705. xserver_xorg-server
  4706. 2014.11-rc3, Released November 28th, 2014
  4707. Fixes all over the tree.
  4708. System: File permissions of /etc/random-seed made more
  4709. restrictive.
  4710. Toolchain: Various fixes related to locale handling, a fix for
  4711. building the toolchain wrapper on MIPS.
  4712. Updated/fixed packages: bind, binutils. botan, btrfsprogs,
  4713. clamav, czmq, dhcp, dillo, dovecot, erlang, flac, gd, glibc,
  4714. gptfdisk, gst1-validate, heirloom-mailx, lame, libksba,
  4715. libllcp, libnspr, libpng, libshairplay, libtirpc, linux,
  4716. linux-headers, mpdecimal, mpg123, network-manager, nfstables,
  4717. nfs-utils, openssl, pcituils, qt, radvd, rtai, sqlcipher,
  4718. sstrip, tcpdump, uclibc, uemacs, ushare, wayland, weston,
  4719. xl2tp, xserver_xorg-server
  4720. Issues resolved (http://bugs.uclibc.org):
  4721. #7670: Fails to build mpc-1.0.2 on latest Cygwin
  4722. 2014.11-rc2, Released November 21st, 2014
  4723. Fixes all over the tree.
  4724. Inittab tweaks for shutdown handling (busybox and sysvinit).
  4725. Updated/fixed packages: aircrack-ng, botan, canfestival,
  4726. clamav, coreutils, czmq, dbus, dovecot, duma, e2fsprogs,
  4727. erlang, gcc, iputils, libcap, libgcrypt, libmemcached,
  4728. libssh2, libunwind, libv4l, linux-headers, mesa3d-demos, mutt,
  4729. mysql, ndisc6, nodejs, omniorb, perl-cross, php,
  4730. python-tornado, python3, qemu, qt5base, qt5webkit, rpm,
  4731. rt-tests, ruby, schifra, sdl_sound, shairport-sync, sysvinit,
  4732. tstools, tzdata, wireshark, x264
  4733. Issues resolved (http://bugs.uclibc.org):
  4734. #7646: strftime on datetime not works on python3
  4735. 2014.11-rc1, Released November 12th, 2014
  4736. Fixes all over the tree and new features.
  4737. Toolchains: Use -mcpu / -march instead of -mtune. Support
  4738. additional ARC and sparc variants. Updated Code sourcery
  4739. and Linaro external toolchains.
  4740. Defconfigs: Freescale iMX6DL SabreSD, Minnowboard MAX, QEMU
  4741. powerpc64 pseries added and a number of updates to the
  4742. existing configurations.
  4743. Infrastructure: Buildroot is now less noisy when built with
  4744. the silent option (make -s).
  4745. A number of package infrastructure variables have been renamed
  4746. from *_OPT to *_OPTS for constency. Buildroot will complain if
  4747. the old names are used to assist in updating out of tree
  4748. packages.
  4749. Fixes for host systems where bash isn't located in /bin, and
  4750. older systems not supporting mktemp --tmpdir.
  4751. Various cleanups of users/groups in the default skeleton.
  4752. There is now an option to choose what shell /bin/sh points to.
  4753. Documentation: Various updates to the user manual. The
  4754. asciidoc documentation handling has now been extended so it
  4755. can be used by (BR2_EXTERNAL) packages.
  4756. Updated/fixed packages: acl, acpid, agentpp, aircrack-ng,
  4757. alsa-lib, alsamixergui, alsa-utils, apitrace, apr, apr-util,
  4758. argus, arptables, at, atftp, atk, attr, audiofile, aumix,
  4759. automake, autossh, avahi, avrdude, axel, bandwidthd, bash,
  4760. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  4761. bluez_utils, bmon, boost, bootutils, bridge-utils,
  4762. btrfs-progs, busybox, bwm-ng, bzip2, ca-certificates, cairo,
  4763. ccache, ccid, ccrypt, cdrkit, cegui06, celt051, chrony,
  4764. cifs-utils, civetweb, cjson, clapack, classpath, cloog, cmake,
  4765. collectd, connman, copas, coreutils, coxpcall, cppcms, cppdb,
  4766. cppzmq, cramfs, crda, cryptsetup, ctorrent, cups, cvs, cwiid,
  4767. czmq, dash, dbus, dbus-cpp, dbus-glib, dbus-python, dejavu,
  4768. dhcp, dhcpcd, dhcpdump, dialog, dillo, directfb, distcc,
  4769. dmalloc, dmidecode, dmraid, dnsmasq, doc-asciidoc.mk,
  4770. dosfstools, dropbear, dropwatch, dstat, dtach, dtc, dvbsnoop,
  4771. e2fsprogs, ecryptfs-utils, ed, efl, eigen, elf2flt, elfutils,
  4772. enlightenment, enscript, erlang, espeak, ethtool, eudev,
  4773. evemu, evtest, exfat, exfat-utils, exim, expat, expect,
  4774. explorercanvas, faifa, fakeroot, fan-ctrl, fbdump,
  4775. fb-test-app, fetchmail, ffmpeg, file, filemq, findutils, flac,
  4776. flann, flickcurl, flite, fltk, fluxbox, fmc, fmlib,
  4777. fontconfig, foomatic-filters, freerdp, freescale-imx,
  4778. freetype, ftop, fxload, gamin, gcc, gd, gdb, gdk-pixbuf,
  4779. genimage, genpart, genromfs, geoip, gettext, giblib, git,
  4780. glibc, glib-networking, gmp, gmpc, gnu-efi, gnupg, gnupg2,
  4781. gnuplot, gnutls, google-breakpad, gpm, gpsd, gptfdisk,
  4782. gpu-viv-bin-mx6q, grantlee, grep, gsl, gst1-libav,
  4783. gst1-plugins-{bad,base,good,ugly}, gst-ffmpeg,
  4784. gst-fsl-plugins, gst-omx, gst-plugins-{bad,base,good,ugly},
  4785. gst-plugin-x170, gstreamer, gstreamer1, gtest, gtk2-engines,
  4786. gutenprint, gvfs, harfbuzz, haserl, haveged, hdparm, heimdal,
  4787. heirloom-mailx, hiawatha, hostapd, hplip, htop, httping,
  4788. hwdata, i2c-tools, icu, ifplugd, igh-ethercat, imagemagick,
  4789. imlib2, imx-lib, imx-vpu, inadyn, inotify-tools, input-tools,
  4790. intltool, iperf, iproute2, iprutils, ipsec-tools, ipset,
  4791. iptables, iputils, iw, jamvm, jansson, jasper, jimtcl, joe,
  4792. jpeg-turbo, jq, jquery-keyboard, jquery-mobile, jquery-ui,
  4793. jquery-ui-themes, jquery-validation, jsmin, json-c,
  4794. json-javascript, kbd, kexec, kexec-lite, keyutils, kismet,
  4795. kmod, knock, ktap, lame, lbase64, lbreakout2, lcdproc, lcms2,
  4796. lesstif, lftp, libaio, libao, libarchive, libargtable2,
  4797. libass, libassuan, libatasmart, libbluray, libbsd, libcap,
  4798. libcap-ng, libcdio, libcec, libcgicc, libcgroup, libcofi,
  4799. libconfig, libconfuse, libcurl, libdaemon, libdnet, libdrm,
  4800. libdvdnav, libecore, libedbus, libedit, libedje, libeet,
  4801. libelementary, libelf, libenca, libethumb, libevas,
  4802. libevas-generic-loaders, libevent, libexif, libeXosip2,
  4803. libffi, libftdi, libfuse, libgail, libgcrypt, libgeotiff,
  4804. libglade, libglib2, libgpgme, libgtk2, libhid, libidn,
  4805. libinput, libiscsi, libjson, libksba, liblockfile,
  4806. liblog4c-localtime, liblogging, libmad, libmatroska, libmbim,
  4807. libmemcached, libmicrohttpd, libmpdclient, libmpeg2, libndp,
  4808. libnfc, libnfs, libnftnl, libnl, libnspr, libnss, liboauth,
  4809. libogg, liboping, libosip2, libpcap, libpciaccess, libpfm4,
  4810. libplayer, libplist, libpng, libpthsem, libqmi, libqrencode,
  4811. libraw, libreplaygain, libroxml, librsvg, librtlsdr,
  4812. libsamplerate, libseccomp, libsecret, libshairplay, libsoc,
  4813. libsoup, libsoxr, libssh2, libstrophe, libsvg, libsvg-cairo,
  4814. libtasn1, libtheora, libtirpc, libtorrent, libubox, libuci,
  4815. libungif, liburcu, libusb, libuv, libv4l, libva,
  4816. libva-intel-driver, libvncserver, libvorbis, libvpx,
  4817. libwebsockets, libxcb, libxml2, libxml-parser-perl, libxmlrpc,
  4818. libxslt, lighttpd, linenoise, linknx, links, linphone,
  4819. linux-firmware, linux-fusion, linux-headers, linux-pam,
  4820. linux-zigbee, lite, live555, ljlinenoise, lmbench, lm-sensors,
  4821. localedef, lockdev, lockfile-progs, log4cxx, lpty, lrandom,
  4822. lrzsz, lshw, lsof, lsqlite3, ltp-testsuite, ltrace, ltris,
  4823. lttng-babeltrace, lttng-libust, lttng-modules, lttng-tools,
  4824. lua, luabitop, lua-coat, lua-coatpersistent, lua-csnappy,
  4825. lua-ev, luajit, luajson, lualogging, lua-messagepack,
  4826. lua-msgpack-native, luaposix, luarocks, luasec, luasocket,
  4827. luasql-sqlite3, lua-testmore, lunit, lvm2, lxc, lz4, lzlib,
  4828. lzma, m4, madplay, make, makedevs, Makefile.in,
  4829. matchbox-common, matchbox-desktop, matchbox-fakekey,
  4830. matchbox-keyboard, matchbox-lib, matchbox-panel,
  4831. matchbox-startup-monitor, matchbox-wm, mcrypt, mdadm,
  4832. media-ctl, mediastreamer, memcached, memstat, memtester,
  4833. mesa3d, metacity, midori, mii-diag, minidlna, mmc-utils,
  4834. modem-manager, mongoose, mongrel2, monit, mpc, mpd, mpdecimal,
  4835. mpfr, mpg123, mplayer, mrouted, msmtp, mtd, mtools, mtr,
  4836. musepack, musl, mutt, mxml, mysql, nano, nanocom, nbd, ncftp,
  4837. ncurses, ndisc6, ne10, neard, neon, netatalk, netperf,
  4838. netsnmp, nettle, net-tools, network-manager, newt, nfs-utils,
  4839. ngrep, nmap, nodejs, nss-mdns, ntfs-3g, ntp, numactl, nut,
  4840. nuttcp, ofono, ola, omap-u-boot-utils, omniorb,
  4841. on2-8170-modules, opencore-amr, opencv, openntpd, openobex,
  4842. openocd, openpowerlink, openssh, openssl, openswan,
  4843. opentyrian, opentyrian-data, openvpn, opkg, oprofile, opus,
  4844. opus-tools, orbit, orc, ortp, p11-kit, pango, parted,
  4845. pciutils, pcmanfm, pcre, pcsc-lite, perf, perl, perl-gd,
  4846. perl-gdgraph, perl-io-socket-ssl, perl-json-tiny,
  4847. perl-module-build, perl-mojolicious, perl-net-ssleay,
  4848. perl-path-tiny, perl-xml-libxml, perl-xml-parser, php,
  4849. php-geoip, php-gnupg, php-imagick, php-memcached, php-ssh2,
  4850. php-yaml, php-zmq, picocom, pifmrds, pinentry, pixman,
  4851. pkg-autotools.mk, pkg-cmake.mk, pkg-download.mk,
  4852. pkg-generic.mk, pkg-kconfig.mk, pkg-luarocks.mk, pkg-perl.mk,
  4853. pkg-python.mk, pkg-utils.mk, poco, polarssl, polkit, poppler,
  4854. popt, portaudio, portmap, postgresql, powerpc-utils, pppd,
  4855. pptp-linux, prboom, procps-ng, proftpd, protobuf, protobuf-c,
  4856. psmisc, ptpd2, pulseaudio, pv, pwgen, python, python3,
  4857. python-dialog, python-ipy, python-keyring, python-mad,
  4858. python-netifaces, python-numpy, python-protobuf, python-pyasn,
  4859. python-pyparsing, python-pyro, python-pyusb, python-serial,
  4860. python-setuptools, qdecoder, qemu, qextserialport, qjson, qt,
  4861. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  4862. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  4863. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  4864. qt5serialport, qt5svg, qt5webkit, qt5webkit-examples,
  4865. qt5websockets, qt5x11extras, qt5xmlpatterns, qtuio, quagga,
  4866. quota, qwt, radvd, rapidjson, rdesktop, redis, rings, rpcbind,
  4867. rpi-firmware, rpi-userland, rpm, rp-pppoe, rrdtool,
  4868. rsh-redone, rsync, rsyslog, rtai, rtmpdump, rt-tests, rubix,
  4869. ruby, samba, sam-ba, samba4, sane-backends, schifra,
  4870. sconeserver, scons, screen, sdl, sdl_gfx, sdl_image,
  4871. sdl_mixer, sdl_net, sdl_sound, sdl_ttf, sed, ser2net,
  4872. setserial, sg3_utils, shared-mime-info, simicsfs, sispmctl,
  4873. slang, slirp, smcroute, smstools3, snmppp,
  4874. snowball-hdmiservice, socat, socketcand, sox, spawn-fcgi,
  4875. speex, spice, spice-protocol, sqlcipher, sqlite, squashfs,
  4876. squid, sredird, startup-notification, strace, stress,
  4877. strongswan, stunnel, subversion, sudo, sunxi-boards,
  4878. sunxi-cedarx, swig, sylpheed, synergy, sysklogd, sysstat,
  4879. systemd, sysvinit, taglib, tar, tcl, tcllib, tcpdump,
  4880. tcpreplay, texinfo, tftpd, thrift, thttpd, tiff, ti-utils,
  4881. tn5250, torsmo, trace-cmd, transmission, tslib, tstools,
  4882. tvheadend, twolame, tz, uboot-tools, uclibc, udisks, ulogd,
  4883. upmpdcli, upx, urg, usb_modeswitch, usbmount, usbredir,
  4884. usbutils, util-linux, valgrind, vde2, vim, vlc, vo-aacenc,
  4885. vorbis-tools, vpnc, vsftpd, vtun, wayland, webkit, webp,
  4886. webrtc-audio-processing, weston, wget, whois, wireless-regdb,
  4887. wireshark, wpa_supplicant, wvstreams, x11r7, x11vnc,
  4888. xapp_xcalc, xapp_xdm, xapp_xdpyinfo, xapp_xf86dga, xapp_xfs,
  4889. xapp_xinit, xapp_xkbevd, xapp_xmh, xapp_xrandr, xapp_xsm,
  4890. xbmc, xbmc-pvr-addons, xcb-proto, xcursor-transparent-theme,
  4891. xdriver_xf86-input-mouse, xdriver_xf86-video-{ast,intel},
  4892. xdriver_xf86-video-vmware, xenomai, xerces,
  4893. xfont_font-adobe-{100,75}dpi,
  4894. xfont_font-adobe-utopia-{100dpi,75dpi,type1},
  4895. xfont_font-alias, xfont_font-arabic-misc,
  4896. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  4897. xfont_font-bh-lucidatypewriter-100dpi,
  4898. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  4899. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  4900. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  4901. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  4902. xfont_font-daewoo-misc, xfont_font-dec-misc,
  4903. xfont_font-ibm-type1, xfont_font-isas-misc,
  4904. xfont_font-jis-misc, xfont_font-micro-misc,
  4905. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  4906. xfont_font-misc-meltho, xfont_font-misc-misc,
  4907. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  4908. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  4909. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  4910. xfont_font-xfree86-type1, xfsprogs, xinetd, xkeyboard-config,
  4911. xlib_libdmx, xlib_libFS, xlib_libpciaccess, xlib_libSM,
  4912. xlib_libX11, xlib_libXaw, xlib_libXext, xlib_libXfont,
  4913. xlib_libXi, xlib_libXinerama, xlib_libXrandr, xlib_libXrender,
  4914. xlib_libXres, xlib_libXScrnSaver, xlib_libXt, xlib_libXv,
  4915. xlib_libXvMC, xlib_libXxf86dga, xlib_libXxf86vm, xmlstarlet,
  4916. xproto_xcmiscproto, xproto_xextproto, xscreensaver,
  4917. xserver_xorg-server, xterm, xz, zeromq, zlib, zlog, zmqpp,
  4918. znc, zsh, zxing
  4919. New packages: adwaita-icon-theme, am335x-pru-package,
  4920. bcache-tools, biosdevname, botan, canfestival, clamav,
  4921. cppunit, dos2unix, dovecot, dovecot-pigeonhole, getent, glm,
  4922. gst1-validate, hicolor-icon-theme, ipmitool, leafnode2,
  4923. libdvbcsa, libgtk3, libphidget, libshout, libunistring,
  4924. libupnpp, mesa3d-demos, modplugtools, mono, monolite, mp4v2,
  4925. netcat-openbsd, nginx, odhcploc, openvmtools,
  4926. phidgetwebservice, pps-tools, pure-ftpd,
  4927. python-configshell-fb, python-rtslib-fb, python-urwid, qlibc,
  4928. qt5location, shairport-sync, spidev_test, targetcli-fb,
  4929. tinyalsa, trinity, x264, yaml-cpp, ympd
  4930. Removed packages: libelf
  4931. Issues resolved (http://bugs.uclibc.org):
  4932. #261: New package: wxWidgets
  4933. #325: New package: ratpoison
  4934. #405: New package: OpenVZ tools
  4935. #1309: New package: rdiff-backup
  4936. #3427: New package: nginx
  4937. #3655: New package: libav
  4938. #3991: New Package: open-vm-tools (Vmware Tools)
  4939. #6878: dmraid: disabled on ARC
  4940. #6950: Full unicode support in ncurses
  4941. #7010: jamvm builds and runs fine under mips (be)
  4942. #7088: elfutils on Blackfin doesn't build
  4943. #7142: ecryptfs needs getent to run
  4944. #7280: CMake toolchain file uses the FORCE attribute on CMAKE_CXX_FLAGS
  4945. #7346: [2014.08rc3] vim-8ae50e3ef8bf.tar.gz can not be downloaded, ...
  4946. #7352: [2014.08-rc3] diffutils-3.3 failed on building
  4947. #7358: rpi-userland: linking with bcm_host doesn't give vc_dispmanx_*
  4948. #7364: monit builds a static application, even though BR2_PREFER_...
  4949. #7370: ngrep - requires --with-pcap-includes fully defined to find...
  4950. #7442: rootfs remount does not work as expected with sysvinit
  4951. #7448: Having export MACHINE="something" breaks glibc build on IMX6...
  4952. #7568: musl buildroot-toolchain does not put libgcc_s.so.1 into place
  4953. #7574: quota-4.01 fails to build statically
  4954. 2014.08, Released September 1st, 2014
  4955. Minor manual fixes/additions.
  4956. Updated/fixed packages: btrfs-progs, cmake, cppcms, exim,
  4957. lftp, libdaemon, libev, libgpgme, libiqrf, libnl, libplist,
  4958. libroxml, libwebsockets, mesa3d, mpd, mtdev2tuio, musepack,
  4959. perl-gd, php-geoip, php-gnupg, php-imagick, php-memcached,
  4960. php-ssh2, php-yaml, php-zmq, polarssl, ruby, systemd, taglib,
  4961. uboot-tools, upmpdcli, webkit, xapp_xfs, xapp_luit,
  4962. xscreensaver, yajl
  4963. Issues resolved (http://bugs.uclibc.org):
  4964. #7346: vim-8ae50e3ef8bf.tar.gz can not be downloaded, 404 not found
  4965. 2014.08-rc3, Released August 26th, 2014
  4966. Minor fixes.
  4967. User manual update / restructuring.
  4968. Updated/fixed packages: cairo, ecryptfs-utils, gettext,
  4969. gstreamer, gstreamer1, gutenprint, icu, imagemagick, jack2,
  4970. lbreakout2, libevas-generic-loaders, libftdi, libinput,
  4971. libtorrent, ltris, msgpack, ntp, php, procps-ng, pulseaudio,
  4972. thrift, tvheadend, usb_modeswitch, xmlstarlet,
  4973. Issues resolved (http://bugs.uclibc.org):
  4974. #7136: ecryptfs-utils needs gettext to run when glibc/eglibc...
  4975. #7322: libgomp dependency issue with imagemagick
  4976. #7328: Git dl of versions in x/y broken
  4977. 2014.08-rc2, Released August 18th, 2014
  4978. Fixes all over the tree.
  4979. User manual restructured / reworked.
  4980. Toolchain: Fix for C++ exceptions / pthread_exit() on
  4981. uClibc/glibc, C++-11 features with uClibc.
  4982. Updated/fixed packages: bandwidthd, bluez5_utils, empty,
  4983. espeak, fbv, ffmpeg, gd, gnupg2, gst1-plugin-good, iftop,
  4984. infozip, libcuefile, libeml, libnftl, localedef, ltrace,
  4985. matchbox, mpd, network-manager, nftables, ngrep, nut, openssl,
  4986. oprofile, perl, perl-net-ssleay, postgresql, pppd, procps-ng,
  4987. qt, subversion, synergy, systemd, tar, tftpd, webkit,
  4988. xapp_rstart, xbmc, xbmc-pvr-addons
  4989. Issues resolved (http://bugs.uclibc.org):
  4990. #7124: Use BR toolchain externally results a non-bootable...
  4991. #7208: Glibc C++ aplications crash if they use exceptions
  4992. #7250: Cannot build with -std=c++11
  4993. #7262: Generating locale en_US.UTF-8 fails on 64bit fedora..
  4994. #7286: systemd 215 doesn't build
  4995. 2014.08-rc1, Released August 8th, 2014
  4996. Fixes all over the tree and new features.
  4997. Architecture: Powerpc64 BE/LE added, AVR32 deprecated.
  4998. Improved altivec / SPE /atomic instructions
  4999. handling. Additional PowerPC CPU variants added.
  5000. Defconfigs: Atmel SAMA5D3, Congatec QMX6, Lego ev3, TS-5x00,
  5001. qemu-system-xtensa, qemu-aarch64-virt added. A number of
  5002. tweaks to existing ones. lpc32xx defconfigs removed.
  5003. Toolchain: Microblaze support for internal musl toolchain.
  5004. Default to GCC 4.8 for internal toolchain, remove deprecated
  5005. 4.3 and 4.6 versions.
  5006. External CodeSourcery / Linaro toolchain updates, option to
  5007. copy gconv libraries for external toolchains.
  5008. Infrastructure: graph-depends: misc fixes, transitive
  5009. dependencies are not drawn by default. Download handling is
  5010. now done using helper scripts. Integrity of downloads can now
  5011. be verified using sha* hashes. Subversion download now uses
  5012. peg revisions for robustness.
  5013. Legal-info: License info of local or overridden packages are
  5014. saved as well. Toolchain packages are also taken into account.
  5015. autotools: Static linking with libtool / v1.5 improvements.
  5016. Gettextize support, similar to autoreconf.
  5017. kconfig package infrastructure added.
  5018. Misc: Version selection for busybox dropped.
  5019. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  5020. alsamixergui, argus, armadillo, at, atftp, atk, avahi,
  5021. avrdude, axel, b43-firmware, b43-fwcutter, bandwidthd, bc,
  5022. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  5023. bmon, boa, bonnie, bootutils, bsdiff, btrfs-progs, bustle,
  5024. busybox, bwm-ng, bzip2, ca-certificates, cairo, can-utils,
  5025. ccache, ccrypt, chrony, cifs-utils, classpath, cloog, cmake,
  5026. collectd, connman, coreutils, cosmo, cppcms, cramfs, crda,
  5027. cryptodev-linux, cryptodev, ctorrent, cvs, dbus-cpp,
  5028. dbus-glib, dbus-python, dbus, dcron, dejavu, devmem2,
  5029. dfu-util, dhcp, dhcpcd, dhcpdump, dhrystone, dialog, dillo,
  5030. distcc, dmidecode, dmraid, dnsmasq, doom-wad, dropbear,
  5031. dropwatch, dsp-tools, dtv-scan-tables, dvb-apps, e2fsprogs,
  5032. e2tools, eeprog, eigen, elf2flt, elftosb, enlightenment,
  5033. enscript, espeak, ethtool, eudev, evemu, exim, expedite,
  5034. explorercanvas, ezxml, faifa, fan-ctrl, fconfig, feh,
  5035. fetchmail, ffmpeg, fftw, file, fio, fis, flann, flashrom,
  5036. flex, flot, fltk, fontconfig, freerdp, freescale-imx,
  5037. freetype, ftop, gcc, gd, gdb, genimage, genromfs, gettext,
  5038. giblib, glib-networking, glibc, gmp, gnupg, gnutls, gpm, gpsd,
  5039. gptfdisk, gpu-viv-bin-imx6q, gqview, grantlee, gst-ffmpeg,
  5040. gst-fsl-plugins, gst1-libav, gst1-plugins-bad,
  5041. gst1-plugins-ugly, gtk2-engines, gtk2-theme-hicolor, gtkperf,
  5042. gvfs, haserl, hdparm, hostapd, httping, i2c-tools, icu,
  5043. imagemagick, imx-lib, inadyn, inotify-tools, input-tools,
  5044. ipkg, iproute2, iputils, irda-utils, iw, jack2, jpeg, jquery,
  5045. jquery-keyboard, jquery-mobile, jquery-validation, jsmin, kbd,
  5046. kexec, kmod, knock, latencytop, lcdapi, leafpad, lesstif,
  5047. lftp, libaio, libarchive, libargtable2, libart, libatasmart,
  5048. libatomic_ops, libbsd, libcap-ng, libcec, libcgicc, libcgroup,
  5049. libconfuse, libcurl, libdrm, libdvdnav, libdvdread,
  5050. libeXosip2, libedit, liberation, libesmtp, libev, libevas,
  5051. libevdev, libevent, libfcgi, libffi, libfreefare, libfslcodec,
  5052. libfslparser, libfslvpuwrap, libgail, libgcrypt, libglade,
  5053. libglib2, libgpgme, libgtk2, libhid, libical, libiconv,
  5054. libiqrf, libjpeg, liblog4c-localtime, libmbus, libmicrohttpd,
  5055. libmms, libndp, libnftnl, libnl, libnspr, libnss, liboauth,
  5056. libpcap, libpng, libpthsem, libqmi, libraw, libraw1394,
  5057. librsvg, libsoc, libsoup, libsvgtiny, libsysfs, libtasn1,
  5058. libtirpc, libtorrent, libusb, libv4l, libwebsockets, libxcb,
  5059. libxml2, libyaml, links, linux-firmware, linux-fusion,
  5060. linux-headers, linux-pam, lite, live555, lm-sensors,
  5061. lockfile-progs, lpc3250loader, lshw, lsof, lsuio, ltrace,
  5062. ltris, lua-messagepack, luainterpreter, luajit, luaposix,
  5063. luarocks, lvm2, lxc, lz4, lzo, make, makedevs, mdadm,
  5064. mediastreamer, mesa3d, metacity, minidlna, mkpasswd,
  5065. modem-manager, mongoose, mpd, mpg123, msgpack, mtd, mtools,
  5066. mtr, musepack, musl, mysql, nano, nasm, nbd, ncurses, ndisc6,
  5067. netatalk, netplug, network-manager, nftables, ngircd, nodejs,
  5068. nss-mdns, ntp, nut, olsr, open2300, opencv, openntpd, openocd,
  5069. openpgm, openpowerlink, openssh, openssl, openswan, openvpn,
  5070. opkg, oprofile, opus-tools, orc, p910nd, pango, parted,
  5071. pax-utils, pcmanfm, perf, perl, perl-module-build, php,
  5072. pixman, pkgconf, poco, polarssl, popt, portmap, postgresql,
  5073. prboom, protobuf-c, proxychains-ng, psmisc, psplash, ptpd2,
  5074. python,
  5075. python-{bottle,dpkt,id3,mad,msgpack,nfc,pygame,pyzmq,simplejson},
  5076. python3, qhull, qt, qt5base, qt5connectivity, qt5declarative,
  5077. qt5graphicaleffects, qt5multimedia, qt5quickcontrols,
  5078. qt5sensors, qt5svg, qt5webkit, quagga, quota, radvd, rdesktop,
  5079. read-edid, rpcbind, rpi-firmware, rpi-userland, rpm,
  5080. rsh-redone, rsync, rt-tests, rtmpdump, rtorrent, rubix, ruby,
  5081. samba, samba4, sane-backends, sawman, sconeserver, setserial,
  5082. sg3_utils, shared-mime-info, smartmontools, smcroute, snappy,
  5083. socketcand, spawn-fcgi, sqlite, squashfs, squid, sredird,
  5084. startup-notification, statserial, strongswan, stunnel,
  5085. sunxi-mali, supervisor, synergy, sysklogd, sysprof, sysstat,
  5086. systemd, tcpdump, tcpreplay, texinfo, thrift, thttpd, ti-gfx,
  5087. ti-utils, tinyhttpd, torsmo, trace-cmd, transmission, tslib,
  5088. tstools, tvheadend, tzdata, uboot-tools, uclibc, udev,
  5089. udpcast, usb_modeswitch, usbmount, util-linux, valgrind, vim,
  5090. vlc, w_scan, wayland, webrtc-audio-processing, weston, wget,
  5091. wireless-regdb, wireless_tools, wireshark, wpa_supplicant,
  5092. xapp_{twm,xconsole,xcursorgen,xedit,xfs,xinit,xrandr},
  5093. xdriver_xf86-video-intel, xlib_lib{FS,ICE,Xext,Xfont,Xft,Xi},
  5094. xproto_fontsproto, xproto_inputproto, xserver_xorg-server,
  5095. x11vnc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons, xterm, xvkbd,
  5096. xz
  5097. New packages: flickcurl, fmc, fmlib, geoip, gnupg2,
  5098. google-breakpad, imx-vpu, isl, kexec-lite, libglew, libglu,
  5099. libinput, libksba, libmemcached, libmpdclient, librtlsdr,
  5100. libuv, libva, libva-intel-driver, linux-zigbee, memcached,
  5101. mpdecimal, ncmpc, opencore-amr, patchelf, perl-datetime-tiny,
  5102. perl-gd, perl-gdgraph, perl-gdtextutil, perl-io-socket-ssl,
  5103. perl-json-tiny, perl-mojolicious, perl-net-ssleay,
  5104. perl-path-tiny, perl-try-tiny, perl-xml-libxml,
  5105. perl-xml-namespacesupport, perl-xml-sax, perl-xml-sax-base,
  5106. php-geoip, php-memcached, pifmrds, pinentry, powerpc-utils,
  5107. procps-ng, pwgen, python-cffi, python-daemon, python-flup,
  5108. python-ipython, python-numpy, qt5enginio, qt5webkit-examples,
  5109. qt5websockets, simicsfs, sispmctl, sox, sshpass, tclap,
  5110. twolame, upmpdcli, whois, xlib_libxshmfence, xproto_dri3proto
  5111. Removed packages: procps
  5112. Issues resolved (http://bugs.uclibc.org):
  5113. #5750: Doing a Buildroot build from /usr doesn't work
  5114. #5900: config flags to the Xenomai build system
  5115. #6230: Cannot compile gcc without threads (uClibc-based)
  5116. #6626: procps Unknown HZ value! (XX) Assume 100
  5117. #7118: Package "thrift" requires atomic operations
  5118. #7154: Local uClibc config file gets overwritten using ...
  5119. #7160: host-xz not built
  5120. #7166: hostapd: segfault when using RT5370
  5121. #7172: Name collision of rpath token expansion and internal..
  5122. #7178: NTPd package cannot sync time without a proper ntp.conf
  5123. #7184: supervisord depends on libxml2 implicitly
  5124. #7196: Unable to build on UBUNTU13.10
  5125. #7268: python 2.7 compilation issue on a Debian/Ubuntu ...
  5126. 2014.05, Released May 31st, 2014
  5127. Minor fixes.
  5128. Minor manual fixes. U-Boot now defaults to spl/u-boot-spl.bin
  5129. for the spl file.
  5130. Updated/fixed packages: exim, glibc, gnutls, libfribidi,
  5131. qt5base, qt5webkit, sysklogd, thrift, u-boot
  5132. 2014.05-rc3, Released May 28th, 2014
  5133. Minor fixes.
  5134. Updated/fixed packages: acl, attr, connman, dosfstools,
  5135. dropbear, dvb-apps, exim, flite, gdb, httping, hwdata,
  5136. lesstif, libnss, libv4l, lttng-babeltrace, midori, monit,
  5137. mplayer, php, python2, rdesktop, rpi-userland, ruby, samba,
  5138. samba4, slang, xbmc
  5139. Issues resolved (http://bugs.uclibc.org):
  5140. #7100: license info for package 'acl' missing
  5141. #7106: license info for package 'attr' missing
  5142. #7112: license info for package 'hwdata'
  5143. 2014.05-rc2, Released May 21st, 2014
  5144. Fixes all over the tree.
  5145. Stripping using sstrip has been deprecated.
  5146. BR2_EXTERNAL can now also be used to implement custom
  5147. filesystem types.
  5148. The newly added BR2_GRAPH_DEPTH variable to limit the depth of
  5149. the generated dependency graph has been renamed to
  5150. BR2_GRAPH_DEPS_OPTS, so additional options can be supported in
  5151. the future.
  5152. The virtual package infrastructure will now error out early
  5153. if multiple packages providing the same virtual package has
  5154. been enabled (E.G. opengl). This change requires that the
  5155. packages explicitly declare what virtual package(s) they
  5156. provide.
  5157. Updated/fixed packages: acpid, armadillo, avahi, bellagio,
  5158. btrfs-progs, cairo, clapack, directfb, duma, ecryptfs-utils,
  5159. elfutils, eudev, fbgrab, fio, flann, fluxbox, gdb, gpm,
  5160. gpu-viv-bin-mx6q, gst1-plugins-good, gst-plugins-good,
  5161. imagemagick, iprutils, ipsec-tools, jack2, libdvdnav,
  5162. libdvdread, libnss, libunwind, linux-headers, lsof, lua,
  5163. luajit, matchbox-keyboard, mesa3d, mpd, mplayer, mtr, mysql,
  5164. netsnmp, nodejs, openpowerlink, openvpn, pciutils,
  5165. php-imagick, postgresql, pulseaudio, qt5quick1, rpi-userland,
  5166. rsyslog, samba, samba4, sane-backends, sunxi-mali, systemd,
  5167. ti-gfx, tstools, udev, webkit, wpa_supplicant, xbmc,
  5168. xlib_libXpm, xserver_xorg-server, zyre
  5169. Issues resolved (http://bugs.uclibc.org):
  5170. #5396: Boot hangs when starting samba if BR2_ENABLE_LOCALE...
  5171. #7016: Git issues in resulting buildroot tar
  5172. #7094: pciutils doesn't build on Blackfin
  5173. 2014.05-rc1, Released May 13th, 2014
  5174. Fixes all over the tree and new features.
  5175. Architectures: Support for MIPS o32 ABI on MIPS-64 targets has
  5176. been removed. Building o32 ELF files for MIPS64 is an exotic
  5177. configuration that nobody should be using. If o32 is required,
  5178. then is better if it's built for MIPS 32-bit cores so only
  5179. 32-bit instructions will be used leading to a more efficient
  5180. o32 usage.
  5181. Support for the ARM A12 variant and Intel corei7.
  5182. Configs: Minnowboard and Altera SoCkit added, QEMU updates.
  5183. Bootloaders: Grub2 and gummiboot support, syslinux support
  5184. extended.
  5185. Toolchains: GCC 4.9. Glibc 2.19. Support for the musl C
  5186. library for internal and external toolchains. 4.8-R3 support
  5187. for ARC, Internal toolchain support for Aarch64 and
  5188. Microblaze. Environment variable to control debug output of
  5189. toolchain wrapper renamed to BR2_DEBUG_WRAPPER to match the
  5190. other variables. Toolchain tuple vendor name can now be
  5191. customized. Updated external Linaro ARM/Aarch64
  5192. toolchains. Added external Linaro ARMEB toolchain.
  5193. A GDB gdbinit file is now generated for external toolchains to
  5194. automatically set the correct sysroot.
  5195. Kconfig handling for minimum kernel headers version required
  5196. for packages. Now packages needing specific kernel header
  5197. features can specify these requirements in Kconfig.
  5198. Infrastructure: Support for (but disabled as it leads to
  5199. unreproducible builds) toplevel parallel builds. See the
  5200. comment at the top of Makefile for details about how to enable
  5201. it and what the problems are if you want to test it.
  5202. Python package infrastructure extended to support Python 3.x
  5203. Perl and virtual package infrastructure support added.
  5204. PRE_*_HOOKS support for all build steps.
  5205. Updated/fixed packages: acpid, agentpp, aiccu, apr, avahi,
  5206. barebox, bash, beecrypt, bellagio, binutils, boost,
  5207. boot-wrapper-aarch64, bustle, busybox, ca-certificates, cairo,
  5208. ccache, ccid, cgilua, chrony, cifs-utils, civetweb, cmake,
  5209. collectd, connman, coreutils, coxpcall, cppcms, cppzmq, crda,
  5210. cryptodev, cryptsetup, cups, czmq, dbus, dhcpdump, directfb,
  5211. dmalloc, dmraid, dnsmasq, dosfstools, dsp-tools, dtc,
  5212. dvb-apps, ebtables, ecryptfs-utils, eigen, erlang, ethtool,
  5213. evemu, evtest, f2fs-tools, fdk-aac, feh, ffmpeg, file, filemq,
  5214. flac, flot, fmtools, fping, freetype, fswebcam, gcc, gd, gdb,
  5215. gettext, giblib, git, glibc, glibmm, glib-networking, gmp,
  5216. gnutls, gpm, gpsd, gpu-viv-bin-mx6q, grep, gst1-libav,
  5217. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  5218. gst1-plugins-ugly, gst-ffmpeg, gst-fsl-plugins, gst-omx,
  5219. gst-plugins-good, gstreamer1, gvfs, harfbuzz, haveged,
  5220. hostapd, htop, httping, ifplugd, iftop, igmpproxy,
  5221. imagemagick, imlib2, imx-lib, infozip, intltool, iproute2,
  5222. ipsec-tools, ipset, jansson, jpeg, jpeg-turbo, jquery,
  5223. jquery-keyboard, jquery-ui, jquery-ui-themes, json-glib,
  5224. json-javascript, kexec, kmod, lame, lbase64, lbreakout2,
  5225. lcdproc, lftp, libao, libatasmart, libatomic_ops, libcap,
  5226. libcdio, libcec, libcgicc, libcgroup, libcurl, libdrm,
  5227. libdvdnav, libdvdread, libegl, libeio, libenca, libesmtp,
  5228. libevas, libevdev, libfribidi, libfslcodec, libfslparser,
  5229. libfslvpuwrap, libgail, libgles, libglib2, libgtk2, libhid,
  5230. libjpeg, libmbim, libmicrohttpd, libmodplug, libnftnl,
  5231. libnspr, libogg, libopenmax, libopenvg, libpcap, libplayer,
  5232. libpng, libpthread-stubs, librsvg, libsigsegv, libsocketcan,
  5233. libsoup, libtasn1, libtool, libtpl, libunwind, liburcu,
  5234. libusb, libwebsockets, libxcb, libxml2, libxmlpp, libyaml,
  5235. lighttpd, linphone, linux-firmware, linux-headers, ljsyscall,
  5236. lmbench, lsof, ltp-testsuite, ltris, lttng-babeltrace,
  5237. lttng-libust, lttng-modules, lttng-tools, lua, lua-cjson,
  5238. luacrypto, lua-ev, luaexpat, luaexpatutils, luafilesystem,
  5239. luainterpreter, luajit, lua-msgpack-native, luaposix,
  5240. luarocks, luasec, luasocket, luasql-sqlite3, lvm2, macchanger,
  5241. memstat, mesa3d, metacity, minidlna, mmc-utils,
  5242. mobile-broadband-provider-info, modem-manager, mongrel2,
  5243. monit, mpd, mplayer, msmtp, mtd, mtools, mutt, mysql, nasm,
  5244. ncurses, ne10, netatalk, netsnmp, nettle, network-manager,
  5245. newt, nfs-utils, nmap, nodejs, ntfs-3g, ntp, nut, ofono, ola,
  5246. olsr, omniorb, opencv, opengl, openpgm, openssh, openssl,
  5247. openswan, openvpn, orbit, orc, p11-kit, pango, parted,
  5248. pciutils, pcre, pcsc-lite, perf, perl, perl-xml-parser, php,
  5249. picocom, pixman, pkgconf, poppler, popt, portmap, powervr,
  5250. pppd, pptp-linux, proftpd, protobuf, protobuf-c, ptpd2,
  5251. pulseaudio, python, python3, python-bottle, python-m2crypto,
  5252. python-netifaces, python-pyasn, python-pycrypto,
  5253. python-pygame, python-pysnmp, python-pysnmp-apps,
  5254. python-pysnmp-mibs, python-serial, python-setuptools,
  5255. qextserialport, qt, qt5, qt5base, qt5connectivity,
  5256. qt5declarative, qt5graphicaleffects, qt5imageformats,
  5257. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  5258. qt5sensors, qt5serialport, qt5svg, qt5webkit, qt5x11extras,
  5259. qt5xmlpatterns, qtuio, qwt, radvd, readline, rings,
  5260. rpi-firmware, rpi-userland, rsh-redone, rsync, rsyslog, rtai,
  5261. rtmpdump, rt-tests, ruby, samba, sconeserver, scons, sdl,
  5262. sdl_image, sdl_mixer, sg3_utils, slang, smstools3, snmppp,
  5263. socat, speex, sqlcipher, sqlite, squashfs, squid, strongswan,
  5264. stunnel, sunxi-boards, sunxi-mali, sunxi-tools, sylpheed,
  5265. syslinux, sysstat, systemd, taglib, tcl, tcllib, tcpreplay,
  5266. tidsp-binaries, ti-gfx, tmux, tvheadend, tzdata, uboot,
  5267. uboot-tools, uclibc, udev, udisks, ulogd, usb_modeswitch,
  5268. usb_modeswitch_data, usbmount, util-linux, valgrind, vlc,
  5269. webkit, weston, wget, wireshark, wpa_supplicant, wsapi,
  5270. w_scan, xapp_appres, xapp_bdftopcf, xapp_beforelight,
  5271. xapp_bitmap, xapp_editres, xapp_fslsfonts, xapp_fstobdf,
  5272. xapp_iceauth, xapp_ico, xapp_mkfontscale, xapp_rgb,
  5273. xapp_rstart, xapp_sessreg, xapp_showfont, xapp_twm,
  5274. xapp_viewres, xapp_xauth, xapp_xbacklight, xapp_xcalc,
  5275. xapp_xclock, xapp_xditview, xapp_xdpyinfo, xapp_xdriinfo,
  5276. xapp_xev, xapp_xfd, xapp_xfontsel, xapp_xfs, xapp_xfsinfo,
  5277. xapp_xgc, xapp_xhost, xapp_xinit, xapp_xkbutils, xapp_xkill,
  5278. xapp_xload, xapp_xlsclients, xapp_xlsfonts, xapp_xmag,
  5279. xapp_xman, xapp_xmessage, xapp_xmodmap, xapp_xprop,
  5280. xapp_xrandr, xapp_xrdb, xapp_xrefresh, xapp_xset,
  5281. xapp_xsetroot, xapp_xsm, xapp_xstdcmap, xapp_xvidtune,
  5282. xapp_xvinfo, xapp_xwd, xapp_xwininfo, xcb-util-wm,
  5283. xdriver_xf86-input-evdev, xdriver_xf86-input-joystick,
  5284. xdriver_xf86-input-keyboard, xdriver_xf86-input-mouse,
  5285. xdriver_xf86-input-synaptics, xdriver_xf86-input-vmmouse,
  5286. xdriver_xf86-video-ark, xdriver_xf86-video-ast,
  5287. xdriver_xf86-video-ati, xdriver_xf86-video-cirrus,
  5288. xdriver_xf86-video-dummy, xdriver_xf86-video-fbdev,
  5289. xdriver_xf86-video-geode, xdriver_xf86-video-glide,
  5290. xdriver_xf86-video-glint, xdriver_xf86-video-i128,
  5291. xdriver_xf86-video-intel, xdriver_xf86-video-mach64,
  5292. xdriver_xf86-video-mga, xdriver_xf86-video-neomagic,
  5293. xdriver_xf86-video-newport, xdriver_xf86-video-nv,
  5294. xdriver_xf86-video-openchrome, xdriver_xf86-video-r128,
  5295. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  5296. xdriver_xf86-video-sis, xdriver_xf86-video-tdfx,
  5297. xdriver_xf86-video-tga, xdriver_xf86-video-trident,
  5298. xdriver_xf86-video-vesa, xdriver_xf86-video-vmware,
  5299. xdriver_xf86-video-voodoo, xenomai, xerces, xl2tp, xlib_libFS,
  5300. xlib_xtrans, xproto_xproto, xserver_xorg-server,
  5301. xutil_util-macros, zeromq, zic, zmqpp, zyre
  5302. New packages: armadillo, btrfs-progs, clapack, cosmo, dado,
  5303. dbus-triggerd, dtv-scan-tables, e2tools, eudev, exim, expect,
  5304. fetchmail, flann, flite, gnu-efi, grub2, gummiboot, heimdal,
  5305. iprutils, iptraf-ng, jack2, jquery-mobile, libee, libestr,
  5306. libgc, libgl, liblogging, libndp, libsoxr, libstrophe,
  5307. libubox, libuci, libxmlrpc, ljlinenoise, lpeg, lpty, lrandom,
  5308. lsqlite3, lua-coat, lua-coatpersistent, lua-csnappy, luajson,
  5309. lualogging, lua-messagepack, lua-testmore, lunit, lzip, lzlib,
  5310. musl, nftables, opentyrian, opentyrian-data,
  5311. perl-module-build, php-gnupg, php-imagick, php-ssh2, php-yaml,
  5312. php-zmq, postgresql, python-libconfig, python-pypcap,
  5313. python-pyrex, qdecoder, qhull, samba4, smack, tz, tzdump, ucl,
  5314. upx, vo-aacenc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons,
  5315. yaffs2utils, zlog, znc
  5316. Removed packages: crosstool-ng, python-distutilscross, vala
  5317. Issues resolved (http://bugs.uclibc.org):
  5318. #6842: Checking external toolchain for eabihf
  5319. #6956: Packaging libsoxr
  5320. #6986: Make legal-info fails on uboot versions before 2014.01
  5321. #6992: Incorrect installation rights on external kernel module..
  5322. 2014.02, Released February 27th, 2014
  5323. Minor fixes.
  5324. Updated/fixed packages: cegui06, cppdb, e2fsprogs, gcc, gdb,
  5325. gst1-plugins-bad, gstreamer, gstreamer1, haserl, imagemagick,
  5326. libpng, libxml2, lua, luajit, luarock, ncftp, openswan,
  5327. pcsc-lite, qt5connectivity, ramsmp, strongswan, vlc
  5328. Issues resolved (http://bugs.uclibc.org):
  5329. #6938: mkuser script generates wrong password for new user in..
  5330. 2014.02-rc3, Released February 25th, 2014
  5331. Minor fixes.
  5332. Updated/fixed packages: aiccu, ala-lib, alsa-utils, binutils,
  5333. cairo, coreutils, dhcpcd, distcc, efl, evas, iputils, gdb,
  5334. gpsd, gst-fsl-plugins, icu, libcec, libcgi, libplayer,
  5335. libsecret, libsepol, libsigsegv, libtool, libv4l,
  5336. linux-headers, matchbox-lib, mpg123, ncftp, opencv, pcmanfm,
  5337. pixman, pv, qt, rt-tests, sawman, sconeserver, sdl, thrift,
  5338. tvheadend, util-linux, webkit, xscreensaver
  5339. Issues resolved (http://bugs.uclibc.org):
  5340. #4706: Removing .stamp_target_installed does not trigger...
  5341. #5030: busybox built fails if we use an override src dir...
  5342. #5420: Dbus and /var/run management
  5343. #5768: Not able to build ALSA-Lib for static build
  5344. #5774: Not able to build ALSA-Utils for static build
  5345. #6542: external python modules fail to compile to pyc if...
  5346. #6764: Support for kernel signed modules
  5347. #6794: Busybox compiled from buildroot hangs on pass from...
  5348. 2014.02-rc2, Released February 20th, 2014
  5349. Fixes all over the tree. Static linking / nommu fixes and
  5350. annotations for several packages.
  5351. Updated/fixed packages: boost, busybox, collectd, coreutils,
  5352. dropbear, elfutils, feh, gcc, gst1-libav, imagemagick, iozone,
  5353. jimtcl, kexec, libvncserver, lvm2, lxc, mplayer, netsnmp, nut,
  5354. opencv, python, python3, qtuio, systemd, thrift, transmission,
  5355. uclibc, vlc, webkit
  5356. Issues resolved (http://bugs.uclibc.org):
  5357. #5450: AT91SAM9260 Bootstrap compilation problem
  5358. #5582: libiconv 1.14 failed to build
  5359. #5624: When building directfb, BR2_TARGET_LDFLAGS not used by..
  5360. #5852: [2012.11] usb_modeswitch should depends of "BR2_PACK..
  5361. #6218: binutils-2.23.2/gas fails with undefined reference to..
  5362. #6236: binutils-2.23.2/bfd fails with undefined reference to..
  5363. #6470: If the build directory is a child of /usr, the build..
  5364. #6776: systemd error: static declaration of 'execvpe' follows..
  5365. #6818: toolchainfile.cmake has absolut path references
  5366. 2014.02-rc1, Released February 11th, 2014
  5367. Fixes all over the tree and new features.
  5368. Support for external packages/defconfigs (BR2_EXTERNAL). See
  5369. user manual for details.
  5370. Cleanup of environment variable names for consistency. The
  5371. download directory location override (BUILDROOT_DL_DIR) is now
  5372. called BR2_DL_DIR. Likewise the name of the current .config is
  5373. renamed from BUILDROOT_CONFIG to BR2_CONFIG. Please update
  5374. your post build scripts if you use this! BUILD_DIR is now also
  5375. exported to the post build/image scripts.
  5376. Toolchain: GCC 4.8 fix for ARM stack corruption, reverted
  5377. uClibc pread/pwrite backport as they cause issues on certain
  5378. architectures, new Linaro and Sourcery Codebench toolchains.
  5379. x86: Support for AMD Jaguar cores, SSE4.x, SH: SH2/SH3/SH3EB
  5380. variants removed, Microblaze: Internal toolchain support
  5381. Legal infrastructure: Info is now split between host and
  5382. target packages, large number of license annotations.
  5383. Lua: selection between lua 5.1 / 5.2, luarocks support
  5384. Python: package infrastructure, many new packages.
  5385. Defconfigs: Armadeus APF51 + Zedboard added, apf27, apf28,
  5386. beaglebone, microblaze, pandaboard, qemu, raspberry pi
  5387. updated.
  5388. Updated/fixed packages: aiccu, alsa-lib, alsa-utils,
  5389. am33x-cm3, aumix, autoconf, automake, barebox, bellagio,
  5390. berkeleydb, binutils, bison, blackbox, bluez_utils, boost,
  5391. bustle, busybox, cairo, can-utils, ccache, ccid, cgilua,
  5392. cifs-utils, civetweb, cmake, collectd, connman, copas,
  5393. coreutils, coxpcall, cppzmq, cramfs, crda, cryptodev-linux,
  5394. cryptsetup, cups, czmq, dhcpcd, dhcpdump, dhrystone, dialog,
  5395. dmraid, dnsmasq, dosfstools, dropbear, dropwatch, dtc, duma,
  5396. dvb-apps, e2fsprogs, eglibc, eigen, elf2flt, erlang, ethtool,
  5397. f2fs-tools, ffmpeg, file, filemq, fio, flashrom, flex,
  5398. fluxbox, fontconfig freerdp, freetype, gadgetfs-test, gawk,
  5399. gcc, gdb, gdbm, gettext, git, glibc, gnupg, gnutls, gob2,
  5400. gpsd, grep, grub, gst-ffmpeg, gst-plugins-good,
  5401. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  5402. gst1-plugins-ugly, gstreamer, gstreamer1, gtest, icu, iftop,
  5403. imagemagick, inadyn, infozip, iozone, iproute2, iptables, iw,
  5404. jpeg, jpeg-turbo, jq, kexec, kmod, knock, lbase64, lcdapi,
  5405. lftp, libcdaudio, libcgi, libcgicc, libcuefile, libcurl,
  5406. libdmtx, libdrm, libdvdnav, libdvdread, libegl, libevent,
  5407. libexif, libfcgi, libfreefare, libgles, libglib2, libllcp,
  5408. libmicrohttpd, libmpd, libnfc, libnl, libnss, libopenmax,
  5409. libopenvg, libpcap, libpfm4, libplayer, libpng, libqmi,
  5410. libreplaygain, libroxml, libsamplerate, libsexy, libsigsegv,
  5411. libsndfile, libsoc, libtasn1, libtorrent, libtpl, libupnp,
  5412. libusb, libusb-compat, libvorbis, libxcb, libxml2, libxmlpp,
  5413. libyaml, lighttpd, linknx, linux-firmware, linux-pam, live555,
  5414. lm_sensors, lmbench, lockdev, logrotate, lrzsz, ltrace, lua,
  5415. lua-ev, lua-msgpack-native, luabitop, luaexpat, luaexpatutils,
  5416. luafilesystem, luajit, luaposix, luasec, luasocket,
  5417. luasql-sqlite3, m4, matchbox, mdadm, minicom, mongrel2, mpc,
  5418. mpd, mpg123, mplayer, mtd, mysql, lvm2, mxml, ncurses, ne10,
  5419. neard, neardal, netsnmp, netstat-nat, network-manager, nodejs,
  5420. numactl, ofone, ola, olsr, omniorb, open2300, opencv,
  5421. openpowerlink, openssh, openssl, openvpn, oprofile, opus,
  5422. opus-tools, orbit, p11-kit, parted, pcre, pcsc-lite, perl,
  5423. php, poco, poppler, powervr, protobuf-c, psplash, python,
  5424. python-bottle,
  5425. python-{crc16,distutilscross,dpkt,id3,ipy,m2crypto,mad,meld},
  5426. python-{netifaces,nfc,protobuf,pygame,pyparsing,pyro,pyzmq},
  5427. python-{serial,setuptools}, qt, qt5base, qt5connectivity,
  5428. qt5declarative, qt5graphicaleffects, qt5jsbackend,
  5429. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  5430. qt5webkit, radvd, redis, rings, rng-tools, rpcbind,
  5431. rpi-firmware, rpi-userland, rt-tests, sam-ba, samba, sawman,
  5432. sconeserver, scons, sdl, sg3_utils, snappy, snmppp,
  5433. socketcand, spice, spice-protocol, sqlcipher, sqlite, squid,
  5434. sshfs, strace, subversion, sunxi-mali, supervisor, sysklogd,
  5435. sysprof, sysstat, systemd, sysvinit, taglib, tar, tcpdump,
  5436. ti-gfx, ti-utils, tinymembench, tn5250, trace-cmd,
  5437. transmission, tvheadend, tzdata, zxing, uboot, uboot-tools,
  5438. uclibc, udev, udpcast, ulogd, urg, usb_modeswitch_data,
  5439. util-linux, vala, valgrind, vorbis-tools, wavpack, wayland,
  5440. weston, wget, wireless-regdb, wireshark, wpa_supplicant,
  5441. wsapi, xavante, xapp_xdpyinfo, xapp_xrandr, xcb-proto,
  5442. xdriver_xf86-video-intel, xenomai, xkeyboard-config, xl2tp,
  5443. xlib_lib{FS,SM,X11},
  5444. xlib_libX{au,aw,composite,cursor,damage,ext,fixes,font,i},
  5445. xlib_libX{inerama,mu,pm,randr,render,res,t,tst,v,xf86dga},
  5446. xlib_libXxf86vm, xlib_libdmx, xlib_libfontenc,
  5447. xlib_libpciaccess, xlib_xtrans, xproto_dri2proto,
  5448. xproto_{glproto,inputproto,presentproto,randrproto,videoproto},
  5449. xproto_xextproto, xproto_xproto, xutil_util-macros,
  5450. xutil_makedepend, zic, zmqpp, zxing, zsh, zyre
  5451. New packages: apitrace, avrdude, c-ares, ca-certificates,
  5452. cwiid, dbus-cpp, evemu, fping, fswebcam, gpm, gst1-libav,
  5453. haveged, intel-microcode, iucode-tools, jasper, joe, ktap,
  5454. lbreakout2, libass, libbluray, libcdio, libenca, libevdev,
  5455. libmbim, libmodplug, libnfs, libnftnl, libplist, libshairplay,
  5456. libsocketcan, ljsyscall, log4cplus, ltris, luainterpreter,
  5457. luarocks, minidlna, mmc-utils, modemmanager, mtr, net-tools,
  5458. python-configobj, python-dialog, python-json-schema-validator,
  5459. python-keyring, python-msgpack, python-posix-ipc,
  5460. python-pyasn, python-pycrypto, python-pysnmp,
  5461. python-pysnmp-apps, python-pysnmp-mibs, python-pyusb,
  5462. python-simplejson, python-tornado, python-versiontools,
  5463. rtmpdump, rtptools, smcroute, smstools3, tcpreplay, thrift,
  5464. ti-uim, tinyxml, tmux, vlc, wmctrl, xconsole
  5465. Removed packages: autoconf, automake, ccache, cpanminus, lzma,
  5466. netkitbase, netkittelnet, pkg-config, squashfs3, ttcp, xstroke
  5467. Issues resolved (http://bugs.uclibc.org):
  5468. #65: new package: dbus c++ language bindings
  5469. #769: Update configuration menu for MIPS target
  5470. #2419: Add a bundle of Lua modules
  5471. #2629: Segmentation faults and division by zero in Grub on ext2
  5472. #3811: Added auto-mount for USB and SD Card (mdev) (for 2011.05)
  5473. #4339: Allow override of DL_DIR in extract step
  5474. #4363: Make sure that copied linux and busybox defconfig are...
  5475. #4454: There should be simple way to update image, when chang...
  5476. #5024: grub fails to build for x86_64 target architecture
  5477. #5066: New-Package: net-tools
  5478. #5072: ncurses: add ncurses-progs to target
  5479. #5294: uclibc build ignores target CFLAGS and LDFLAGS
  5480. #5366: Login doesn't work with util-linux versions of login/agetty
  5481. #5378: dropbear Makefile broken
  5482. #5390: System banner - change to empty doesn't remove /etc/issue
  5483. #5780: spurious build failure because it cannot remove ubinize.cfg
  5484. #5798: ncurses-5.9 fails to compile statically
  5485. #5810: Buildroot 2012.11: Additional GCC option "-msoft-float" ...
  5486. #6080: Git fetch caching
  5487. #6092: Bootable ISO image creation seems to have stopped working..
  5488. #6272: coreutils build fails
  5489. #6434: apply-patches.sh does not work recursively
  5490. #6446: eglibc doesn't install ldconfig to target
  5491. #6484: Add c-ares
  5492. #6596: Slow bootup if mdev is chosen
  5493. #6656: Build Qt5 with ccache
  5494. #6662: internal compiler error: Segmentation fault during making..
  5495. #6722: Usage of $($(PKG)_DIR_PREFIX) is an issue with linux package
  5496. #6752: genext2fs: e2fsck must run before tunefs -U random
  5497. #6770: openssl 1.0.1f fails with ccache
  5498. #6830: Qt5: no fonts are installed
  5499. #6848: Qt5: no text shown in simple QWidget / frame-buffer setup
  5500. #6854: Update to Qt 5.2.1
  5501. 2013.11, Released November 30th, 2013:
  5502. Minor fixes.
  5503. Updated/fixed packages: apr, binutils, dbus-python, dropwatch,
  5504. ecryptfs-utils, eglibc, gdb, gpsd, grantlee, hostapd,
  5505. iptables, qlibiscsi, libnspr, libnss, libpfm4, libtool,
  5506. lua-ev, lvm2, mplayer, qt, qt5, quagga, ruby, tinymembench,
  5507. tvheadend, util-linux, wpa_supplicant
  5508. Issues resolved (http://bugs.uclibc.org):
  5509. #1279: Buildroot compiled Busybox and Coreutils LFS issues
  5510. #2995: -fstack-protector-all causes ssh to SIGSEGV
  5511. #5570: Cannot compile software on the target machine
  5512. #6428: util-linux libmount segfaults with patch from buildroot
  5513. #6500: php fails to build for armel
  5514. #6554: gdb needs to dependents on host texinfo
  5515. #6692: GNU nano fails to compile for x86_64
  5516. #6704: wpa_supplicant: fix wrong path to executable file in D-Bus
  5517. 2013.11-rc3, Released November 26th, 2013
  5518. Fixes all over the tree.
  5519. Architecture: Mark MIPS I, II, III and IV as deprecated.
  5520. Updated/fixed packages: beecrypt, dbus, e2fsprogs, libcap-ng,
  5521. libglib2, libroxml, libsigsegv, libvncserver, lxc, mdadm,
  5522. mongoose, nut, ola, omniorb, openssl, pcre, php, poco,
  5523. protobuf-c, pv, qt5base, ruby, schifra, squid, sunxi-mail,
  5524. swig, ti-gfx, tinymembench, uclibc, udisks, vim
  5525. 2013.11-rc2, Released November 18th, 2013
  5526. Fixes all over the tree.
  5527. Defconfigs: qemu_arm_versatile, qemu_arm_nuri, sheevaplug:
  5528. Adjust kernel versions.
  5529. Toolchain: avr32: fix for modern kernel headers
  5530. Bootloader: Barebox updated to 2013.10.1
  5531. Updated/fixed packages: dhcp, e2fsprogs, gst1-plugins-bad,
  5532. libcurl, libvncserver, nano, pc, qt5base, squashfs, ttcp,
  5533. wayland, wvstreams
  5534. Issues resolved (http://bugs.uclibc.org):
  5535. #3601: DHCPD S80dhcp-server startup script issues
  5536. #6320: Fix kernel compile issue if BR2_LINUX_KERNEL_CUSTOM_GIT_VERS..
  5537. #6416: Xenomai package, patch alternative
  5538. #6590: directfb-examples build failed whit linaro toolchain
  5539. 2013.11-rc1, Released November 12th, 2013
  5540. Architectures: Nios-II support, MIPS arch handling fixes
  5541. Defconfigs: cubieboard2, freescale i.MX 6sololite evk,
  5542. sabre-sd, wandboard added, rpi renamed to raspberrypi_defconfig
  5543. Toolchain: glibc support, upstream uClibc fixes, uClibc 0.9.31
  5544. for avr32, crosstool-ng backend removed, external musl
  5545. toolchain support, gcc 4.8.2, updated Linaro external
  5546. toolchains. Fortran and objective-C support deprecated,
  5547. mudflap support
  5548. Bootloaders: U-Boot: u-boot.imx support, version bumps
  5549. Linux: use kmod instead of module-init-tools
  5550. System: default to devtmpfs for /dev
  5551. Infrastructure: Make 3.82 fixes, locales generation fixes, CVS
  5552. download support, post-rsync hooks
  5553. Fs: u-boot image support for cpio
  5554. Updated/fixed packages: aircrack-ng, alsamixergui, apr,
  5555. apr-util, atk, automake, bellagio, berkeleydb, bind, binutils,
  5556. bison, boost, busybox, can-utils, ccache, ccid, cgilua,
  5557. chrony, cifs-utils, cjson, collectd, connman, conntrack-tools,
  5558. copas, cppcms, cppzmq, czmq, dash, dbus, dhcpcd, diffutils,
  5559. directfb, dmidecode, dnsmaqs, docker, dosfstools, dropbear,
  5560. dropwatch, ebtables, eglibc, elf2flt, empty, enchant, erlang,
  5561. ethtool, fbgrab, fbv, fdk-aac, feh, ffmpeg, file, findutils,
  5562. fltk, fmtools, freetype, gdk-pixbuf, gettext, git,
  5563. glib-networking, gmp, gnupg, gnutls, gpu-viv-bin-mx6q, gsl,
  5564. gstreamer, gstreamer1, gst1-plugins-{bad,base,good,ugly},
  5565. gtest, gutenprint, hplip, i2c-tools, icu, ifplugd,
  5566. imagemagick, iozone, iproute2, ipset, iptables, iw, jamvm,
  5567. jansson, jpeg-turbo, kismet, kmod, lcms2, libassuan, libcap,
  5568. libcap-ng, libcdaudio, libcec, libcue, libcurl, libdrm,
  5569. libedit, libevas, libevent, libfreefare, libfuse,
  5570. libgpg-error, libiconv, liblog4c-localtime, libmicrohttpd,
  5571. libmnl, libmodbus,
  5572. libnetfilter_{acct,conntrack,cthelper,cttimeout,log,queue},
  5573. libnfnetlink, libnl, libpng, libqmi, libqrencode, libroxml,
  5574. libsecret, libsigsegv, libsoup, libtirpc, libunwind, libusb,
  5575. libvpx, lighttpd, linphone, linux-pam, lmbench,
  5576. lockfile-progs, log4cxx, logrotate, logsurfer, ltp-testsuite,
  5577. ltrace, luacrypto, luaposix, lvm2, m4, matchbox-lib,
  5578. media-ctl, mediastreamer, minicom, minidlna, mongoose, monit,
  5579. mpc, mpd, mpg123, mplayer, mrouted, mtdev, mutt, mysql_client,
  5580. nano, ncftp, ndisc6, neard, neardal, neon, net-snmp, netatalk,
  5581. netcat, netkitbase, netperf, netplug, nettle, nfacct,
  5582. nfs-utils, ngircd, ngrep, noip, nuttcp, olsr, openssh, opkg,
  5583. oprofile, opus-tools, orc, ortp, pciutils, pcre, pcsc-lite,
  5584. perf, perl, perl-cross, php, picocom, pkgconf, polarssl,
  5585. poppler, pppd, proftpd, protobuf, proxychains-ng, pulseaudio,
  5586. pv, qemu, qt, qt5base, qt5webkit, quagga, radvd, redis,
  5587. rpi-{firmware,userland}, rrdtool, rsync, rtorrent, ruby,
  5588. samba, scons, screen, sdl_sound, ser2net, setserial,
  5589. smartmontools, socat, socketcand, sqlcipher, sqlite, squid,
  5590. stress, strongswan, stunnel, sudo, syslinux, systemd,
  5591. sysvinit, tcl, ti-gfx, time, transmission, tremor, tslib,
  5592. tstools, tvheadend, tzdata, uboot-tools, uclibc, udpcast,
  5593. uemacs, ulogd, usb_modeswitch{,_data}, util-linux, vala,
  5594. valgrind, vde2, vorbus-tools, vpnc, vsftpd, vtun, wayland,
  5595. webkit, webp, webrtc-audio-processing, weston, wget,
  5596. wireshark, wsapi, xavante, xdriver_xf86-video-geode, xenomai,
  5597. xinetd, xlib_libpthread-stubs, xl2tp, xmlstarlet,
  5598. xserver_xorg-server, xz, zeromq, zic, zmqpp
  5599. New packages: aiccu, autossh, bc, civetweb, cppdb, cryptsetup,
  5600. duma, eigen, harfbuzz, igmpproxy, iputils, jq, knock, kobs-ng,
  5601. lesstif, libcgroup, libsepol, libsoc, libssh2, luasec, luasql,
  5602. lxc, nut, ola, omniorb, openpowerlink, orbit, p910nd, psplash,
  5603. python-crc16, python-ipy, python-pyzmq, qt5sensors,
  5604. qt5serialport, qt5x11extras, snmppp, subversion, tcping,
  5605. trace-cmd, xscreensaver, zsh
  5606. Removed packages: module-init-tools
  5607. Issues resolved (http://bugs.uclibc.org):
  5608. #1138: Buildroot fails to build packages if BR2_GCC_SHARED_LIBGCC=y
  5609. #5408: qt build failure with Sourcery CodeBench ARM 2010.09
  5610. #5630: makefile error with toolchain helpers.mk
  5611. #5672: htop: remove X11 stuff
  5612. #5678: linux.mk: linux-menuconfig fails
  5613. #5696: python3 installation is too large, patches from python2 needed
  5614. #5978: Erlang does not build for arm in 2013.02-rc3
  5615. #6392: Extended ARM uImage kernel options
  5616. #6404: Buildroot's coreutils 'uname -p' reports 'Unknown' on recent..
  5617. #6428: util-linux libmount segfaults with patch from buildroot
  5618. #6452: eglibc from Linaro 2013.07 not copied to target correctly
  5619. #6566: PHP segfault when crosscompiled to mips64 - patch included
  5620. #6572: [PowerPC] Buildroot uses wrong external toolchain libraries..
  5621. #6578: udisks package broken
  5622. #6602: ebtables 64 bit kernel + 32 bit userland alignment error..
  5623. #6608: ebtables missing ethertypes - fix included
  5624. #6620: Sysvinit package missing killall5 and symlinks - patch included
  5625. #6632: CMake use host pkg-config
  5626. #6638: pkgconf doesn't download
  5627. #6644: "all" target doesn't work in out-of-tree builds
  5628. #6650: Segmentation fault when trying to build latest buildroot
  5629. #6668: iptables limit module alignment problem on mips64
  5630. 2013.08, Released August 31th, 2013:
  5631. Minor fixes.
  5632. Documentation build fixed.
  5633. Updated/fixed packages: ltrace, strongswan
  5634. 2013.08-rc3, Released August 29th, 2013:
  5635. Fixes all over the tree.
  5636. External toolchain lib32/lib64 handling, ABI name for EABIhf,
  5637. misc fixes for generatelocales, apply-patches and module
  5638. stripping.
  5639. Top level menu names reordered and renamed for clarity.
  5640. Updated/fixed packages: acl, attr, bash, dbus, directfb,
  5641. dvb-apps, kexec, kmod, libbsd, linux-fusion, mesa3d, minidlna,
  5642. openssh, openssl, pulseaudio, python-setuptools, qt5,
  5643. qt5webkit, redis, strongswan, sunxi-mali
  5644. Issues resolved (http://bugs.uclibc.org):
  5645. #6464: dbus-daemon-launch-helper needs setuid
  5646. 2013.08-rc2, Released August 16th 2013:
  5647. Documentation improvements.
  5648. External toolchains fixes.
  5649. Updated/fixed packages: aircrack-ng, bash, boost, cairo,
  5650. cppcms, eglibc, ffmpeg, gcc, git, gnupg, imagemagick, libcec,
  5651. libffi, libgcrypt, linux, linux-headers, ltrace, netatalk,
  5652. opencv, opengl, readline, samba, strongswan, sunxi-cedarx,
  5653. uclibc, udev, wayland, webkit, zeromq.
  5654. Issues resolved (http://bugs.uclibc.org):
  5655. #6440: typo in ffmpeg makefile
  5656. 2013.08-rc1, Released August 5th, 2013:
  5657. Architectures:
  5658. - improved support for floating point on ARM and Thumb/Thumb2
  5659. - support for ARM OABI removed
  5660. Toolchains:
  5661. - support added for Sourcery CodeBench ARM and MIPS 2013.05
  5662. - Linaro ARM and Aarch64 toolchains updated
  5663. - support added for the Arago ARMv5 and ARMv7 toolchains
  5664. - gcc 4.8.x version bumped
  5665. - support for installing both FDPIC and FLAT libraries on
  5666. Blackfin
  5667. - support for uClibc 0.9.31 removed,
  5668. - convert the internal toolchain backend to use the package
  5669. infrastructure
  5670. - support added for eglibc in the internal toolchain backend
  5671. - toolchain components for the ARC architecture updated and
  5672. gdb for ARC added.
  5673. - support for Blackfin in the internal toolchain fixed
  5674. Defconfigs: beaglebone_defconfig updated, new defconfig for
  5675. CubieBoard, for Olimex mx233 Olinuxino, for Calao Systems
  5676. TNY-A9G20-LPW.
  5677. A number of packages have been fixed to use the
  5678. <pkg>_CONFIG_SCRIPTS mechanism to get their <pkg>-config shell
  5679. script installed and modified properly. Licensing informations
  5680. has been added to a number of packages.
  5681. Use XZ tarballs for a number of packages.
  5682. Noticeable package changes/additions:
  5683. - The glib2/libgtk2/webkit stack has been updated to recent
  5684. versions.
  5685. - Support for Gstreamer 1.x has been added.
  5686. - OpenGL support for TI OMAP platforms has been added.
  5687. - OpenGL support for Allwinner platforms has been added.
  5688. - OpenMAX support for RasberryPi has been added.
  5689. Updated/fixed packages: acl, attr, autoconf, avahi, barebox,
  5690. bind, binutils, busybox, bwm-ng, bzip2, cifs-utils, colletctd,
  5691. cpanminus, cups, curl, dash, dbus, dhcp, directfb,
  5692. directfb-examples, dnsmasq, dosfstools, dropbear, dtc,
  5693. e2fsprogs, ed, efl, enlightenment, erlang, ethtool, fbgrab,
  5694. fftw, firmware-imx, flot, fltk, freetype, gawk, gdk-pixbuf,
  5695. gettext, gmp, gnutls, gsl, gutenprint, gvfs, gzip, haserl,
  5696. hiawatha, httping, icu, imagemagick, imlib2, imx-lib,
  5697. intltool, iozone, ipset, iptables, jquery, jquery-keyboard,
  5698. jquery-sparkline, kmod, less, libart, libcdaudio, libcgicc,
  5699. libesmtp, libftdi, libfuse, libglib2, libgtk, libgtk2, libidn,
  5700. libiqrf, liblog4c-localtime, libnspr, libnss, libpcap,
  5701. libroxml, libserial, libsigsev, libsoup, libtool, libtpl,
  5702. libvncserver, libxml2, linphone, lm_sensors, logrotate,
  5703. ltrace, lttng, luafilesystem, luajit, minicom, monit, mpg123,
  5704. mtd, mutt, mxml, neard, netatask, netsnmp, nettle,
  5705. network-manager, nodejs, nss-mdns, openssh, openswan, openvpn,
  5706. opkg, opus, pcre, perl-cross, php, pixman, poco, polarssl,
  5707. pulseaudio, pv, python, python3, qt, qt5, qt5declarative,
  5708. qt5jsbackend, qt5quick1, readline, rpi-firmware, ruby, samba,
  5709. sane-backends, sconeserver, sdl_image, sdparm, ser2net,
  5710. socketcand, sqlite, squid, strace, tcl, tcpdump, tinyhttpd,
  5711. tvheadend, tzdata, uboot, udpcast, usb_modeswitch,
  5712. usb_modeswitch_data, usbutils, webkit, wireshark, wvstreams,
  5713. xapp_luit, xapp_xmodmap, xenomai, xfsprogs, xlib_libX11, zic,
  5714. zlib.
  5715. New packages: a10disp, aespipe, am33x-cm3, cppcms, dhcpcd,
  5716. dropwatch, dtc, ecryptfs-utils, eglibc, elf2flt, fdk-aac,
  5717. gcc-final, gcc-initial, gcc-intermediate, git,
  5718. gpu-viv-bin-mx6q, gst1-plugins-bad, gst1-plugins-base,
  5719. gst1-plugins-good, gst1-plugins-ugly, gst-omx,
  5720. gst-plugin-x170, gstreamer1, jimtcl, lbase64, libassuan,
  5721. libbsd, libcec, libdvbsi, libedit, libgpgme, libqmi,
  5722. libqrencode, libsvg, libsvg-cairo, libunwind, libvpx,
  5723. linux-headers, lockdev, luabitop, luacrypto, lua-ev,
  5724. luaexpatutils, msgpack, ocrad, on2-8170-libs,
  5725. on2-8170-modules, p11-kit, pax-utils, ptpd, ptpd2,
  5726. python-pyro, ramspeed/smp, snappy, strongswan, sunxi-boards,
  5727. sunxi-cedarx, sunxi-mali, sunxi-tools, ti-gfx, tinymembench,
  5728. tree, tstools, uclibc, w_scan.
  5729. Issues resolved (http://bugs.uclibc.org):
  5730. #4718: python (built for powerpc) distutils has paths to host
  5731. compiler toolchain
  5732. #5516: appended device tree blobs on uImage fails
  5733. #6302: Versions of packages retrieved from github.com are wrong
  5734. #6308: dosfstools download link is wrong
  5735. #6326: Dropbear: Add options to allow better config for
  5736. different target devices (e.g. routers)
  5737. #6338: Wrong download link for minicom package
  5738. #6344: Wrong handling of license text files with same name and
  5739. different directory
  5740. #6374: gnutls package broken if linux cryptodev module
  5741. selected
  5742. #6410: omap3_beagle has uimage error load address error
  5743. 2013.05, Released May 31th, 2013:
  5744. Minor fixes.
  5745. External toolchain wrapper fix for if host/usr/bin is placed
  5746. in the patch.
  5747. Updated/fixed packages: acpid, at91bootstrap, czmq, elf2flt,
  5748. flex, jamvm, kmod, libplayer, libtirpc, libv4,
  5749. lttng-babeltrace, opengl, qt5jsbackend, udpcast, wvstreams
  5750. Issues resolved (http://bugs.uclibc.org):
  5751. #4868: Buildroot compile failure for toolchain/gdb-7.4/intl/reloc...
  5752. #4988: flex and m4 problems
  5753. #5912: obsolete CVS files
  5754. 2013.05-rc3, Released May 25th, 2013:
  5755. Minor fixes.
  5756. Updated/fixed packages: aircrack-ng, bellagio, boost, crda,
  5757. dvb-apps, flot, libatomic_ops, libeXosip2, libosip2, libxml2,
  5758. mongrel2, poco, portaudio, pptp-linux, tvheadend, urg, weston,
  5759. wireshark
  5760. 2013.05-rc2, Released May 15th, 2013:
  5761. Fixes all over the tree.
  5762. Default number of parallel jobs is now number of CPUs + 1.
  5763. Defconfigs: Add Telit EVK-PRO3, AT91SAM9260-EK Nand flash.
  5764. Updated/fixed packages: aircrack-ng, busybox, cairo,
  5765. classpath, curlftpfs, czmq, dbus, f2fs-tools, fan-ctrl,
  5766. filemq, gst-plugin-bad, gutenprint, hplip, json-c,
  5767. libatomic_ops, libcurl, libdrm, libglib2, libnspr, libnss,
  5768. libsha1, libsigsegv, libxcb, linknx, linux-pam, lttng-modules,
  5769. lttng-tools, matchbox-lib, mcookie, mesa3d, neon, pixman,
  5770. pulseaudio, python-nfc, qt5imageformats, quota, openssl,
  5771. sconeserver, strace, sylpheed, wvstreams,
  5772. xapp_{appres,bdftopcf,beforelight,bitmap,edires,fonttosfnt},
  5773. xapp_{fslsfonts,fstobdf,iceauth,ico,listres,luit,mkfontdir},
  5774. xapp_{mkfontscale,oclock,rgb,rstart,scripts,sessreg,setxkbmap},
  5775. xapp_{showfont,smproxy,twm,viewres,x11perf,xauth,xbacklight},
  5776. xapp_x{biff,calc,clipboard,clock,cmsdb,cursorgen,dbedizzy,ditview},
  5777. xapp_x{dm,dpyinfo,driinfo,edit,ev,eyes,f86dga,fd,fontsel,fs,fsinfo},
  5778. xapp_x{gamma,gc,host,input-calibrator,input,kbcomp,kbevd,kbprint},
  5779. xapp_x{kbutils,kill,load,logo,lsatoms,lsclients,lsfonts,mag,man},
  5780. xapp_x{message,mh,modmap,more,pr,prop,randr,rdb,refresh,set,setmode},
  5781. xapp_x{setpointer,setroot,sm,stdcmap,vidtune,vinfo,wd,wininfo,wud},
  5782. xcb-util, xcursor-transparent-theme, xdata_xbitmaps,
  5783. xdata_xcursor-themes,
  5784. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synaptics},
  5785. xdriver_xf86-input-{tslib,vmmouse,void},
  5786. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,fbdev,geode,glide},
  5787. xdriver_xf86-video-{glint,i128,intel,mach64,mga,neomagic,newport},
  5788. xdriver_xf86-video-{nv,openchrome,r128,savage,siliconmotion,sis},
  5789. xdriver_xf86-video-{tdfx,tga,trident,v4l,vesa,vmware,voodoo,wsfb},
  5790. xfont_encodings, xfont_font-adobe-{100,75}dpi,
  5791. xfont_font-utopia-{100dpi,75dpi,type1},
  5792. xfont_font-{alias,arabic-misc,bh-100dpi,bh-75dpi},
  5793. xfont_font-bh-lucidatypewriter-{100,75}dpi, xfont_font-bh-{ttf,type1},
  5794. xfont_font-bitstream-{100dpi,75dpi,type1}, xfont_font-cronyx-cyrillic,
  5795. xfont_font-{cursor,daewoo,dec,isas,jis,micro}-misc,
  5796. xfont_font-ibm-type1, xfont_font-misc-{cyrillic,ethiopic,meltho,misc},
  5797. xfont_font-{mutt,schumacher}-misc,
  5798. xfont_font-{screen-cyrillic,sony-misc,sun-misc,util},
  5799. xfont_font-winitzki-cyrillic, xfont_font-xfree86-type1,
  5800. xlib_lib{FS,ICE,SM,X11,XScrnSaver,Xau,Xaw,Xcomposite,Xcursor},
  5801. xlib_libX{damage,dmcp,ext,fixes,font,ft,i,inerama,mu,pm,randr},
  5802. xlib_libX{render,res,t,tst,v,vMC,xf86dga,xf86vm},
  5803. xlib_lib{dmx,fontenc,pciaccess,pthread-stubs,xkbfile}, xlib_xtrans,
  5804. xproto_{applewm,bigreqs,composite,damage,dmx,dri2,fixes}proto,
  5805. xproto_{fontcache,font,gl,input,kb,randr,record,render}proto,
  5806. xproto_{resource,scrnsaver,video,windowswm,xcmisc,xext}proto,
  5807. xproto_{xf86bigfont,xf86dga,xf86dri,xf86vidmode,xinerama,x}proto,
  5808. xserver_xorg-server, xutil_{makedepend,util-macros}
  5809. Readded Packages: xapp_xinit
  5810. Issues resolved (http://bugs.uclibc.org):
  5811. #5054: amd64: cannot find init - due to missing /lib64 folder
  5812. 2013.05-rc1, Released May 8th, 2013:
  5813. Architectures: ARC support, Blackfin support, FLAT binary
  5814. format, ARM: Drop old CPU variants, add fa526/626, Marvell PJ4
  5815. Toolchains: Add new Microblaze external toolchains, Linaro
  5816. ARM/Aarch64 updates, GCC 4.6.4 / 4.7.3 / 4.8.0 added to
  5817. internal toolchain, default to GCC 4.7.x. Internal
  5818. Crosstool-ng backend deprecated.
  5819. Defconfigs: Add Atmel at91sam9g45m10ek, freescale mpc8315erdb
  5820. & p1010rdb, Armadeus apf27 / apf28, Openblocks A6, Raspberry
  5821. pi, gnublin board.
  5822. FS: LZO and XZ compression methods, extra ubifs options,
  5823. ext2 rev 0/1 and ext3/4 support.
  5824. Patch handling: apply-patches now has .patch.xz support,
  5825. Patch logic reworked as discussed during Febrary dev days:
  5826. http://elinux.org/Buildroot:DeveloperDaysFOSDEM2013
  5827. <pkg>-rsync now excludes version control files.
  5828. linux: uImage load address for ARM multiplatform kernels
  5829. Infrastructure for multiple OpenGL / ES / EGL / OpenVG
  5830. providers, similar to how libjpeg / libjpeg-turbo is handled.
  5831. Infrastructure for packages to add system users.
  5832. kconfig: updated to 3.9-rc2, support make olddefconfig
  5833. Updated/fixed packages: alsa-lib, alsa-utils, apr, apr-util,
  5834. argp-standalone, at, at91bootstrap, audiofile, aumix, avahi,
  5835. bash, blackbox, bind, binutils, bison, boost, bridge-utils,
  5836. busybox, ccache, cifs-utils, cmake, collectd, connman,
  5837. conntrack-tools, cpanminus, crosstool-ng, diffutils, directfb,
  5838. directfb-examples, divine, dmalloc, dnsmasq, dosfstools,
  5839. dropbear, e2fsprogs, ebtables, eeprog, erlang, ethtool,
  5840. fb-test-app, fbset, feh, ffmpeg, file, flex, flot, foomatic,
  5841. fxload, gd, gdb, gdisk, genimage, gettext, gmp, gnuchess,
  5842. gnutls, gob2, gperf, gpsd, gstreamer, haserl, hiawatha, htop,
  5843. httping, icu, inotify-tools, intltool, iproute2, ipset,
  5844. iptables, iw, jpeg, jquery, jquery-{sparkline,validation},
  5845. json-c, kbd, kexec, kismet, kmod, lcdproc, libarchive,
  5846. libatasmart, libcap, libconfig, libconfuse, libcurl, libdrm,
  5847. libeet, libev, libevas, libeXosip2, libffi, libfribi, libfuse,
  5848. libgcrypt, libglib2, libgtk2, libid3tag, libmicrohttpd,
  5849. libnetfilter_acct, libnetfilter_conntrack, libnl, libpcap,
  5850. libplayer, libsigc, libv4l, libxcb, linenoise, linux-pam,
  5851. lm_sensors, ltp-testsuite, luajit, lzop, madplay, make, mdadm,
  5852. mediastreamer, memtester, mesa3d,
  5853. mobile-broadband-provider-info, monit, mpd, mpfr, mpg123,
  5854. mrouted, msmtp, nbd, ncurses, ndisc6, neard, neardal, neon,
  5855. netperf, netsnmp, nettle, nfacct, ntfs-3g, ofono, olsr,
  5856. omap-u-boot-utils, openssh, openssl, openswan, openvpn,
  5857. oprofile, orc, patch, pciutils, pcre, perl, php, poco,
  5858. polarssl, proftpd, psmisc, pulseaudio, python,
  5859. python-{bottle,netifaces,serial,setuptools}, qt, quagga,
  5860. quota, radvd, rpi-firmware, rpi-userland, rt-tests, sam-ba,
  5861. samba, sawman, sdl, ser2net, smartmontools, socat, socketcand,
  5862. speex, squid, stress, stunnel, sudo, syslinux, sysstat,
  5863. sysvinit, tcl, tcprelay, tinyhttpd, tslib, tvheadend,
  5864. uboot-tools, udev, ulogd, util-linux, vala, vtun, webkit,
  5865. xapp_{iceauth,luit,makefontscale,sessreg,setxkbmap,smproxy},
  5866. xapp_{xauth,xcmsdb,xdpyinfo,xev,xgamma,xhost,xinput,xkbcomp},
  5867. xapp_{xkbevd,xlsatoms,xlsclients,xmodmap,xpr,xprop,xrandr,xrdb},
  5868. xapp_{xset,xwd,xwininfo}, xcb-{proto,util},
  5869. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synptics},
  5870. xdriver_xf86-input-{tslib,vmmouse,void},
  5871. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,geode,glide,glint},
  5872. xdriver_xf86-video-{i128,intel,mach64,mga,neomagic,newport},
  5873. xdriver_xf86-video-{openchrome,r128,savage,siliconmotion,sis},
  5874. xdriver_xf86-video-{tdfx,trident,vesa,vmware,wsfb}, xenomai,
  5875. xfont, xinetd, xkeyboard-config, xlib_lib{FS,ICE,SM,X11},
  5876. xlib_libX{scrnSaver,au,aw,cursor,dmcp,ext,fixes,font,ft,i},
  5877. xlib_libX{inerama,mu,pm,randr,res,tst,v,vMC,xf86dga,xf86vm},
  5878. xlib_lib{dmx,fontenc,pciaccess,xkbfile}, xlib_xtrans,
  5879. xproto_{applevm,bigreqs,dri2,fonts,gl,input,kbd,record}proto,
  5880. xproto_{resource,scrnsaver,xcmisc,xext,x}proto,
  5881. xserver_xorg-server, xutil_makedepend, xz, zeromq
  5882. New packages: aircrack-ng, bcusdk, chrony, crda,
  5883. cryptodev-linux, cppzmq, czmq, dtach, enscript, exfat,
  5884. exfat-utils, f2fs-tools, fan-ctrl, filemq, foomatic-filters,
  5885. genimage, genpart, glibmm, gnuplot, gtest, gutenprint, hplip,
  5886. iozone, jansson, jhead, jquery-keyboard, jquery-ui,
  5887. jquery-ui-themes, json-glib, json-javascript, lcms2, libpfm4,
  5888. libpthsem, libserial, libsigsegv, libtasn1, libwebsockets,
  5889. libxkbcommon, libxml++, linknx, log4cxx, mongoose, mongrel2,
  5890. mtools, ne10, nmap, nodejs, openobex, openpgm, poppler,
  5891. protobuf-c, python-m2crypto, python-thrift, qjson, qt5base,
  5892. qt5declarative, qt5graphicaleffects, qt5imageformats,
  5893. qt5jsbackend, qt5multimedia, qt5quick1, qt5script, qt5svg,
  5894. qt5webkit qt5xmlpatterns, rapidjson, redis, swig, texinfo,
  5895. tzdata, urg, ussp-push, wayland, webp, weston, wireless-regdb,
  5896. wireshark, wvdial, wvstreams, xcb-util-image, xcb-util-wm,
  5897. xcursor-transparent-theme, zic, zmqpp, zyre
  5898. Removed packages: microperl, ocf-linux, xapp_xinit,
  5899. xapp_xplsprinters, xapp_xprehashprinterlist,
  5900. xfont_font-bitstream-speedo,
  5901. xlib_lib{Xfontcache,XprintAppUtil,XprintUtil,Xp,oldX,xkbui},
  5902. xproto_{print,xf86rush}proto
  5903. Deprecated packages: vala
  5904. Issues resolved (http://bugs.uclibc.org):
  5905. #1291: Add support for Faraday 526 arm processor (fa526)
  5906. #2683: cups does not install correctly to target
  5907. #3313: mesa3d fails to build
  5908. #5186: initramfs/cpio should support lzo compression
  5909. #5636: agetty - cannot get controlling tty error - need updated...
  5910. #5906: collectd client headers not exported
  5911. #5966: bison unnecessarily required as build dependency
  5912. #6140: --enable-fileinfo not applied for php package
  5913. #6164: openvpn usage of ip tool from Busybox
  5914. 2013.02, Released February 28th, 2013:
  5915. Misc manual updates.
  5916. Updated/fixed packages: busybox, collectd, flashbench,
  5917. libgtk2, libupnp, mii-diag, quota
  5918. 2013.02-rc3, Released February 26th, 2013
  5919. Minor fixes.
  5920. Updated/fixed packages: conntrack-tools, dialog,
  5921. enlightenment, haserl, keyutils, libfif, libmad,
  5922. linux-firmware, linux-fusion, matchbox-desktop, matchbox-wm,
  5923. ruby, spawn-fcgi, vtun
  5924. Issues resolved (http://bugs.uclibc.org):
  5925. #5960: fusion.ko driver does not install to target rootfs
  5926. 2013.02-rc2, Released February 19th, 2013
  5927. Fixes all over the tree.
  5928. Various manual updates and fixes.
  5929. Updated/fixed packages: busybox, collectd, gesftpserver,
  5930. glib-networking, gnutls, inotify-tools, libcurl, libffi,
  5931. libglib2, libtorrent, libvorbis, neard, network-manager,
  5932. ntfs-3g, openssl, qt, rpi-userland, rtorrent, thttpd, vim.
  5933. Issues resolved (http://bugs.uclibc.org):
  5934. #5906: collectd client headers not exported
  5935. 2013.02-rc1, Released February 10th, 2013
  5936. Toolchain: Crosstool-ng 1.17.0, default to GCC 4.6.3, target
  5937. libraries install fixed. Add Linaro ARM
  5938. 2012.11/2012.12/2013.01, AArch64 12.11/12.12/13.01. Sourcery
  5939. CodeBench MIPS 2012.03/09. Infrastructure to warn about
  5940. missing 32bit support for binary toolchains. Toolchain wrapper
  5941. is now relocatable. Add GDB 7.5.1 / Remove 6.8 / 7.0 /
  5942. 7.1. Deprecate uClibc 0.9.31.
  5943. Architecture: Xtensa fixes, add missing powerpc variants, arm
  5944. 1136jf-s rev1, add A5/A15, neon support toggle, OABI
  5945. deprecated. Sparc: drop old unused variants
  5946. Bootloaders: At91bootstap: fix upstream URL, Barebox: add
  5947. 2012.12/2013.01/2013.02, remove 2012.08/09/10, lzop fixes,
  5948. environment image support, U-Boot: add 2013.01.01
  5949. Linux: fix appended dtb handling for v3.8+ kernels, support
  5950. multiple device trees
  5951. Defconfigs: calao USB-A9260, snowball, QEMU PPC440 on ML507
  5952. board, QEMU ARM Exynos4210, Kernel version in QEMU defconfigs
  5953. updated, at91rm9200df: misc fixes. Lock kernel headers to
  5954. match kernel.
  5955. Infrastructure: Git download fixes. Toolchain make target
  5956. renamed from 'cross' to 'toolchain'. Eclipse integration
  5957. support. Option to set root password, post image scripts,
  5958. config scripts handling.
  5959. Updated/fixed packages: alsa-lib, argp-standalone, argus,
  5960. arptables, atk, audiofile, axel, beecrypt, bind, bison,
  5961. bluez_utils, boost, cairo, can-utils, bmon, boa, busybox,
  5962. cairo, ccache, cdrkit, cifs-utils, cjson, cmake, collectd,
  5963. connman, coreutils, cpanminus, cups, dbus, dhcp, dialog,
  5964. diffutils, directfb, distcc, divine, dnsmasq, docker,
  5965. dosfstools, dstat, e2fsprogs, ebtables, ed, empty, ethtool,
  5966. expedite, fbset, fbv, ffmpeg, flex, fltk, fluxbox, freetype,
  5967. gadget-test, gawk, gdb, genext2fs, gettext, giblib,
  5968. glib-networking, gmp, gmpc, gnupg, gnutls, gpsd,
  5969. gst-plugins-{bad,base,good}, gstreamer, gzip, haserl, hdparm,
  5970. heirloom-mailx, hiawanta, hostapd, icu, imagemagick, imlib2,
  5971. inadyn, infozip, iproute2, ipset, iptables, iw, jpeg, jquery,
  5972. jquery-sparklines, jqeury-validation, kismet, kmod, lame,
  5973. libao, libcap, libcurl, libdvdnav, libdvdread, libecore,
  5974. libedbus, libedje, libeet, libefreet, libeina, libeio,
  5975. liberation, libelementary, libembryo, libethumb, libev,
  5976. libevas, libffi, libfribidi, libfuse, libgcrypt, libglib2,
  5977. libgpg-error, libgtk2, libhid, libidn, libmicrohttpd, libmpd,
  5978. libnl, libnspr, libnss, libogg, libpcap, libplayer, libpng,
  5979. libroxml, librsvg, libseccomp, libsigc, libsndfile, libungif,
  5980. libupnp, liburcu, libusb-compat, libvncserver, libvorbis,
  5981. libxml2, libxslt, lighttpd, links, linux-firmware,
  5982. linux-fusion, ltp-testsuite, ltrace,
  5983. lttng-{babel,libust,modules,tools}, lvm2, lua, luajit, lzop,
  5984. matchbox-{desktop,lib}, mdadm, metacity, midori, minicom, mpd,
  5985. mpfr, mplayer, mtd, mysql_client, ncurses, neon, netatalk,
  5986. networkmanager, nspr, ntfs-3g, nuttcp, ofone, olsr, openssl,
  5987. openvpn, opkg, oprofile, opus, opus-tools, orc, ortp, pango,
  5988. pciutils, pcmanfm, pcre, pcsc-lite, perl, php, pixman,
  5989. pkgconf, polarssl, pptp-linux, proxychains, pulseaudio,
  5990. python, python3, qemu, qextserialport, qt, quagga, radvd,
  5991. readline, rng-tools, rt-tests, rubix, ruby, sam-ba, samba,
  5992. sane-backends, sconeserver, scons, screen, sdl, sdl_gfx,
  5993. sdl_mixer, sdl_ttf, sdparm, sed, ser2net, smartmontools,
  5994. speex, sqlite, squid, sshfs, strace, sudo, sylpheed, tn5250,
  5995. taglib, tar, torsmo, transmission, tslib, uboot-tools, ulogd,
  5996. usb_modeswitch, util-linux, valgrind, vim, vsftpd, wavpack,
  5997. webkit, wipe, wireless_tools, wpa_supplicant, xapp_xinit,
  5998. xapp_xinput-calibrator, xapp_xman, xapp_xmh, xlib_libX11,
  5999. xlib_libXdmcp, xlib_libXft, xlib_libpthread-stubs,
  6000. xlib_xtrans, xproto_xcmiscproto, xproto_xextproto,
  6001. xserver_xorg-server, xstroke, xvkbd, xz
  6002. New packages: b43-firmware, b43-fwcutter, bustle,
  6003. cache-calibrator, cegui06, celt051, classpath, curlftpfs,
  6004. dvb-apps, dvbsnoop, elfutils, enlightenment, firmware-imx,
  6005. flashbench, gd, gesftpserver, gst-fsl-plugins, httping, iftop,
  6006. imx-lib, jamvm, jpeg-turbo, keyutils, libatasmart, libcofi,
  6007. libebml, libevas-generic-loaders, libfslcodec, libfslparser,
  6008. libfslvpuwrap, libgsasl, libiscsi, libmatroska, libmcrypt,
  6009. libmhash, libqwt, libseccomp, libsha1, linenoise, mcrypt,
  6010. media-ctl, ncdu, neard, neardal, nettle, perf, polkit,
  6011. proxychains, python-bottle, python-pyparsing, rpi-firmware,
  6012. rpi-userland, sg3_utils, slirp, snowball-hdmiservice, spice,
  6013. spice-protocol, tcllib, tvheadend, udisks, usbredir
  6014. ux500-firmware, vde2, xcb-utils-keysyms, yavta,
  6015. zd1211-firmware
  6016. Removed packages: customize, xdriver_xf86-input-{acecad,aiptek},
  6017. xdriver_xf86-video-{apm,chips,i740,rendition,s3,s3virge,sisusb},
  6018. xdriver_xf86-video-sun{cg14,cg3,cg6,ffb,leo,tcx},
  6019. xdriver_xf86-video-{tsend,xgi,xgixp}
  6020. Deprecated packages: xstroke
  6021. Issues resolved (http://bugs.uclibc.org):
  6022. #4237: building shared openssl w/-Os fails due to gcc bug
  6023. #5690: python3 does not obey to BR2_PACKAGE_PYTHON3_PYC_ONLY=y
  6024. #5602: python3 should install a "python" symbolic link
  6025. #5846: Extra slash added to last slash in URL
  6026. 2012.11.1, Released January 3rd, 2013:
  6027. Toolchain: Fixed non-largefile builds on recent Ubuntu
  6028. versions.
  6029. Arch: fix missing x86/generic handling, Build for Xtensa with
  6030. longcalls option.
  6031. Updated/fixed packages: dosfstools, qt
  6032. 2012.11, Released December 2nd, 2012:
  6033. Git shallow clone fix for older git version.
  6034. Updated/fixed packages: ctuio, libtool
  6035. Issues resolved (http://bugs.uclibc.org):
  6036. #5726: List all the available hook points
  6037. 2012.11-rc2, Released November 30th, 2012:
  6038. Minor fixes around the tree.
  6039. Various manual updates and fixes.
  6040. Add checks for legacy features.
  6041. Updated/fixed packages: acpid, alsa-lib, arptables, binutils,
  6042. busybox, ccache, cjson, cramfs, directfb, flex, fluxbox, gdb,
  6043. hiawatha, igh-ethercat, imagemagick, imlib2, lcdproc,
  6044. libdaemon, libecore, libhid, libmad, libpcap, libsigc, libusb,
  6045. linux-fusion, matchbox, ocf-linux, owl-linux, python, rrdtool,
  6046. scons, strace, sylpheed
  6047. Issues resolved (http://bugs.uclibc.org):
  6048. #5732: Error : package/alsa-lib/alsa-lib.mk
  6049. 2012.11-rc1, Released November 17th, 2012
  6050. Fixes all over the tree and new features.
  6051. Defconfigs: use u-boot 2012.10 on at91 and beaglebone,
  6052. sheevaplug + qemu: bump kernel version, add qemu-mips64-malta
  6053. + nitrogen6x defconfigs.
  6054. Bootloaders: add u-boot 2012.07/10, ais target format, add
  6055. barebox 2012.08/09/10/11, linker overlap issue fix for
  6056. at91bootstrap, mxs-bootlets updated for new Barebox versions.
  6057. Toolchains: binutils 2.23.1, gcc 4.7.2, default to gcc 4.6.x,
  6058. Codebench arm/sh/x86 2012.03/09, Linaro 2012.08/09/10.
  6059. Libtirpc support for modern glibc variants. Toolchain on
  6060. target has been deprecated.
  6061. Initial Aarch64 support, Xtensa support re-added.
  6062. Infrastructure: Use shallow git clone when possible, use
  6063. tarballs rather than git URLs for github. Moved to pkgconf
  6064. rather than pkg-config. System directory added, default
  6065. skeleton/device tables moved. More than 1 post-build script
  6066. can now be used. output/target now contains a
  6067. THIS_IS_NOT_YOUR_ROOT_FILESYSTEM warning, to help people
  6068. understand how to (not) use it.
  6069. Manual has been reworked and extended.
  6070. Legal-info: Lots of package annotations, CSV file fixes,
  6071. _LICENSE / _REDISTRIBUTE splitup, per-package hooks.
  6072. Updated/fixed packages: acpid, alsa-lib, alsa-utils,
  6073. alsamixergui, attr, autoconf, automake, bash, bind, binutils,
  6074. bison, blackbox, bluez-utils, busybox, cairo, can-utils,
  6075. cifs-utils, cjson, cmake, collectd, connman, conntrack-tools,
  6076. coreutils, cups, cvs, dbus, dhcp, directfb, dmalloc, dnsmasq,
  6077. dropbear, e2fsprogs, ethtool, fbdump, feh, fftw, file,
  6078. flashrom, fluxbox, gdb, gdisk, gdk-pixbuf, genext2fs, gettext,
  6079. gnutls, gpsd, gqview, grep, gsl, gst-plugins-{bad,good},
  6080. hdparm, hiawatha, hostapd, input-tools, iproute2, ipset,
  6081. iptables, iw, json-c, kexec, kmod, lcdproc, leafpad, less,
  6082. libcurl, libdrm, libdvdnav, libdvdread, libffi, libfuse,
  6083. libglib2, libhid, liblockfile, libmad, libmbus, libmnl,
  6084. libnetfilter_{acct,conntrack,cthelper,cttimeout,queue},
  6085. libnfc, libnfc-llcp, libnfnetlink, libnl, libnspr, libnss,
  6086. libpcap, libplayer, libtool, libtorrent, liburcu, libv4l,
  6087. libxcb, libxml2, libxslt, links, linux-firmware, lm-sensors,
  6088. lmbench, lockfile-progs, logrotate, lshw, lsof,
  6089. lttng-babeltrace, lttng-tools, lua, luajit, mesa3d, microperl,
  6090. mii-diag, module-init-tools, mpc, mpd, mpg123, mplayer,
  6091. mtd-utils, mysql_client, nbd, ncurses, netatalk, netkitbase,
  6092. netkittelnet, netsnmp, newt, nfs-utils, openntpd, openssh,
  6093. openssl, opkg, patch, pciutils, pcre, php, poco, polarssl,
  6094. popt, portmap, pppd, procps, pulseaudio, python, python-nfc,
  6095. python-protobuf, qt, quota, rp-pppoe, rtorrent, sam-ba, samba,
  6096. scons, sdl_gfx, smartmontools, sqlite, squid, strace, sudo,
  6097. sylpheed, tcpdump, tremor, ttcp, tiff, unionfs,
  6098. usb_modeswitch, usbutils, util-linux, vala, valgrind, vpnc,
  6099. vsftpd, webkit, wget, which, wpa_supplicant, x11vnc, xapp_*,
  6100. xdriver_*, xenomai, xfont_*, xinetd, xl2tp, xlib_*, xlsclient,
  6101. xproto_*, xserver_xorg-server, xutil_util-macros, xz, zeromq
  6102. New packages: arptables, at91bootstrap3, boot-wrapper-aarch64,
  6103. ccid, cpanminus, cpuload, erlang, evtest, fb-test-apps,
  6104. fxload, gdbm, gnupg, googlefontdirectory, grantlee, gsl,
  6105. lcdapi, liblo, liblog4c-localtime, libtirpc, linux-pam,
  6106. lua-msgpack-native, macchanger, mtdev, mtdev2tuio, nfacct,
  6107. opus, opus-tools, pcsc-lite, perl, pkgconf, python-meld3,
  6108. python3, qemu, qextserialport, qtuio, rpcbind, schifra,
  6109. sconeserver, supervisor, time, ulogd, usb_modeswitch_data,
  6110. yasm
  6111. Deprecated packages: netkitbase, netkittelnet
  6112. Issues resolved (http://bugs.uclibc.org):
  6113. #807: [PATCH] samba - make iconv and smbd optional
  6114. #3049: binutils have a sysroot bug in ld
  6115. #5330: update vsftpd to 3.0.0
  6116. #5486: libglib2 build fails on: libs/libglib-2.0.so: undefined...
  6117. #5666: Fails to build python 2.7.2 for 2440 arm
  6118. 2012.08, Release August 31th, 2012
  6119. Updated/fixed packages: microperl, cups, luajit, rrdtool,
  6120. prboom, oprofile.
  6121. Added license information for: sqlite.
  6122. Changed the source URLs of all packages located on Sourceforge
  6123. in order to use the automatic mirror selection URL
  6124. downloads.sourceforge.net, and get rid of the
  6125. BR2_SOURCEFORGE_MIRROR option.
  6126. 2012.08-rc3, Released August 25th, 2012
  6127. Updated/fixed packages: libglib2, netsnmp, freetype, libfuse,
  6128. libpng, x11vnc, zlib, gpsd, ifplugd, bash, distcc.
  6129. Added license informations for: barebox, grub, syslinux,
  6130. uboot, xloader, yajl, zlib, zxing, alsa-lib, alsa-utils,
  6131. faad2, nano, fbdump, rsync, librsync, fontconfig,
  6132. inotify-tools,
  6133. 2012.08-rc2, Released August 15th, 2012
  6134. Updated/fixed packages: imagemagick, sudo, crosstool-ng.
  6135. Added license informations for: mxml, nanocom, empty, expat,
  6136. lua, lucjson, xinetd, cjson, luaexpat, lmbench, bwm-ng,
  6137. input-event-daemon, luajit, cgilua, copas, coxpcall,
  6138. luafilesystem, luasocket, rings, wsapi, xavante, libtpl,
  6139. avahi, busybox, libfcgi, ifplugd, libcgicc, libcurl,
  6140. libdaemon, libdnet, libgpg-error, libpcap, libpng, lighttpd,
  6141. mtd, openssl, psmisc, socat, spawn-fcgi.
  6142. Fixes to Microblaze external toolchains
  6143. configuration. Improvements of the pkg-stats
  6144. script. Out-of-tree fix for the graph-depends script.
  6145. Kernel headers version bump.
  6146. 2012.08-rc1, Released August 1st, 2012
  6147. Fixes all over the tree and new features.
  6148. Integration of a legal information reporting infrastructure,
  6149. which allows to generate detailed informations about the
  6150. licenses and source code of all components of a system
  6151. generated by Buildroot. License information will progressively
  6152. be added on packages.
  6153. Default configuration files added for Calao-systems USB-A9263
  6154. and Calao-systems USB-A9G20-LPW.
  6155. External toolchains update: allow download of a custom
  6156. toolchain, add Linaro 2012.05 and 2012.06 for ARM, add
  6157. Blackfin toolchain 2012R1-BETA1, add Sourcery CodeBench MIPS
  6158. 2011.09.
  6159. Allow the restriction of downloads to the primary site only.
  6160. This is useful for project developers who want to ensure that
  6161. the project can be built even if the upstream tarball
  6162. locations disappear.
  6163. Add a 'System configuration' choice to select between 3
  6164. different init systems: Busybox init, SysV init and Systemd
  6165. init.
  6166. Cleanups to the package infrastructure. The visible change to
  6167. developers is that $(eval $(call AUTOTARGETS)) is now $(eval
  6168. $(autotools-package)), and similarly for other package
  6169. infrastructures and host packages. Refer to the documentation
  6170. for details.
  6171. By default, automatic detection of the number of compilation
  6172. jobs to use, depending on the number of CPUs available.
  6173. Improvements to generate systems with static libraries only
  6174. (infrastructure and package fixes).
  6175. Add proper support in the Linux kernel package to generate
  6176. Device Tree Blobs or combined Device Tree / Kernel
  6177. images. This will be useful on Microblaze, PowerPC and ARM,
  6178. which are architectures making extensive use of the Device
  6179. Tree.
  6180. Updated/fixed packages: audiofile, autoconf, automake, axel,
  6181. barebox, bash, beecrypt, berkeleydb, bind, bison, bluez_utils,
  6182. bonnie, boost, busybox, bsdiff, bwm-ng, bzip2, cifs-utils,
  6183. cgilua, cmake, connman, conntrack-tools, crosstool-ng, cups,
  6184. dbus, dhcp, dnsmasq, e2fsprogs, eeprog, ethtool, faad2, fbv,
  6185. ffmpeg, freetype, gmp, gnutls, gob2, gpsd, grep,
  6186. gst-plugins-base, gst-plugins-good, gzip, hiawatha, hostapd,
  6187. htop, icu, igh-ethercat, imagemagick, input-tools, iostat,
  6188. iproute2, ipset, iptables, iw, kmod, less, libcap, libgci,
  6189. libconfig, libcurl, libelf, libevas, libeXosip2, libexif,
  6190. libfuse, libidn, libmad, libmbus, libmnl,
  6191. libnetfilter-conntrack, libnl, libnspr, libnss, libogg,
  6192. libosip2, libpcap, libpng, libroxml, liburcu, libusb, libxml2,
  6193. libxslt, lighttpd, linux, ltrace, lttng-libust, lttng-modules,
  6194. lttng-tools, lua, m4, memtester, midori, mii-diag,
  6195. module-init-tools, mpfr, mpg123, mrouted, msmtp, mtd, mxml,
  6196. mysql_client, nasm, nbd, ncurses, nfs-utils, opencv, openocd,
  6197. openssl, pciutils, php, polarssl, portaudio, pppd,
  6198. pthread-stubs, pulseaudio, qt, quagga, quota, radvd, rpm,
  6199. rrdtool, samba, sam-ba, scons, sdl_gfx, sdl_sound, speex,
  6200. sqlite, squashfs, squid, sudo, synergy, syslinux, systemd,
  6201. tar, tcpdump, tcpreplay, udev, usbutils, valgrind, wget,
  6202. wpa_supplicant, wsapi, xavante, xserver_xorg-server, zlib
  6203. New packages: cjson, collectd, dfu-util, dmidecode, elftosb,
  6204. fbterm, flashrom, freerdp, inadyn, libfreefare,
  6205. libnetfilter_cttimeout, libnfc, libnfc-llcp, liboping,
  6206. libtorrent, linphone, logsurfer, lshw, luacjson, luaexpat,
  6207. luajit, mediastreamer, mobile-broadband-provider-info, monit,
  6208. mxs-bootlets, nanocom, nss-mdns, ofone, omap-u-boot-utils,
  6209. opkg, ortp, owl-linux, python-id3, python-nfc, quota,
  6210. ramspeed, rtorrent, sound-theme-borealis,
  6211. sound-theme-freedesktop, sysprof, webrtc-audio-processing,
  6212. xinetd, zxing
  6213. Issues resolved (http://bugs.uclibc.org):
  6214. #1315: Allow use of older external toolchains without sysroot
  6215. support [won't fix]
  6216. #5276: Hiawatha needs to manage IPV6 if so [fixed]
  6217. #5360: buildroot fails when building "host-libglib2 2.30.2
  6218. Building" [won't fix, upstream problem]
  6219. #5384: Can't build packages relying on gets on newer glibc
  6220. [fixed]
  6221. 2012.05, Released May 30th, 2012:
  6222. Updated/fixed packages: busybox, netsnmp, pptp-linux
  6223. 2012.05-rc3, Released May 25th, 2012:
  6224. Minor fixes around the tree.
  6225. Infra: Fix for DOWNLOAD macro when using primary mirrors with
  6226. scp targets.
  6227. Toolchain: Kernel headers 3.2.18 / 3.3.7.
  6228. Updated/fixed packages: binutils, bison, busybox, cifs-utils,
  6229. gnuchess, gpsd, iperf, libmpeg2, mtd, ntfs-3g, oprofile,
  6230. xserver-xorg
  6231. 2012.05-rc2, Released May 18th, 2012:
  6232. Fixes all over the tree.
  6233. Toolchain: uClibc: Use 0.9.33.2, Crosstool-ng: fix gperf
  6234. dependency, disable decimal floats support, Linux 3.2.17 /
  6235. 3.3.6 kernel headers. Fix sysroot copy handling for toolchains
  6236. without C++ support.
  6237. Updated/fixed packages: apr, apr-util, ccache, dnsmasq,
  6238. heirloom-mailx, gdb, ndisc6, opencv, openssl, socat, vala
  6239. 2012.05-rc1, Released May 10th, 2012:
  6240. Fixes all over the tree and new features.
  6241. Use /etc/os-release for version info rather than
  6242. /etc/br-version.
  6243. CMake toolchain file moved to $HOST_DIR/usr/share/buildroot.
  6244. Apply-patches.sh: cleanups, archived patches handling fixes,
  6245. support series files.
  6246. Defconfigs: beaglebone, mx53qsb, pandaboard, qemu configs for
  6247. arm-vexpress/microblaze/ppc-mpc88544ds, use 3.2.x for
  6248. atngw100, use 3.3.x for qemu configs.
  6249. Menu structure: Libraries moved out of multimedia section
  6250. Atom processor support. Prescott fix, blackfin ABI fix,
  6251. Microblaze architecture support (using ext toolchain). Cleanup
  6252. architecture names, deprecate Xtensa support.
  6253. Toolchain: Add GCC 4.4.7, 4.6.3, 4.7.0. uClibc 0.9.33.1,
  6254. default to uClibc 0.9.33.x, enable
  6255. UCLIBC_SUPPORT_AI_ADDRCONFIG by default, static and 64bit
  6256. fixes for external toolchains, linaro ext toolchains, new
  6257. sourcery codebench ext toolchains, GDB 7.4.1, crosstool-ng
  6258. 1.15.2.
  6259. Bootloaders: U-Boot: add 2012.04.01, SPL and u-boot.img
  6260. support. Barebox: add 2012.04, remove 2011.12.
  6261. Updated/fixed packages: alsa-lib, alsa-utils, at, atk, avahi,
  6262. barebox, berkeleydb, bind, bluez_utils, boost, busybox,
  6263. can-utils, ccache, cifs-utils, coreutils, cups, dbus, dhcp,
  6264. directfb, dnsmasq, doom-wad, dosfstools, e2fsprogs, expat,
  6265. fakeroot, feh, ffmpeg, file, fis, freetype, gamin, gawk,
  6266. gdk-pixbuf, gettext, giblib, glib-networking, gmp, gnutls,
  6267. gpsd, grep, gstreamer, gst-plugins-{bad,base,good,ugly},
  6268. haserl, hdparm, imagemagick, iproute2, iptable, iw, kexec,
  6269. kmod, lame, libaio, libarchive, libatomic_ops, libconfig,
  6270. libcurl, libdvdnav, libdvdread, libedbus, libethumb, libffi,
  6271. libfuse, libglib2, libgtk2, libhid, libmad, libmbus, libmpeg2,
  6272. libnl, libplayer, libpng, libsigc, libsoup, libupnp, liburcu,
  6273. libusb, libusb-compat, libxml2, libxml-parser-perl, libxslt,
  6274. lighttpd, linux-firmware, linux-fusion, lite, lsof, ltrace,
  6275. lttng-libust, lua, m4, makedevs, microperl, mpd, mpfr, mpg123,
  6276. mrouted, mtd, mysql_client, nbd, ncftp, ncurses, neon,
  6277. netsnmp, network-manager, nfs-utils, ngrep, ntfs-3g, openntpd,
  6278. openssh, openssl, parted, pango, pcre, php, pixman, poco,
  6279. psmisc, pulseaudio, python, qt, quagga, radvd, rpm, rsync,
  6280. ruby, samba, sam-ba, sane-backends, sawman, screen, sdl_net,
  6281. smartmontools, speex, sqlite, squashfs3, squid, sshfs, sudo,
  6282. syslinux, sysstat, taglib, tcpdump, tftp-hpa, transmission,
  6283. tiff, tinyhttpd, uboot-tools, udev, uemacs, unionfs, usbutils,
  6284. util-linux, vala, valgrind, vim, vsftpd, wget, wipe,
  6285. wpa_supplicant, xdriver_xf86-{input-vmmouse,video-fbdev},
  6286. xfsprogs, zlib
  6287. New packages: apr, apr-util, audiofile, bellagio,
  6288. conntrack-tools, empty, fmtools, glib-networking,
  6289. heirloom-mailx, hiawatha, latencytop, lcdproc, libcap-ng,
  6290. libdmtx, libfcgi, libnetfilter_conntrack, libnfnetlink,
  6291. libtpl, localedef, minicom, msmtp, ndisc6, netatalk,
  6292. ocf-linux, openswan, parted, polarssl, protobuf, read-edid,
  6293. socketcand, stress, systemd, ushare, zeromq
  6294. Deprecated packages: ttcp
  6295. Removed packages: ntfsprogs
  6296. Issues resolved (http://bugs.uclibc.org):
  6297. #2353: [lua] fix build with 2010.08-rc1
  6298. #2503: Microperl fails build on MIPSel or with Fedora13.x86_64
  6299. #2557: [PATCH] mkfs.xfs complains about missing libxfs.so.0
  6300. #2881: Can't build project statically with external toolchain
  6301. #3751: MIPS: fix BR2_GCC_TARGET_ABI for MIPS n64
  6302. #4808: ccache may build against wrong zlib
  6303. #4880: New package lcdproc
  6304. #4886: New package protobuf
  6305. #4892: build fails on ltp-testsuite-20101031/testcases/kernel/fs/...
  6306. #4898: * make: [target-finalize] Error 1 (ignored)*
  6307. #4985: Qt 4.7.4 build crashes with Linux 2.6.29
  6308. #4970: udev 181 fails to build if kernel version 3.3 is selected
  6309. #5018: dialog broken: exits with assert in uClibc
  6310. #5102: qt package moc, uic, rcc read from wrong place
  6311. #5144: Patch to fix ixon bug in uemacs
  6312. #5198: Line graphics output is broken in GNU Screen
  6313. #5204: Missing terminfo file(s) for GNU screen terminal type
  6314. 2012.02, Released February 29th, 2012:
  6315. Updated/fixed packages: libecore
  6316. 2012.02-rc3, Released February 27th, 2012:
  6317. Fixes all over the tree.
  6318. Automatic host dependencies handling for cmake packages
  6319. fixed. Customize package deprecated as using a post-build
  6320. script is nowadays the preferred way of adding extra stuff to
  6321. the rootfs.
  6322. Linux-headers 3.0.x / 3.2.x stable version bumped.
  6323. QEMU defconfigs updated to 3.2.x kernels and readme fixed.
  6324. Updated/fixed packages: dropbear, ffmpeg, libpng
  6325. 2012.02-rc2, Released February 19th, 2012:
  6326. Fixes all over the tree.
  6327. Toolchain: uClibc: Added upstream post-0.9.33 fixes, Bump
  6328. linux-headers 3.0.x / 3.2.x stable versions.
  6329. Documentation: Added makedev / <pkg>_DEVICES /
  6330. <pkg>_PERMISSIONS documentation.
  6331. Updated/fixed packages: busybox, ffmpeg, gst-dsp, libecore,
  6332. libvncserver, mxml, python.
  6333. 2012.02-rc1, Released February 12th, 2012:
  6334. Fixes all over the tree and new features.
  6335. Toolchain: Default to GCC 4.5.x, add binutils 2.22. Java
  6336. support removed, Powerpc SPE ABI support. GDB ELF support fix,
  6337. GDB 7.4, crosstool-NG 1.13.4.
  6338. Gentargets: scp and mercurial support.
  6339. Autotools: derive host dependencies from target by default.
  6340. Packages can now declare device table snippets.
  6341. Host utilities menu with commonly used host tools.
  6342. defconfigs: qemu configs for x86-64, mips and sparc, at91
  6343. defconfigs now use modern U-Boot / mainline Linux, added
  6344. lpc3250 defconfigs.
  6345. uClibc: remove 0.9.30, backport unshare() support, add
  6346. 0.9.32.1 / 0.9.33, use same config for ctng.
  6347. Bootloaders: U-Boot: add 2011.12, remove 2010.xx versions,
  6348. Barebox: add 2012.01/02, remove 2011.10/11, LPC32xx
  6349. bootloaders added.
  6350. Various manual updates. Release tarballs now contain generated
  6351. manual in text/html/pdf formats.
  6352. Buildroot now calls the stop function of scripts in
  6353. /etc/init.d at shutdown.
  6354. Updated/fixed packages: atk, avahi, barebox, bash, beecrypt,
  6355. bind, binutils, bison, bluez_utils, bzip2, busybox, cairo,
  6356. ccache, cdrkit, coreutils, cramfs, dbus, dbus-glib, dialog,
  6357. diffutils, dmalloc, dropbear, e2fsprogs, ebtables, ed,
  6358. ethtool, expat, ffmpeg, file, fis, flex, fluxbox, fontconfig,
  6359. freetype, gawk, grep, gst-dsp, gst-ffmpeg, gst-plugins-base,
  6360. hdparm, hostapd, htop, i2c-tools, icu, iproute2, ipsec-tools,
  6361. ipset, iptables, iw, jpeg, kismet, lame, libcap, libcgi,
  6362. libev, libeXosip2, libffi, libftdi, libgpg-error, libgtk2,
  6363. libidn, libmms, libmnl, libmodbus, libnl, libogg, libosip,
  6364. libpcap, libpng, libraw1394, libroxml, libusb, libusb-compat,
  6365. libv4l, libvorbis, libxcb, libxml-parser-perl, libxslt,
  6366. lighttpd, links, lm-sensors, lua, m4, module-init-tools, mpc,
  6367. mesa3d, mpd, mpfr, mplayer, mtd-utils, nano, nbd, ncurses,
  6368. netperf, netsnmp, ntp, opencv, openocd, openssl, openvpn, orc,
  6369. pciutils, pcre, pixman, pkg-config, poco, popt, proftpd,
  6370. python, python-serial, qt, ruby, samba, sdl, sdparm,
  6371. squashfs3, sshfs, sqlite, squid, sudo, syslinux, tcl, tcpdump,
  6372. ti-utils, tiff, tremor, uboot, uboot-tools, udev, usbmount,
  6373. util-linux, vala, valgrind, vsftpd, wpa_supplicant,
  6374. xapp_{bdftopcf,mkfontdir,mkfontscale,xkbcomp,xcursorgen,xinit},
  6375. xapp_xinput, xapp_xman, xcb-util, xdm, xenomai,
  6376. xf86-video-sis, xfont_{encodings,font-util},
  6377. xlib_lib{fontenc,X11,Xau,Xcursor,Xdmcp,Xfixes,Xfont,Xrender},
  6378. xlib_libxkbfile, xterm, xutil_makedepend, yajl
  6379. New packages: boost, connman, dstat, expedite, explorercanvas,
  6380. feh, flot, giblib, igh-ethercat, imlib2, jquery,
  6381. jquery-sparklines, jquery-validation, jsmin, kmod, libecore,
  6382. libedbus, libedje, libeet, libeina, libelementary, libesmtp,
  6383. libethumb, libevas, libical, libmbus, liboauth, liburcu,
  6384. libvncserver, linux-firmware,
  6385. lttng-{babeltrace,libust,modules,tools}, NetworkManager,
  6386. open2300, python-distutilscross, python-dpkt,
  6387. python-netifaces, python-pygame, python-setuptools, rt-tests,
  6388. sam-ba, sane-backends, sqlcipher, transmission, unionfs,
  6389. xf86-input-tslib, xinput-calibrator
  6390. Issues resolved (http://bugs.uclibc.org):
  6391. #743: Add Transmission bit torrent option to buildroot
  6392. #755: Add Boost libraries as a package
  6393. #2299: Add crypto support to libsoup
  6394. #2617: Pixman 0.19.2 & Cairo 1.10.0
  6395. #3403: libgpg-error: bump to version 1.10
  6396. #3409: libgpg-error: download from gnupg.org
  6397. #3421: nano: make tiny flag optional
  6398. #3691: New EFL packages
  6399. #4664: Cannot patch AT91Bootstrap
  6400. #4700: setlocalversion not working for combination svn/ubuntu 11.10...
  6401. #4760: Qt: add host-pkg-config to dependency-list
  6402. 2011.11, Released November 30th, 2011:
  6403. Fixes all over the tree.
  6404. Bump kernel headers / default Linux version to 3.1.4.
  6405. Updated/fixed packages: ruby
  6406. 2011.11-rc3, Released November 26th, 2011:
  6407. Fixes all over the tree.
  6408. Toolchain: Fix gdb dependencies for external toolchains,
  6409. adjust uClibc patches so they don't confuse modern versions of
  6410. patch, bump crosstool-ng, kernel headers and linux versions.
  6411. Updated/fixed packages: busybox, freetype, mplayer, opencv,
  6412. php, rsyslog, ruby, thttpd, xapp_xf86dga
  6413. Issues resolved (http://bugs.uclibc.org):
  6414. #4357: Prevent patch commands from accessing source control
  6415. #4369: Fix permissions on untared lsof archive
  6416. 2011.11-rc2, Released November 18th, 2011:
  6417. Fixes all over the tree and new features.
  6418. Updated asciidoc documentation
  6419. Toolchain: Bumped 3.x stable kernel headers, use wget in
  6420. crosstool-ng as well, bump crosstool-ng version, gdb fixes,
  6421. uClibc sparc fix.
  6422. Updated/fixed packages: distcc, file, gst-plugins-bad, libxcb,
  6423. mplayer, newt, qt, rpm, rrdtool, tar, tftpd
  6424. Issues resolved (http://bugs.uclibc.org):
  6425. #3355: mplayer fails to build
  6426. #4021: uClibc: undefined reference to `__GI___errno_location'
  6427. #4297: Qt's qmake uses wrong pkg-config
  6428. 2011.11-rc1, Released November 11th, 2011:
  6429. Fixes all over the tree and new features.
  6430. Moved misc scripts and support stuff to support/. Renamed
  6431. patch-kernel.sh to support/scripts/apply-patches.sh.
  6432. Documentation: Moved to asciidoc format, make targets to
  6433. generate text/html/pdf/epub output added.
  6434. Defconfigs: Qemu configs updated to 3.1 kernel and readmes
  6435. added.
  6436. Bootloaders: Add support for custom git tree / tarballs for
  6437. barebox, similar to how it's handled for u-boot. Clean up
  6438. menuconfig options.
  6439. Toolchain: Update external codesourcery toolchain download
  6440. URLs after Codesourcery got bought by Mentor, add x86
  6441. toolchain, update toolchain versions and optimize toolchain
  6442. sysroot copying. Fix uClibc 0.9.32 builds for e500 PPC,
  6443. updated GDB versions / download URLs. Binutils
  6444. libbfd/libopcodes static/dynamic linking fix. GCC 4.6.2 added,
  6445. use ctng-1.13.0.
  6446. Package infrastructure: Support for local packages /
  6447. overrides, package dir / name arguments dropped from
  6448. {GEN,AUTO,CMAKE}TARGETS.
  6449. Linux: Kernel extensions infrastructure support, Xenomai +
  6450. RTAI support.
  6451. Updated/fixed packages: acpid, bind, busybox, dash, dbus,
  6452. dbus-glib, directfb, dnsmasq, drystone, e2fsprogs, ethtool,
  6453. fakeroot, fbdump, file, freetype, fuse, gamin, gmp, gmpc,
  6454. gnutls, gob2, gst-plugins-{base,bad,good,ugly}, gstreamer,
  6455. hostapd, ifplugd, imagemagick, intltool, ipsec-tools, ipset,
  6456. iptables, iw, jpeg, kexec, leafpad, less, libargtable2, libao,
  6457. libconfuse, libcuefile, libcurl, libdaemon, libevent,
  6458. libglib2, libiconv, libmpd, libreplaygain, libroxml,
  6459. libsamplerate, libsndfile, libsoup, libsvgtiny, libtool,
  6460. libxcb, lighttpd, links, linux-fusion, lite, lrzsz, lsof, lzo,
  6461. lzop, makedevs, mcookie, mpg123, mpd, mpfr, mtd, musepack,
  6462. mutt, mysql_client, ncftp, ncurses, neon, netcat, netsnmp,
  6463. ntfs-3g, ntfsprogs, ntp, openntpd, openssh, openssl, oprofile,
  6464. orc, pciutils, psmisc, python, qt, quagga, radvd, rpm, rsync,
  6465. samba, sawman, sdl_sound, smartmontools, sqlite, squid,
  6466. stunnel, sudo, sylpheed, sysstat, taglib, tar, tcpreplay,
  6467. tslib, usbutils, util-linux, valgrind, wget, whetstone, which,
  6468. wpa-supplicant, xdata_xcursor-themes, xmlstarlet, xterm
  6469. New packages: bluez-utils, cifs-utils, fftw, fluxbox, json-c,
  6470. libev, libftdi, libgeotiff, libmodbus, libplayer, live555,
  6471. ngrep, noip, opencv, openocd, picocom, poco, portaudio,
  6472. pulseaudio, pv, rtai, vala, xenomai.
  6473. Removed packages: liboil, sfdisk, swfdec, webif
  6474. Issues resolved (http://bugs.uclibc.org):
  6475. #505: live555: new package
  6476. #507: Enable live and tv options in MPlayer-1.0rc2
  6477. #531: let e2fsprogs package to export headers to staging dir if needed
  6478. #1171: Linuxthreads new cannot find sysdep.h
  6479. #1357: Add bluez to buildroot system
  6480. #2107: New package: input-event-daemon
  6481. #2599: New package: orc (Oil Runtime Compiler)
  6482. #2605: gstreamer: Update to 0.10.30
  6483. #2677: introducing util-linux-ng as replacement for util-linux
  6484. #2917: Qt: Add declarative module
  6485. #3145: jffs2 image generation fails
  6486. #3271: netperf-2.4.5 fails to compile
  6487. #3331: xdata_xcursor-themes depends on xcursorgen
  6488. #3343: Add file:// download SITE_METHOD
  6489. #3391: Add support for specifying an external kernel tree
  6490. #3631: Error while compiling with Xorg
  6491. #3709: oprofile doesn't build for mipsel
  6492. #3925: midori not getting compile
  6493. #4045: Add support for downloading i386 toolchains from codesourcery
  6494. #4165: lrzsz-fix-symlink-at-rebuild.patch
  6495. #4171: makedevs-unused-but-set-variable.patch
  6496. #4183: Codesourcery toolchain download site has changed
  6497. #4231: libneon.so: undefined reference to `SSL_SESSION_cmp'
  6498. #4381: Add option to lighttpd to enable Lua support
  6499. #4387: Make sure that dest dir exists before installing mtd files
  6500. 2011.08, Released August 31th, 2011:
  6501. Fixes all over the tree.
  6502. Toolchain: Fix codesourcery 2009q3 ARM download, Linux 3.0.4
  6503. kernel headers.
  6504. Updated/fixed packages: ipset, python
  6505. 2011.08-rc2, Released August 29th, 2011:
  6506. Fixes all over the tree.
  6507. Toolchain: crosstool-NG 1.12.1, use binutils 2.21 on
  6508. mips/sh/older uClibc, disallow uClibc 0.9.32 on avr32/sh
  6509. (broken).
  6510. Defconfigs: kernel updates, fix mini2440 serial port config,
  6511. remove old arm toolchain configs.
  6512. Bootloaders: Fix grub patching, add barebox-{n,x,menuconfig}
  6513. targets similar to linux/busybox.
  6514. Updated/fixed packages: barebox, directfb, libsoup,
  6515. libxml-parser-perl, mtd, ncurses, python, ti-utils, udev,
  6516. usbmount, util-linux, xfont_font-misc-misc
  6517. Issues resolved (http://bugs.uclibc.org):
  6518. #3685: ncurses installation hangs due to old version of tic
  6519. #4093: Grub fails to install bz2 patch after conversion to...
  6520. 2011.08-rc1, Released August 4th, 2011:
  6521. Fixes all over the tree and new features.
  6522. Toolchain: uClibc 0.9.32 / NPTL support, 0.9.29 removed,
  6523. ext-toolchain-wrapper improvements, improved non-MMU
  6524. support. GCC 4.3.6 / 4.6.1.
  6525. GENTARGETS infrastructure extended to cover bootloaders and
  6526. Linux kernel as well. Options to retrive Linux/U-Boot from a
  6527. custom git repo instead of upstream tarballs.
  6528. Support for Linux 3.x and release candidate tarballs.
  6529. X-Loader bootloader for omap added.
  6530. Make source/external-deps now also works for external
  6531. toolchains / crosstool-ng backend.
  6532. Updated/fixed packages: autoconf, berkeleydb, bind, binutils,
  6533. bmon, bridge-utils, busybox, cmake, dbus, dbus-glib,
  6534. e2fsprogs, ethtool, ffmpeg, gst-plugins-{bad,base,good,ugly},
  6535. gvfs, hostapd, iproute2, iptables, iw, jpeg, lame, libarchive,
  6536. libdnet, libdrm, libgcrypt, libgtk2, libmpeg2, libpng,
  6537. libsoup, lighttpd, linux-fusion, lzo, midori, mtd-utils,
  6538. nfs-utils, openvpn, oprofile, orc, pkg-config, proftpd, qt,
  6539. ruby, samba, sdl, shared-mime-info, sudo, sqlite, squid,
  6540. synergy, udev, usbmount, usbutils, util-linux, valgrind,
  6541. webkit, xorg-xserver, xz, zlib
  6542. New packages: acl, attr, ebtables, gnutls, inotify-tools,
  6543. ipset, libargtable2, libiqrf, libmnl, libnspr, libnss,
  6544. libroxml, libyaml, live555, mxml, orc, rsyslog, sredird,
  6545. statserial, stunnel, ti-utils, uboot-tools, yajl
  6546. Deprecated packages: liboil, swfdec
  6547. Removed packages: hal
  6548. Issues resolved (http://bugs.uclibc.org):
  6549. #3559: libnspr: Add new package
  6550. #3595: patch to add libroxml
  6551. #3565: libnss: Add new package
  6552. #3583: xfonts_font-adobe-100dpi fails due to missing map file
  6553. #3649: [PATCH] Add mapdir to existing pkg-config patch
  6554. #3907: 2011.05 - Qt 4.7.3 not building on ARM
  6555. #3961: Nfs-utils: Remove SUSv3-function index
  6556. #3985: "help" target's defconfig list needs sort
  6557. #3997: bump libroxml to v2.1.0
  6558. 2011.05, Released May 27th, 2011:
  6559. Updated/fixed packages: makedevs
  6560. 2011.05-rc2, Released May 24th, 2011:
  6561. Fixes all over the tree.
  6562. Toolchain: Code sourcery ARM 2009q1 download URL fixed /
  6563. 2009q3 external toolchains added. Crosstool-NG bumped to
  6564. 1.11.3, eglic/glibc configuration fixes. Linux kernel 2.6.38.x
  6565. bumped to 2.6.38.7.
  6566. Updated/fixed packages: bind, fakeroot, kbd, psmisc, qt
  6567. 2011.05-rc1, Released May 18th, 2011:
  6568. Fixes all over the tree and new features.
  6569. External toolchain improvements: We now build a binary
  6570. toolchain wrapper and install it into HOST_DIR/usr/bin, which
  6571. enforces the correct compiler arguments, making an external
  6572. toolchain as easy to use outside of Buildroot as the internal
  6573. ones are. This also brought a cleanup of CFLAGS, making the
  6574. Buildroot build output easier to read.
  6575. Rootfs device handling improvements: Choice between static
  6576. /dev, devtmpfs and devtmpfs with either mdev or udev.
  6577. Toolchain: More preconfigured codesourcery external
  6578. toolchains, improved Crosstool-NG support, fix for GCC
  6579. snapshot versions, GCC 4.4.6 / 4.5.3, experimental GCC 4.6.0
  6580. support, target-GCC fixes, uClibc fixes, 0.9.32-rc3 support.
  6581. Bootloaders: U-boot 2011.03, Barebox 2011.05.0
  6582. Linux: support for custom kernel image targets, E.G. for
  6583. powerpc builds with embedded device trees.
  6584. Misc fixes for qemu defconfigs, ensuring correct serial
  6585. terminal setup out of the box.
  6586. Misc gentarget / autotools handling fixes.
  6587. Updated/fixed packages: alsa-lib, alsa-utils, alsamixergui,
  6588. atk, avahi, bind, bison, busybox, copas, dbus-glib, dhcp,
  6589. dhcpdump, dnsmasq, dropbear, ethtool, fakeroot, ffmpeg, file,
  6590. gamin, gnuconfig, gst-ffmpeg, gst-plugins-good, gtk2-engines,
  6591. haserl, hostapd, icu, imagemagick, iproute2, iw, kismet, less,
  6592. libcap, libdnet, libglade, libglib2, libgtk2, libnl, libpng,
  6593. libxml2, libxml2, libxslt, lighttpd, lockfile-progs, makedevs,
  6594. midori, mpg123, mpc, mpd, mpfr, mplayer, mtd-utils, ncurses,
  6595. netsnmp, openssh, openssl, openvpn, pango, pkg-config, popt,
  6596. procps, proftpd, qt, quagga, readline, rsync, samba, sdl,
  6597. socat, squashfs, squid, sudo, tslib, udev, usbutils, webkit,
  6598. wpa_supplicant, xerces, xfont_font-misc-misc, xlib_libX11,
  6599. xlib_libXfont, xlib_xtrans, xorg-server, xterm, xz
  6600. New packages: bonnie++, can-utils, gdisk, htop,
  6601. input-event-daemon, libexif, libraw, libv4l, ngircd
  6602. Removed packages: festival
  6603. Issues resolved (http://bugs.uclibc.org):
  6604. #2131: Add OpenMP support to the toolchain
  6605. #3379: New Package: bonnie++
  6606. #3445: Not working openssl-10.0.0d on 386sx
  6607. #3451: fakeroot package: wrong FAKEROOT_SITE variable
  6608. #3457: alsamixergui: broken URL
  6609. #3475: Calling sync on large filesystems when not always necessary
  6610. #3511: make busybox-menuconfig does not download busybox package
  6611. #3541: Quotes in the top Makefile:217 break buildroot/kernel config...
  6612. #3571: u-boot: fw_printenv does not build
  6613. #3643: popt source url is not responding
  6614. #3733: dropbear: make zlib optional
  6615. #3757: Buildroot can't build mplayer with libmad
  6616. 2011.02, Released February 28th, 2011:
  6617. Fixes all over the tree.
  6618. Updated/fixed packages: alsamixergui, avahi, ffmpeg, icu, mpd,
  6619. nuttcp, qt, slang, squashfs, sylpheed, synergy, xerces
  6620. Deprecated packages: devmem2, webif
  6621. Issues resolved (http://bugs.uclibc.org):
  6622. #2911: Qt: Disable qt3support-option, if gui-module isn't selected
  6623. #3259: Unable to build webkit (on arm)
  6624. #3295: slang fails to build on mipsel
  6625. #3325: ffmpeg fails to build
  6626. 2011.02-rc2, Released February 24th, 2011:
  6627. Fixes all over the tree.
  6628. Festival packages marked as broken. Unless someone steps up
  6629. to support them, they will be removed during the 2011.05
  6630. development cycle.
  6631. Updated/fixed packages: atk, avahi, bind, cairo, dbus,
  6632. enchant, fakeroot, gmpc, gpsd, gvfs, iperf, jpeg, libarchive,
  6633. libcgicc, libdaemon, libdrm, libevent, libgail, libglib2,
  6634. libgpg-error, libmicrohttpd, librsvg, libsoup, libxcp,
  6635. makedevs, matchbox-fakekey, matchbox-startup-monitor, mdadm,
  6636. metacity, mpd, nasm, nfs-utils, olsr, openssl, popt,
  6637. pthread-stubs, quagga, rpm, samba, sdl, sdl_gfx, sdl_image,
  6638. sdl_mixer, sdl_sound, sdl_ttf, squashfs, synergy, taglib,
  6639. tcpreplay, tiff, wpa_supplicant, xcb-util,
  6640. xdriver_xf86-input-{acepad,aiptek,evdev,joystick,keyboard},
  6641. xdriver_xf86-input-{mouse,synaptics,void},
  6642. xdriver_xf86-video-{chips,dummy,geode,glide,intel,nv,wsfb},
  6643. xlib_lib{ICE,SM,XScrnSaver,Xau,Xcursor,Xdmcp,Xi,Xinerama},
  6644. xlib_lib{Xrandr,Xt,Xtst,Xxf86dga,Xxf86vm,dmx,fontenc,pciaccess},
  6645. xserver_xorg-server, xz
  6646. Removed packages: ace_of_penguins, vlc
  6647. Issues resolved (http://bugs.uclibc.org):
  6648. #3205: Failing chmod when running "make" in buildroot (openssl)...
  6649. #3277: quagga fails to build with SNMP support
  6650. #3283: See why nfs-utils needs fakeroot, and convert to autotools
  6651. #3307: synergy fails to build due to missing XTest library
  6652. 2011.02-rc1, Released February 14th, 2011:
  6653. Fixes all over the tree and new features.
  6654. External toolchain improvements: clarification of the options,
  6655. and introduction of the toolchain profile concept, for
  6656. well-known toolchains. Buildroot is now capable of
  6657. automatically downloading and extracting well-known toolchains
  6658. (for the moment, CodeSourcery ARM, PowerPC, MIPS and SuperH
  6659. toolchains are supported). Crosstool-NG backend updated and
  6660. improved.
  6661. Complete rework of how hardware boards are supported.
  6662. Each board now only has a single defconfig file, and all
  6663. board-specific options have been removed. See
  6664. docs/buildroot.html#board_support for details.
  6665. Added support for the following boards: Mini2440, Qemu ARM
  6666. Versatile, Qemu MIPSel Malta, Qemu PowerPC G3beige, Qemu SH4
  6667. r2d and Qemu x86. The Qemu boards support allows to easily
  6668. build systems that are known to work under Qemu.
  6669. Initial support for Blackfin processors.
  6670. Staging directory moved into $(O)/host/usr/<tuple>/sysroot, in
  6671. preparation for support of SDK. For the same reason, the
  6672. toolchain binaries (cross-compiler and other related tools)
  6673. are now installed in $(O)/host/usr/bin/. The cross pkg-config
  6674. now also automatically returns correct values for cross
  6675. compilation, without needing any environment variables to be
  6676. set.
  6677. Ccache support reworked. Now used for both host and target
  6678. compilation, and cache is stored in ~/.buildroot-ccache.
  6679. Toolchain: uClibc 0.9.32-rc2, several components moved to
  6680. normal AUTOTARGET packages.
  6681. Generic cmake infrastructure, similar to the existing
  6682. GENTARGETS/AUTOTARGETS.
  6683. Support for bzr downloads, next to the existing git/svn support.
  6684. Kconfig infrastructure rebased against 2.6.38-rc3, bringing
  6685. misc fixes. 'xconfig' now uses Qt4 rather than Qt3.
  6686. EXT2 file system size handling improved, UBI image support, fs
  6687. configuration options cleanup, U-Boot/Barebox version bumps.
  6688. Updated/fixed packages: alsa-utils, at, autoconf, automake,
  6689. bash, binutils, bison, busybox, bzip2, cdrkit, cloop, cmake,
  6690. coreutils, cups, dbus, dbus-python, dhcp, directfb,
  6691. direcfb-examples, dmalloc, dnsmasq, dosfstools, e2fsprogs, ed,
  6692. fbset, ffmpeg, findutils, flac, freetype, gdk-pixbuf, gmp,
  6693. grep, gperf, gst-ffmpeg, gst-plugins-bad, gst-plugins-base,
  6694. gst-plugins-good, gst-plugins-ugly, gstreamer, gvfs, hdparm,
  6695. hostapd, i2c-tools, icu, imagemagick, input-tools, iproute2,
  6696. iptables, iw, jpeg, kexec, libaio, libart, libcap, libconfig,
  6697. libfuse, libglib2, libidn, libmad, libogg, libpcap, libpng,
  6698. libsndfile, libtheora, libtool, libusb-compat, libvorbis,
  6699. libxcb, libxml2, libxslt, links, linux-fusion, lm-sensors,
  6700. lsof, ltp-testsuite, ltrace, lvm2, lzo, m4, makedevs,
  6701. memtester, mesa3d, mii-diag, mpc, mpfr, mpg123, mplayer,
  6702. mrouted, mtd-utils, nano, netperf, netplug, ntfs-3g, ntp,
  6703. openssh, openssl, openvpn, oprofile, pango, patch, pciutils,
  6704. php, pkgconfig, portmap, psmisc, python, qt, rsync, ruby,
  6705. sawman, screen, sdl_gfx, sdl_sound, smartmontools, socat,
  6706. sqlite, squid, sshfs, sstrip, sysklogd, sysstat, sysvinit,
  6707. tar, tcpdump, tslib, udev, usbutils, vim, vtun, webkit, wipe,
  6708. x11vnc, xapp_xlogo, xcb-proto, xfont_font-util,
  6709. xkeyboard-config, xlib_libX11, xz, zlib
  6710. New packages: dhrystone, dsp-tools, faad2, fbgrab, gst-dsp,
  6711. gst-omapfb, irda-utils, lame, libao, libcue, libcuefile,
  6712. libffi, libhid, libreplaygain, libsamplerate, libsigc++,
  6713. lsuio, mpd, musepack, python-mad, python-serial, rsh-redone,
  6714. sdparm, tidsp-binaries, vorbis-tools, wavpack, whetstone,
  6715. xl2tp, xmlstarlet
  6716. Removed packages: hotplug, l2tp, libfloat, microcom,
  6717. ng-spice-rework
  6718. Issues resolved (http://bugs.uclibc.org):
  6719. #267: The make target: cross fails because toolchain_build_...
  6720. #415: Berkeley DB: mut_pthread.o: relocation R_X86_64_32 against...
  6721. #561: ltp-testsuite failed to install
  6722. #1447: Installing gfortran on PowerPC
  6723. #1651: Build fail caused by ccache in module-init-tools
  6724. #1681: Cross-compiled binaries shouldn't be installed into staging
  6725. #1723: [PATCH] axel: convert to generic package infrastructure and...
  6726. #1735: [PATCH] mplayer: convert to autotools infrastructure
  6727. #2551: [PATCH] native toolchain in the target filesystem fails
  6728. #2623: buildroot-snapshot-20100922 fails when compiling development...
  6729. #2647: makedevs package lacks support for 16-bit major/minor numbers
  6730. #2371: QT MYSQL Module does not build when MySQL installed on the host
  6731. #2839: compile fails in various packages with a odd message "error:...
  6732. #2887: tar "buffer overflow detected" error
  6733. #2893: Broken "make source" with external toolchain
  6734. #2905: Qt: Speed up compilation, if gui-module isn't selected
  6735. #2929: genext2fs: couldn't allocate a block (no free space)
  6736. #2935: Ntpdate isn't installed
  6737. #2965: Broken linkage to xkbcomp (blocking X server startup)
  6738. #2983: xlib_libX11 build failed
  6739. #3007: kexec doesn't build: Missing regdef.h file
  6740. #3085: Init scripts are not compatible with sysVinit (when busybox...
  6741. #3103: make external-deps wants to download gcc-.tar.bz2 when...
  6742. #3109: abnormal `make busybox-menuconfig`
  6743. #3115: How about board specific makefiles?
  6744. #3169: python patch has typo, aborts build in scenario
  6745. #3181: dhcp.mk copies S80dhcp-server to etc/init.d, not etc/init.d/
  6746. 2010.11, Released November 30th, 2010:
  6747. Fixes all over the tree.
  6748. Updated/fixed packages: libgcrypt, qt, squid, sysstat, tcpdump,
  6749. xserver-xorg
  6750. Issues resolved (http://bugs.uclibc.org):
  6751. #2773: squid with openssl support needs openssl on the host
  6752. #2857: OBJDUMP definition is missing from TARGET_CONFIGURE_OPTS
  6753. 2010.11-rc2, Released November 25th, 2010:
  6754. Fixes all over the tree.
  6755. Add support for LEON Sparc architecture variants. Fix make
  6756. source/external-deps for host packages.
  6757. Updated/fixed packages: bash, bind, busybox, dialog, gpsd,
  6758. libglib2, libcurl, libmad, lrzsz, midori, module-init-tools,
  6759. mtd-utils, openssh, openssl, pciutils, php, qt, sqlite,
  6760. sysstat, webkit, zlib
  6761. Issues resolved (http://bugs.uclibc.org):
  6762. #759: Sysstat build broken without libintl
  6763. #2479: host-module-init-tools 3.11 fails to build
  6764. #2725: Buildroot overrides kernel config
  6765. #2785: mtd-utils build fails due to missing libmtd
  6766. #2791: Added PHP-Process Control to the PHP-Package
  6767. #2797: pciutils dependencies on zlib not taken into account
  6768. #2809: failed to compile libglib2
  6769. #2821: [PATCH] Patch for JavaScriptCore in QtWebKit module
  6770. #2827: qt-4.7.0-pthread_getattr_np.patch invalid for qt 4.6...
  6771. #2833: Failed to compile webkit without X11
  6772. 2010.11-rc1, Released November 8th, 2010:
  6773. Fixes all over the tree and new features.
  6774. Kconfig infrastructure rebased against 2.6.36-rc1, bringing
  6775. misc fixes + nconfig and savedefconfig targets.
  6776. Toolchain: ARM cortex A9 support, experimental crosstool-ng
  6777. backend, GCC 4.5.x.
  6778. Fs: Squashfs 4.1 with lzo support
  6779. Old-style package hooks (*_HOOK_POST_*) removed. Use the more
  6780. generic new-style ones instead.
  6781. Download handling reworked and support for git/svn downloads
  6782. added.
  6783. Removed experimental shared config.cache support, as it is
  6784. too unreliable.
  6785. A convenience Makefile wrapper is created when using
  6786. out-of-tree building, similar to how it is done for the kernel.
  6787. Alpha, Cris, IA64 and Sparc64 architecture support removed.
  6788. New packages: argp-standalone, gdk-pixbuf, gpsd, gst-ffmpeg,
  6789. libmpeg2, kbd, librsvg, nuttcp, rng-tools, rrdtool, xz
  6790. Updated/fixed packages: acpid, alsa-lib, argus, at, autoconf,
  6791. automake, avahi, axel, beecrypt, berkeleydb, bind, bmon, boa,
  6792. bootutils, bridge-utils, bsdiff, busybox, cvs, dbus, directfb,
  6793. dmraid, docker, dosfstools, dropbear, e2fsprogs, ethtool,
  6794. expat, ezxml, fbset, fconfig, ffmpeg, freetype, gadgetfs-test,
  6795. gamin, gawk, genext2fs, gperf, gst-plugins-base,
  6796. gst-plugins-ugly, gtk2-themes, gtkperf, gvfs, haserl, hdparm,
  6797. hostapd, hwdata, ifplugd, imagemagick, iperf, ipsec-tools,
  6798. iproute2, iptables, iw, jpeg, kexec, kismet, less, libcgi,
  6799. libcurl, libdaemon, libdnet, liberation, libevent, libeXosip2,
  6800. libglade, libgtk2, libiconv, libidn, libintl, libmms, libmpd,
  6801. libnl, liboil, libosip2, libpcap, libpng, libtool, libungif,
  6802. libxml2, libxslt, lighttpd, lite, lm-sensors, lockfile-progs,
  6803. logrotate, m4, matchbox, mdadm, mesa3d, metacity, mplayer,
  6804. mtd-utils, mysql_client, nano, nbd, ncftp, neon, netperf,
  6805. netsnmp, ng-spice-rework, ntfsprogs, ntp, openntpd, openssh,
  6806. openssl, openvpn, oprofile, pango, patch, pcre, php,
  6807. pkg-config, portmap, pppd, pptp-linux, prboom, proftpd, radvd,
  6808. rdesktop, readline, rp-pppoe, ruby, qt, quagga, samba, sawman,
  6809. sdl_mixer, sdl_sound, sed, setserial, shared-mime-info, slang,
  6810. speex, sqlite, squashfs, startup-notification, strace,
  6811. sylpheed, sysstat, taglib, tcpdump, thttpd, tiff, tn5250,
  6812. torsmo, tslib, udev, udpcast, usbmount, usbutils, vsftpd,
  6813. vtun, which, wireless-tools, wpa_supplicant, xapp_twm,
  6814. xapp_xbacklight, xapp_xcursorgen, xapp_xinit, xapp_xinput,
  6815. xapp_xmore,
  6816. xdriver_xf86-input-{acecad,aiptek,evdev,joystick,keyboard},
  6817. xdriver-xf86-input-{mouse,synaptics,vmmouse,void},
  6818. xdriver-xf86-video-{apm,ark,ast,ati,chips,cirrus,dummy,fbdev},
  6819. xdriver-xf86-video-{geode,glide,glint,i128,i740,intel,mach64},
  6820. xdriver-xf86-video-{mga,neomagic,newport,nv,openchrome,r128},
  6821. xdriver-xf86-video-{rendition,s3,s3virge,savage,siliconmotion},
  6822. xdriver-xf86-video-{sis,sisusb,suncg3,suncg6,suncg14,sunffb},
  6823. xdriver-xf86-video-{sunleo,suntcx,tdfx,tga,trident,v4l,vesa},
  6824. xdriver-xf86-video-{vmware,voodeo,wsfb,xgi,xgixp},
  6825. xkeyboard-config, xlib_libX11, xserver_xorg-server, xstroke,
  6826. xterm, xvkbd, zlib
  6827. Deprecated packages: hotplug, lzma, ng-spice-rework, sfdisk
  6828. Removed packages: dillo, libglib12, libgtk12, microwin,
  6829. pcmcia
  6830. Issues resolved (http://bugs.uclibc.org):
  6831. #901: new package: gpsd
  6832. #2389: Generate a Makefile wrapper in $(O)
  6833. #2461: wireless_tools: install shared library if needed
  6834. #2521: Can't compile sdl_mixer, mikmod.h can't be found
  6835. #2533: xserver_xorg-server: Enable glx, if mesa3d is built
  6836. #2563: [PATCH] cairo: Expose the configure option to disable some...
  6837. #2581: libmms: Update to 0.6, and patch to work on architectures...
  6838. #2707: Can't compile linux kernel using buildroot + crosstool-ng
  6839. #2731: Build order
  6840. #2737: buildroot configuration tool crashing when the path exceeds...
  6841. #2767: Build for lsof broken in buildroot-2010.08
  6842. 2010.08: Released August 31th, 2010:
  6843. Fixes all over the tree.
  6844. Updated/fixed packages: atk, xstroke
  6845. Removed packages: lxdoom
  6846. 2010.08-rc2, Released August 30th, 2010:
  6847. Fixes all over the tree.
  6848. Mark the combination of uClibc 0.9.31, gcc 4.2.x, C++ and
  6849. locale support as broken. Remove deprecated GCC 4.2.[1-3]
  6850. versions.
  6851. Mark CRIS architecture as deprecated, as it is discontinued
  6852. upstream.
  6853. Marked shared config.cache as experimental and disabled by
  6854. default as it is known to break with certain package
  6855. combinations.
  6856. Toolchain: fixed gcc 4.2.x build after uClibc NPTL support got
  6857. added.
  6858. fs: old-style squashfs for big endian archs fixed.
  6859. Updated/fixed packages: busybox, gst-plugins-base,
  6860. imagemagick, kismet, libgail, libglib2, libgtk2, lua,
  6861. luafilesystem, lzo, ncurses, netcat, pango, php, pppd,
  6862. proftpd, qt, samba, startup-notification, swfdec, sysvinit,
  6863. util-linux
  6864. Removed packages: stunnel
  6865. Issues resolved (http://bugs.uclibc.org):
  6866. #635: util-linux fails to build in 2009.08
  6867. #2239: netcat package installs its binary to target as avr32-linux...
  6868. #2395: libglib2-2.24.1 and libxml2-2.7.7 fails build on MIPS because...
  6869. #2443: Initramfs: Don't overwrite $(TARGET_DIR)/init if it exists
  6870. #2449: Minor fixes for squashfs makefile and correct PowerPC e500 ...
  6871. 2010.08-rc1, Released July 30th, 2010:
  6872. Fixes all over the tree and new features.
  6873. Toolchain: GCC 4.3.5, older 4.3.x versions removed. GCC 4.1.2
  6874. and non-sysroot support removed. Added support for (snapshot)
  6875. NPTL in uClibc, 0.9.28.3 removed,
  6876. Bootloaders: Various cleanups, moved to boot/, added Barebox,
  6877. removed yaboot. Support building u-boot from custom tarball,
  6878. u-boot 2010.06.
  6879. New GTK-based configurator, usable using 'make gconfig'.
  6880. Java packages marked as broken. Unless someone steps up to
  6881. support this, they will be removed during the 2010.11
  6882. development cycle.
  6883. Alpha, IA64 and Sparc64 architectures marked as deprecated.
  6884. GTK+ on DirectFB has also been marked as deprecated, as it is
  6885. not supported in recent GTK+ versions, and more and more
  6886. packages depends on the new versions.
  6887. Unless someone steps up to support them, they will be removed
  6888. during the 2010.11 development cycle.
  6889. New packages: cgilua, copas, coxpcall, ffmpeg, libsvgtiny,
  6890. libgail, luafilesystem, luasocket, rings, wsapi, xavante, xterm
  6891. Updated/fixed packages: alsa-lib, alsamixergui, at, atk,
  6892. avahi, berkeleydb, bash, blackbox, busybox, bzip2, cairo,
  6893. cdrkit, cmake, dash, dhcp, dialog, diffutils, distcc, dmalloc,
  6894. dnsmasq, dropbear, e2fsprogs, fbv, file, flex, fontconfig,
  6895. gawk, gmpc, gnuchess, gst-plugins-base, gst-plugins-good,
  6896. gstreamer, gzip, icu, intltool, iostat, ipsec-tools, iptables,
  6897. iw, libart, libcgi, libcurl, libdrm, libeXosip, libfuse,
  6898. libglib2, libgpg-error, libiconv, libidn, liblockfile, libpng,
  6899. libsoup, lighttpd, links, linux-fusion, lmbench, lrzsz,
  6900. ltrace, make, midori, module-init-tools, mplayer,
  6901. mysql_client, nbd, ncurses, neon, netcat, netperf, netsnmp,
  6902. ntfsprogs, openssl, oprofile, pango, php, qt, quagga, samba,
  6903. setserial, sdl, sdl_mixer, sdl_sound, sdl_ttf, speech-tools,
  6904. sqlite, squashfs, swfdec, tftpd, thttpd, tn5250, tremor,
  6905. usbutils, webif, webkit, wireless_tools, xerces,
  6906. xkeyboard-config, xserver_xorg-server, xvkbd, zlib
  6907. Removed packages: modutils, portage, rxvt
  6908. Deprecated packages: dillo, libglib12, libgtk12, microwin, pcmcia
  6909. Issues resolved (http://bugs.uclibc.org):
  6910. #321: alsa-lib uses host include files for python which breaks ...
  6911. #361: linux kernel configuration choice works incorrectly
  6912. #387: Tremor not installed to toolchain
  6913. #401: new package: ffmpeg
  6914. #475: uImage target for U-boot failed generating
  6915. #543: ATK requires X11 on DirectFB target
  6916. #575: webkit: Buildroot Libtool Patch Fails
  6917. #583: build fails with external x86_64 toolchain
  6918. #729: sstrip creates corrupted headers
  6919. #829: Webkit r44552 needs libXt
  6920. #835: Package Dataflashboot-1.05 does not compile with buildroot...
  6921. #847: Compiling target-gcc v4.4 fails with "libc.so.0: cannot open...
  6922. #859: Add (head of) nptl branch to list of uClibc versions
  6923. #949: compile with debug info
  6924. #955: Grub fails to build with External Toolchain
  6925. #1051: Webkit doesn't compile (Linuxthreads new, x86)
  6926. #1213: Move .config into output directory
  6927. #1225: Buildroot fails to account for "nof" subdirectory (no float...
  6928. #1231: (sparc) Linux kernel fails to build
  6929. #1261: The getline() in output/build/linux-2.6.28/scripts/unifdef.c...
  6930. #1339: Busybox needs -fno-strict-aliasing to compile cleanly
  6931. #1393: neon config fails libxml/parser.h: libxml2 requires, but not ...
  6932. #1405: WebKit fails to build because pthread_getattr_np is not impl...
  6933. #1675: GMP Error during buildroot make process
  6934. #1741: external toolchain linking error
  6935. #1753: lmbench: convert to generic package infrastructure
  6936. #1771: Fakeroot and the target/generic/device_table.txt create bad...
  6937. #1807: LZMA 4.32.7, Required header file(s) are missing
  6938. #1813: xkeyboard-config fails to build because of intltool problem
  6939. #1879: Bump iptables to 1.4.8
  6940. #1885: Add a bunch of lua modules
  6941. #1897: Bump libusb to 1.0.7
  6942. #1903: Bump tn5250 to 0.17.4 and migrate to autotargets
  6943. #1909: netperf-2.4.5 fails to build because of undeclared SOCK_DCCP
  6944. #1927: Bump file to 5.03 and migrate to autotargets
  6945. #1933: Bump gawk to 3.1.8 and migrate to autotargets
  6946. #1945: PHP: add sqlite3 dependency when using external lib
  6947. #1951: Bump openssl to 0.9.8o
  6948. #1957: Bump sqlite to 3.6.23.1
  6949. #1975: Package removal/deprecation
  6950. #1981: zlib: bump to 1.2.5
  6951. #1987: intltool: Fix spelling mistake
  6952. #1993: Bump bash to 4.1.7(1) and migrate to autotargets
  6953. #1999: Typo in path checking
  6954. #2005: Bump dnsmasq to 2.55 and migrate to gentargets
  6955. #2035: ipsec-tools-0.7.2 fails to build with gcc-4.4.x
  6956. #2038: Bump ncurses to 5.7
  6957. #2095: make gconfig: undefined reference to symbol 'dlsym@@GLIBC_2.2.5'
  6958. #2101: blackbox depends on locale support
  6959. #2119: Tries to build kernel, although disabled in config
  6960. #2125: libXfont build fail
  6961. #2143: buildroot compiler generates segfaulting statically linked exe..
  6962. #2149: xterm build failure
  6963. #2155: Compression lzo don't set for ubifs
  6964. #2161: [SECURITY] Update libpng to 1.2.44
  6965. #2167: Bump busybox to 1.17.0, convert to gentargets, drop 1.12, ...
  6966. #2181: pixman can't apply pixman-0.10.0-no-tests.patch
  6967. #2191: linux-fusion build fail
  6968. #2221: Qt does not compile (dependencies not taken into account?)
  6969. #2233: Atmel atstk target skeletons have /etc/mtab as a file, not ...
  6970. #2245: Netcat does not work due to incorrect assumptions about signed..
  6971. #2251: directory output/build after make *_defconfig not found
  6972. #2257: Convert netsnmp package to autotargets
  6973. #2263: Bump samba to 3.3.13
  6974. #2269: setserial causes make error
  6975. 2010.05, Released May 30th, 2010:
  6976. Fixes all over the tree.
  6977. Updated/fixed packages: coreutils, hal, libcap,
  6978. lockfile-progs, ncftp, xserver_xorg-server
  6979. Issues resolved (http://bugs.uclibc.org):
  6980. #1789: binutils fails to build for i386
  6981. #1843: Fix libcap build failure
  6982. #1855: XORG Keyboard driver fails to compile
  6983. 2010.05-rc3, Released May 27th, 2010:
  6984. Fixes all over the tree.
  6985. Updated/fixed packages: aumix, atk, avahi, bmon, busybox, cairo,
  6986. cdrkit, dbus-glib, dbus-python, docker, enchant, fltk, gamin,
  6987. gettext, gmpc, gob2, grep, gstreamer, gst-plugins-bad,
  6988. gst-plugins-base, gvfs, hal, iconv, icu, iperf, libcgicc,
  6989. libdvdnav, libdvdread, libglade, libglib2, libgtk2, libidn,
  6990. libmms, libmpd, libpcap, libsoup, lmbench, lsof, ltrace, lvm2,
  6991. make, metacity, microperl, mtd-utils, mutt, nbd, netsnmp,
  6992. ntfsprogs, ntp, olsr, pango, pciutils, pcmanfm, php,
  6993. pkg-config, psmisc, qt, samba, shared-mime-info, squashfs,
  6994. squashfs3, sshfs, startup-notification, swfdec, sylpheed,
  6995. uemacs, util-linux, valgrind, vpnc, vsftpd, webkit, xstroke
  6996. Issues resolved (http://bugs.uclibc.org):
  6997. #75: arm buildroot "unrecognized option" error
  6998. #699: Buildroot fails to copy libstdc++ to target when using external...
  6999. #1693: NTP trys IPV6 even if not configured error: 'IPV6_MULTICAST...
  7000. #1729: alsamixergui fails to build
  7001. #1801: Avahi-autoipd doesn't create TARGET_DIR/var/lib
  7002. #1819: pciutils small bugs
  7003. #2065: Internal toolchain: bump gcc 4.3.x series to 4.3.5
  7004. 2010.05-rc2, Released May 11th, 2010:
  7005. Fixes all over the tree.
  7006. Updated/fixed packages: busybox, customize, gawk, gnuchess,
  7007. hal, hostapd, less, libgcrypt, libnl, libxcb, linux-fusion,
  7008. ltp-testsuite, mplayer, netplug, pciutils, php, sed,
  7009. shared-mime-info usb_modeswitch, usbutils, vlc wpa_supplicant,
  7010. xapp_bdftopcf, xapp_mkfontdir, xdriver_xf86-video-openchrome,
  7011. xfont_encodings, xlib_libX11, xlib_libXfont, xlib_xtrans,
  7012. xproto_fontcacheproto, xproto_fontsproto, xvkbd
  7013. Removed packages: vice
  7014. Issues resolved (http://bugs.uclibc.org):
  7015. #849: "customize" package copies files to wrong place in target tree
  7016. #985: Bump usb_modeswitch package to 1.1.0
  7017. #1135: Package customize. Wrong copying
  7018. #1525: Package hal deletes a whole <target>/etc/rc.d directory
  7019. #1531: libxcb 1.5 build fails, due to missing xcbgen Python module
  7020. #1669: Busybox failed to compile when using an external toolchain
  7021. #1699: Fix usbutils dependencies and bump
  7022. #1705: Fix pciutils broken cross compiling
  7023. #1717: External toolchain fixes for hostapd & wpa_supplicant
  7024. 2010.05-rc1, Released May 3rd, 2010:
  7025. Cleaned up / restructured package menu.
  7026. Toolchain: uClibc 0.9.30.3 / 0.9.31, older 0.9.30.x removed.
  7027. 2.6.33 kernel headers, binutils 2.20.1, GCC 4.4.4,
  7028. removed broken nios2 support, ppc e300cX/e500mc support,
  7029. improved external toolchain support, GDB 7.x support.
  7030. X.org updated to 7.5.
  7031. New packages: cdrkit, cramfs, genext2fs, genromfs,
  7032. libatomic_ops, librsync, libusb-compat, lmbench, netperf,
  7033. squashfs, squashfs3, squid
  7034. Updated/fixed packages: alsa-utils, argus, autoconf, bison,
  7035. busybox, bzip2, directfb, dnsmasq, dosfstools, e2fsprogs,
  7036. eeprog, fakeroot, fbv, findutils, freetype, haserl, hostapd,
  7037. iperf, iptables, iw, less, libaio, libcgi, libcgicc, libdrm,
  7038. libgcrypt, libglib2, libid3tag, libmad, liboil, libosip2,
  7039. libpng, libraw1394, libsysfs, libxml2, libxslt, linux-fusion,
  7040. ltrace, lua, lzma, madplay, makedevs, matchbox, mdadm,
  7041. memstat, mesa3d, mtd-utils, nano, ncurses, openssl, patch,
  7042. pciutils, php, pixman, portage, pppd, pthread-stubs, python,
  7043. qt, radvd, samba, setserial, smartmontools, tar, tslib,
  7044. udpcast, usb_modeswith, vtun, wget, xdata_xcursor-themes,
  7045. xdriver_xf86-video-intel, xkeyboard-config, xlib_libX11,
  7046. xlib_libXaw, xlib_libXfont, xlib_libXfontcache,
  7047. xlib_libXxf86misc, xlib_libXtst, xlib_libpciaccess,
  7048. xproto_dri2proto, xproto_eviext, xproto_fontcacheproto,
  7049. xproto_xf86miscproto, xserver_xorg-server
  7050. Removed packages: xapp_xtrap, xlib_libXTrap, xlib_libXevie,
  7051. xlib_libXxf86misc, xxproto_evieext, proto_trapproto,
  7052. xproto_xf86miscproto
  7053. Issues resolved (http://bugs.uclibc.org):
  7054. #513: Add new squid package
  7055. #661: lmbench: new package
  7056. #719: Add lua option to haserl
  7057. #800: [PATCH] iperf update to 2.0.4
  7058. #803: [PATCH] lua - add shared library patch and config option for...
  7059. #805: [PATCH] mdadm - version update
  7060. #817: integrator926_defconfig uses unsupported uboot board name
  7061. #851: Add option to specify --sysroot value for external toolchain
  7062. #1093: Upgrade libusb to v1.0.3 and add new libusb-compat
  7063. package for compatibility with old packages that expect
  7064. the pre-1.0 API.
  7065. #1105: Add new netperf package
  7066. #1111: Bump wget to 1.12 and migrate to Makefile.autotools.in
  7067. #1117: Bump nano to 2.2.3 and migrate to Makefile.autotools.in
  7068. #1123: Bump less to 436 and migrate to Makefile.autotools.in
  7069. #1129: Bump memstat to 0.8 and migrate to Makefile.package.in
  7070. #1189: Wrong u-boot configuration name for integrator926 target
  7071. #1219: kernel headers not correctly installed into toolchain/staging
  7072. #1267: Wrong BR2_EXTRA_VERSION
  7073. #1273: BR2_INET_IPV6 does not enable IPv6 in pppd
  7074. #1303: Add librsync package
  7075. #1321: Busybox link fails due to lack of --sysroot option
  7076. #1327: mtd-utils compile failure due to lack of --sysroot in CFLAGS
  7077. #1345: Bump pppd to 2.4.5 and convert to Makefile.autotools.in
  7078. #1369: cannot build radvd (flex problem)
  7079. #1387: xlib_libX11-1.3.2 can't find libjpeg
  7080. #1411: [SECURITY] Update openssl package to 0.9.8n
  7081. #1417: Bump iptables to 1.4.7
  7082. #1423: Bump e2fsprogs to 1.41.11
  7083. #1429: [SECURITY] Update php to 5.2.13
  7084. #1441: Add binutils 2.20.1
  7085. #1447: Package installation on target with debug symbols is broken
  7086. #1459: Misc QA fixes
  7087. #1489: radvd update to 1.6
  7088. #1513: Enable powerpc e300c2, e300c3 and e500mc optimization
  7089. #1537: dev entries not created anymore
  7090. #1555: Fix default uclibc-0.9.31 configuration
  7091. #1561: [SECURITY] Update samba to 3.3.12
  7092. #1567: openssl0.9.8n fails to compile
  7093. #1573: Alsa-utils alsactl/init/* not installed to target
  7094. #1591: portmap fails to compile
  7095. #1615: Convert eeprog package to gentargets
  7096. #1645: Bump hostapd package to 0.7.2
  7097. 2010.02, Release February 26th, 2010:
  7098. Fixes all over the tree.
  7099. Updated/fixed packages: avahi, busybox, cramfs, ipsec-tools, libcgicc,
  7100. libgtk2, libraw1394, madplay, netsnmp, pango, squashfs, sylpheed, qt,
  7101. xfont_font-util
  7102. Removed packages: hostap, openmotif, xpdf
  7103. Issues resolved (http://bugs.uclibc.org):
  7104. #165: openmotif does not build
  7105. #1147: Remove obsolete hostap package
  7106. #1183: make source fails to download gmp, mpfr and patches
  7107. 2010.02-rc2, Released February 23th, 2010:
  7108. Fixes all over the tree and new features.
  7109. New packages: intltool
  7110. Updated/fixed packages: ace_of_penguins, alsa-lib, alsa-utils, argus,
  7111. at, automake, ccache, dosfstools, e2fsprogs, flex, gob2, gmpc,
  7112. gst-plugins-good, imagemagick, iw, kexec, libeXosip, libgtk2,
  7113. libpcap, libpng, libsoup, libxcb, libxml-parser-perl, libxml2,
  7114. libxslt, lvm2, matchbox, mplayer, rsync, rubix, shared-mime-info,
  7115. tcl, webkit, xapp_mkfontscale, xfont_encodings, xfont_font-util,
  7116. xlib_libfontenc, xproto_trapproto, zlib
  7117. Removed package: xboard
  7118. Issues resolved (http://bugs.uclibc.org):
  7119. #335: atk looks for the path to the gnome library on the host
  7120. #355: Please update WebKit - it doesn't compile!
  7121. #453: libglib2 autoreconf
  7122. #457: e2fsprogs link problem
  7123. #459: libgtk2 autoreconf
  7124. #469: build of libgtk2 for host incorrectly assumes that X.org ...
  7125. #671: Bash fails to build when building buildront on Ubuntu 9.04
  7126. #711: WebKit host dependencies problems
  7127. #821: cp: illegal operation
  7128. #1039: Not compiled on ubuntu karmic
  7129. #1069: [PATCH] The AT91BOOTSTRAP makefile contains a typo
  7130. 2010.02-rc1, Released February 9th, 2010:
  7131. Fixes all over the tree and new features.
  7132. Generalized autotools infrastructure to be usable for
  7133. non-autotools packages, see package/Makefile.package.in for
  7134. details.
  7135. Cleaned up avr32 toolchain config, external source-based
  7136. toolchain support is gone.
  7137. Dependency checks: Also check for makeinfo, only print output
  7138. on errors.
  7139. Toolchain: uClibc 0.9.30.2, gcc 4.4.3
  7140. New packages: libcdaudio, libdvdnav, libdvdread, hostapd, ser2net,
  7141. tcpreplay
  7142. Updated/fixed packages: alsa-lib, alsa-utils, at, autoconf, bash,
  7143. bind, binutils, bootutils, busybox, dbus, directfb, dnsmasq,
  7144. e2fsprogs, gstreamer, gperf, gst-plugins-bad, gvfs, fbdump, flex,
  7145. hal, iptables, iw, jpeg, kismet, libfuse, libglib2, liboil, libpcap,
  7146. libungif, libxml2, libxslt, lighttpd, mesa, mpg123, mtd-utils, nbd,
  7147. neon, netstat-nat, newt, openvpn, pcre, php, qt, rdesktop, readline,
  7148. rpm, sawman, sdl, sdl_ttf, sqlite, sshfs, tremor, u-boot,
  7149. usb_modeswitch, usbutils, webkit, wpa_supplicant, xfsprogs, zlib
  7150. Removed package: asterisk, openswan
  7151. Issues resolved (http://bugs.uclibc.org):
  7152. #515: tcpreplay: new package
  7153. #553: Wrong DirectFB ps2mouse limitation
  7154. #559: mesa3d build fails
  7155. #679: Autoconf cannot find M4
  7156. #739: New/updated hostapd package
  7157. #749: Bump usbutils package to version 0.86
  7158. #751: Kernel 2.6 snapshot fetch fail
  7159. #753: Bump lighttpd package to 1.4.25
  7160. #757: U-Boot: mkimage cannot be installed using external toolchain
  7161. #761: Add binutils 2.20 to toolchain options
  7162. #763: [SECURITY] Update pcre to 7.9
  7163. #765: Add buildroot branding to gcc
  7164. #767: Bump iw package to 0.9.18
  7165. #773: [SECURITY] Update bind to 9.5.2-P1
  7166. #795: Minor edits to fix typos, grammar, spelling, usage in documen...
  7167. #813: Drop not very useful generic package selection options ...
  7168. #823: Editor backup files (~) is copied from the target_skeleton
  7169. #827: Bump mtd-utils package to version 1.2.0
  7170. #841: Build error
  7171. #913: Bump iptables to 1.4.6
  7172. #919: Bump usb_modeswitch package to 1.0.7
  7173. #925: Bump wpa_supplicant package to 0.6.10
  7174. #931: Bump kismet package to 2010-01-R1
  7175. #937: Bump openvpn package to 2.1.1
  7176. #943: Bump sqlite package to 3.6.22
  7177. #961: Bump dnsmasq to 2.52
  7178. #967: Bump netstat-nat to 1.4.10
  7179. #973: Bump iw to 0.9.19
  7180. #1003: DHCP options disabled with busybox-1.16.0
  7181. #1009: [SECURITY] Bump php to 5.2.12
  7182. #1015: [SECURITY] Bump bind to 9.5.1-P2
  7183. #1027: Busybox flash commands conflict with those from mtd-utils
  7184. #1063: [SECURITY] Update lighttpd to 1.4.26
  7185. 2009.11, Released December 1st, 2009:
  7186. Additional fixes and cleanups.
  7187. Updated/fixed packages: alsamixergui, autoconf, coreutils, fltk,
  7188. microperl, ncurses, vim
  7189. Issues resolved (http://bugs.uclibc.org):
  7190. #707: Cant configure fltk-1.1.7. configure: error: Configure could ...
  7191. 2009.11-rc2, Released November 29th, 2009:
  7192. Additional fixes and cleanups.
  7193. Updated/fixed packages: busybox, dbus, fltk, gvfs, ltrace
  7194. 2009.11-rc1, Released November 23rd, 2009:
  7195. Fixes all over the tree and new features.
  7196. Cleaned up / Simplified build directory layout. Refer to
  7197. docs/buildroot.html#using for details.
  7198. Target defconfig files moved to configs/ and listed in 'make help'
  7199. output.
  7200. Fixed *clean targets. Now clean removes everything generated,
  7201. so you can do a fresh rebuild. Distclean furthermore removes
  7202. kbuild tools and .config, bringing the source tree back in a
  7203. pristine state.
  7204. Toolchain: ARM cortex A8 support, GCC 4.4.2, sensible default
  7205. soft / hardfloat setting for architecture, ensure target-ldd
  7206. gets installed.
  7207. New packages: divine, gvfs, libarchive, libmicrohttpd,
  7208. sdl_sound, swfdec, sysstat
  7209. Updated/fixed packages: alsa-lib, alsamixergui, autoconf, bootutils,
  7210. busybox, gcc, directfb, dnsmasq, e2fsprogs, festival, gamin, gperf,
  7211. gqview, gstreamer, gst-plugins-bad, gst-plugins-base, gst-plugins-good,
  7212. imagemagick, ipkg, iptables, iw, kernel-headers, kismet, leafpad,
  7213. libelf, libevent, libglib2, libidn, liblockfile, libmad, libpcap,
  7214. libupnp, libuuid, libxml2, lighttpd, ltrace, lua, lzma, magiccube4d,
  7215. matchbox, mdadm, nbd, ncftp, ncurses, netkittelnet, netsnmp,
  7216. ng-spice-rework, ntfs-3g, openntp, openssl, pcmanfm, php, psmisc,
  7217. python, quagga, radvd, rpm, rsync, rubix, samba, sawman, sdl, sdl_image,
  7218. shared-mime-info, sfdisk, spawn-fcgi, speech-tools, sqlite, squashfs,
  7219. synergy, syslinux, sysklogd, target-binutils, tcpdump, torsmo, u-boot,
  7220. udpcast, util-linux, valgrind, vsftpd, wipe, wpa-supplicant, x11vnc,
  7221. xdata_xcursor-themes, xboard, xfsprogs, xstroke, zlib[5~
  7222. Removed package: mdnsresponder, mpatrol, gcc 3.4.6 + 4.0.4, vice
  7223. Issues resolved (http://bugs.uclibc.org):
  7224. #301: allow to install libsmbclient
  7225. #303: add gvfs package
  7226. #477: Add sdl_sound package
  7227. #487: Make kismet package sexier
  7228. #511: New package usb_modeswitch
  7229. #527: misc fixes for dnsmasq package
  7230. #565: libevent: Bump version and clean up makefile
  7231. #587: Use iptables multipurpose binaries and bump to 1.4.4
  7232. #593: Missing early check for patch(1)
  7233. #597: (REOP) Selecting busybox in buildroot's config clobbers ar ...
  7234. #609: libmicrohttpd: New package
  7235. #615: python: Don't delete .py files unless asked
  7236. #617: netkit/inetd requires RPC and fails to build if RPC is disabled
  7237. #619: netkittelnet requires netkitbase to install, but there's no ...
  7238. #645: allow to build nbd-server with NBD package
  7239. #653: [SECURITY] Update php package to version 5.2.11
  7240. #655: Update sqlite package to version 3.6.18
  7241. #657: Bug in imagemagick-clean target
  7242. #663: Add option for NAND flash with 512B Page and 16 kB erasesize ...
  7243. #665: [PATCH] Samba package
  7244. #667: [PATCH] e2fsprogs
  7245. #683: SDL-dfb does not select directfb
  7246. #701: make install problem with unstripped binaries
  7247. #703: [SECURITY] Update openssl package to 0.9.8l
  7248. #705: Bump spawn-fcgi package to 1.6.3
  7249. #709: Bump lighttpd package to 1.4.24
  7250. #713: Migrate openntpd package to Makefile.autotools.in
  7251. #715: Bump libidn package to 1.15 and other fixes
  7252. #717: Bump dnsmasq to 2.51 and introduce new IDN option
  7253. #731: Bump iw package to 0.9.17
  7254. 2009.08, Released August 31th, 2009:
  7255. Additional fixes and cleanups.
  7256. Updated/fixed packages: ctorrent, saveconfig/getconfig,
  7257. sdl_net, util-linux.
  7258. Issues resolved (http://bugs.uclibc.org):
  7259. #529: util-linux doesn't find headers and include libs correctly
  7260. #557: Build ctorrent with SSL support if available
  7261. 2009.08-rc3, Released August 26th, 2009:
  7262. Additional fixes and cleanups.
  7263. Updated/fixed packages: alsa-utils, berkeleydb, busybox, dbus,
  7264. directfb, enchant, kernel headers.
  7265. Issues resolved (http://bugs.uclibc.org):
  7266. #471: Allow directfb compilation with debug
  7267. #541: Removal of CVS directories in target filesystem broken
  7268. #547: berkeleydb: Update config.{sub, guess}
  7269. #549: enchant: Fix dependencies.
  7270. #569: Fix alsa-utils build for x86 on x86-64
  7271. 2009.08-rc2, Released August 6th, 2009:
  7272. Additional fixes and new features.
  7273. New packages: libuuid, gcc 4.3.4.
  7274. Updated/fixed packages: busybox, classpath, gzip, ipsec-tools,
  7275. jamvm, libusb, microperl, neon, popt, sed, webkit.
  7276. Fixed issue with 'make oldconfig'
  7277. Issues resolved (http://bugs.uclibc.org):
  7278. #525: sed broken with external toolchain
  7279. #537: Fix gzip build with recent glibc
  7280. 2009.08-rc1, Released August 2nd, 2009:
  7281. Fixes all over the tree and new features.
  7282. Improvement of external toolchain support:
  7283. - Support for glibc toolchains.
  7284. - The toolchain configuration announced to Buildroot is
  7285. verified against the real toolchain configuration.
  7286. - Fixes, documentation.
  7287. Cleanup X.org support: clarified configuration options, and
  7288. removed mandatory dependency on useless libraries such as
  7289. libXt or libXaw.
  7290. New QT-based configurator, usable using 'make xconfig'.
  7291. Support for the Xtensa architecture.
  7292. Toolchain: GCC 4.4.1, 2.6.30 kernel headers, removed < 2.6.26
  7293. headers.
  7294. New packages: bmon, ctorrent, dosfstools, enchant,
  7295. gst-plugins-bad, iw, libmms, libnl, netstat-nat, ntfsprogs,
  7296. sdl_gfx, spawn-fcgi.
  7297. Updated packages: bind, busybox, coreutils, sqlite, directfb,
  7298. expat, gamin, gnuconfig, haserl, ipsec-tools, classpath,
  7299. libcurl, libglib2, liblockfile, libpng, libsoup, libxml2,
  7300. lighttpd, ltp-testsuite, lvm2, matchbox, memstat,
  7301. gst-plugins-good, gstreamer, libogg, libvorbis, mplayer,
  7302. neon, openssl, pciutils, php, qt, ruby, sawman, webkit,
  7303. wpa-supplicant, xdriver_xf86-input-synaptics,
  7304. xdriver_xf86-video-intel, xlib_libXfont, xlib_libXft,
  7305. xlib_libXt, xproto_xproto, xserver-xorg, xutil_makedepend,
  7306. xutil_util-macros.
  7307. Issues resolved (http://bugs.uclibc.org):
  7308. #83: liblockfile fails to compile due to eaccess redefinition
  7309. #163: Xtensa architecture port
  7310. #171: xorg-server / kernel headers 2.6.26 - vm86.c compilation issue
  7311. #241: device mapper + lvm2: build together
  7312. #243: ctorrent: new package
  7313. #247: ntfsprogs: new package
  7314. #271: Library 'libgcc_s.so.1' not installed in search path
  7315. #287: New package libnl
  7316. #289: New package iw
  7317. #331: Update MPlayer to version 1.0rc2
  7318. #333: Bump sqlite package to 3.6.15
  7319. #349: update libsoup to version 2.26.2
  7320. #357: New package netstat-nat
  7321. #359,#413: Upgrade openvpn to Makefile.autotools.in
  7322. #367: linux kernel compile error for arm926t
  7323. #369: Add SDL_gfx package
  7324. #373: Support for building gstreamer without libxml
  7325. #379: update DirectFB to version 1.4.0
  7326. #383: gst-plugins-good: Allow soup plugin to be configured
  7327. #385: neon: Fix pkgconfig dependency
  7328. #387: Tremor not installed to toolchain
  7329. #389: New package bmon
  7330. #391: gstreamer: Bump version to 0.10.23
  7331. #393: gst-plugins-base: Bump version to 0.10.23
  7332. #395: gst-plugins-bad: New package
  7333. #403: Error while building iso9660 image
  7334. #409: Bump php package to 5.2.10
  7335. #411: ipsec-tools: Bump version to 0.7.2
  7336. #417: New package spawn-fcgi
  7337. #419: Bump lighttpd package to 1.4.23
  7338. #421: toolchain: Clean up toolchain locale support menu
  7339. #427: webkit: Update to WebKit svn r44552
  7340. #437: ltp-testsuite: Bump version to 20090630
  7341. #451: Upgrade from unmaintained dosfstools-2.11 to dosfstools-3.0.3
  7342. #467: DirectFB 1.4.1
  7343. #473: memstat_0.5.tar.gz has install with -D and that fails "make"
  7344. #491: libxml2: Bump version to 0.7.3
  7345. #495: Bump bind package to 9.5.1-P3 (security)
  7346. #497: OpenSSL RSA key generation hangs on x86_64
  7347. #509: Bump sqlite package to 3.6.16
  7348. #523: pciutils broken with external toolchain
  7349. #533: Update gamin to 0.1.10 to fix compilation
  7350. 2009.05, Released June 1st, 2009:
  7351. Fixes for dropbear & diffutils, bump linux-advanced 2.6.29.x
  7352. version and marked ubifsroot as broken.
  7353. 2009.05-rc3, Released May 27th, 2009:
  7354. Fixes for toolchain (gcc arm pr37436), stable kernel versions,
  7355. busybox, curl, libusb, readline, python and strace.
  7356. Issues resolved (http://bugs.uclibc.org):
  7357. #345: libcurl package needs a urandom fix
  7358. 2009.05-rc2, Released May 19th, 2009:
  7359. Fixes for toolchain (gcc w/softfloat on ppc, 3.4.6 buildfix
  7360. for newer hosts), stable kernel versions, busybox, cups,
  7361. dmraid, docker, mesa3d, rsync and updated defconfigs.
  7362. xserver marked as broken on AVR32 and atngw100-expanded
  7363. config removed.
  7364. Issues resolved (http://bugs.uclibc.org):
  7365. #167: metacity does not build
  7366. #295: gamin installs python support even if python is disabled
  7367. #323: gen_matypes fails to execute during build of Mesa when us...
  7368. 2009.05-rc1, Released May 5th, 2009:
  7369. Fixes all over the tree, further conversion of packages to
  7370. Makefile.autotools.in and we now build host versions of
  7371. packages where needed for build time dependencies instead of
  7372. relying on the correct versions being available on the build
  7373. host. Ancient toolchain / busybox versions have furthermore
  7374. been removed as announced in the 2009.02 release notes.
  7375. New packages: flac, gob2, lzop, taglib, wpa_supplicant
  7376. Updated packages: avahi, bind, binutils, busybox, dbus, dbus-glib,
  7377. directfb, dnsmasq, freetype, gcc, gmp, gstreamer, iptables, kernel
  7378. headers, kexec, libglib2, libpng, libsndfile, lua, mpfr, ntfs-3g,
  7379. openssl, php, qtopia4, rsync, samba, sqlite, tar, uboot, uclibc,
  7380. util-linux, xorg7, xerces
  7381. Issues resolved (http://bugs.uclibc.org):
  7382. #5,#77,#141,#143: Convert php package to Makefile.autotools.in
  7383. and a ton of other improvements
  7384. #19: page.h missing by util-linux
  7385. #37: update libglib2 to version 2.18.4
  7386. #61: tslib puts staging_dir into pkgconfig file
  7387. #69: tar refuses to build
  7388. #71,#175: ./wchar.h:41:12: error: empty filename in #include
  7389. #73: Bump openssl package to the latest version
  7390. #81: New package wpa_supplicant
  7391. #99: new package: flac
  7392. #101: update gstreamer packages
  7393. #105,#313: menuconfig segfaults on tinyx if wchar is not
  7394. selected
  7395. #107: convert libvorbis to Makefile.autotools.in
  7396. #109: Make pppd package avoid bsd err
  7397. #111: binutils 2.17 fails to build when texinfo >= 4.10
  7398. #133: Modify ncurses5-config to get correct include path
  7399. #137: Bump php to version 5.2.9
  7400. #139: Bump sqlite to 3.6.11 and convert to
  7401. Makefile.autotools.in
  7402. #145: Bump bind package to 9.5.1-P1 (security)
  7403. #147: buildroot toolchain fails to build w/binutils-2.19.1
  7404. #151: openssl package trivial fixes
  7405. #161: vim fails on patching with errors in configure.patch
  7406. #169: blackbox-0.70.1 does not build
  7407. #177: xdriver_xf86-input-keyboard does not build
  7408. #179: Upgrade dropbear to Makefile.autotools.in
  7409. #181: Update to Xorg 7.4
  7410. #187: ntfs-3g: could not build cross
  7411. #191: alsa-lib ARM binaries always built with EABI
  7412. #213: Bump wpa_supplicant package to version 0.6.9
  7413. #217: Bump openssl package to 0.9.8k (security)
  7414. #219: Toolchain build fails on m4
  7415. #225: m4 macros are out of place
  7416. #233: make ipv6 optional in iptables
  7417. #237: ncftp: convert to Makefile.autotools.in
  7418. #239: ntfs-3g: convert to Makefile.autotools.in
  7419. #245: lzop: new package
  7420. #271: Bump bind package to 9.5.1-P2 (security)
  7421. #277: Bump sqlite package to 3.6.16
  7422. #279: update libglib2 to version 2.20.1
  7423. #281: update DirectFB to version 1.2.8
  7424. #283: add taglib
  7425. #285: compilation of samba fails if IPV6 support is missing
  7426. #293: update samba to version 3.3.3
  7427. #299: add shared-mime-info package
  7428. #307: make openssl package respect build flags