CHANGES 391 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933
  1. 2020.11-rc2, released November 14th, 2020
  2. Fixes all over the tree.
  3. cve-checker script dropped. Instead the pkg-stats logic has
  4. been extended to be able to only generate stats for the
  5. configured packages using 'make pkg-stats'
  6. Removed defconfigs: rock64
  7. Updated/fixed packages: apparmor, asterisk, bitcoin, busybox,
  8. cups-filters, cryptsetup, davfs2, domoticz, elf2flt, freetype,
  9. ghostscript, glmark2, go, gst1-plugins-bad, guile, jsoncpp,
  10. libcap, libexif, libnetfilter_conntrack, libpam-tacplus,
  11. libsigrokdecode, linux-backports, linux-firmware, mesa3d,
  12. modem-manager, mp4v2, oniguruma, openntpd, python3,
  13. python-lmdb, python-m2crypto, rauc, s390-tools, slirp,
  14. stress-ng, suricata, systemd, tcpdump, tmux, tor, webkitgtk,
  15. wireguard-linux-compat, wpewebkit, xen
  16. Issues resolved (http://bugs.uclibc.org):
  17. #13281: Raspberry Pi 2: overlays folder missing in genimage-ra..
  18. #13291: BR2_DL_DIR is ignored when creating defconfig
  19. #13306: wpewebkit build problem in 2020-11-rc1
  20. 2020.11-rc1, released November 4th, 2020
  21. Fixes all over the tree and new features.
  22. Architectures: Support for IBM s390x
  23. Toolchain: use Secure-PLT rather than BSS-PLT for PowerPC
  24. 32. Binutils 2.35.1 added, now defaulting to 2.34. ARC
  25. 2020.09-release toolchain. GCC 7.x dropped. RISC-V support for
  26. uclibc-ng. Support for Bootlin external toolchains.
  27. SELinux support improvements: File security contexts are now
  28. set when the file systems are created, so there is no need to
  29. run restorecon on first boot / read only rootfs is supported.
  30. An optimized / stripped refpolicy SELinux policy is now
  31. used. Packages can enable additional refpolicy modules using
  32. <pkg>_SELINUX_MODULES.
  33. support/scripts/cve-checker: Utility script to check for known
  34. CVEs in just the packages enabled in a Buildroot configuration
  35. rather than all packages, by passing the output of 'make
  36. show-info' to it.
  37. Go: Modules handling. The module name must be specified using
  38. <pkg>_GOMOD.
  39. BR2_EXTERNAL: Support for defining skeleton and init system
  40. packages in external trees.
  41. meson: Correct SDK cross-compilation.conf file when
  42. per-package builds were used to build SDK.
  43. systemd: Use /run rather than /var/run for PID files in units.
  44. Fakeroot scripts (BR2_ROOTFS_POST_FAKEROOT_SCRIPT) are now run
  45. after all finalization hooks (including pre-rootfs) to ensure
  46. they can override any late configuration done by packages.
  47. support/script/pycompile: Rework logic to ensure .pyc files
  48. contain absolute target paths, fixing code inspection at
  49. runtime when executed with cwd != '/'.
  50. support/scripts/setlocalversion: Correct Mercurial output to
  51. match behaviour with Git.
  52. support/scripts/apply-patches.sh: Use patch
  53. --no-backup-if-mismatch, so we no longer blindly have to
  54. remove *.orig files after patching, fixing issues with
  55. packages containing such files.
  56. New defconfigs: Acer chromebook elm, Friendlyarm nanopc-t4 and
  57. nanopi-m4, Hardkernel odroid-c2, Kontron SMARC-sAL28, NXP
  58. imx8mqevk, Orangepi RK3399 and zero+, PCengines APU2, Pine64
  59. rockpro64, QEMU s390x, Raxda rockpi-n8,
  60. New packages: altera-stapl, asn1c, babeltrace2, cukinia,
  61. easyframes, environment-setup, frr, graphicsmagick, htpdate,
  62. ipcalc, libbacktrace, libblockdev, libbytesize, librelp,
  63. libuev, makedumpfile, meson-tools, mg, mrp, multipath-tools,
  64. netcalc, odroidc2-firmware, php-xdebug, python-aiofiles,
  65. python-ansicolors, python-boto3, python-botocore,
  66. python-bsdiff4, python-crayons, python-iniconfig,
  67. python-intelhex, python-ipdb, python-jmespath,
  68. python-m2crypto, python-opcua-asyncio, python-packaging,
  69. python-piexif, python-pluggy, python-pytest,
  70. python-s3transfer, python-xmodem, qprint, qt5lottie,
  71. qt5remoteobjects, re2, redir, s390-tools, sentry-cli,
  72. sentry-native, timescaledb, tinyhttpd, uhd, uredir, watchdog,
  73. wayland-utils, weston-imx
  74. Removed packages: amd-catalyst, bellagio, gqview, libcroco,
  75. nvidia-tegra23, opencv
  76. Issues resolved (http://bugs.uclibc.org):
  77. #11811: lsblk (util-linux) should depend on libudev if available
  78. #11931: Bugs in support/scripts/apply-patches.sh
  79. #12301: systemd-journal-gatewayd: config options broken
  80. #12911: usb_modeswitch installation race condition
  81. #13236: Can't compile linux 5.4.8 (with gcc 10 on host)
  82. #13286: The system hangs in vmware workstation on the line..
  83. 2020.08.1, released October 12th, 2020
  84. Important / security related fixes.
  85. Fixes for various compilation issues with GCC 10.x.
  86. meson: Correct SDK cross-compilation.conf file when
  87. per-package builds were used to build SDK.
  88. systemd: Use /run rather than /var/run for PID files in units.
  89. Toolchain: use Secure-PLT rather than BSS-PLT for PowerPC 32.
  90. Fakeroot scripts (BR2_ROOTFS_POST_FAKEROOT_SCRIPT) are now run
  91. after all finalization hooks (including pre-rootfs) to ensure
  92. they can override any late configuration done by packages.
  93. support/script/pycompile: Rework logic to ensure .pyc files
  94. contain absolute target paths, fixing code inspection at
  95. runtime when executed with cwd != '/'.
  96. support/scripts/setlocalversion: Correct Mercurial output to
  97. match behaviour with Git.
  98. support/scripts/apply-patches.sh: Use patch
  99. --no-backup-if-mismatch, so we no longer blindly have to
  100. remove *.orig files after patching, fixing issues with
  101. packages containing such files.
  102. fs/jffs2: Now correctly handles xattrs
  103. Updated/fixed packages: acpica, afboot-stm32, alsa-utils,
  104. apparmor, bandwidthd, barebox, bash, bison, brotli,
  105. cifs-utils, cups, dhcpcd, dhcpdump, docker-cli, docker-engine,
  106. ecryptfs-utils, efl, fail2ban, fbterm, ffmpeg, fontconfig,
  107. freetype, gcc, gdb, ghostscript, gnupg2, gnutls, go, gqview,
  108. gst1-plugins-base, gst1-plugins-ugly, ipmitool, jbig2dec,
  109. kexec, lcdproc, libcamera, libhtp, libnetconf2, libraw,
  110. libssh, libxml2, libxml-parser-perl, libzip, linux-headers,
  111. live555, localedef, ltp-testsuite, lua, matchbox, memcached,
  112. memtester, mesa3d, meson, minidlna, mongodb, mongrel2, motion,
  113. mraa, mtd, musepack, neardal, netatalk, netperf, netsniff-ng,
  114. nginx, nodejs, nss-pam-ldapd, open-plc-utils, openswan,
  115. opentyrian, openvmtools, php, postgresql, python,
  116. python-aenum, python-cycler, python-engineio, python-fire,
  117. python-pymodbus, python-scapy, python-semver,
  118. python-sentry-sdk, python-socketio, python-texttable,
  119. python-tinyrpc, python-txtorcon, python3, qt5base, quagga,
  120. read-edid, redis, rsh-redone, runc, samba4, socketcand,
  121. strace, supertux, suricata, systemd, ti-utils, trinity,
  122. uclibc, usb_modeswitch, vlc, vsftpd, wampcc,
  123. wayland-protocols, wireguard-linux-compat, wireshark, wlroots,
  124. wolfssl, w_scan, xerces, xfsprogs, xdriver-xf86-video-ati,
  125. xserver_xorg-server, ympd, zeromq, zlib-ng, zstd
  126. Issues resolved (http://bugs.uclibc.org):
  127. #12911: usb_modeswitch installation race condition
  128. #13236: Can't compile linux 5.4.8 (with gcc 10 on host)
  129. 2020.08, released September 1st, 2020
  130. Various fixes.
  131. Updated/fixed packages: am33x-cm3, avahi, bluez-tools,
  132. busybox, chocolate-doom, collectd, dhcp, docker-cli, domoticz,
  133. gobject-introspection, graphite2, haproxy, ibm-sw-tpm2,
  134. imagemagick, libeXosip2, libressl, lxc, mbedtls, menu-cache,
  135. mongodb, mosquitto, nvidia-driver, paho-mqtt-c, pixz,
  136. postgresql, python-django, rtty, squid, stress-ng, systemd,
  137. trousers, uclibc, wireshark, wolfssl, zbar
  138. 2020.08-rc3, released August 28th, 2020
  139. Fixes all over the tree.
  140. Infrastructure: Ensure RPATH entries that may be needed for
  141. dlopen() are not dropped by patchelf.
  142. Toolchain: Drop old GCC 6 based external Sourcery AMD64
  143. toolchain.
  144. Updated/fixed packages: assimp, davfs2, dillo, glibc,
  145. gnuradio, hostapd, ibm-sw-tpm2, ipmitool, json-c, libroxml,
  146. linux, mender, netopeer2, openal, openjpeg, python-matplotlib,
  147. ripgrep, shadowsocks-libev, trousers, xlib_libX11,
  148. xserver_xorg-server
  149. Issues resolved (http://bugs.uclibc.org):
  150. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  151. 2020.08-rc2, released August 24th, 2020
  152. Fixes all over the tree, including a number of fixes for
  153. compilation with GCC-10.
  154. Toolchain: Disallow building uClibc-ng for RISC-V 64-bit,
  155. because of issues with a missing __riscv_flush_icache()
  156. implementation.
  157. Defconfigs: CI20: Use mainline Linux and U-boot. Update
  158. Microchip sama5d27_wlsom1_ek_mmc_dev to use bluez5-utils
  159. instead of (the removed) legacy bluez-utils
  160. Updated/fixed packages: 18xx-ti-utils, aircrack-ng, apache,
  161. atest, bandwidthd, bellagio, bind, bird, bluez-alsa, boost,
  162. c-periphery, capnproto, chrony, collectd, cpio, cvs,
  163. dieharder, domoticz, dovecot, dovecot-pigeonhole, drbd-utils,
  164. dump1090, efl, elixir, f2fs-tools, feh, fluidsynth, fping,
  165. gdbm, gdk-pixbuf, ghostscript, gst1-plugins-bad,
  166. gstreamer1-editing-services, htop, ibm-sw-tpm2, ifplugd,
  167. iftop, igd2-for-linux, ima-evm-utils, iprutils, iputils,
  168. keepalived, kmsxx, libabseil-cpp, libcamera, libcurl,
  169. libfuse3, libnss, librtlsdr, libubox, libunwind, live555,
  170. lttng-tools, luabitop, mender-artifact, minizip,
  171. mjpg-streamer, mpd, mpv, mtd, ncftp, open-lldp, openal,
  172. opencv, opencv3, openfpgaloader, optee-os, owfs, php,
  173. pistache, prosody, pulseview, python-decorator,
  174. python-gunicorn, python-rpi-gpio, python-spidev,
  175. python3-decorator, python3-mako, python3-pyselftools, qt5,
  176. qt5webengine, rauc, redis, ripgrep, rtl8188eu, rtl8821au,
  177. setools, smstools3, supertux, tftpd, tpm2-abrmd,
  178. wpa_supplicant, xen, xlib_libX11, xserver_xorg-server
  179. New packages: python3-cython, python3-pycryptodomex
  180. Issues resolved (http://bugs.uclibc.org):
  181. #12876: nodejs fails to build when host-icu has been built before
  182. #13111: python-gunicorn: missing dependency on python-setuptools
  183. #13121: wpa_supplicant fails to build without libopenssl enabled
  184. #13146: raspberrypi3_defconfig: "Inappropriate ioctl for device"..
  185. #13156: package live555 new license
  186. #13166: python-rpi-gpio: does not work against aarch64, unint..
  187. 2020.08-rc1, released August 6th, 2020
  188. Toolchain:
  189. - GCC 10.x added, GCC 9.x is the default
  190. - binutils 2.34 added, binutils 2.33 is the default, binutils
  191. 2.31 removed
  192. - glibc updated to 2.31
  193. - ARC toolchain components updated to 2020.03-release.
  194. - Enable uClibc-ng usage for RISC-V 64-bit
  195. Infrastructure:
  196. - qmake-package was fixed to be compatible with
  197. BR2_PER_PACKAGE_DIRECTORIES
  198. - complete rewrite of the Gitlab CI Yaml configuration file,
  199. now generated directly by the Gitlab CI pipeline itselfs
  200. Misc:
  201. - cargo and cargo-bin packages removed, as cargo is now part
  202. of Rust itself
  203. Filesystem: ubinize configuration files can now use
  204. BINARIES_DIR to refer to the $(O)/images directory.
  205. New packages: bitwise, earlyoom, fuse-overlayfs, gloox,
  206. kodi-pvr-octonet, kodi-pvr-zattoo, libabseil-cpp, libcutl,
  207. libnids, libnpupnp, libodb, libodb-boost, libodb-mysql,
  208. libodb-pgsql, mbpfan, netopeer2, odb, parprouted,
  209. python-colorzero, python-gpiozero, python-pybind, python-yatl,
  210. python3-decorator, qt5quicktimeline, resiprocate, ttyd,
  211. unclutter-xfixes, urandom-scripts,
  212. New defconfigs: bananapi_m2_zero, freescale_imx8mnevk,
  213. globalscale_espressobin, imx6ullevk,
  214. microchip_sama5d27_wlsom1_ek, rock_pi_4, rock_pi_n10
  215. Removed packages: cargo, cargo-bin,
  216. kodi-peripheral-steamcontroller
  217. Issues resolved (http://bugs.uclibc.org):
  218. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_DIRECTORIES
  219. #12946: Grub: Decompressor is too big.
  220. #12986: Mtools: Error converting to codepage 850
  221. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  222. #13011: Incorrect selection of gcc version
  223. #13021: Minor code error when building granite-0.4.1
  224. #13026: rpi-firmware: must not rename start files
  225. #13046: Optimize for fast -Ofast is not compliant
  226. #13081: host-e2fsprogs attempts to create udev rules.d on build host if not exists
  227. #13101: BR audit2allow support
  228. 2020.05.3, released October 12th, 2020
  229. Important / security related fixes.
  230. meson: Correct SDK cross-compilation.conf file when
  231. per-package builds were used to build SDK.
  232. systemd: Use /run rather than /var/run for PID files in units.
  233. Toolchain: use Secure-PLT rather than BSS-PLT for PowerPC 32.
  234. Fakeroot scripts (BR2_ROOTFS_POST_FAKEROOT_SCRIPT) are now run
  235. after all finalization hooks (including pre-rootfs) to ensure
  236. they can override any late configuration done by packages.
  237. support/script/pycompile: Rework logic to ensure .pyc files
  238. contain absolute target paths, fixing code inspection at
  239. runtime when executed with cwd != '/'.
  240. support/scripts/setlocalversion: Correct Mercurial output to
  241. match behaviour with Git.
  242. support/scripts/apply-patches.sh: Use patch
  243. --no-backup-if-mismatch, so we no longer blindly have to
  244. remove *.orig files after patching, fixing issues with
  245. packages containing such files.
  246. Updated/fixed packages: alsa-utils, apparmor, avahi,
  247. bandwidthd, barebox, bash, bison, brotli, busybox, cifs-utils,
  248. cryptsetup, cups, dhcpcd, dhcpdump, docker-cli, docker-engine,
  249. ecryptfs-utils, efl, fail2ban, freetype, gcc, gdb,
  250. ghostscript, gnutls, go, graphite2, gst1-plugins-base,
  251. gst1-plugins-ugly, imagemagick, ipmitool, jbig2dec, libhtp,
  252. libraw, libssh, libxml2, libxml-parser-perl, linux-headers,
  253. localedef, lua, mbedtls, memcached, mesa3d, meson, minidlna,
  254. mongodb, nginx, nodejs, nss-pam-ldapd, openvmtools,
  255. paho-mqtt-c, php, postgresql, python, python-aenum,
  256. python-django, python-engineio, python-fire, python-pymodbus,
  257. python-scapy, python-semver, python-sentry-sdk,
  258. python-socketio, python-texttable, python-tinyrpc,
  259. python-txtorcon, python3, qt5base, rsh-redone, runc, samba4,
  260. strace, supertux, suricata, systemd, uclibc, usb_modeswitch,
  261. vlc, vsftpd, wayland-protocols, wireguard-linux-compat,
  262. wireshark, wlroots, wolfssl, xserver_xorg-server, ympd,
  263. zeromq, zstd
  264. Issues resolved (http://bugs.uclibc.org):
  265. #12911: usb_modeswitch installation race condition
  266. #13251: cryptsetup does not work on branch 2020.02 following..
  267. 2020.05.2, released August 29th, 2020
  268. Important / security related fixes.
  269. Infrastructure: Ensure RPATH entries that may be needed for
  270. dlopen() are not dropped by patchelf.
  271. BR_VERSION_FULL/setlocalversion (used by make print-version
  272. and /etc/os-release): Properly handle local git tags
  273. Updated/fixed packages: apache, assimp, at91bootstrap3, bind,
  274. boost, busybox, capnproto, cegui, chrony, collectd, cpio,
  275. cryptsetup, cups, cvs, dbus, docker-engine, domoticz, dovecot,
  276. dovecot-pigeonhole, dropbear, efl, elixir, f2fs-tools, ffmpeg,
  277. gd, gdk-pixbuf, ghostscript, glibc, gnuradio, grub2,
  278. gst1-plugins-bad, gstreamer1-editing-services, hostapd,
  279. ibm-sw-tpm2, iputils, jasper, json-c, libcurl, libressl,
  280. libwebsockets, linux, live555, mesa3d, mongodb, mosquitto,
  281. mpv, nodejs, opencv, opencv3, openfpgaloader, openjpeg,
  282. patchelf, perl, php, postgresql, prosody, python-django,
  283. python-gunicorn, python-matplotlib, ripgrep, rtl8188eu,
  284. rtl8821au, ruby, shadowsocks-libev, squid, systemd,
  285. tpm2-abrmd, tpm2-tools, trousers, uboot, webkitgtk, wireshark,
  286. wolfssl, wpa_supplicant, wpewebkit, xen, xlib_libX11,
  287. xserver_xorg-server
  288. Issues resolved (http://bugs.uclibc.org):
  289. #12876: nodejs fails to build when host-icu has been built before
  290. #13111: python-gunicorn: missing dependency on python-setuptools
  291. #13121: wpa_supplicant fails to build without libopenssl enabled
  292. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  293. #13156: package live555 new license
  294. 2020.05.1, released July 25th, 2020
  295. Important / security related fixes.
  296. Toolchain:
  297. - Make external toolchain version check also work for
  298. toolchains configured with --with-gcc-major-version-only
  299. - Do not handle SOURCE_DATE_EPOCH in toolchain wrapper if the
  300. compiler supports it, fixing an issue with precompiled
  301. headers
  302. - Ensure debug libs from external toolchains are not installed
  303. into target if debugging is disabled
  304. Download:
  305. - Correct reproducibility issue in handling of git submodules
  306. for older git versions.
  307. - Fix file locking over NFS
  308. fs: Ensure cpio archive element order is reproducible
  309. Br2-external: Fix error reporting for invalid br2-external trees
  310. Per-package:
  311. - Fix an issue with python3 sysconfig data not getting
  312. correctly expanded
  313. - Fix per-package building for packages using the qmake
  314. infrastructure
  315. Updated/fixed packages: a10disp, asterisk, bind, brltty,
  316. cdrkit, clamav, cryptodev-linux, dbus, docker-cli,
  317. docker-engine, dvb-apps, e2fsprogs, exim, exiv2, freerdp, gdb,
  318. gdk-pixbuf, gerbera, gnutls, go, granite, grub2, gssdp,
  319. gst1-plugins-good, gst1-plugins-ugly, gupnp, intel-microcode,
  320. iproute2, irrlicht, iwd, jq, kodi, libcamera, libcec,
  321. libconfuse, libcurl, libevdev, libhttpserver, libmicrohttpd,
  322. libnss, libressl, libvncserver, libxml2, libxmlrpc, lxc,
  323. mbedtls, mediastreamer, mesa3d, meson, minizip, mongodb,
  324. mtools, mutt, nano, network-manager, nghttp2, ngircd, nodejs,
  325. ntp, open-plc-utils, open2300, openjdk-bin, openssh,
  326. oracle-mysql, paho-mqtt-c, pango, php, poco, prosody, putty,
  327. python-greenlet, python-urllib3, python-validators, python3,
  328. readline, redis, rpi-firmware, rtl8821au, samba4, sdl2,
  329. sqlite, squid, strace, sunxi-mali-mainline-driver, syslog-ng,
  330. systemd, tcpreplay, tinydtls, upmpdcli, upx, vlc, webkitgtk,
  331. wireguard-linux-compat, wireshark, wpebackend-fdo, wpewebkit,
  332. x11vnc, znc, zstd
  333. Issues resolved (http://bugs.uclibc.org):
  334. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_..
  335. #12946: Grub: Decompressor is too big.
  336. #12986: Mtools: Error converting to codepage 850
  337. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  338. #13011: Incorrect selection of gcc version
  339. #13021: Minor code error when building granite-0.4.1
  340. #13026: rpi-firmware: must not rename start files
  341. #13031: nodejs: RangeError at new ArrayBuffer()
  342. #13046: Optimize for fast -Ofast is not compliant
  343. 2020.05, released June 1st, 2020
  344. Various fixes.
  345. Updated/fixed packages: arm-trusted-firmware, gcc, mp4v2, fmc,
  346. fmlib, glib-networking, libusb-compat, linux, qt5webengine,
  347. sysrepo, wampcc, xen
  348. 2020.05-rc3, released May 29th, 2020
  349. Fixes all over the tree.
  350. Infrastructure: Support checking download hashes for packages
  351. coming from Subversion.
  352. Defconfigs: Increase boot partition size to 64MB for Freescale
  353. boards to allow space for bigger kernels.
  354. Updated/fixed packages: audit, bind, dovecot, efl, erlang,
  355. ffmpeg, fio, gerbera, gnupg, leveldb, lrzip, ltrace, matio,
  356. mesa3d, mp4v2, prosody, qemu, qt5declarative, speexdsp,
  357. systemd, tremor, uboot-tools, unbound, wireshark
  358. Removed packages: wiringpi
  359. Issues resolved (http://bugs.uclibc.org):
  360. #12361: Init system (systemd) kills login on Raspberry Pi Zero
  361. #12686: recipe for target 'install_dev' failed (libcrypto.so..)
  362. 2020.05-rc2, released May 22nd 2020
  363. Fixes all over the tree.
  364. U-Boot: Support building with Python 3.x instead of Python
  365. 2.x. Since U-Boot 2020.01, various U-Boot build scripts use
  366. Python 3.x instead of Python 2.x, so add an option to pull in
  367. host-python3 rather than host-python. Also fix a number of
  368. defconfigs to use this new option.
  369. Updated/fixed packages: apparmor, binutils, bison, brltty,
  370. c-icap, cegui, checkpolicy, clamav, crda, cvs, docker-cli,
  371. docker-engine, domoticz, elf2flt, exfatprogs, fakeroot,
  372. ffmpeg, freerdp, gcc, glibc, gnuconfig, irrlicht, kmod,
  373. libexif, libpam-tacplus, libssh2, libv4l, libvncserver,
  374. localedef, lrzip, mariadb, matchbox, mbuffer, mesa3d,
  375. mesa3d-headers, meson, netsniff-ng, openldap, openocd,
  376. optee-os, p7zip, paho-mqtt-c, php, piglit, pigz,
  377. python-argon2-cffi, python-attrs, python-future,
  378. python-markdown, python-pycryptodomex, python-pyqt5, qt5base,
  379. rpi-firmware, rustc, squashfs, squid, stella, suricata,
  380. systemd, uacme, uclibc, util-linux, vboot-utils
  381. New packages: python3-pyelftools
  382. Removed packages: ezxml, mtdev2tuio, python-pycrypto
  383. Issues resolved (http://bugs.uclibc.org):
  384. #10551: PowerPC SPE and Musl
  385. #12256: package tar is outdated (1.29 is 3 years old)
  386. #12271: python-iptables runtime dependencies
  387. #12321: host-generic-package: PKG_DL_OPTS not used for host package
  388. #12391: CMake-based host package fails to include output/host/include
  389. #12431: ethernet no detected on nanopi neo 2
  390. #12521: RISCV RV32IA selected, RV64GC output
  391. #12586: avahi failure
  392. #12596: host-e2fsprogs: tune2fs incompatibility on older glibc..
  393. #12611: ntp hash is not matching with upstream 4.2.8p13
  394. #12626: PHP missing header files within 2020.02
  395. #12631: glibc support Power-PC SPE
  396. #12656: bison fails to relocate with relocate-sdk.sh
  397. #12661: cups problems in buildroot
  398. #12686: recipe for target 'install_dev' failed (libcrypto.so:..
  399. #12691: host-rust build fails
  400. #12761: Buildroot fails when building GCNano binaries for the STM..
  401. #12786: Systemd spawns two getty processes when the getty port..
  402. #12806: There are multiple issues in buildroot that faults cups..
  403. #12826: nodejs-12.16.1: error: 'uv_sleep' was not declared in..
  404. #12831: RPI-firmware package: DTB-overlay dependency
  405. #12836: libunwind: package does not show up in menuconfig for..
  406. #12841: util-linux/sfdisk 2.35.1 fails on sector-size header
  407. #12866: should we be disabling bash executable path caching?
  408. #12886: GMP built in wrong order (?)
  409. #12891: QEMU, libvirt-bin, qemu-kvm Package Support required
  410. #12901: GStreamer doesn't build on 2020-05 rc1 with GObject..
  411. #12906: qt PrefixPath is wrong on 2020.05-rc1
  412. #12921: nodejs-12.16.1: error: overriding 'virtual icu_65::..
  413. 2020.05-rc1, released May 7th 2020
  414. Addition of support for gobject-introspection: both the
  415. gobject-introspection package itself, but also introspection
  416. support was enabled in a number of other packages.
  417. Support for Qt 5.6 was dropped as its support was dropped
  418. upstream, only one version of Qt is supported at the moment:
  419. Qt 5.14.2.
  420. Addition of support for the apparmor Linux security module, by
  421. adding the necessary user-space packages.
  422. Addition of a qmake package infrastructure, now used by most
  423. Qt-related packages.
  424. The Luarocks package infrastructure has been extended to
  425. support build host packages.
  426. The package infrastructure was improved to allow each package
  427. to indicate the Linux kernel configuration options it needs.
  428. Addition of support for generating filesystem images using the
  429. EROFS filesystem.
  430. The logic that calculates the list of files installed by each
  431. package was reworked to be compatible with the top-level
  432. parallel build functionality.
  433. Addition of a package for a pre-compiled ARM32 bare-metal
  434. toolchain, which can be used to build ARM32 code in ARM64
  435. configurations, such as firmware/bootloader code.
  436. The Qemu defconfigs are now boot-tested in Qemu as part of the
  437. Gitlab continuous integration.
  438. Toolchain: gcc 9.x bumped to 9.3.0, gcc 8.x bumped to 8.4.0,
  439. gdb bumped to 8.3.1.
  440. New packages: apcupsd, apparmor, arm-gnu-a-toolchain, bearssl,
  441. belle-sip, belr, cage, chartjs, erofs-utils, exfatprogs,
  442. gobject-introspection, ibm-sw-tpm2, imx-seco, jbig2dec,
  443. libapparmor, libiberty, libfuse3, libtextstyle, libudfread,
  444. libuhttpd, libuwsc, lua-lyaml, matio, mbuffer, netdata,
  445. openfpgaloader, perl-i18n, perl-locale-maketext-lexicon,
  446. perl-lwp-protocol-https,
  447. perl-mojolicious-plugin-authorization,
  448. perl-mojolicious-plugin-cspheader,
  449. perl-mojolicious-plugin-i18n,
  450. perl-mojolicious-plugin-securityheader, perl-mozilla-ca,
  451. perl-path-class, pistache, pkcs11-helper, prelink-cross,
  452. python-argon2-cffi, python-canopen, python-cbor2,
  453. python-filelock, python-flatbuffers, python-greenlet,
  454. python-modbus-tk, python-pyalsa, python-pysftp, python-regex,
  455. python-snappy, rtty, tinyproxy, udev-gentoo-scripts, unbound,
  456. vuejs, wlroots.
  457. New defconfigs: freescale_imx6ullevk, freescale_imx8qmmek,
  458. nanopi_neo4, nanopi_r1, nitrogen8mm, nitrogen8mn, olpc_xo1,
  459. olpc_xo175, roc_rk3399_pc, stm32mp157a_dk1, zynq_qmtech
  460. Issues resolved (http://bugs.uclibc.org):
  461. #10386: Add an option to put all compiled executables that
  462. show up on target/ in staging/ as well
  463. #11866: iniramfs file system fails to boot using Grub on EFI x86_64
  464. #12666: Doesn't pick up a custom bash profile
  465. #12696: Uboot 2020.01 Problem loading Linux kernel on Nano PI NEO
  466. #12701: [patch] wpa_supplicant must depend on openssl
  467. #12711: host-localedef 2.30-20 fails to compile on fedora 32 (gcc 10.0.1)
  468. #12716: bio.h not found
  469. #12726: systemctl preset-all failed for ctrl-alt-del.target
  470. #12731: rtl8188eu not buildung for banana pi M1 (glib, systemd, 4.18.12)
  471. #12746: "sysdig" package description points to
  472. http://sysdig.org, which bounces to malware site
  473. #12751: OpenJdk package installation issues on target
  474. #12796: Update OpenSSL to Version 1.1.1g to patch CVE-2020-1967
  475. #12811: bootstrap stuck and no login prompt
  476. 2020.02.7, released October 12th, 2020
  477. Important / security related fixes.
  478. meson: Correct SDK cross-compilation.conf file when
  479. per-package builds were used to build SDK.
  480. systemd: Use /run rather than /var/run for PID files in units.
  481. Toolchain: use Secure-PLT rather than BSS-PLT for PowerPC 32.
  482. support/script/pycompile: Rework logic to ensure .pyc files
  483. contain absolute target paths, fixing code inspection at
  484. runtime when executed with cwd != '/'.
  485. support/scripts/setlocalversion: Correct Mercurial output to
  486. match behaviour with Git.
  487. support/scripts/apply-patches.sh: Use patch
  488. --no-backup-if-mismatch, so we no longer blindly have to
  489. remove *.orig files after patching, fixing issues with
  490. packages containing such files.
  491. Updated/fixed packages: bandwidthd, barebox, bash, bison,
  492. brotli, cifs-utils, cryptsetup, dhcpcd, dhcpdump, docker-cli,
  493. docker-engine, ecryptfs-utils, efl, fail2ban, freetype, gcc,
  494. gdb, ghostscript, gnutls, go, gst1-plugins-base,
  495. gst1-plugins-ugly, ipmitool, libhtp, libraw, libssh, libxml2,
  496. libxml-parser-perl, localedef, lua, memcached, mesa3d, meson,
  497. minidlna, nginx, nodejs, nss-pam-ldapd, openvmtools, php,
  498. postgresql, python, python-aenum, python-autobahn,
  499. python-engineio, python-fire, python-pymodbus, python-scapy,
  500. python-semver, python-sentry-sdk, python-socketio,
  501. python-texttable, python-tinyrpc, python-txtorcon, python3,
  502. qt5base, runc, samba4, strace, supertux, suricata, systemd,
  503. vlc, wayland-protocols, wireguard-linux-compat, wireshark,
  504. xserver_xorg-server, zeromq, zstd
  505. Issues resolved (http://bugs.uclibc.org):
  506. #12911: usb_modeswitch installation race condition
  507. #13251: cryptsetup does not work on branch 2020.02 following..
  508. 2020.02.6, released September 5th, 2020
  509. Important / security related fixes.
  510. Fix a 2020.02.5 build regression in busybox when systemd (and
  511. not less) are enabled because of missing infrastructure.
  512. Updated/fixed packages: alsa-utils, avahi, busybox, cups,
  513. docker-cli, graphite2, imagemagick, libeXosip2, mbedtls,
  514. nvidia-driver, paho-mqtt-c, python-django, systemd, uclibc,
  515. usb_modeswitch, wolfssl
  516. Issues resolved (http://bugs.uclibc.org):
  517. #12911: usb_modeswitch installation race condition
  518. 2020.02.5, released August 29th, 2020
  519. Important / security related fixes.
  520. Infrastructure: Ensure RPATH entries that may be needed for
  521. dlopen() are not dropped by patchelf.
  522. BR_VERSION_FULL/setlocalversion (used by make print-version
  523. and /etc/os-release): Properly handle local git tags
  524. Updated/fixed packages: apache, at91bootstrap3, bind, boost,
  525. busybox, capnproto, chrony, collectd, cpio, cryptsetup, cups,
  526. cvs, dbus, docker-engine, domoticz, dovecot,
  527. dovecot-pigeonhole, dropbear, efl, elixir, f2fs-tools, ffmpeg,
  528. gd, gdk-pixbuf, ghostscript, glibc, grub2, gst1-plugins-bad,
  529. hostapd, iputils, jasper, json-c, libcurl, libwebsockets,
  530. linux, live555, mesa3d, mosquitto, mpv, nodejs, opencv,
  531. opencv3, openjpeg, patchelf, perl, php, postgresql,
  532. python-django, python-gunicorn, python-matplotlib, ripgrep,
  533. rtl8188eu, rtl8821au, ruby, shadowsocks-libev, squid,
  534. tpm2-abrmd, tpm2-tools, trousers, uacme, webkitgtk, wireshark,
  535. wolfssl, wpa_supplicant, wpewebkit, xen, xlib_libX11,
  536. xserver_xorg-server
  537. Issues resolved (http://bugs.uclibc.org):
  538. #12876: nodejs fails to build when host-icu has been built before
  539. #13111: python-gunicorn: missing dependency on python-setuptools
  540. #13121: wpa_supplicant fails to build without libopenssl enabled
  541. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  542. #13156: package live555 new license
  543. 2020.02.4, released July 26th, 2020
  544. Important / security related fixes.
  545. Toolchain:
  546. - Make external toolchain version check also work for
  547. toolchains configured with --with-gcc-major-version-only
  548. - Do not handle SOURCE_DATE_EPOCH in toolchain wrapper if the
  549. compiler supports it, fixing an issue with precompiled
  550. headers
  551. - Ensure debug libs from external toolchains are not installed
  552. into target if debugging is disabled
  553. Download:
  554. - Correct reproducibility issue in handling of git submodules
  555. for older git versions.
  556. - Fix file locking over NFS
  557. fs: Ensure cpio archive element order is reproducible
  558. Br2-external: Fix error reporting for invalid br2-external trees
  559. Per-package:
  560. - Fix an issue with python3 sysconfig data not getting
  561. correctly expanded
  562. - Fix per-package building for packages using the qmake
  563. infrastructure
  564. Updated/fixed packages: a10disp, asterisk, bind, cdrkit,
  565. checkpolicy, clamav, dbus, docker-cli, docker-engine,
  566. dvb-apps, e2fsprogs, exim, exiv2, freerdp, gnutls, go, grub2,
  567. gssdp, gst1-plugins-good, gst1-plugins-ugly, gupnp,
  568. intel-microcode, iproute2, irrlicht, iwd, jq, kodi, libcamera,
  569. libconfuse, libcurl, libglib2, libhttpserver, libmicrohttpd,
  570. libopenssl, libvncserver, libxml2, libxmlrpc, lxc, mbedtls,
  571. mesa3d, meson, mongodb, mtools, mutt, nghttp2, ngircd, nodejs,
  572. ntp, open-plc-utils, open2300, openjdk-bin, openssh,
  573. oracle-mysql, paho-mqtt-c, pcre, php, poco, prosody, putty,
  574. python-twisted, python-urllib3, python-validators, python3,
  575. qt5xmlpatterns, redis, rpi-firmware, rtl8821au, samba4, sdl2,
  576. sqlite, squid, syslog-ng, systemd, tcpreplay, tinydtls,
  577. upmpdcli, upx, vlc, webkitgtk, wireguard-linux-compat,
  578. wireshark, wpebackend-fdo, wpewebkit, zstd
  579. Issues resolved (http://bugs.uclibc.org):
  580. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_..
  581. #12946: Grub: Decompressor is too big.
  582. #12986: Mtools: Error converting to codepage 850
  583. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  584. #13011: Incorrect selection of gcc version
  585. #13026: rpi-firmware: must not rename start files
  586. #13031: nodejs: RangeError at new ArrayBuffer()
  587. #13046: Optimize for fast -Ofast is not compliant
  588. 2020.02.3, released June 3rd, 2020
  589. Important / security related fixes.
  590. Fix various build issues of host packages on hosts using GCC
  591. 10.
  592. Updated/fixed packages: arm-trusted-firmware, audit, bind,
  593. binutils, bison, clamav, crda, dovecot, dtc, efl, elf2flt,
  594. erlang, fakeroot, ffmpeg, fmc, fmlib, freerdp, gcc, git,
  595. glib-networking, gnupg, leveldb, libexif, libssh2,
  596. libusb-compat, linux-headers, lrzip, ltrace, mariadb, mesa3d,
  597. mp4v2, openldap, openocd, perl, php, prosody,
  598. python-pycryptodomex, python-pyqt5, qemu, rpi-firmware, rustc,
  599. speexdsp, sysrepo, systemd, tremor, vboot-utils, wireshark,
  600. xen
  601. Removed packages: python-pycrypto
  602. Issues resolved (http://bugs.uclibc.org):
  603. #12361: Init system (systemd) kills login on Raspberry Pi Zero
  604. #12656: bison fails to relocate with relocate-sdk.sh
  605. #12671: leveldb won't detect that snappy is present (static..
  606. #12691: host-rust build fails
  607. #12831: RPI-firmware package: DTB-overlay dependency
  608. 2020.02.2, released May 12th, 2020
  609. Important / security related fixes.
  610. Musl: Disallow on PPC64 cores without AltiVec support
  611. (E.G. e5500).
  612. fs/cpio: Correctly handle booting with 'console='
  613. release: Ensure temporary .br2-external.* files are not
  614. included in the release tarball
  615. Defconfigs: Fix various mistyped config options, or config
  616. options where the dependencies were no longer met.
  617. Updated/fixed packages: apache, azure-iot-sdk-c, binutils,
  618. boinc, c-ares, cvs, docker-cli, docker-containerd,
  619. docker-engine, domoticz, e2fsprogs, efl, evtest, exim, ffmpeg,
  620. freerdp, gcc, gflags, glibc, gnuconfig, haproxy, imx-gpu-2d,
  621. irrlicht, jpeg kodi-pvr-vuplus, libarchive, libcoap,
  622. libfpm-extra, libglib2, libhtp, libid3tag, libinput, libmad,
  623. libopenssl, libsepol, libssh, libv4l, libvncserver, libwpe,
  624. localedef, mariadb, matchbox, mbedtls, mc, mesa3d-headers,
  625. meson, midori, msgpack, netsnmp, nginx, ogre, openjdk,
  626. openldap, openvpn, p7zip, paho-mqtt-c, php, polkit, python,
  627. python-attrs, python-crossbar, python-dpkt, python-flask,
  628. python-future, python-iptables, python-jedi, python-markdown2,
  629. python3, qemu, qpdf, qt5, samba4, squashfs, squid, strongswan,
  630. suricata, tzdata, util-linux, vlc, wget, webkitgtk,
  631. wireguard-linux-compat, wireshark, wpebackend-fdo, wpewebkit,
  632. zic
  633. Issues resolved (http://bugs.uclibc.org):
  634. #11866: initramfs file system fails to boot using Grub on EFI x86_64
  635. #12271: python-iptables runtime dependencies
  636. #12726: systemctl preset-all failed for ctrl-alt-del.target
  637. #12751: OpenJdk package installation issues on target
  638. #12796: Update OpenSSL to Version 1.1.1g to patch CVE-2020-1967
  639. #12811: bootstrap stuck and no login prompt
  640. #12841: util-linux/sfdisk 2.35.1 fails on sector-size header
  641. 2020.02.1, released April 10th, 2020
  642. Important / security related fixes.
  643. core: Also fixup /lib references in libtool .la files, similar
  644. to how it is done for /usr/*.
  645. Various fixes for builds with per-package target/host
  646. directories.
  647. toolchain: Fix kernel headers validation check for external
  648. toolchains. Fix make 4.3+ compatibility in external toolchain
  649. logic.
  650. fs/initramfs: fix show-info so it also shows the usual
  651. rootfs-related variables.
  652. Updated/fixed packages: arm-trusted-firmware, barebox-aux,
  653. bluez5_utils, bubblewrap, busybox, civetweb, cog, collectd,
  654. ffmpeg, gcc, gnutls, gssdp, gvfs, haproxy, hiredis, hostapd,
  655. kmscube, kodi-screensaver-rsxs, libical, libinput, libexif,
  656. libopenssl, libsndfile, linux, linux-tools, llvm, localedef,
  657. mcrypt, mesa3d, meson, monit, nftables, ntp, opencv3,
  658. oprofile, php, pinentry, polkit, pure-ftpd, python-pyyaml,
  659. qt5, quagga, radvd, rcw, redis, rocksdb, samba4, screen,
  660. sdbusplus, swupdate, sysdig, sysklogd, syslinux, syslog-ng,
  661. tor, tslib, uacme, util-linux, vala, vlc,
  662. wireguard-linux-compat, wireguard-tools, wireshark,
  663. wpa_supplicant, xserver_xorg-server
  664. Issues resolved (http://bugs.uclibc.org):
  665. #12711: host-localedef 2.30-20 fails to compile on fedora 32
  666. #12746: "sysdig" package description points to http://sysdig.org, ..
  667. 2020.02, released March 8th, 2020
  668. Various fixes.
  669. br2-external: Fix compatibility with make 4.3+
  670. Updated/fixed packages: bash, bcm2835, binutils, cups,
  671. erlang-p1-acme, fbgrab, gr-osmosdr, gst1-plugins-base,
  672. gst1-validate, gstreamer1, guile, jhead, libdrm, libevdev,
  673. libinput, libnss, libsndfile, libvncserver, linux-firmware,
  674. mesa3d, nodejs, openjdk-bin, openvmtools, optee-test, patch,
  675. php, piglit, pppd, python-django, qemu, qt5base, ruby,
  676. ser2net, swupdate, thrift, zziplib
  677. Removed packages: classpath, jamvm
  678. Issues resolved (http://bugs.uclibc.org):
  679. #12606: fbgrab location has changed
  680. 2020.02-rc3, released March 2nd, 2020
  681. Fixes all over the tree.
  682. Infrastructure: Rework file list handling to fix race
  683. conditions when building with per-package target and host
  684. directories and top-level parallel builds.
  685. Updated/fixed packages: aufs, binutils, blktrace, brltty,
  686. cairo, dnsmasq, docker-compose, elf2flt, exim, exiv2, git,
  687. kodi-inputstream-adaptive, libarchive, libcgroup, libgdiplus,
  688. libssh2, libvncserver, libvorbis, linknx, linux-firmware, lxc,
  689. lz4, mosquitto, openjpeg, openrc, poco, proftpd, pure-ftpd,
  690. python3, python-multidict, python-setuptools-scm-git-archive,
  691. qpdf, qt5tools, rdesktop, rocksdb, shellinabox, squid,
  692. suricata, swig, systemd, taglib, util-linux, wireshark, zsh
  693. Issues resolved (http://bugs.uclibc.org):
  694. #12571: ltp-testsuite : Build failure
  695. #12576: 2020.02-RC1: error while loading shared libraries: ...
  696. #12581: 2020.02-rc1 glibc failing to build on fedora 31
  697. 2020.02-rc2, released February 26th, 2020
  698. Fixes all over the tree.
  699. Toolchain: Ensure strong SSP can only be enabled if the
  700. (external) toolchain supports it.
  701. Fix a race condition related to creating the output/staging
  702. symlink on systems with coreutils < 8.27.
  703. Drop support for the (end of life) Qt 5.6 variant.
  704. Updated/fixed packages: at, armadillo, audiofile, bash,
  705. busybox, erlang, fail2ban, fluidsynth, ipsec-tools, jpeg-turbo,
  706. kvm-unit-tests, libftdi1, libinput, libsvgtiny, libtomcrypt,
  707. libupnpp, libxml2, linux-tools, luv, mbedtls, mesa3d, minicom,
  708. openvmtools, php, qt5, qt5webengine, qwt, radvd, rcw,
  709. sdbusplus, systemd, tpm2-tss, vorbis-tools
  710. Issues resolved (http://bugs.uclibc.org):
  711. #12581: 2020.02-rc1 glibc failing to build on fedora 31
  712. 2020.02-rc1, released February 18th, 2020
  713. Fixes all over the tree and new features.
  714. Add experimental support for building with a per-package
  715. target and host directory. This still has some rough edges,
  716. but brings a number of advantages:
  717. - Packages will only be able to access the explicitly listed
  718. dependencies and not any other packages that happen to be
  719. built before, ensuring correct dependency information in
  720. Buildroot.
  721. - Possibility for top-level parallel builds, speeding up
  722. builds on multicore machines.
  723. Core: Ensure package-file-lists data is correct after
  724. incremental builds as well.
  725. Architecture: Add support for ARC-HS38 with 64bit multiplier
  726. variant, allow building glibc for big endian ARC, handle 16KB
  727. MMU page size for ARC in toolchain wrapper.
  728. Toolchain: Add binutils 2.33.1, GCC 7.5.0, Arm 9.2-2019.12
  729. toolchains, ARC 2019.09 toolchain. Allow using custom kernel
  730. headers newer than what is known by Buildroot.
  731. pkg-stats: Support for CVE vulnerability reporting by
  732. comparing to NVD database.
  733. Reproducible builds: The go -trimpath option is now used to
  734. get rid of absolute build paths, __FILE__ and __BASE_FILE__
  735. defines are now handled in the toolchain wrapper.
  736. Systemd: Build host variant and use systemctl to automatically
  737. enable unit files rather than manually managing symlinks.
  738. Util-linux: Ensure that hwclock is built without GPLv3
  739. code. Notice that builds with hwclock has contained
  740. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  741. New defconfigs: Beelink GS1, Raspberrypi4 64bit
  742. New packages: alura, avro-c, bubblewrap, cctz, cereal,
  743. cpuburn-arm, elixir, erlang-base64url, erlang-idna,
  744. erlang-jose, erlang-p1-acme, erlang-p1-mqtree,
  745. erlang-p1-yconf, fluid-soundfont, fluidsynth, gcnano-binaries,
  746. gensio, glslsandbox-player, libargon2, libmodsecurity,
  747. libpam-nfc, libtelnet, lua-codegen, lua-livr, lua-livr-extra,
  748. lua-rotas, lua-silva, mfoc, network-manager-openvpn,
  749. nginx-modsecurity, perl-crypt-openssl-aes,
  750. perl-math-prime-util, pipewire, ptm2human, python-aenum,
  751. python-aiohttp-debugtoolbar, python-aiohttp-mako,
  752. python-aiologstash, python-aiosignal, python-aiozipkin,
  753. python-async-lru, python-avro, python-bunch, python-crontab,
  754. python-dnspython, python-entrypoints, python-esptool,
  755. python-frozenlist, python-future, python-gitdb, python-janus,
  756. python-lockfile, python-logstash, python-nested-dict,
  757. python-pbr, python-pyaes, python-pydantic, python-smmap2,
  758. python-sockjs, python-zc-lockfile, raspi-gpio, rocksdb,
  759. sdbusplus, spidermonkey, thermald, ti-sgx-libgbm, tinyssh,
  760. tio, umtprd, weston-imx, wireguard-linux-compat,
  761. wireguard-tools, xdg-dbus-proxy
  762. Removed packages: bluez_utils, celt051, erlang-p1-iconv, fis,
  763. gadgetfs-test, libplayer, gstreamer, gst-ffmpeg,
  764. gst-fsl-plugins, gst-omapfb, gst-plugins-bad,
  765. gst-plugins-base, gst-plugins-good, gst-plugins-ugly,
  766. perl-digest-md5, perl-mime-base64, perl-net-ping,
  767. python-scapy3k, wireguard
  768. Issues resolved (http://bugs.uclibc.org):
  769. #11906: the new version of mesa3d cannot support etnaviv when..
  770. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  771. #12121: PyQt5.QtSerialPort and other modules not being built
  772. #12256: package tar is outdated (1.29 is 3 years old
  773. #12286: Can't import gobject in python 3.8
  774. #12376: python-scapy3k is deprecated
  775. #12386: carriage return issue when "make menuconfig"
  776. #12441: qt5webengine build error: asm/errno.h: No such file or..
  777. #12446: Buildroot fails to finish installing packages
  778. #12456: qtvirtualkeyboard: No such file or directory
  779. #12461: libglib2 build files with deep directory structure
  780. #12481: minicom fails when output directory path contains "m4"
  781. #12501: libnss-3.49.1: ld error: multiple definition of `gcm_..
  782. #12526: host-nodejs 12.14.1: configure fail: AttributeError: ..
  783. #12536: Linux-Headers extracting failure
  784. #12546: Ninja 1.10 build Error
  785. 2019.11.3, released April 10th, 2020
  786. Important / security related fixes.
  787. core: Fix compatibility with make 4.3+. Also fixup /lib
  788. references in libtool .la files, similar to how it is done for
  789. /usr/*.
  790. toolchain: Fix kernel headers validation check for external
  791. toolchains.
  792. fs/initramfs: fix show-info so it also shows the usual
  793. rootfs-related variables.
  794. Updated/fixed packages: barebox-aux, bluez5_utils, busybox,
  795. civetweb, cog, collectd, ffmpeg, gcc, gnutls, gssdp, gvfs, haproxy,
  796. hiredis, hostapd, kmscube, libical, libopenssl, libsndfile,
  797. linux-tools, llvm, monit, ntp, php, pure-ftpd, radvd, redis,
  798. samba4, screen, sysdig, syslinux, syslog-ng, tor, uacme,
  799. util-linux, vala, vlc, wpa_supplicant, xserver_xorg-server
  800. Issues resolved (http://bugs.uclibc.org):
  801. #12746: "sysdig" package description points to http://sysdig.org, ..
  802. 2019.11.2, released March 16th, 2020
  803. Important / security related fixes.
  804. Core: Ensure package-file-lists data is correct after
  805. incremental builds as well.
  806. Fix a race condition related to creating the output/staging
  807. symlink on systems with coreutils < 8.27.
  808. Toolchain: ARC tools bumped to arc-2019.09.
  809. Br2-external: Fix patch handling when external linux-extension
  810. packages are used. Fix compatibility with make 4.3+
  811. Util-linux: Ensure that hwclock is built without GPLv3
  812. code. Notice that builds with hwclock has contained
  813. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  814. Updated/fixed packages: armadillo, at, bcm2835, binutils,
  815. blktrace, bluez-alsa, bootstrap, brltty, busybox, cairo,
  816. clamav, cog, cups, czmq, dnsmasq, docker-containerd, dovecot,
  817. dovecot-pigeonhole, e2fsprogs, elf2flt, eudev, exim, exiv2,
  818. fbgrab, gettext-tiny, glibc, go, grep, gst1-validate, guile,
  819. imagemagick, jhead, jpeg-turbo, kvm-unit-tests, lapack,
  820. libarchive, libcgroup, libdrm, libevent, libexif, libftdi1,
  821. libgdiplus, libjpeg, libsigrok, libsndfile, libssh2,
  822. libsvgtiny, libvncserver, libvorbis, libxml2, libxslt, linknx,
  823. lxc, lz4, mariadb, mbedtls, meson, mongoose, mosquitto, musl,
  824. ncurses, nodejs, ntfs-3g, ogre, opencv3, openjdk, openjpeg,
  825. openrc, openswan, openvmtools, optee-test, patch, php, piglet,
  826. postgresql, pppd, proftpd, pure-ftpd, python-django,
  827. python-pyqt5, python-setuptools-scm-git-archive, python3,
  828. qemu, qt5base, qt5tools, qt5virtualkeyboard, qt5webengine,
  829. qwt, rdesktop, ruby, runc, samba4, shellinabox,
  830. skeleton-init-openrc, smartmontools, spdlog, sqlcipher, squid,
  831. suricata, swig, swupdate, sysklogd, taglib, thrift,
  832. ti-cgt-pru, uclibc, util-linux, vorbis-tools, webkitgtk,
  833. wireshark, wpebackend-fdo, wpewebkit, xen,
  834. xserver_xorg-server, zeromq, zsh, zziplib
  835. Issues resolved (http://bugs.uclibc.org):
  836. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  837. #12331: meson issue
  838. #12456: qtvirtualkeyboard: No such file or directory
  839. #12461: libglib2 build files with deep directory structure
  840. #12481: minicom fails when output directory path contains "m4"
  841. #12606: fbgrab location has changed
  842. 2019.11.1, released January 12th, 2020
  843. Important / security related fixes.
  844. Infrastructure: kconfig: Fix reconfigure logic, python: Ensure
  845. correct compiler and linker flags are used for compiled code
  846. utils/scanpypi: Remind users to update DEVELOPERS
  847. Defconfigs: imx6-sabresd: Fix the Qt5 display names,
  848. imx8: Drop extra copy of U-Boot DTB
  849. Updated/fixed packages: acsccid, bitcoin, boost, busybox,
  850. cc-tool, cmocka, cpio, cups, dante, dialog, dillo, docker-cli,
  851. docker-containerd, docker-engine, easy-rsa, ebtables,
  852. ecryptfs-utils, efl, ffmpeg, gdb, git, glibc, gnupg2, go,
  853. gpsd, grpc, gst1-plugins-bad, iputils, jasper,
  854. kf5-kcoreaddons, leveldb, libarchive, libfribi, libgit2,
  855. libkrb5, libp11, librsvg, libssh, libtomcrypt, libuio, libv4l,
  856. lirc-tools, log4cplus, lrzip, lvm2, mali-t76x,
  857. matchbox-desktop, mender-grubenv, mmc-utils, mosquitto,
  858. nodejs, ntp, openipmi, opencv3, openpowerlink, openrc, pango,
  859. perl-sys-cpu, pimd, postgresql, pulseaudio, python-brotli,
  860. python-coherence, python-crc16, python-django, python-dpkt,
  861. python-gobject, python-pyasn-modules, python-pypcap,
  862. python-pyqt5, python-subprocess32, python3, qpdf,
  863. qt-webkit-kiosk, qt5virtualkeyboard, qt5webengine, quota,
  864. rabbitmq-c, rauc, rpcbind, rtl8821au, runc, rygel, samba4,
  865. sdl2, setserial, snort, spidev_test,
  866. sunxi-mali-mainline-driver, syslog-ng, sysrepo, tcllib, tftpd,
  867. usbmount, w_scan, wavpack, wsapi, wsapi-fcgi, wsapi-xavante,
  868. x265, xserver_xorg-server, ytree, zip
  869. Issues resolved (http://bugs.uclibc.org):
  870. #12121: PyQt5.QtSerialPort and other modules not being built
  871. #12286: Can't import gobject in python 3.8
  872. 2019.11, released December 1st, 2019
  873. Various fixes.
  874. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  875. <pkg>_DL_OPTS by default, just like it is done for a number of
  876. other package variables.
  877. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  878. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  879. the (rare) case where the .py files are needed at runtime
  880. rather than .pyc.
  881. Updated/fixed packages: am33x-cm3, bind, collectd, go, gob2,
  882. gst1-plugins-bad, haproxy, jasper, jpeg-turbo, libdrm,
  883. libftdi, libftdi1, libnss, libselinux, libstrophe, lzma,
  884. minicom, network-manager, nodejs, oniguruma, opencv3,
  885. openvmtools, perl-gdgraph, perl-gdtextutil, prosody,
  886. python-cchardet, systemd, tiff, wolfssl,
  887. Issues resolved (http://bugs.uclibc.org):
  888. #11416: check-uniq-files staging issue
  889. #12146: Oprofile runtime issue
  890. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  891. #12171: Python-opencv needs config.py and config-3.7.py to run..
  892. #12196: duma package
  893. #12211: host-nodejs 10.15.3 package fail to build
  894. #12316: tzdata fails to install with empty "default local time"
  895. #12326: network-manager build fails with missing glib error
  896. #12366: Gstreamer1 gst1-plugins-bad do not compile with RPI-Userland
  897. 2019.11-rc3, released November 24th, 2019
  898. Fixes all over the tree.
  899. Updated/fixed packages: asterisk, clamav, domoticz, faifa,
  900. gerbera, kmod, kvm-unit-tests, libupnp18, linux-serial-test,
  901. lsof, ltp-testsuite, lxc, mesa3d, mesa3d-headers, perl, php,
  902. postgresql, qemu, rauc, redis, rpcbind, spice, spice-protocol,
  903. systemd, tftpd, waylandpp, webkitgtk, zip
  904. 2019.11-rc2, released November 16th, 2019
  905. Fixes all over the tree.
  906. Toolchain: ARC tools bumped to arc-2019.09-rc1, ensure
  907. external toolchain kernel headers version check correctly stop
  908. the build on mismatch
  909. Meson: Fix generation of global cross-compilation.conf
  910. Download: Also use the package download method for extra
  911. downloads from the same site, so it does not get confused by
  912. URLs containing '+'
  913. Defconfigs: Fix boot issue for beaglebone
  914. Updated/fixed packages: bird, chrony, connman, dhcp, domoticz,
  915. dropwatch, dtc, elf2flt, gettext-tiny, glog, intel-microcode,
  916. ipsec-tools, jailhouse, kodi, libfribi, libmbim, libressl,
  917. libsigrokdecode, libsvgtiny, linux-serial-test, ltp-testsuite,
  918. lvm2, lxc, mariadb, mesa3d, minizip, ndisc6, neardal, ninja,
  919. ofono, openvmtools, oracle-mysql, qt5wayland, safeclib, socat,
  920. sudo, systemd, wpewebkit, xserver_xorg-server
  921. 2019.11-rc1, released November 5th, 2019
  922. Fixes all over the tree and new features.
  923. Dependencies: Gcc/g++ 4.8 or newer is now required on the
  924. build host.
  925. Ensure host has JSON::PP perl module installed if
  926. webkitgtk/wpewebkit packages are enabled as it is needed
  927. during their build process.
  928. Toolchain: Add support for the D programming language (GCC
  929. 9.x, Glibc).
  930. GCC 9.x updated to 9.2.0, Glibc updated to 2.30, Musl updated
  931. to 1.1.24, uClibc-ng updated to 1.0.32, ARC toolchain updated
  932. to arc-2019.09-eng002.
  933. Musl: Add a patch to add support for
  934. sched_{get,set}scheduler() and sched_{get,set}param() for
  935. compatibility.
  936. Generate check-headers program under BUILD_DIR rather than
  937. /tmp to fix issues with distributions mounting /tmp noexec.
  938. Also copy libssp.so for external toolchains if SSP
  939. to handle toolchains providing SSP support in libssp rather
  940. than in the C library
  941. New defconfigs: Beaglebone AI, FriendlyARM Nanopi NEO Plus2,
  942. Libre Computer "La Frite", QEMU Armv7-A with trustzone/OP-TEE,
  943. STM32MP157 Discovery Kit
  944. Arch: RISC-V: Default to a sensible floating point ABI based
  945. on the selected ISA extensions rather than always defaulting
  946. to ILP32/64
  947. Graph-size: Package sizes are now shown in human readable form
  948. (Kib/Mib/Gib) rather than always in Kib. Binary (KB/MB/GB)
  949. format can be selected using the --binary option. The cut-off
  950. limit for classifying packages as "other" is now configurable
  951. using the --size-limit option.
  952. Br2-external: Linux kernel extensions can now also be provided
  953. in an external tree by adding packages under
  954. linux/linux-ext-*.mk. See the manual for details.
  955. Fakeroot now works correctly under Microsoft Windows 10
  956. Services for Linux, which does not provide SYSV IPC support
  957. The check-uniq-files logic which would complain if multiple
  958. packages would touch the same files has been removed as it
  959. causes issues in certain situations (when packages are
  960. rebuilt) and the issue is no longer considered a problem for
  961. toplevel parallel builds as those will use a per-package
  962. staging/target directory.
  963. With this removed, Python is no longer required for a basic
  964. build (only for optional scripts).
  965. support/scripts/genimage.sh will no longer make a copy of
  966. TARGET_DIR, speeding up post-build/image scripts.
  967. The runtime test logic now uses Python 3.x.
  968. A 'v' prefix has been dropped from the <pkg>_SOURCE variable
  969. for a number of packages to match the version numbers used by
  970. https://release-monitoring.org
  971. New packages: caps, collectl, dav1d, fstrcmp, ima-evm-utils,
  972. jitterentropy-library, kodi-vfs-rar, kodi-vfs-sftp, libavl,
  973. libhttpserver, libmspack, libnetconf2, libolm, libyang,
  974. linux-serial-test, lrzip, mdevd, minimodem, musl-fts, netifrc,
  975. ogre, openlayers, python-aioredis, python-asgiref,
  976. python-backports-functools-lru-cache, python-bluezero,
  977. python-brotli, python-channels, python-channels-redis,
  978. python-colorlog, python-daphne, python-django-enumfields,
  979. python-jaraco-functools, python-kiwisolver, python-msgfy,
  980. python-rpi-ws281x, python-setuptools-scm-git-archive,
  981. python-simplelogging, python-soupsieve, python-sqliteschema,
  982. python-sqlparse, python-tqdm, python-webencodings, qt5webview,
  983. restclient-cpp, ripgrep, snmpclitools, sunwait, sysrepo,
  984. uacme, utf8proc, uvw, ytree
  985. Removed packages: alljoyn, alljoyn-base, alljoyn-tcl-base,
  986. devmem2, eventlog, kodi-audiodecoder-opus,
  987. kodi-screensaver-planestate, kodi-visualisation-waveforhue,
  988. python-pysnmp-apps, riscv-pk, ustr
  989. Issues resolved (http://bugs.uclibc.org):
  990. #9881: systemd-resolved not setting resolv.conf link
  991. #10171: devmem2 w (word) is 8 bytes in x86 64 systems
  992. #10586: musl gcc has ifunc enabled when musl doesn't support it
  993. #10806: Allow nfs-utils to use ipv6
  994. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  995. #11411: check-uniq-files target issue
  996. #11766: Console (getty) issues with systemd
  997. #11781: mariadb build error
  998. #12031: Build of cups-filters fails while linking, apparently due..
  999. #12116: console prompt does not appear after login
  1000. #12141: eudev package is missing "render" and "kvm" groups
  1001. #12181: dropbear: norootlogin (-w) no longer works when PAM is enabled
  1002. #12186: Raspberry Pi Zero-W build fails on newer kernel versions
  1003. #12191: cmake BUILDDIR
  1004. #12241: Permission denied while running "make"
  1005. #12261: sudo versions prior to 1.8.28 are affected.
  1006. #12276: make clean/distclean does not remove BR2_DL_DIR and BR2_HOST_DIR
  1007. #12281: Custom configuration fails to build (based on raspberrypi3_..
  1008. 2019.08.3, released December 7th, 2019
  1009. Important / security related fixes.
  1010. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  1011. <pkg>_DL_OPTS by default, just like it is done for a number of
  1012. other package variables
  1013. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  1014. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  1015. the (rare) case where the .py files are needed at runtime
  1016. rather than .pyc.
  1017. Fix <pkg>-reconfigure handling for packages using the kconfig
  1018. infrastructure.
  1019. Toolchain: ensure external toolchain kernel headers version
  1020. check correctly stop the build on mismatch
  1021. Deconfigs: beaglebone: fix boot issue
  1022. Updated/fixed packages: am33x-cm3, asterisk, bind, chrony,
  1023. clamav, cmocka, collectd, connman, dhcp, dropwatch, faifa,
  1024. gettext-tiny, gob2, haproxy, intel-microcode, ipsec-tools,
  1025. jailhouse, jasper, jpeg-turbo, kodi, kvm-unit-tests, libftdi,
  1026. libftdi1, libnss, libressl, libstrophe, libsvgtiny, lvm2,
  1027. lzma, mariadb, minicom, mosquitto, neardal, ninja, nodejs,
  1028. oniguruma, openvmtools, oracle-mysql, perl-gdgraph,
  1029. perl-gdtextutil, php, postgresql, prosody, python-cchardet,
  1030. python-django, qt5wayland, rabbitmq, rauc, redis, rpcbind,
  1031. socat, spice, spice-protocol, tftpd, tiff, webkitgtk
  1032. New packages: libmspack
  1033. Issues resolved (http://bugs.uclibc.org):
  1034. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  1035. #12171: Python-opencv needs config.py and config-3.7.py to run..
  1036. #12211: host-nodejs 10.15.3 package fail to build
  1037. #12316: tzdata fails to install with empty "default local time"
  1038. 2019.08.2, released November 9th, 2019
  1039. Important / security related fixes.
  1040. Toolchain: Also copy libssp.so for external toolchains if SSP
  1041. to handle toolchains providing SSP support in libssp rather
  1042. than in the C library
  1043. Download: Also use the package download method for extra
  1044. downloads from the same site, so it does not get confused by
  1045. URLs containing '+'
  1046. Fakeroot now works correctly under Microsoft Windows 10
  1047. Services for Linux, which does not provide SYSV IPC support
  1048. utils/test-pkg: ensure to exit with an error upon failure
  1049. Updated/fixed packages: asterisk, azmq, binutils,
  1050. cups-filters, domoticz, dtc, duma, elf2flt, eudev, exfat,
  1051. exfat-utils, fakeroot, fdk-aac, file, freerdp, gcc, gd,
  1052. ghostscript, go, gpsd, grpc, gst1-plugins-base, gvfs, icu,
  1053. intel-microcode, kvm-unit-tests, libfribidi, libnspr, libnss,
  1054. libopenssl, libpcap, libpciaccess, librsvg, libseccomp,
  1055. libsigrok, libtorrent, libunwind, libva, linux-tools,
  1056. lua-sdl2, lxc, minizip, mjpegtools, mongoose, mono, nbd,
  1057. nfs-utils, php, piglit, python, python-autobahn,
  1058. python-pysnmp-apps, python-tornado, python3, qemu, qt5base,
  1059. ruby, safeclib, samba4, sdl_mixer, sox, sudo, suricata,
  1060. systemd, tcpdump, unscd, util-linux, vdr-plugin-vnsiserver,
  1061. vtun, wireshark, xvisor, yaffs2utils
  1062. Issues resolved (http://bugs.uclibc.org):
  1063. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  1064. #12261: sudo versions prior to 1.8.28 are affected
  1065. 2019.08.1, released October 3rd, 2019
  1066. Important / security related fixes.
  1067. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  1068. Use default console settings
  1069. Dependencies: Ensure host has JSON::PP perl module installed
  1070. if webkitgtk/wpewebkit packages are enabled as it is needed
  1071. during their build process.
  1072. Toolchain: Generate check-headers program under BUILD_DIR
  1073. rather than /tmp to fix issues with distributions mounting
  1074. /tmp noexec.
  1075. Updated/fixed packages: asterisk, augeas, axel, bind, bwm-ng,
  1076. cups, cups-filters, docker-cli, docker-engine, docker-proxy,
  1077. e2fsprogs, eudev, exim, expat, gcc, go, haveged, ifplugd, joe,
  1078. kf5-extra-cmake-modules, kf5-modemmanager-qt,
  1079. kf5-networkmanager-qt, libcamera, libcurl, libgcrypt,
  1080. libglib2, libgpg-error, libnspr, libnss, libopenssl,
  1081. logrotate, luksmeta, mariadb, mbedtls, mongodb, mosquitto,
  1082. ncurses, nfs-utils, nghttp2, nodejs, openvmtools, php,
  1083. protobuf, putty, qemu, samba4, snort, swupdate,
  1084. systemd-bootchart, thttpd, uclibc, unzip, util-linux,
  1085. wireshark
  1086. Issues resolved (http://bugs.uclibc.org):
  1087. #10806: Allow nfs-utils to use ipv6
  1088. #11781: mariadb build error
  1089. #12031: Build of cups-filters fails while linking, apparently due..
  1090. #12141: eudev package is missing "render" and "kvm" groups
  1091. #12241: Permission denied while running "make"
  1092. 2019.08, released September 1st, 2019
  1093. Various fixes.
  1094. Defconfigs: Removed nanopc t4, nanopi m4 and neo4, pine64
  1095. rockpro64 and raxda rock pi4 as they rely on a ARM32 toolchain
  1096. on the build host to build ATF. These defconfigs will be added
  1097. back once a package providing such toolchain is
  1098. available. Also dropped ts4800 defconfig as it does not build
  1099. with GCC >= 8.x.
  1100. Updated/fixed packages: libxcb, php, python-numpy, webkitgtk,
  1101. wpewebkit, xfont_font-util
  1102. Issues resolved (http://bugs.uclibc.org):
  1103. #12156: buildroot-2019.08-rc3 does not build for Pi Zero W
  1104. 2019.08-rc3, released August 28th, 2019
  1105. Fixes all over the tree.
  1106. Updated/fixed packages: clamav, dovecot, dovecot-pigeonhole,
  1107. gcc, intel-microcode, libmicrohttpd, libmodplug, mpg123,
  1108. nginx, openldap, python, qemu, samba4, squid, strace, vlc
  1109. Issues resolved (http://bugs.uclibc.org):
  1110. #11686: fbdev_drv.so: undefined symbol: shadowUpdatePackedWeak,..
  1111. 2019.08-rc2, released August 20th, 2019
  1112. Fixes all over the tree.
  1113. Compile fixes for a number of defconfigs.
  1114. Updated/fixed packages: apache, autofs, batctl, batman-adv,
  1115. bind, collectd, cwiid, dahdi-linux, dahdi-tools, daq,
  1116. dehydrated, dhcp, dtc, efl, enlightenment, evtest, giflib,
  1117. gnutls, go, gst-plugins-bad, gst-plugins-base,
  1118. gst1-plugins-bad, gst1-plugins-base, gst1-rtsp-server, gtkmm3,
  1119. gupnp, harfbuzz, imagemagick, lftp, libbsd, libcpprestsdk,
  1120. libdnet, libfm, libgit2, libgtk2, libgtk3, libpri, librsvg,
  1121. libss7, libssh2, libwpe, lua-cqueues, metacity, micropython,
  1122. mpd, mpg123, musl, mpv, openblas, openbox, opencv, pango,
  1123. pcmanfm, piglit, pigpio, pinentry, postgresql, qemu, qt5base,
  1124. qt5enginio, qt5multimedia, qt5serialbus, quagga, quazip,
  1125. rrdtool, rygel, samba4, stellarium, tcpreplay, ti-gfx, vte,
  1126. wampcc, wilink-bt-firmware, wireless-regdb, wpebackend-fdo,
  1127. xscreensaver
  1128. Removed packages: libamcodec, odroid-mali, odroid-scripts
  1129. Issues resolved (http://bugs.uclibc.org):
  1130. #9481: NetworkManager/Ping unable to resolve domains
  1131. #10566: php.mk is missing option --with-pgsql
  1132. #10861: Package batman_adv Makefile is missing include header direct..
  1133. #11641: linux kernel .config timestamp always out of date fixed with..
  1134. #11671: russian locale ru_RU:145: LC_TIME: syntax error
  1135. #11701: recuuring of usr and in bin shortcuts are created
  1136. #11741: pigpio does not build host-pigpio
  1137. #11876: automount using host mount/umount
  1138. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  1139. #11921: dahdi fails to build
  1140. #11936: libcpprestsdk should install to staging
  1141. #11946: wilink-bt-firmware: moved from github to http://git.ti.com/ti-bt
  1142. #11961: libpri build failure
  1143. #12086: dhcp shared libraries not installed to target
  1144. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  1145. #12106: daq: build fails if libdumbnet-dev is installed in the host
  1146. #12126: vc4 has neon as hard dependency
  1147. 2019.08-rc1, released August 9th, 2019
  1148. Fixes all over the tree and new features.
  1149. toolchain: ARC toolchain updated to 2019.03 (binutils 2.32.51
  1150. / GCC 8.3.1 / glibc 2.29), ARM AAarch64/ARM toolchains updated
  1151. to 2019.03. Add GCC 9.1.0, remove GCC 4.9 and 6.5, add GDB
  1152. 8.3, remove GDB 7.12 and 8.0.1, default to GDB 8.2, GCC
  1153. 8.3.0. Musl updated to 1.1.23, bringing support for RISC-V 64.
  1154. Architectures: Internal toolchain support for C-SKY, support
  1155. for ARC HS48 v3.1 and HS38 with Quad MAC & FPU, support for
  1156. ARM A76, A76/A55 big.LITTLE, emag, neoverse-N1, phecda and
  1157. tsv110.
  1158. Filesystems: Pass extra pax options to tar for binary
  1159. reproducibility. Build host-cpio for the --reproducible option
  1160. support when BR2_REPRODUCIBLE is enabled. Genimage updated to
  1161. version 11, bringing GPT support.
  1162. Br2-external: Add support for injecting additional options to
  1163. the list of preconfigured external toolchains and libjpeg and
  1164. openssl providers using files under provides/. See the manual
  1165. for details.
  1166. Ensure custom <pkg>_OVERRIDE_SRCDIR_RSYNC_EXCLUSIONS are
  1167. passed before the standard exclusions so they are not ignored
  1168. by rsync when using override-srcdir.
  1169. Gnuconfig updated to 2019-05-28, adding C-SKY support.
  1170. test-pkg: Correct long option handling and clean output dir
  1171. after a successful build to save disk space.
  1172. support/testing: Emulate a machine with 256MB RAM to fix
  1173. issues with certain tests running out of memory, use
  1174. virtio-rng to provide needed entrophy.
  1175. pkg-stats: support outputting in JSON format with --json for
  1176. easier post processing. The classic HTML output is still
  1177. available with --html. Parallelize access to
  1178. release-monitoring.org to speed up runtime.
  1179. Drop non-conventional version prefix/suffix/separators for
  1180. packages for better compatibility with release-monitoring.org
  1181. Packages:
  1182. Init systems: Add basic openrc support and
  1183. <pkg>_INSTALL_INIT_OPENRC variable in the infrastructure to
  1184. install openrc service scripts if enabled.
  1185. busybox: Build each applet as a separate binary when SELinux
  1186. is enabled for more finegrained policy control. Use daemon
  1187. mode for mdev rather than legacy hotplug.
  1188. linux: Workaround -Werror related build failure on powerpc,
  1189. by forcing CONFIG_PPC_DISABLE_WERROR on.
  1190. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  1191. partition is available before mounting.
  1192. New defconfigs: HiFive Unleashed, I.MX8MM EVK and Pico, Nanopi
  1193. m4 and neo4, Nanopc t4, Olimex A33 olinuxino, Pine64
  1194. Rockpro64, PowerPC mac99, QEMU C-SKY 610/807/810/860 virt,
  1195. Raspberry Pi 4, Raxda rock pi4, Solidrun Clearfog GT-8K
  1196. Removed defconfigs: Odroid C2
  1197. New packages: bitcoin, c-capnproto, fatcat, ifmetric, jack1,
  1198. jailhouse, libubootenv, luasyslog, mender-grubenv,
  1199. murata-cyw-fw, openrc, piglit, python-colorama, python-cycler,
  1200. python-hiredis, python-ifaddr, python-inflection,
  1201. python-iptables, python-matplotlib, python-periphery,
  1202. python-pycairo, python-redis, python-termcolor,
  1203. python-tinyrpc, python-txdbus, skeleton-init-openrc, spdlog,
  1204. sshguard, stellarium, zziplib
  1205. Removed packages: xapp_mkfontdir
  1206. Issues resolved (http://bugs.uclibc.org):
  1207. #11096: Upgrade from glibc 2.26 to 2.27 broke some locales...
  1208. #11271: utils/check-package fails with exception depending on..
  1209. #11991: [numpy] segfault when compiling for RPi3 64bits
  1210. #12016: Grub fails to boot bzImage after upgrade to 2019.05
  1211. #12046: Can’t login as root user after upgrading to buildroot..
  1212. #12051: package/dhcp installs libtool wrapper scripts on tar...
  1213. #12076: Patchelf can link against an incompatible libc++ ver...
  1214. 2019.05.3, Released October 3rd, 2019
  1215. Important / security related fixes.
  1216. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  1217. Use default console settings
  1218. Dependencies: Ensure host has JSON::PP perl module installed
  1219. if webkitgtk/wpewebkit packages are enabled as it is needed
  1220. during their build process.
  1221. Toolchain: Generate check-headers program under BUILD_DIR
  1222. rather than /tmp to fix issues with distributions mounting
  1223. /tmp noexec.
  1224. Updated/fixed packages: asterisk, augeas, bind, bwm-ng, cups,
  1225. cups-filters, docker-cli, docker-engine, docker-proxy,
  1226. e2fsprogs, eudev, exim, expat, gcc, go, haveged, ifplugd,
  1227. iptables, joe, kf5-extra-cmake-modules, kf5-modemmanager-qt,
  1228. kf5-networkmanager-qtlibcamera, libcurl, libgcrypt,
  1229. libgpg-error, libnftl, libnspr, libnss, libopenssl,
  1230. libtorrent-rasterbar, luksmeta, mariadb, mbedtls, mongodb,
  1231. mosquitto, ncurses, nfs-utils, nghttp2, nodejs, openvmtools,
  1232. php, protobuf, putty, qemu, samba4, swupdate,
  1233. systemd-bootchart, thttpd, uclibc, unzip, util-linux,
  1234. wireshark
  1235. Issues resolved (http://bugs.uclibc.org):
  1236. #10806: Allow nfs-utils to use ipv6
  1237. #11781: mariadb build error
  1238. #12031: Build of cups-filters fails while linking, apparently due..
  1239. #12141: eudev package is missing "render" and "kvm" groups
  1240. #12241: Permission denied while running "make"
  1241. 2019.05.2, Released September 3rd, 2019
  1242. Important / security related fixes.
  1243. Filesystems: Pass extra pax options to tar for binary
  1244. reproducibility.
  1245. Updated/fixed packages: apache, arm-trusted-firmware,
  1246. asterisk, atk, autofs, batctl, batman-adv, berkeleydb,
  1247. busybox, bzip2, clamav, cloop, cmake, collectd, connman-gtk,
  1248. dahdi-linux, dahdi-tools, daq, dehydrated, dhcp, dovecot,
  1249. dovecot-pigeonhole,, elfutils, evtest, exim, expect, giflib,
  1250. git, glib-networking, glibc, gnupg2, gnutls, go,
  1251. gst1-rtsp-server, gtkperf, gupnp-tools, gvfs, imagemagick,
  1252. imx-uuc, intel-microcode, json-glib, lftp, libbsd, libcurl,
  1253. libgit2, libgtk2, libgtk3, libmodplug, libnss, libpri,
  1254. libshout, libss7, libssh2, libvips, libxcb, linux-headers,
  1255. mdadm, mesa3d, metacity, mpg123, mosquitto, musl, nginx,
  1256. oniguruma, openblas, opencv3, openjdk, openjdk-bin, openldap,
  1257. openvmtools, pcmanfm, php, pigpio, postgresql, prboom,
  1258. proftpd, proj, python, python-django, python-idna,
  1259. python-numpy, python-urllib3, python3, qemu, qt5, qt5base,
  1260. qt5enginio, quagga, rygel, squid, subversion, tcpreplay,
  1261. unzip, vlc, vte, webkitgtk, wireless-regdb, xen,
  1262. xfont_font-util, xlib_libICE, xlib_libXfont, xlib_libXfont2,
  1263. yad, zeromq
  1264. Issues resolved (http://bugs.uclibc.org):
  1265. #11741: pigpio does not build host-pigpio
  1266. #11876: automount using host mount/umount
  1267. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  1268. #11921: dahdi fails to build
  1269. #11961: libpri build failure
  1270. #12086: (dhcpd-missing-libs) - dhcp shared libraries not installed to..
  1271. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  1272. #12106: daq: build fails if libdumbnet-dev is installed in the host
  1273. #12126: vc4 has neon as hard dependency
  1274. 2019.05.1, Released July 7th, 2019
  1275. Important / security related fixes.
  1276. arch: x86: Fix typo breaking 'core-avx2' variant
  1277. linux: Workaround -Werror related build failure on powerpc,
  1278. by forcing CONFIG_PPC_DISABLE_WERROR on.
  1279. support/testing: Emulate a machine with 256MB RAM to fix
  1280. issues with certain tests running out of memory.
  1281. test-pkg: Correct long option handling and clean output dir
  1282. after a successful build to save disk space.
  1283. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  1284. partition is available before mounting.
  1285. Updated/fixed packages: barebox, busybox, bzip2, davfs2,
  1286. dialog, docker-cli, docker-engine, exim, expat, faad2,
  1287. haveged, irssi, libcamera, libcdaudio, libcurl, libglib2,
  1288. libressl, libsecret, lmbench, meson, monit, php, postgresql,
  1289. psplash, python-django, qt5base, tvheadend, webkitgtk,
  1290. xserver_xorg-server, znc
  1291. 2019.05, released June 2nd, 2019
  1292. Various fixes.
  1293. Toolchain: Ensure pre-built Andes toolchains can only be
  1294. selected when x86 32bit support is available on the host.
  1295. Disallow PowerPC SPE ABI for GCC >= 8.x, as it is no longer
  1296. supported.
  1297. Infra: pkg-config: Use a dedicated timestamp file rather than
  1298. .config as that gets touched by linux-4.19+, causing repeated
  1299. builds.
  1300. Add C-SKY support to our config.sub (gnuconfig)
  1301. Updated/fixed packages: dosfstools, botan, brotli, dropbear,
  1302. flare-engine, gst1-plugins-bad, libhtp, libnss, libopenssl,
  1303. linuxptp, matchbox-panel, mender, mutt, netsurf,
  1304. network-manager, opencv3, openjdk, openmpi, php,
  1305. python-cython, qt5multimedia, qtwayland, qt5webkit-examples,
  1306. supertux, suricata, tpm2-totp, v4l2loopback, wireshark,
  1307. wpewebkit
  1308. 2019.05-rc3, released May 25th, 2019
  1309. Fixes all over the tree.
  1310. check-bin-arch: Ignore /usr/lib/grub, similar to how /lib/grub
  1311. is ignored.
  1312. check-package: Warn about utf-8 characters in .mk files
  1313. Linux: Default to 5.1.x series
  1314. Updated/fixed packages: assimp, atop, chocolate-doom, cjson,
  1315. ddrescue, dhcp, ffmpeg, gerbera, glibmm, gpsd, gst-ffmpeg,
  1316. intel-microcode, jasper, keepalived, kismet, libcpprestsdk,
  1317. libcurl, libssh2, libupnp18, luarocks, mono-gtksharp3, opus,
  1318. postgresql, pcsc-lite, python, tslib, webkitgtk,
  1319. wpebackend-fdo, wpewebkit
  1320. 2019.05-rc2, released May 15th, 2019
  1321. Fixes all over the tree.
  1322. Updated/fixed packages: bind, bullet, ca-certificates,
  1323. collectd, cracklib, dhcp, gdb, libinput, libtorrent-rasterbar,
  1324. linknx, lynx, mono, netsurf, optee-os, postgresql, qt5enginio,
  1325. qt5multimedia, rpm, samba4, sqlite, strace, uclibc, woff2
  1326. Issues resolved (http://bugs.uclibc.org):
  1327. #11841: grub-efi.cfg not used when building EFI disk image
  1328. 2019.05-rc1, Released May 8th, 2019
  1329. Fixes all over the tree and new features.
  1330. Architecture: Andes 32-bit (nds32) support added.
  1331. Only build host-lzip / host-xz when really needed by packages,
  1332. not just when not available on the build host.
  1333. Toolchain: Glibc bumped to 2.29, musl bumped to 1.1.22,
  1334. binutils 2.32 added, 2.28/2.29 removed, default changed to
  1335. 2.31.1.
  1336. fs: Set FAKEROOTDONTTRYCHOWN environment variable to not
  1337. forward {f,l,}chown calls to libc when running under fakeroot
  1338. to fix issues when building in restricted environments
  1339. (E.G. user namespace with bubblewrap).
  1340. Linux: Also build default make target to ensure extra files
  1341. like the gdb scripts enabled by CONFIG_GDB_SCRIPTS are also
  1342. built. Notice: This may mean that extra host utilities like
  1343. uboot-mkimage are needed.
  1344. Infrastructure: show-info and <pkg>-show-info make targets
  1345. added to output package metadata in JSON format for external
  1346. use.
  1347. pkg-generic: Only tweak .la files needing it to ensure they
  1348. are not included in subsequent package file lists.
  1349. test-pkg: Generate a basic package config if none is
  1350. specified.
  1351. Gettext-tiny package added as an lightweight replacement for
  1352. GNU gettext for situations where NLS support is not needed.
  1353. New defconfigs: Andes AE3XX, Freescale imx8mpico / imx8qxpmek
  1354. / T2080 QDS RDB, Licheepi zero, Orangepi R1
  1355. Removed defconfigs: Olimx A20 Olinuxino Lime legacy
  1356. New packages: bats-core, bayer2rgb-neon, brickd, cog, dacapo,
  1357. enet, gettext-tiny, gli, gst1-plugins-bayer2rgb-neon,
  1358. imx-sc-firmware, intel-mediadriver, intel-mediasdk, libcamera,
  1359. libhtp, libp11, libwpe, lua-binaryheap, lua-gd, lua-lunitx,
  1360. mender-artifact, most, oniguruma, openjdk, openjdk-bin,
  1361. opensbi, optee-benchmark, optee-client, optee-examples,
  1362. optee-os, optee-test, paho-mqtt-cpp, python-aioblescan,
  1363. python-aioconsole, python-aiohttp-cors, python-aiomonitor,
  1364. python-backcall, python-jedi, python-parso, python-pyjwt,
  1365. python-terminaltables, suricata, tpm2-totp, uftp,
  1366. wpebackend-fdo, wpewebkit
  1367. Removed packages: libump, lunit, sunxi-mali
  1368. Issues resolved (http://bugs.uclibc.org):
  1369. #11716: Typo on website, saying latest release is 2018.2.11
  1370. #11756: package/syslinux: MBR's don't fit because of binutils..
  1371. #11761: Building custom kernel 5.1-rc3 or later breaks on objtool
  1372. #11816: Only selected coreutils binaries are installed
  1373. 2019.02.11, released April 9th, 2020
  1374. Important / security related fixes.
  1375. core: Fix compatibility with make 4.3+. Also fixup /lib
  1376. references in libtool .la files, similar to how it is done for
  1377. /usr/*.
  1378. toolchain: Fix kernel headers validation check for external
  1379. toolchains.
  1380. Updated/fixed packages: barebox-aux, bluez5_utils, busybox,
  1381. civetweb, collectd, ffmpeg, gcc, gnutls, gvfs, haproxy,
  1382. hiredis, kmscube, libical, libopenssl, libsndfile,
  1383. linux-tools, ntp, php, pure-ftpd, screen, sysdig, tor,
  1384. util-linux, vala, vlc, xserver_xorg-server
  1385. Issues resolved (http://bugs.uclibc.org):
  1386. #12746: "sysdig" package description points to http://sysdig.org, ..
  1387. 2019.02.10, released March 16th, 2020
  1388. Important / security related fixes.
  1389. Core: Ensure package-file-lists data is correct after
  1390. incremental builds as well.
  1391. Fix a race condition related to creating the output/staging
  1392. symlink on systems with coreutils < 8.27.
  1393. Br2-external: Fix compatibility with make 4.3+
  1394. Util-linux: Ensure that hwclock is built without GPLv3
  1395. code. Notice that builds with hwclock has contained
  1396. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  1397. Updated/fixed packages: armadillo, at, binutils, blktrace,
  1398. bootstrap, busybox, cairo, cups, czmq, dnsmasq,
  1399. docker-containerd, dovecot, dovecot-pigeonhole, e2fsprogs,
  1400. eudev, exim, exiv2, fbgrab, grep, gst1-validate, guile,
  1401. imagemagick, jhead, kvm-unit-tests, lapack, libcgroup,
  1402. libftdi1, libjpeg, libsigrok, libsndfile, libssh2, libsvgtiny,
  1403. libvncserver, libvorbis, libxml2, libxslt, linux, lz4,
  1404. mariadb, mbedtls, meson, mfgtools, mongoose, ncurses, ntfs-3g,
  1405. opencv3, openjpeg, openswan, openvmtools, patch, php,
  1406. postgresql, pppd, proftpd, pure-ftpd, python-django,
  1407. python-pyqt5, python3, qemu, qt5base, qt5webengine, qwt,
  1408. rdesktop, ruby, runc, samba4, shellinabox, smartmontools,
  1409. sqlcipher, squid, swupdate, sysklogd, taglib, thrift,
  1410. ti-cgt-pru, uboot, util-linux, vorbis-tools, webkitgtk,
  1411. wireshark, xen, xserver_xorg-server, zeromq, zsh
  1412. Issues resolved (http://bugs.uclibc.org):
  1413. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  1414. #12331: meson issue
  1415. #12461: libglib2 build files with deep directory structure
  1416. #12606: fbgrab location has changed
  1417. 2019.02.9, released January 12th, 2020
  1418. Important / security related fixes.
  1419. pkg-python infrastructure: Ensure correct compiler and linker
  1420. flags are used for compiled code
  1421. utils/scanpypi: Remind users to update DEVELOPERS
  1422. Updated/fixed packages: busybox, cc-tool, cpio, cups, dante,
  1423. dillo, docker-cli, docker-containerd, docker-engine, easy-rsa,
  1424. ecryptfs-utils, efl, git, glibc, gnupg2, gst1-plugins-bad,
  1425. kf5-kcoreaddons, libarchive, libgit2, libkrb5, librsvg,
  1426. libssh, libtomcrypt, libuio, lirc-tools, lvm2,
  1427. matchbox-desktop, nodejs, ntp, opencv3, openpowerlink,
  1428. python-django, python-ecdsa, python-pyasn-modules,
  1429. python-pyqt5, python-subprocess32, python3, qpdf, runc, rygel,
  1430. samba4, sdl2, wavpack, xserver_xorg-server, zip
  1431. Issues resolved (http://bugs.uclibc.org):
  1432. #12121: PyQt5.QtSerialPort and other modules not being built
  1433. 2019.02.8, released December 7th, 2019
  1434. Important / security related fixes.
  1435. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  1436. <pkg>_DL_OPTS by default, just like it is done for a number of
  1437. other package variables
  1438. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  1439. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  1440. the (rare) case where the .py files are needed at runtime
  1441. rather than .pyc.
  1442. Fix <pkg>-reconfigure handling for packages using the kconfig
  1443. infrastructure.
  1444. Toolchain: ensure external toolchain kernel headers version
  1445. check correctly stop the build on mismatch
  1446. Deconfigs: beaglebone: fix boot issue
  1447. Updated/fixed packages: am33x-cm3, asterisk, bind, chrony,
  1448. clamav, collectd, connman, faifa, gob2, haproxy,
  1449. intel-microcode, ipsec-tools, jasper, jpeg-turbo, kodi,
  1450. kvm-unit-tests, libftdi, libftdi1, libnss, libstrophe,
  1451. libsvgtiny, lvm2, lzma, mariadb, minicom, neardal, nodejs,
  1452. opencv3, openvmtools, oracle-mysql, perl-gdgraph,
  1453. perl-gdtextutil, php, postgresql, prosody, python-django,
  1454. rabbitmq-c, rauc, redis, rpcbind, socat, spice,
  1455. spice-protocol, tftpd, tiff, webkitgtk
  1456. New packages: libmspack
  1457. Issues resolved (http://bugs.uclibc.org):
  1458. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  1459. #12171: Python-opencv needs config.py and config-3.7.py to run..
  1460. #12211: host-nodejs 10.15.3 package fail to build
  1461. #12316: tzdata fails to install with empty "default local time"
  1462. 2019.02.7, Released November 10th, 2019
  1463. Important / security related fixes.
  1464. support/testing: use a kernel with HW_RANDOM_VIRTIO to work
  1465. around issues with lack of entrophy
  1466. Toolchain: Also copy libssp.so for external toolchains if SSP
  1467. is enabled to handle toolchains providing SSP support in
  1468. libssp rather than in the C library
  1469. Download: Also use the package download method for extra
  1470. downloads from the same site, so it does not get confused by
  1471. URLs containing '+'
  1472. Fakeroot now works correctly under Microsoft Windows 10
  1473. Services for Linux, which does not provide SYSV IPC support
  1474. utils/test-pkg: ensure to exit with an error upon failure
  1475. Updated/fixed packages: asterisk, azmq, cups-filters,
  1476. domoticz, duma, elf2flt, eudev, exfat, exfat-utils, fakeroot,
  1477. file, freerdp, gd, ghostscript, go, gvfs, intel-microcode,
  1478. kvm-unit-tests, libarchive, libnspr, libnss, libopenssl,
  1479. libpcap, libpciaccess, librsvg, libseccomp, libsigrok,
  1480. libtorrent, libunwind, linux-tools, lua-sdl2, lxc, minizip,
  1481. mjpegtools, mongoose, php, python, python-pysnmp-apps,
  1482. python3, qemu, qt5base, ruby, safeclib, samba4, sdl_mixer,
  1483. sox, sudo, systemd, tcpdump, unscd, util-lkinux, vtun, xvisor,
  1484. yaffs2utils
  1485. Issues resolved (http://bugs.uclibc.org):
  1486. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  1487. #12261: sudo versions prior to 1.8.28 are affected
  1488. 2019.02.6, Released October 3rd, 2019
  1489. Important / security related fixes.
  1490. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  1491. Use default console settings
  1492. Dependencies: Ensure host has JSON::PP perl module installed
  1493. if webkitgtk/wpewebkit packages are enabled as it is needed
  1494. during their build process.
  1495. Toolchain: Generate check-headers program under BUILD_DIR
  1496. rather than /tmp to fix issues with distributions mounting
  1497. /tmp noexec.
  1498. Updated/fixed packages: asterisk, augeas, bind, bwm-ng, cups,
  1499. cups-filters, docker-cli, docker-engine, docker-proxy,
  1500. dropbear, e2fsprogs, eudev, exim, expat, gcc, go, ifplugd,
  1501. haveged, iptables, joe, kf5-extra-cmake-modules,
  1502. kf5-modemmanager-qt, kf5-networkmanager-qt, libcurl,
  1503. libgcrypt, libgpg-error, libnftl, libnspr, libnss, libopenssl,
  1504. luksmeta, mariadb, mbedtls, mongodb, mosquitto, ncurses,
  1505. nfs-utils, nghttp2, nodejs, openvmtools, php, protobuf, putty,
  1506. qemu, qt5base, samba4, swupdate, systemd-bootchart, thttpd,
  1507. uclibc, unzip, util-linux, wireshark
  1508. Issues resolved (http://bugs.uclibc.org):
  1509. #10806: Allow nfs-utils to use ipv6
  1510. #11781: mariadb build error
  1511. #12031: Build of cups-filters fails while linking, apparently due..
  1512. #12141: eudev package is missing "render" and "kvm" groups
  1513. #12181: dropbear: norootlogin (-w) no longer works when PAM is enabled
  1514. #12241: Permission denied while running "make"
  1515. 2019.02.5, Released September 2nd, 2019
  1516. Important / security related fixes.
  1517. Filesystems: Pass extra pax options to tar for binary
  1518. reproducibility.
  1519. Updated/fixed packages: apache, arm-trusted-firmware,
  1520. asterisk, atk, autofs, batctl, batman-adv, berkeleydb, brotli,
  1521. busybox, bzip2, clamav, cloop, cmake, collectd, connman-gtk,
  1522. cryptopp, dahdi-linux, dahdi-tools, daq, dehydrated, dovecot,
  1523. dovecot-pigeonhole,, elfutils, evtest, exim, expect, giflib,
  1524. git, glib-networking, glibc, gnupg2, gnutls, go,
  1525. gst1-rtsp-server, gtkperf, gupnp-tools, gvfs, imagemagick,
  1526. imx-uuc, intel-microcode, json-glib, lftp, libbsd, libcurl,
  1527. libgit2, libgtk3, libmodplug, libnss, libpri, libshout,
  1528. libss7, libssh2, libvips, libxcb, linux-headers, mdadm,
  1529. mesa3d, metacity, mpg123, mosquitto, musl, nginx, openblas,
  1530. opencv3, openldap, openvmtools, pcmanfm, php, pigpio,
  1531. postgresql, prboom, proftpd, proj, python, python-django,
  1532. python-idna, python-numpy, python-urllib3, python3, qemu, qt5,
  1533. qt5base, qt5enginio, quagga, rygel, squid, subversion,
  1534. tcpreplay, unzip, vlc, vte, webkitgtk, weston, wireless-regdb,
  1535. xen, xfont_font-util, xlib_libICE, xlib_libXfont,
  1536. xlib_libXfont2, yad, zeromq
  1537. Issues resolved (http://bugs.uclibc.org):
  1538. #11741: pigpio does not build host-pigpio
  1539. #11876: automount using host mount/umount
  1540. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  1541. #11921: dahdi fails to build
  1542. #11961: libpri build failure
  1543. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  1544. #12106: daq: build fails if libdumbnet-dev is installed in the host
  1545. #12126: vc4 has neon as hard dependency
  1546. 2019.02.4, Released July 10th, 2019
  1547. Important / security related fixes.
  1548. arch: x86: Fix typo breaking 'core-avx2' variant, add Westmere
  1549. variant.
  1550. linux: Workaround -Werror related build failure on powerpc,
  1551. by forcing CONFIG_PPC_DISABLE_WERROR on.
  1552. support/testing: Emulate a machine with 256MB RAM to fix
  1553. issues with certain tests running out of memory.
  1554. test-pkg: Correct long option handling and clean output dir
  1555. after a successful build to save disk space.
  1556. Ensure custom <pkg>_OVERRIDE_SRCDIR_RSYNC_EXCLUSIONS are
  1557. passed before the standard exclusions so they are not ignored
  1558. by rsync when using override-srcdir.
  1559. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  1560. partition is available before mounting.
  1561. Updated/fixed packages: barebox, bzip2, davfs2, dbus, dialog,
  1562. docker-cli, docker-engine, expat, faad2, ffmpeg, freeswitch,
  1563. gerbera, haveged, irssi, libcdadio, libgit2, libglib2,
  1564. libsecret, libvncserver, lmbench, logrotate, mariadb, meson,
  1565. mongoose, monit, mpd, openblas, php, postgresql, psplash,
  1566. python, python-django, python3, qt5base, samba4, taglib,
  1567. tvheadend, vlc, webkitgtk, xserver_xorg-server, znc
  1568. 2019.02.3, Released June 7th, 2019
  1569. Important / security related fixes.
  1570. Infra: pkg-config: Use a dedicated timestamp file rather than
  1571. .config as that gets touched by linux-4.19+, causing repeated
  1572. builds.
  1573. check-bin-arch: Also ignore /usr/lib/grub to support merged
  1574. /usr setups, similar to how /lib/grub is ignored.
  1575. gnuconfig/config.sub: Add C-SKY architecture support.
  1576. Updated/fixed packages: assimp, atftp, atop, botan, busybox,
  1577. ca-certificates, chocolate-doom, cjson, coreutils, cracklib,
  1578. ddrescue, dhcp, docker-cli, docker-containerd, docker-engine,
  1579. dosfstools, dovecot, dovecot-pigeonhole, dropbear, exim,
  1580. ffmpeg, flare-engine, gcc, gdb, gerbera, glibmm, go, gpsd,
  1581. gst-ffmpeg, gst1-plugins-bad, gst1-plugins-base, imagemagick,
  1582. intel-microcode, jasper, kf5-kcoreaddons, kismet, libcurl,
  1583. libglib2, libnss, libopenssl, libsigrok, libssh2, libupnp18,
  1584. linuxptp, luajit, lynx, matchbox-panel, mender,
  1585. netcat-openbsd, netsurf, nfs-utils, opus, orc, owfs,
  1586. pcsc-lite, php, popt, postgresql, python, python-cython,
  1587. python-django, python-ply, qt5enginio, rpm, runc, samba4,
  1588. sqlite, subversion, supertux, systemd, tslib, uclibc,
  1589. v4l2loopback, webkitgtk, woff2
  1590. Issues resolved (http://bugs.uclibc.org):
  1591. #11816: Only selected coreutils binaries are installed
  1592. #11841: grub-efi.cfg not used when building EFI disk image
  1593. #11911: systemd v240 memory leak in systemd-journald
  1594. 2019.02.2, Released April 29th, 2019
  1595. Important / security related fixes.
  1596. Only build host-lzip / host-xz when really needed by packages,
  1597. not just when not available on the build host.
  1598. fs: Set FAKEROOTDONTTRYCHOWN environment variable to not
  1599. forward {f,l,}chown calls to libc when running under fakeroot
  1600. to fix issues when building in restricted environments
  1601. (E.G. user namespace with bubblewrap).
  1602. Linux: Also build default make target to ensure extra files
  1603. like the gdb scripts enabled by CONFIG_GDB_SCRIPTS are also
  1604. built. Notice: This may mean that extra host utilities like
  1605. uboot-mkimage are needed.
  1606. Defconfigs: ASUS tinker and Amarula vyasa rk3822: Support
  1607. larger kernel images, Atmel SAM5D27, SAM5D2,3,4 xplained:
  1608. Increase rootfs size to fit utilities, Raspberry Pi 64bit:
  1609. Include overlays in sdcard image
  1610. Updated/fixed packages: android-tools, apache, bind, binutils,
  1611. busybox, civetweb, cjson, copas, davfs2, docker-cli,
  1612. docker-containerd, docker-engine, dovecot, dovecot-pigeonhole,
  1613. freerdp, gerbera, ghostscript, git, gnutls, go, gst-omx,
  1614. gst1-plugins-base, gst1-plugins-ugly, haproxy, hostapd,
  1615. ipsec-tools, libfreefare, libfuse, libkrb5, libpng, libxml2,
  1616. libxslt, linknx, linux, linux-firmware, linux-tools, live555,
  1617. lldp, lrzsz, lynx, madplay, make, minicom, mongodb, msmtp,
  1618. musl, mutt, neon, netsnmp, numactl, opus, perl, php,
  1619. postgresql, pure-ftpd, python-urllib3, python3, qt5base,
  1620. rapidxml, rpm, rsyslog, ruby, runc, samba4, sane-backends,
  1621. softether, stunnel, sysklogd, syslinux, syslog-ng,
  1622. systemd-bootchart, thttpd, thrift, tiff, tor, tpm2-tools,
  1623. tpm2-tss, webkitgtk, yaffs2utils, wget, wpa_supplicant, wsapi,
  1624. xapp_xfd, xapp_xload, xlib_libXpm, xserver_xorg-server, xz,
  1625. znc
  1626. Issues resolved (http://bugs.uclibc.org):
  1627. #11756: package/syslinux: MBR's don't fit because of binutils..
  1628. #11761: Building custom kernel 5.1-rc3 or later breaks on objtool
  1629. 2019.02.1, Released March 29th, 2019
  1630. Important / security related fixes.
  1631. pkg-generic: Only tweak .la files needing it to ensure they
  1632. are not included in subsequent package file lists.
  1633. test-pkg: Generate a basic package config if none is
  1634. specified.
  1635. Updated/fixed packages: asterisk, avahi, bash, beecrypt,
  1636. binutils, busybox, clamav, cups, efl, eigen, fetchmail, file,
  1637. flashrom, fltk, gerbera, git, glibc, gnuradio, go,
  1638. gst-plugins-bad, intel-gmmlib, jq, kexec, kf5-modemmanager-qt,
  1639. leveldb, libcurl, libdrm, libftdi1, libglib2, libiio, libpcap,
  1640. libseccomp, libssh2, log4cplus, lvm2, mariadb, mender,
  1641. mongodb, mosquitto, musl, nodejs, ntp, openjpeg, owfs, php,
  1642. pure-ftpd, putty, python-aiojobs, qt5webkit, rdesktop, samba4,
  1643. sunxi-tools, supertux, swupdate, tpm2-abrmd, tpm2-tss,
  1644. wavemon, wireshark, vsftpd, xapp_xdm, xen,
  1645. xdriver_xf86-video-fbdev, xlib_libXdmcp
  1646. Issues resolved (http://bugs.uclibc.org):
  1647. #11716: Typo on website, saying latest release is 2018.2.11
  1648. 2019.02, released March 4th, 2019
  1649. Minor fixes.
  1650. Libressl support added for Qt 5.6 as a replacement for
  1651. openssl, as 5.6 is not compatible with openssl 1.1.x.
  1652. Updated/fixed packages: cutelyst, devmem2, gqrx,
  1653. gst-plugins-bad, libraw, libsoxr, qt5base, runc, systemd, tor
  1654. 2019.02-rc3, released March 1st, 2019
  1655. Fixes all over the tree.
  1656. Openssl support dropped from Qt 5.6, as it isn't compatible
  1657. with openssl 1.1.x.
  1658. Toolchain: GCC 8.x updated to 8.3.0, fixing a number of
  1659. issues.
  1660. Dependencies: Require CMake 3.8 or newer to fix compilation
  1661. issue with certain packages. If not available, host-cmake will
  1662. instead be built.
  1663. Printvars: Fix performance regression since 2018.02
  1664. Scanypi: Correctly handle underscores in python package names.
  1665. Updated/fixed packages: botan, clamav, cryptopp, i2pd,
  1666. ibrcommon, iproute2, libcpprestsdk, libssh, lua-curl,
  1667. luaexpat, qt5base, runc, stress-ng, syslinux, systemd,
  1668. upmpdcli, zbar
  1669. Issues resolved (http://bugs.uclibc.org):
  1670. #9966: util-linux-2.30/.stamp_built' failed
  1671. #11696: possible typo in board/pc/post-build.sh
  1672. 2019.02-rc2, released February 23th, 2019
  1673. Fixes all over the tree.
  1674. Removed zynq_zybo defconfig, as it hasn't seen any update
  1675. since it was added in 2016, and uses a U-Boot version not
  1676. compatible with openssl-1.1.x.
  1677. Linux: Ignore user supplied downloadable hashes, as no hash
  1678. checksums are available for those.
  1679. Updated/fixed packages: bind, cryptopp, docker-containerd,
  1680. dtc, efivar, gdb, imagemagick, ipmiutil, libcpprestsdk,
  1681. libcurl, libgpiod, libid3tag, libv4l, log4cplus, luvi,
  1682. madplay, mender, mosquitto, poco, postgresql, proftpd,
  1683. pulseaudio, python-django, qemu, qt5base, qwt, rabbitmq-c,
  1684. reaver, safeclip, stress-ng, swupdate, syslog-ng, systemd,
  1685. tor, unzip, xenomai
  1686. Issues resolved (http://bugs.uclibc.org):
  1687. #11501: compile sdl2 with enable wayland
  1688. #11681: .. unable to initialize decompress status for section..
  1689. 2019.02-rc1, released February 13th, 2019
  1690. Fixes all over the tree and new features.
  1691. Dependencies:
  1692. Require Python >= 2.7 as it is needed for E.G. building
  1693. libglib2.
  1694. Ensure GNU gzip is used for reproducible tarballs (instead of
  1695. pigz)
  1696. Infrastucture:
  1697. Ensure the PLATFORM and OS environment variables are not set,
  1698. as they cause build issues for some packages.
  1699. The package list infrastructure now correctly handles packages
  1700. installing files with old mtime.
  1701. Add a config option to force all optional host utilities to be
  1702. built, even if suitable versions are available on the build
  1703. machine.
  1704. graph-build-time: Also show time spent downloading
  1705. Download: fixes for SSH/SCP support
  1706. Ensure user provided permissions override permissions from
  1707. packages.
  1708. SDK: Fix handling of relative symlinks (targets starting with
  1709. '.' or '..')
  1710. BR2_SYSTEM_DEFAULT_PATH setting to customize the default path
  1711. for processes.
  1712. The custom skeleton logic will now populate the needed /bin,
  1713. /lib, /sbin directories/symlinks if not present. Merged /usr
  1714. can now be used with a custom skeleton.
  1715. Rootfs overlays can now override symbolic links from
  1716. packages. This was disabled to ensure the correct symbolic
  1717. links are present when merged /usr is used. Instead validate
  1718. that the rootfs overlays do not include invalid /bin, /sbin
  1719. and /lib entries.
  1720. The waf infrastructure now support the <pkg>_SUBDIR variable,
  1721. similar to the other package types.
  1722. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  1723. Various improvements to the meson infrastructure.
  1724. Luarocks: A Buildroot addon has been added to automate
  1725. creating a Buildroot package from luarocks, similar to
  1726. scancpan and scanpypi.
  1727. scanpypi: protect against zip-slip vulnerability in zip/tar
  1728. handling
  1729. check-package: fix Python 3 support
  1730. get-developers: Fix behaviour when called from elsewhere than
  1731. the toplevel directory.
  1732. pkg-stats: Show latest upstream version of each package, based
  1733. on data from release-monitoring.org
  1734. kconfig: Fix for make linux-menuconfig / uboot-menuconfig from
  1735. a clean tree when ccache is enabled.
  1736. Default to sha256 password encoding, drop md5 support.
  1737. Architecture:
  1738. Support for RISC-V 32bit architecture, ARM A55, 75 and Saphira
  1739. variants, MIPS support for mips32r3, mips64r3 and Marvell
  1740. Octeon II/III variants.
  1741. Toolchain:
  1742. ARC toolchain 2018.09, ARM 8.2-2018.11, Codescape IMG/MTI MIPS
  1743. 2018.09-02, MUSL 1.1.21, GCC 6.5.0 / 7.4.0, GDB 8.2.1
  1744. Packages:
  1745. openssl: Bump to 1.1.1x series, bringing TLSv1.3 support and
  1746. long term support.
  1747. fftw: Split into fftw-{single,double,long-double,quad}
  1748. packages for the different data precision options.
  1749. libcurl: Now has explicit TLS backend selection options.
  1750. linux: Support building device tree blobs with the -@ option
  1751. for device tree overlays.
  1752. weston: The weston-imx i.MX variant is now used when
  1753. imx-gpu-viv is enabled
  1754. pkgconf: Update to 1.5.3, which brings support for
  1755. --define-prefix (used by GStreamer)
  1756. Add host-python3-setuptools package to handle host python
  1757. packages needing python3 with setuptools support.
  1758. New defconfigs: Aarch64 EFI, Orangepi one plus, Orangepi lite
  1759. 2, QEMU RISC-V 32bit virt, Rock64
  1760. New packages: brcm-patchram-plus, clinfo, cunit, docker-cli,
  1761. erlang-p1-eimp, exempi, fail2ban, fftw-double,
  1762. fftw-double-long, fftw-quad, fftw-single, gerbera, grpc,
  1763. gst1-shark, intel-gmmlib, iwd, kf5-kcoreaddons, libeastl,
  1764. libpackagekite, libtorrent-rasterbar, lua-std-debug,
  1765. lua-std-normalize, mini-snmpd, netsurf, pamtester, pcm-tools,
  1766. python-aiodns, python-aiohttp, python-aiohttp-jinja2,
  1767. python-aiohttp-remotes, python-aiohttp-security,
  1768. python-aiohttp-session, python-aiohttpd-sse, python-aiojobs,
  1769. python-cchardet, python-pycares, python-sentry-sdk,
  1770. python-wtforms, python3-setuptools, rcw, rtc-tools, shim,
  1771. utp_com, vmtouch, websocketpp
  1772. Removed packages: fftw, lua 5.2.x, luacrypto, perl-time-hires,
  1773. python-pyqt, qt, qtuio, tn5250
  1774. Issues resolved (http://bugs.uclibc.org):
  1775. #10851: Patch to handle numpad Enter key properly
  1776. #11066: x11r7 X11 S40xorg leads to a black screen on QEMU x86..
  1777. #11126: Bash Shell Programming using Buildroot
  1778. #11426: pps-tools bash dependency
  1779. #11476: stdio2.h error invalid use of __builtin_va_arg_pack
  1780. #11536: dt-utils building fails with glibc 2.28
  1781. #11546: open-vm-tools with glibc 2.28
  1782. #11566: Fix init script
  1783. #11576: Unable to start apache with event MPM on raspberry pi 3
  1784. #11591: [pkgconf 1.5.3] xserver OpenGL support is missing
  1785. #11606: libjpeg has no Config.in
  1786. #11616: 2018.02.09 fails to build libzlib with full RELRO..
  1787. #11656: Custom device tree and u-boot boot.scr not integrated..
  1788. #11666: Touchscreen with (Py)Qt5 should use tslib instead of evdev
  1789. 2018.11.4, Released March 28th, 2019
  1790. Important / security related fixes.
  1791. Updated/fixed packages: avahi, beecrypt, binutils, botan,
  1792. busybox, clamav, cups, devmem2, efl, fetchmail, file, fltk,
  1793. gcc, gdb, git, go, gst-plugins-bad, iproute2, jq,
  1794. kf5-modemmanager-qt, leveldb, libopenssl, libraw, libseccomp,
  1795. libsoxr, libssh2, mariadb, mosquitto, nodejs, ntp, openjpeg,
  1796. perl, php, putty, qt5webkit, rdesktop, runc, samba4, swupdate,
  1797. systemd, tor, vsftpd, wireshark, xapp_xdm, xen, xlib_libXdmcp
  1798. 2018.11.3, Released February 23th, 2019
  1799. Important / security related fixes.
  1800. Ensure the PLATFORM and OS environment variables are not set,
  1801. as they cause build issues for some packages.
  1802. The package list infrastructure now correctly handles packages
  1803. installing files with old mtime.
  1804. Linux: Skip hash checks for user supplied downloadable
  1805. patches, as no hash checksums are available for those.
  1806. scanpypi: protect against zip-slip vulnerability in zip/tar
  1807. handling
  1808. Download: fixes for SSH/SCP support
  1809. SDK: Fix handling of relative symlinks (targets starting with
  1810. '.' or '..')
  1811. Updated/fixed packages: bind, dhcpcd, docker-compose,
  1812. docker-containerd, docker-engine, dovecot, dovecot-pigeonhole,
  1813. dtc, efivar, ghostscript, gnuradio, imagemagick, jpeg-turbo,
  1814. libarchive, libb64, libcurl, libgeotiff, libgpiod, libid3tag,
  1815. libupnp18, log4cplus, madplay, meson, mosquitto, openssh, php,
  1816. poco, postgresql, proftpd, pulseaudio, python, python-django,
  1817. python3, qt5base, reaver, runc, sg3_utils, sqlcipher,
  1818. swupdate, systemd, unzip, webkitgtk, xenomai
  1819. 2018.11.2, Released January 30th, 2019
  1820. Important / security related fixes.
  1821. Defconfigs: Fixes for imx6slevk, imx7dsabresd, imx8mqevk, Lego
  1822. EV3, QEMU AArch64-virt
  1823. Download: Fix scp download handling
  1824. check-package: fix Python 3 support
  1825. get-developers: Fix behaviour when called from elsewhere than
  1826. the toplevel directory.
  1827. kconfig: Fix for make linux-menuconfig / uboot-menuconfig from
  1828. a clean tree when ccache is enabled.
  1829. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  1830. Updated/fixed packages: acpica, apache, apr, avrdude, cargo,
  1831. cc-tool, dash, dhcpdump, dmalloc, docker-containerd, efivar,
  1832. fwts, glibc, gnuchess, gnupg2, go, leveldb, libarchive,
  1833. libassuan, libftdi1, libgpg-error, libhttpparser, libkcapi,
  1834. libmad, libsndfile, libsquish, liburiparser, libwebsock,
  1835. libxml2, lighttpd, llvm, lm-sensors, lua-msgpack-native, lxc,
  1836. mariadb, mbedtls, meson, mosquitto, netatalk, nodejs, odhcp6c,
  1837. openresolv, openssh, pango, patchelf, php, python-django,
  1838. python-numpy, python-pyyaml, rauc, rp-pppoe, s6-networking,
  1839. samba4, sdl_sound, shairport-sync, sqlite, subversion,
  1840. sunxi-cedarx, swupdate, systemd, tcpreplay, tekui, tmp2-abrmd,
  1841. tpm2-tools, tpm2-tss, udisks, unixodbc, usb_modeswitch,
  1842. webkitgtk, wireshark, wolfssl, xapp_rgb, xenomai, xerces
  1843. Issues resolved (http://bugs.uclibc.org):
  1844. #11576: Unable to start apache with event MPM on raspberry pi 3
  1845. 2018.11.1, Released December 20th, 2018
  1846. Important / security related fixes.
  1847. defconfigs: Fixes for bananapi m2 ultra, ci20
  1848. Download wrapper: Fix for urlencode handling
  1849. Updated/fixed packages: asterisk, docker-compose,
  1850. docker-engine, dt-utils, gnutls, go, grub, libbsd, libcurl,
  1851. libpgpme, libiscsi, liblo, libmpd, libopenssl, liboping,
  1852. libpam-tacplus, libpjsip, linux-firmware, liquid-dsp,
  1853. lua-cqueue, luvi, lxc, lynx, nginx, nodejs, openzwave, php,
  1854. pps-tools, proftpd, prosody, sdl2_net, squashfs, swupdate,
  1855. uclibc, vtu, webkitgtk, wine, xen
  1856. New packages: docker-cli
  1857. Issues resolved (http://bugs.uclibc.org):
  1858. #11426: pps-tools bash dependency
  1859. #11536: dt-utils building fails with glibc 2.28
  1860. 2018.11, Released December 1st, 2018
  1861. Minor fixes.
  1862. Updated/fixed packages: c-ares, quagga, squid
  1863. 2018.11-rc3, released November 30th, 2018
  1864. Fixes all over the tree.
  1865. Defconfigs: Fixes for Armadeus APF27, imx6sabre, Olimex A20
  1866. olinuxino lime legacy, Orangepi zero plus 2, PC, Riotboard.
  1867. graph-depends: Fix for package names starting with a non-alpha
  1868. character.
  1869. Updated/fixed packages: alsa-utils, botan, dante, domoticz,
  1870. dtc, freetype, gauche, gcc, gdb, ghostscript, glibc,
  1871. imx-usb-loader, libbsd, libid3tag, libkrb5, libmicrohttpd,
  1872. libopenssl, libsoxr, linux, motion, msgpack, mtd,
  1873. perl-net-ssleay, php, popt, python-numpy, qt5declarative,
  1874. samba4, shadowsocks-libev, stress-ng, systemd, usb_modeswitch,
  1875. webkitgtk, valgrind, weston, xfsprogs
  1876. 2018.11-rc2, released November 21th, 2018
  1877. Fixes all over the tree.
  1878. fs: Drop intermediate tarball from the filesystem handling to
  1879. fix an issue with xattrs handling related to fakeroot. Ensure
  1880. tarball target includes xattrs.
  1881. download: Fix confusion in git submodule handling if dl/ is a
  1882. symlink.
  1883. genrandconfig: Fix missing newline in BR2_WGET handling,
  1884. causing the following line to be ignored. This would affect
  1885. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  1886. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  1887. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  1888. show-build-order: Also include the dependencies of
  1889. rootfs-common.
  1890. Fix a number of build issues in packages for the recently
  1891. merged RISC-V architecture support.
  1892. Updated/fixed packages: dt-utils, easydbus, elfutils,
  1893. flare-engine, flatcc, glibc, gstreamer, gstreamer1, imx-uuc,
  1894. libassuan, libcorrect, libiscsi, libkrb5, libmicrohttpd,
  1895. libnftnl, libnspr, libnss, libsemanage, libsigsegv, libv4l,
  1896. ltp-testsuite, luv, luvi, make, ncmpc, netplug, openocd,
  1897. prosody, qemu, rpm, sconeserver, shadowsocks-libev,
  1898. supertuxcart, syslinux, systemd, trace-cmd, uclibc,
  1899. uclibc-ng-test, vtun, webkitgtk, weston, wireshark, xen,
  1900. xlib_libfontenc
  1901. Issues resolved (http://bugs.uclibc.org):
  1902. #11086: download/git submodule breaks on symlinked dl folder
  1903. #11216: Capabilities not applied to filesystem
  1904. 2018.11-rc1, released November 9th, 2018
  1905. Fixes all over the tree and new features.
  1906. Architecture: RISC-V support (64bit) added.
  1907. Toolchain: Glibc bumped to 2.28. Fortran support for external
  1908. toolchains. ARM (Linaro) toolchains updated to 8.2-2018.08.
  1909. Hardening flags (RELRO) are now handled by the toolchain
  1910. wrapper instead of explicitly through CFLAGS/LDFLAGS, fixing a
  1911. number of issues.
  1912. Filesystems: Support for creating btrfs and f2fs filesystems
  1913. added.
  1914. Add a number of patches to fix build errors for host utilities
  1915. on modern distributions using glibc-2.28.
  1916. mkusers: Ensure existing group members are preserved when a
  1917. group is reprocessed.
  1918. printvars: Fix issue with exceeding shell command line length
  1919. limits for certain setups.
  1920. Workaround added for incompatibility issues between host-dtc
  1921. and older U-Boot and Linux kernel versions.
  1922. Detect and reject build paths containing '@', as this confuses
  1923. a number of packages, including GCC.
  1924. utils/diffconfig: Make it work for (non-Buildroot) config
  1925. files not using the BR2_ prefix.
  1926. New defconfigs: Amarula a64-relic, Bananapi m2 ultra, Embest
  1927. riotboard, Hardkernel Odroid XU-4, QEMU riscv64-virt.
  1928. olimex_a20_olinuxion_lime_mali is renamed to _legacy.
  1929. OpenCL infrastructure support added, similar to how OpenGL is
  1930. handled.
  1931. Linux-headers: Support for kernel headers from a custom
  1932. tarball / git repo added.
  1933. New packages: bird, bluez5_utils-headers, btrfs-progs,
  1934. checksec, davici, duktape, ell, haproxy, libclc, libcorrect,
  1935. libopencl, libopenresolv, nss-myhostname,
  1936. perl-apache-logformat-compiler, perl-appconfig,
  1937. perl-astro-suntime, perl-class-inspector, perl-class-load,
  1938. perl-class-method-modifiers, perl-class-std,
  1939. perl-class-std-fast, perl-cookie-baker, perl-data-dump,
  1940. perl-data-optlist, perl-data-uuid, perl-data-manip,
  1941. perl-dbd-mysql, perl-dbi, perl-devel-globaldestruction,
  1942. perl-devel-stacktrace, perl-devel-stacktrace-ashtml,
  1943. perl-device-serialport, perl-dist-checkconflicts,
  1944. perl-exporter-tiny, perl-file-sharedir, perl-file-slurp,
  1945. perl-filesys-notify-simple, perl-hash-multivalue,
  1946. perl-http-entity-parser, perl-http-headers-fast,
  1947. perl-http-multipartparser, perl-io-interface,
  1948. perl-io-socket-multicast, perl-json-maybexs, perl-mime-tools,
  1949. perl-module-implementation, perl-module-runtime, perl-moo,
  1950. perl-number-bytes-human, perl-package-stash, perl-params-util,
  1951. perl-plack, perl-posix-strftime-compiler, perl-role-tiny,
  1952. perl-streams-buffered, perl-sub-exporter-progressive,
  1953. perl-sub-install, perl-sub-quote, perl-sys-cpu,
  1954. perl-sys-meminfo, perl-sys-mmap, perl-time-parsedate,
  1955. perl-type-tiny, perl-www-form-urlencoded, perl-x10, pigpio,
  1956. python-async-timeout, python-falcon, python-fire,
  1957. python-mimeparse, python-multidict, python-passlib,
  1958. python-pigpio, python-pip, python-ply, python-py,
  1959. python-pyasn1, python-pyasn1-modules, python-pycryptodomex,
  1960. python-pyhamcrest, python-pysmi, python-scapy, python-semver,
  1961. python-serial-asyncio, python-typing, python-uvloop,
  1962. pythonwrapt, python-yarl, python-zeroconf, riscv-pk, sedutil,
  1963. spandsp, tini, waffle, xapian
  1964. Removed packages: bootutils, dsp-tools, expedite, gst-dsp,
  1965. xloader
  1966. Issues resolved (http://bugs.uclibc.org):
  1967. #11116: Buildroot should set PYTHON_EGG_CACHE instead of writing ..
  1968. #11156: In python3 module 'socket' has no attribute 'AF_BLUETOOTH'
  1969. #11166: Erlang bad argument on valid uint64 when crosscompiled on..
  1970. #11206: zlib: fails to build with Linaro toolchain, BR2_RELRO_FULL..
  1971. #11241: ACPID shouldn't depend on BR2_x86_64 || BR2_i386
  1972. #11251: Util scanpypi failes when package change - to _ in tar file
  1973. #11266: qt5base-5.11.1 does not compile with musl, complains about..
  1974. #11286: python-rpi-gpio only should depend on BR2_arm || BR2_aarch64
  1975. #11321: Latest master fails to build readline with RELRO FULL
  1976. #11326: sysvinit fails to build in latest GIT master
  1977. #11331: Internal application no longer builds with latest GIT master
  1978. #11336: nfs-utils fails to build in latest GIT master
  1979. #11351: build root-2018-08, linaro aarch64 compile error
  1980. #11376: mdmon binary missing
  1981. #11391: Valgind availability on ARM
  1982. #11396: uboot environment image checksum invalid if target is big endian
  1983. #11421: GCC error message for ARM Cortex-A9/ARM.V7
  1984. #11451: Can't find libmpfr.so.4 when using external toolchain on ubuntu..
  1985. #11481: Docs: Is external.desc required?
  1986. 2018.08.4, Released December 20th, 2018
  1987. Important / security related fixes.
  1988. Defconfigs: Fixes for ci20, orangepi zero plus 2
  1989. Download wrapper: Fix for urlencode handling
  1990. Updated/fixed packages: c-ares, dante, docker-compose,
  1991. domoticz, freetype, ghostscript, gnutls, libcurl, libgpgme,
  1992. libid3tag, libiscsi, libmpd, libopenssl, liboping, libpjsip,
  1993. linux-firmware, liquid-dsp, luvi, lynx, msgpack, nginx,
  1994. nodejs, php, popt, pps-tools, prosody, python-numpy,
  1995. python-requests, samba4, sdl2_net, squashfs, swupdate,
  1996. systemd, uclibc, vte, webkitgtk, wine, xfsprogs
  1997. Issues resolved (http://bugs.uclibc.org):
  1998. #11426: pps-tools bash dependency
  1999. 2018.08.3, Released November 26th, 2018
  2000. Important / security related fixes.
  2001. fs: Drop intermediate tarball from the filesystem handling to
  2002. fix an issue with xattrs handling related to fakeroot. Ensure
  2003. tarball target includes xattrs.
  2004. download: Fix confusion in git submodule handling if dl/ is a
  2005. symlink.
  2006. toolchain: Only allow enabling stack protection on
  2007. architectures with control flow integrity (CFI) support. Only
  2008. allow FORTIFY_SOURCE support on gcc >= 6.
  2009. genrandconfig: Fix missing newline in BR2_WGET handling,
  2010. causing the following line to be ignored. This would affect
  2011. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  2012. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  2013. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  2014. show-build-order: Also include the dependencies of
  2015. rootfs-common.
  2016. Defconfigs: Fixes for Armadeus APF27, imx6sabre, Olimex A20
  2017. olinuxino lime legacy, Orangepi zero plus 2.
  2018. graph-depends: Fix for package names starting with a non-alpha
  2019. character.
  2020. Updated/fixed packages: attr, audit, bind, brotli, busybox,
  2021. dtc, easydbus, elfutils, flare-engine, flatcc, gauche, gcc,
  2022. giflib, gpsd, lcdproc, libcurl, libiscsi, libkcapi, libnfs,
  2023. libnspr, libnss, libsemanage, liburiparser, lighttpd,
  2024. lua-curl, mariadb, mmc, mosquitto, mysql, ncmpc, neardal,
  2025. netplug, network-manager, nfs-utils, nginx, openocd, openswan,
  2026. p11-kit, postgresql, prosody, qemu, qt, rpm, ruby, samba4,
  2027. squid, supertuxkart, systemd, tar, trace-cmd, traceroute,
  2028. twolame, uclibc, usb_modeswitch, vtun, webkitgtk, weston,
  2029. xdriver_xf86-video-geode, xlib_libfontenc, xserver_xorg-server
  2030. Issues resolved (http://bugs.uclibc.org):
  2031. #11086: download/git submodule breaks on symlinked dl folder
  2032. #11481: Docs: Is external.desc required?
  2033. 2018.08.2, Released October 25th, 2018
  2034. Important / security related fixes.
  2035. Workaround added for incompatibility issues between host-dtc
  2036. and older U-Boot and Linux kernel versions.
  2037. Detect and reject build paths containing '@', as this confuses
  2038. a number of packages, including GCC.
  2039. utils/get-developers: Add -e option for use with git
  2040. send-email.
  2041. utils/diffconfig: Make it work for (non-Buildroot) config
  2042. files not using the BR2_ prefix.
  2043. u-boot: Fix for environment image handling on big endian
  2044. systems.
  2045. Updated/fixed packages: binutils, ca-certificates,
  2046. cups-filters, dtc, erlang, file, freetype, gcc, git, gvfs,
  2047. jasper, leveldb, libarchive, libssh, live555, ljlinenoise,
  2048. mariadb, mongoose, netsnmp, nmap, nodejs, ntp, open-plc-utils,
  2049. poco, psmisc, ptpd2, python-enum34, qemu, qt, qt5base,
  2050. setools, spice, spice-protocol, tinc, ustr, wireshark,
  2051. Issues resolved (http://bugs.uclibc.org):
  2052. #11396: uboot environment image checksum invalid if target is big endian
  2053. 2018.08.1, Released October 7th, 2018
  2054. Important / security related fixes.
  2055. Add a number of patches to fix build errors for host utilities
  2056. on modern distributions using glibc-2.28.
  2057. mkusers: Ensure existing group members are preserved when a
  2058. group is reprocessed.
  2059. printvars: Fix issue with exceeding shell command line length
  2060. limits for certain setups.
  2061. Updated/fixed packages: acpid, android-tools, apache,
  2062. arp-scan, bandwidthd, bind, brltty, clamav, connman, cppcms,
  2063. domoticz, dtc, fio, gcc, gdb, ghostscript, gnupg, httpping,
  2064. igmpproxy, imlib2, ipsec-tools, libesmtp, libnfs, libxslt,
  2065. links, lua, mosquitto, nilfs-utils, ocrad, parted, php,
  2066. python-django, screen, shairport-sync, strongswan,
  2067. vboot-utils, webkitgtk, wireguard, x265 xen, xlib_libXdmcp,
  2068. xlib_libXfont, xlib_libXft, xlib_libxshmfence,
  2069. xutil_makedepend, zeromq
  2070. 2018.08, Released September 6th, 2018
  2071. Minor fixes.
  2072. Known issues:
  2073. - Glibc 2.28 on the build host breaks compilation of a number
  2074. of host packages. 2018.08 contains fixes for some of these
  2075. packages, but not all. Consider building on hosts (or in
  2076. containers) using older Glibc versions.
  2077. - host-dtc 1.4.7 breaks compilation of older U-Boot and Linux
  2078. kernel configurations using FDT/DTC. Consider updating the
  2079. Linux kernel to >= 4.17 and U-Boot to >= 2018.07 or
  2080. backporting commit 9130ba8846 (scripts/dtc: Update to
  2081. upstream version v1.4.6-9-gaadd0b65c987) for the Linux
  2082. kernel / commit db405d1980 for U-Boot.
  2083. Alternatively revert commit 7b929ddcf0 (dtc: bump version to
  2084. 1.4.7) and ensure your build host does not have the libfdt
  2085. development headers installed.
  2086. Updated/fixed packages: busybox, chipmunk, cutelyst,
  2087. domoticz, gcc, imagemagick, lcms2, libcurl, mediastreamer,
  2088. moarvm, php, qt, qt5virtualkeyboard, qt5webengine, screen,
  2089. sdl2, squashfs, uboot, xen
  2090. Issues resolved (http://bugs.uclibc.org):
  2091. #11261: ccache using wrong cached objects
  2092. #11276: Understanding the patch for kernel-4.9 and other..
  2093. 2018.08-rc3, Released August 31th, 2018
  2094. Fixes all over the tree.
  2095. linux: additional improvements to the flex / bison dependency
  2096. handling, use system provided variant if available. Ensure
  2097. toolchain is available when configuring for 4.18+ support.
  2098. Download: Fix handling of primary sites using file://
  2099. Toolchain: Correct external toolchain musl detection for
  2100. static toolchains.
  2101. Updated/fixed packages: aircrack-ng, bison, brltty, busybox,
  2102. cutelyst, dropbear, gr-osmosdr, i2c-tools, json-c, libconfuse,
  2103. libkcapi, libsoup, libssh, liburiparser, mbedtls, mender,
  2104. mesa3d, minicom, mjpegtools, mutt, openpowerlink, openssh,
  2105. oracle-mysql, php, postgresql, pv, qt5base, qt5quickcontrols,
  2106. rauc, shairport-sync, systemd, xlib_libX11, zeromq,
  2107. Issues resolved (http://bugs.uclibc.org):
  2108. #11091: BR2_PRIMARY_SITE doesn't work (wget is selected...
  2109. #11141: WF111 package no longer available
  2110. #11211: Internal compiler error: Killed (program cc1plus)..
  2111. #11236: util-linux fails to build on Travis CI when python..
  2112. #11246: Glibc 2.28 - fails to build host-bison and host-m4
  2113. #11256: Add python-falcon and python-mimeparse packages
  2114. 2018.08-rc2, Released August 20th, 2018
  2115. Fixes all over the tree.
  2116. pkg-kconfig: Support dependencies needed to run the
  2117. configurator, E.G. recent Linux kernel versions needing flex
  2118. and bison.
  2119. Defconfigs: ARM Juno: Bump ATF to fix a build
  2120. issue. Raspberrypi2: Bump rootfs size. Snps_archs38_vdk:
  2121. Correct /etc/inittab. Technologic ts7680: Correct genimage
  2122. configuration. Orange PI PC / Zero, Sheevaplug: Bump U-boot to
  2123. 2018.07 to fix build issue. Ensure host-openssl is pulled in
  2124. for kernel builds where needed.
  2125. Updated/fixed packages: aircrack-ng, bind, boost,
  2126. boot-wrapper-aarch64, bzip2, busybox, chrony, cryptsetup,
  2127. dahdi-tools, dbus, domoticz, eigen, ipsec-tools, libarchive,
  2128. libfuse, libgit2, libopenssl, libselinux, lighttpd, lvm2, m4,
  2129. makedevs, mariadb, mesa3d-headers, mono, ncmpc, ncurses,
  2130. nodejs, php, python-django, python-pyqt5, qt5base,
  2131. qt5serialbus, ruby, samba4, uboot-tools, uclibc, vlc,
  2132. waylandpp, wireless_tools, wireshark, wpa_supplicant, mtd,
  2133. xdriver_xf86-video-ati, xserver_xorg-server
  2134. Issues resolved (http://bugs.uclibc.org):
  2135. #10781: cryptsetup luksOpen container_file container causes..
  2136. #10996: bogus musl ARM toolchain
  2137. #11191: xattr and check-package issue
  2138. 2018.08-rc1, Released August 5th, 2018
  2139. Toolchain:
  2140. - add support for gcc 8.x, switch to gcc 7.x as the default
  2141. version
  2142. - add support for gdb 8.1, switch to gdb 8.0 as the default
  2143. and remove gdb 7.10/7.11
  2144. - add support for binutils 2.31
  2145. - NIOSII CodeSourcery toolchain updated
  2146. - Linaro AArch64 BE toolchain added, and other Linaro
  2147. toolchains updated
  2148. - Synopsys ARC pre-built toolchain updated
  2149. Architecture: add support for ARM Cortex-M7
  2150. Major updates:
  2151. - systemd bumped to 239
  2152. - Qt5 bumped to 5.11.1
  2153. - Rust bumped to 1.27
  2154. - GStreamer stack bumped to 1.14.2
  2155. - X.org server bumped to 1.20, and all X.org proto packages
  2156. replaced by the single xorgproto package
  2157. - i.MX6 support packages bumped to 6.2.4
  2158. - i.MX Vivante graphics version bumped to 6.2.4.p1.2,
  2159. adding support for Wayland and i.MX8MQ platforms
  2160. Linux: bumped to 4.17 by default.
  2161. Infrastructure: new package infrastructure added for packages
  2162. using the Meson build system
  2163. New packages: at-spi2-atk, at-spi2-core, capnproto, cmocka,
  2164. corkscrew, cutelyst, davfs2, flatcc, libidn2, libgit2,
  2165. libopusenc, mender, nghttp2, perl-convert-asn1, perl-crypt-blowfish,
  2166. perl-crypt-cbc, perl-digest-md5, perl-mime-base64-urlsafe,
  2167. perl-mojolicious-plugin-authentication, perl-net-ping,
  2168. perl-net-snmp, perl-net-ssh2, perl-net-telnet, pigz,
  2169. python-reentry, python-request-id, python-validators,
  2170. python-webob, shadowsocks-libev, speexdsp, xorgproto, wampcc
  2171. New defconfigs: NXP i.MX7D SDB, Boundary Devices Nitrogen 8M,
  2172. Olimex A10 OLinuxino, ZynqMP ZCU106
  2173. Removed packages: all xproto_* have been removed and replaced
  2174. by xorgproto
  2175. Issues resolved (http://bugs.uclibc.org):
  2176. #9411: MUSL build with RT Error relocating /lib/libgcc_s.so.1:
  2177. __cpu_indicator_init: symbol not found
  2178. #9921: lockfile module within python-daemon not available
  2179. #10341: gdb install of py files when using buildroot toolchain
  2180. includes build path
  2181. #10661: /etc/init.d/S29netplug starts multiple instances of netplugd
  2182. #10751: Missing dependency in pulseaudio package
  2183. #10811: kodi-17.6-Krypton does not compile for freescale_* devices
  2184. #10856: openblas on qemu_x86_64_defconfig fails with
  2185. "sgemm_kernel.o: No such file or directory"
  2186. #11056: Compiling a file that uses libdrm headers fails with:
  2187. fatal error: drm.h: No such file or directory
  2188. #11061: support/download: git version=master broken
  2189. #11071: Building postgresql package on Debian 9.4 x64 for armel target fails
  2190. #11076: Docker containerd installed to incorrect path
  2191. #11101: host-patchelf Endian Issue with relative RPATH
  2192. #11111: raspberry pi 3 b+: missing BSP for 64-bit kernel
  2193. #11121: statfs call corrupts memory struct statfs too small
  2194. #11181: Switching toolchain does not work
  2195. 2018.05.3, Released October 6th, 2018
  2196. Important / security related fixes.
  2197. Add a number of patches to fix build errors for host utilities
  2198. on modern distributions using glibc-2.28.
  2199. mkusers: Ensure existing group members are preserved when a
  2200. group is reprocessed.
  2201. printvars: Fix issue with exceeding shell command line length
  2202. limits for certain setups.
  2203. Updated/fixed packages: acpid, android-tools, apache,
  2204. arp-scan, bandwidthd, bind, bison, brltty, chipmunk, connman,
  2205. cppcms, fio, gcc, ghostscript, gnupg, httping, igmpproxy,
  2206. imagemagick, imlib2, ipsec-tools, lcm2, libcurl, libesmtp,
  2207. libnfs, libssh, libxslt, links, mediastreamer, minicom,
  2208. moarvm, nilfs-utils, ocrad, parted, php, postgresql, pv,
  2209. python-django, qt, qt5quickcontrols, qt5webengine, screen,
  2210. sdl2, shairport-sync, squashfs, strongswan, vboot-utils,
  2211. webkitgtk, wireguard, x265, xen, xlib_libXfont, xlib_libXft,
  2212. xlib_libxshmfence, zeromq
  2213. 2018.05.2, Released August 28th, 2018
  2214. Important / security related fixes.
  2215. Defconfigs: Raspberrypi2: Bump rootfs size, T7680: Fix
  2216. genimage.cfg issue, ARM Juno: Bump ATF to v1.3 to fix build
  2217. issue.
  2218. Updated/fixed packages: acl, attr, apache, bind,
  2219. boot-wrapper-aarch64, brltty, bzip2, chrony, crda, cryptsetup,
  2220. dahdi-tools, dmidecode, dropbear, eigen, ffmpeg, gawk, gcc,
  2221. ghostscript, gnutls, imx-gpu-viv, ipsec-tools, libarchive,
  2222. libfuse, libglib2, libopenssl, libselinux, libsoup, lighttpd,
  2223. linuxptp, lttng-modules, lttng-tools, lua-flu, lvm2, m4,
  2224. makedevs, mariadb, mbedtls, mesa3d-heders, mtd, ncurses,
  2225. nodejs, openssh, php, python-django, rauc, ruby, samba4,
  2226. stress-ng, ti-utils, uboot-tools, uclibc, vim, waylandpp,
  2227. wireless_tools, wireless-regdb, wireshark, wpa_supplicant,
  2228. xorriso, znc
  2229. Issues resolved (http://bugs.uclibc.org):
  2230. #10781: cryptsetup luksOpen container_file container causes..
  2231. #10986: Installing package attr when already supplied by..
  2232. #11191: xattr and check-package issue
  2233. 2018.05.1, Released July 20th, 2018
  2234. Important / security related fixes.
  2235. U-Boot: Ensure host version of ncurses is picked up and not
  2236. host-ncurses built by buildroot, as that otherwise causes
  2237. widechar/non-widechar conflicts and corrupted menuconfig
  2238. menus.
  2239. Linux: Enable CONFIG_PERF_EVENTS when perf is enabled.
  2240. Toolchain: ARC tools updated to arc-2018.03.
  2241. pkg-stats: Fix python 3.x compatibility.
  2242. dl-wrapper: Fix support for URIs containing '+', fix
  2243. no-check-hash for inferred site method.
  2244. Defconfigs: Raspberrypi3: Bump rootfs size, Minnowboard-max:
  2245. Support ethernet on Turbot variant.
  2246. Updated/fixed packages: audit, bind, btrfs-progs, cifs-utils,
  2247. clamav, collectd, coreutils, docker-containerd, dos2unix,
  2248. edid-decode, file, gcc, gdb, gnupg, gnupg2, heimdal, hidapi,
  2249. imagemagick, libcurl, libgcrypt, libglib2, liblogging,
  2250. libostree, libressl, libsoup, libv4l, libvncserver, libvorbis,
  2251. libwebsockets, libxslt, lm-sensors, mariadb, mpg123, ncurses,
  2252. network-manager, nodejs, patchelf, perl, php-amqp, pinentry,
  2253. pixiewps, qpdf, qt53d, qt5base, qt5charts, qt5script, redis,
  2254. systemd, triggerhappy, uboot, wireguard, wireless-regdb,
  2255. wireshark
  2256. 2018.05, Released June 1st, 2018
  2257. Minor fixes.
  2258. Download: Work around for hanging connections for packages
  2259. from CVS, by adding a 10 minute max timeout.
  2260. Updated/fixed packages: binutils, clang, dash, expect, git,
  2261. glibc, jpeg-turbo, libjpeg, log4cplus, openvmtools, xen,
  2262. Issues resolved (http://bugs.uclibc.org):
  2263. #11051: runtime issue on STM32 with usage of binutils 2.29.x
  2264. 2018.05-rc3, Released May 28th, 2018
  2265. Fixes all over the tree.
  2266. Toolchain: ARC tools updated to arc-2018.03-rc2.
  2267. Fs: Ensure hard links in TARGET_DIR are correctly copied for
  2268. filesystem input. With the recent changes to the file system
  2269. generation logic, hard links were "expanded" in file system
  2270. images leading to bloated rootfs images for setups with hard
  2271. links.
  2272. Infrastructure: Error out for packages using the 'local'
  2273. method but forgetting to specify <pkg>_SITE.
  2274. Build rpcgen for the host when needed to support distributions
  2275. no longer shipping rpcgen with glibc (E.G. recent Fedora).
  2276. Updated/fixed packages: autofs, bash-completion, binutils,
  2277. busybox, cjson, elf2flt, libcoap, libcurl, libtirpc, lrzsz,
  2278. poppler, procps-ng, qt-webkit-kiosk, quota, samba4, xfsprogs
  2279. Issues resolved (http://bugs.uclibc.org):
  2280. #11031: ld-elf2flt: host/bin/ld.real': execvp: No such file..
  2281. #11036: C compiler cannot create executables
  2282. #11046: Git package binaries are ~180MB (compared to ~20MB in..
  2283. 2018.05-rc2, Released May 22nd, 2018
  2284. Fixes all over the tree.
  2285. Dependencies: Check that the current working directory (.)
  2286. isn't listed in PATH as that causes various build issues.
  2287. Manual: Clarify that git branch names may not be used as
  2288. version identifiers. This has never been supported, but was
  2289. kind of working (with some limitations) before the git
  2290. download rework - Now it does not work at all.
  2291. Linux: Ensure host version of ncurses is picked up and not
  2292. host-ncurses built by buildroot, as that otherwise causes
  2293. widechar/non-widechar conflicts and corrupted menuconfig
  2294. menus.
  2295. Packages: Renamed a number of package options not prefixed
  2296. with BR2_PACKAGE_<pkg> for consstency.
  2297. Download infrastructure: Fix file:// protocol handling after
  2298. download rework.
  2299. Updated/fixed packages: acl, apr-util, asterisk, attr,
  2300. bluez5_utils, cifs-utils, clamav, clang, cups-filters,
  2301. dahdi-linux, exim, faketime, gdb, go, gst1-plugins-bad,
  2302. imx-mkimage, ipsec-tools, jamvm, janus-gateway,
  2303. jquery-ui-themes, libcap, libcurl, libftdi, libkcapi, libkrb5,
  2304. libmediaart, libmodbus, libmodplug, libmpd,
  2305. libnetfilter_cthelper, libnetfilter_cttimeout, libnfc,
  2306. libnfnetlink, libnss, liboauth, libogg, libosip2,
  2307. libpam-radius-auth, libpcap, libpciaccess, llvm, log4cplus,
  2308. ltrace, lynx, mbedtls, modem-manager, nfs-utils,
  2309. python-cython, python-websockets, qt5cinex, qt5wayland, rauc,
  2310. snort, strace, ti-sgx-km, transmission, wavpack, wget, woff2,
  2311. xen, zmqpp, znc, zstd
  2312. Issues resolved (http://bugs.uclibc.org):
  2313. #10986: Installing package attr when already supplied by...
  2314. #11011: BUildroot for Raspberry Pi 2
  2315. #11016: Wrong compiler used for external user host packages
  2316. 2018.05-rc1, Released May 9th, 2018
  2317. Toolchain: glibc bumped to 2.27, musl bumped to 1.1.19,
  2318. uClibc-ng 1.0.30, Linux kernel headers bumped to 4.16.x.
  2319. Architecture: support for the Blackfin architecture has been
  2320. removed, as it was removed from Linux upstream, poorly
  2321. maintained in binutils/gdb, and abandoned by Analog Devices.
  2322. Numerous packages updated to have hashes for their license
  2323. files.
  2324. Systemd can now be built with uClibc toolchains.
  2325. Linux: addition of BR2_LINUX_KERNEL_NEEDS_HOST_LIBELF and
  2326. BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL to support building Linux
  2327. kernel configurations that need libelf on the host or openssl
  2328. on the host.
  2329. Coding style:
  2330. - all Python scripts are now verified with flake8
  2331. - check-package extended to check all Config.in and .mk files
  2332. in tree, not only the ones in package/
  2333. Infrastructure:
  2334. - The download infrastructure has seen a major overhaul, with
  2335. the main visible new feature being Git caching: a package
  2336. fetched from Git no longer needs to be re-cloned entirely
  2337. everytime its version is changed. Anoter visible change is
  2338. that the download folder now has subfolders per package. See
  2339. http://lists.busybox.net/pipermail/buildroot/2018-April/217923.html
  2340. for more details about those changes.
  2341. - The logic that generates the root filesystem images has been
  2342. reworked, with the main goal of allowing several filesystem
  2343. images to be produced in parallel, also a requirement for
  2344. top-level parallel build. Now, a .tar filesystem image is
  2345. always created, and re-extracted in a private directory to
  2346. create each format-specific filesystem image.
  2347. - A new package infrastructure was introduced for Go-based
  2348. packages: golang-package.
  2349. - Dependencies on extraction tools are now handled as proper
  2350. per-package dependencies, using
  2351. <pkg>_EXTRACT_DEPENDENCIES. Beyond a cleanup, this is also a
  2352. preparation step for top-level parallel build support.
  2353. - When a file being downloaded is part of a package with a
  2354. .hash file, but there is no hash listed for this file, the
  2355. file is now preserved in the download directory rather than
  2356. removed. This helps when updating a package, as it gives the
  2357. ability to easily calculate the hash of the file.
  2358. - Addition of '<pkg>-show-recursive-depends' and
  2359. '<pkg>-show-recursive-rdepends' make targets, to
  2360. respectively display the recursive list of dependencies and
  2361. the recursive list of reverse dependencies of a given
  2362. package.
  2363. - The /etc/shells file is now automatically generated with the
  2364. list of shell programs installed on the system.
  2365. - Addition of -Ofast optimization level as an available
  2366. option.
  2367. Major updates: Go updated to 1.10, Erlang bumped to 20.3, Qt5
  2368. bumped to 5.10.1.
  2369. New packages: 18xx-ti-utils, abootimg, bluez-alsa, brotli,
  2370. chipmunk, clang, docker-compose, docker-proxy, flare-engine,
  2371. flare-game, gst1-interpipe, gstreamer1-editing-services,
  2372. hackrf, i2pd, imx-alsa-plugins, imx-mkimage, libcdio-paranoia,
  2373. libkrb5, llvm, pixiewps, python-backports-ssl-match-hostname,
  2374. python-cached-property, python-cython, python-docker,
  2375. python-dockerpty, python-docker-pycreds,
  2376. python-flask-sqlalchemy, python-functools32, python-influxdb,
  2377. python-json-models, python-libusb1, python-networkx,
  2378. python-psycopg2, python-pymodbus, python-sqlalchemy,
  2379. python-subprocess32, python-texttable,
  2380. python-websocket-client, python-yieldfrom, quotatool, reaver,
  2381. snort, sunxi-mali-mainline, sunxi-mali-mainline-driver, tk,
  2382. tpm2-abrmd, tpm2-tools, tpm2-tss, udftools, vte, woff2.
  2383. New defconfigs: ARC HS Development Kit, Arcturus ucls1012a,
  2384. Freescale i.MX6UL EVK (with vendor kernel), Freescale i.MX6
  2385. SoloLite EVK (with vendor kernel), Freescale i.MX31 3Stack,
  2386. Freescale i.MX8Q EVK Freescale p1025twr, Freescale t1040d4rdb,
  2387. Qemu PPC64 E5500, SolidRun ClearFog Base, Tinker RK3288, Vyasa
  2388. RK3288,
  2389. Removed packages: iqvlinux, kodi-adsp-*, mplayer
  2390. Removed defconfigs: ci40, firefly_rk3288,
  2391. freescale_p1010rdb_pa, freescale_mpc8315erdb, riotboard,
  2392. teliv_evk_pro3
  2393. Issues resolved (http://bugs.uclibc.org):
  2394. #10151: toolchain eclipse register : fails with a custom
  2395. BR2_HOST_DIR
  2396. #10511: Packages get downloaded uncompressed with wget
  2397. #10531: QtWebengine doesn't build if the host hasn't a 32 bits
  2398. C++ compiler working
  2399. #10846: error in compiling gnutls
  2400. #10886: openssl-1.0.2n fails to build
  2401. #10896: /bin/sh not in /etc/shells
  2402. #10961: Grub2 fails to build for x86_64 when BR2_SSP_ALL is
  2403. enabled
  2404. 2018.02.12, Released March 29th, 2019
  2405. Important / security related fixes.
  2406. Updated/fixed packages: avahi, beecrypt, busybox, clamav,
  2407. cups, devmem2, fetchmail, file, fltk, gcc, gdb, git, jq,
  2408. leveldb, libopenssl, libraw, libseccomp, libssh2,
  2409. libunistring, mariadb, mosquitto, nodejs, ntp, openjpeg, perl,
  2410. php, putty, qt5webkit, rdesktop, systemd, wireshark, vsftpd,
  2411. xapp_xdm, xlib_libXdmcp
  2412. 2018.02.11, Released February 23th, 2019
  2413. Important / security related fixes.
  2414. Ensure the PLATFORM and OS environment variables are not set,
  2415. as they cause build issues for some packages.
  2416. The package list infrastructure now correctly handles packages
  2417. installing files with old mtime.
  2418. Linux: Skip hash checks for user supplied downloadable
  2419. patches, as no hash checksums are available for those.
  2420. scanpypi: protect against zip-slip vulnerability in zip/tar
  2421. handling
  2422. Updated/fixed packages: bind, dhcpcd, dovecot, ghostscript,
  2423. gnuradio, imagemagick, jpeg-turbo, libarchive, libb64,
  2424. libcurl, libid3tag, madplay, mosquitto, openssh, php,
  2425. postgresql, proftpd, python, python-django, python3, qt5base,
  2426. sqlcipher, swupdate, systemd, unzip, webkitgtk
  2427. 2018.02.10, Released January 31th, 2019
  2428. Important / security related fixes.
  2429. Defconfigs: Fixes for Lego EV3, QEMU AArch64-virt
  2430. check-package: fix Python 3 support
  2431. get-developers: Fix behaviour when called from elsewhere than
  2432. the toplevel directory.
  2433. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  2434. Updated/fixed packages: acpica, apache, apr, asterisk,
  2435. avrdude, cargo, cc-tool, dash, dhcpdump, dmalloc, gnuchess,
  2436. gnupg2, leveldb, libarchive, libassuan, libftdi1,
  2437. libgpg-error, libhttpparser, libmad, libsndfile, libsquish,
  2438. liburiparser, libwebsock, libxml2, lighttpd, lm-sensors,
  2439. lua-msgpack-native, mbedtls, mosquitto, netatalk, nodejs,
  2440. openssh, pango, patchelf, php, python-django, python-pyyaml,
  2441. rauc, rp-pppoe, s6-networking, samba4, sdl_sound,
  2442. shairport-sync, sqlite, subversion, sunxi-cedarx, tcpreplay,
  2443. tekui, usb_modeswitch, webkitgtk, wireshark, wolfssl,
  2444. xapp_rgb, xenomai, xerces
  2445. Issues resolved (http://bugs.uclibc.org):
  2446. #11576: Unable to start apache with event MPM on raspberry pi 3
  2447. 2018.02.9, Released December 20th, 2018
  2448. Important / security related fixes.
  2449. defconfigs: Fixes for ci20
  2450. Updated/fixed packages: c-ares, dante, freetype, ghostscript,
  2451. glibc, gnutls, go, libcurl, libgpgme, libid3tag, libiscsi,
  2452. libmpd, libopenssl, libpjsip, linux, liquid-dsp, luvi, lynx,
  2453. msgpack, nginx, nodejs, php, popt, pps-tools, python-numpy,
  2454. python-requests, samba4, sdl2_net, squashfs, swupdate, uclibc,
  2455. wine, webkitgtk, xfsprogs
  2456. Issues resolved (http://bugs.uclibc.org):
  2457. #11426: pps-tools bash dependency
  2458. 2018.02.8, Released November 26th, 2018
  2459. Important / security related fixes.
  2460. fs: Drop intermediate tarball from the filesystem handling to
  2461. fix an issue with xattrs handling related to fakeroot. Ensure
  2462. tarball target includes xattrs.
  2463. download: Fix confusion in git submodule handling if dl/ is a
  2464. symlink.
  2465. toolchain: Only allow enabling stack protection on
  2466. architectures with control flow integrity (CFI) support. Only
  2467. allow FORTIFY_SOURCE support on gcc >= 6.
  2468. genrandconfig: Fix missing newline in BR2_WGET handling,
  2469. causing the following line to be ignored. This would affect
  2470. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  2471. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  2472. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  2473. show-build-order: Also include the dependencies of
  2474. rootfs-common.
  2475. Defconfigs: Fixes for Armadeus APF27, imx6sabre.
  2476. graph-depends: Fix for package names starting with a non-alpha
  2477. character.
  2478. Updated/fixed packages: attr, audit, bind, brotli, easydbus,
  2479. elfutils, gauche, gcc, giflib, gpsd, lcdproc, libcurl,
  2480. libiscsi, libnfs, libnspr, libnss, libkcapi, libsemanage,
  2481. liburiparser, lighttpd, linux, lua-curl, mariadb, mmc-utils,
  2482. mosquitto, mysql, neardal, netplug, network-manager,
  2483. nfs-utils, nginx, openocd, openswan, p11-kit, postgresql,
  2484. prosody, qemu, qt, rpm, ruby, samba4, squid, supertuxkart,
  2485. systemd, tar, trace-cmd, traceroute, twolame, uclibc,
  2486. usb_modeswitch, vtun, webkitgtk, xdriver_xf86-video-geode,
  2487. xlib_libfontenc, xproto_inputproto, xserver_xorg-server
  2488. Issues resolved (http://bugs.uclibc.org):
  2489. #11086: download/git submodule breaks on symlinked dl folder
  2490. #11251: Util scanpypi failes when package change - to _ in..
  2491. #11476: stdio2.h error invalid use of __builtin_va_arg_pack
  2492. #11481: Docs: Is external.desc required?
  2493. 2018.02.7, Released October 25th, 2018
  2494. Important / security related fixes.
  2495. Detect and reject build paths containing '@', as this confuses
  2496. a number of packages, including GCC.
  2497. utils/get-developers: Add -e option for use with git
  2498. send-email.
  2499. utils/diffconfig: Make it work for (non-Buildroot) config
  2500. files not using the BR2_ prefix.
  2501. u-boot: Fix for environment image handling on big endian
  2502. systems.
  2503. Updated/fixed packages: binutils, ca-certificates,
  2504. cups-filters, erlang, file, freetype, gcc, git, gvfs, leveldb,
  2505. libarchive, libcurl, libssh, live555, ljlinenoise, mariadb,
  2506. mongoose, netsnmp, nmap, nodejs, ntp, open-plc-utils, poco,
  2507. psmisc, ptpd2, python-enum34, qemu, qt, qt5base, setools,
  2508. spice, spice-protocol, tinc, ustr, wireshark
  2509. Issues resolved (http://bugs.uclibc.org):
  2510. #11396: uboot environment image checksum invalid if target is big endian
  2511. 2018.02.6, Released October 7th, 2018
  2512. Important / security related fixes.
  2513. Add a number of patches to fix build errors for host utilities
  2514. on modern distributions using glibc-2.28.
  2515. mkusers: Ensure existing group members are preserved when a
  2516. group is reprocessed.
  2517. printvars: Fix issue with exceeding shell command line length
  2518. limits for certain setups.
  2519. Updated/fixes packages: acpid, android-tools, apache,
  2520. arp-scan, bandwidthd, bind, bison, clamav, connman, cppcms,
  2521. cramfs, fio, gcc, ghostscript, glibc, gnupg, httping,
  2522. igmpproxy, imagemagick, imlib2, ipsec-tools, lcms2, libcurl,
  2523. libesmtp, libnfs, libssh, libxslt, links, linuxptp,
  2524. mediastreamer, minicom, moarvm, nilfs-utils, ocrad, parted,
  2525. php, pv, python-django, qt, qt5quickcontrols, qt5webengine,
  2526. screen, sdl2, shairport-sync, squashfs, strongswan,
  2527. vboot-utils, webkitgtk, wireguard, x265, xen, xlib_libXfont,
  2528. xlib_libXft
  2529. New packages: brotli, woff2
  2530. 2018.02.5, Released August 29th, 2018
  2531. Important / security related fixes.
  2532. Defconfigs: Raspberrypi2: Bump rootfs size, T7680: Fix
  2533. genimage.cfg issue, ARM Juno: Bump ATF to v1.3 to fix build
  2534. issue.
  2535. Updated/fixed packages: acl, apache, attr, bind,
  2536. boot-wrapper-aarch64, brltty, bzip2, chrony, crda, cryptsetup,
  2537. dahdi-tools, dmidecode, dropbear, eigen, erlang, ffmpeg, gawk,
  2538. gcc, ghostscript, gnutls, ipsec-tools, libarchive, libfuse,
  2539. libopenssl, libselinux, libsoup, lighttpd, linuxptp,
  2540. lttng-modules, lttng-tools, lua-flu, lvm2, m4, makedevs,
  2541. mariadb, mbedtls, mesa3d-headers, mtd, ncurses, nodejs,
  2542. openssh, php, postgresql, python-django, qt5xmlpatterns, ruby,
  2543. samba4, shairport-sync, stress-ng, ti-utils, uboot-tools, vim,
  2544. waylandpp, wireless_tools, wireshark, wpa_supplicant, xorriso,
  2545. znc
  2546. Issues resolved (http://bugs.uclibc.org):
  2547. #10781: cryptsetup luksOpen container_file container causes..
  2548. #10986: Installing package attr when already supplied by..
  2549. #11191: xattr and check-package issue
  2550. 2018.02.4, Released July 21th, 2018
  2551. Important / security related fixes.
  2552. U-Boot: Ensure host version of ncurses is picked up and not
  2553. host-ncurses built by buildroot, as that otherwise causes
  2554. widechar/non-widechar conflicts and corrupted menuconfig
  2555. menus.
  2556. Linux: Enable CONFIG_PERF_EVENTS when perf is enabled.
  2557. Defconfigs: Raspberrypi3: Bump rootfs size, Minnowboard-max:
  2558. Support ethernet on Turbot variant.
  2559. Updated/fixed packages: bind, clamav, collectd, dos2unix,
  2560. edid-decode, gcc, gdb, heimdal, hidapi, imx-gpu-viv, libcurl,
  2561. libglib2, liblogging, libostree, libsoup, libv4l, lm-sensors,
  2562. ncurses, network-manager, patchelf, pinentry, procps-ng, qpdf,
  2563. qt5, qt53d, qt5base, qt5charts, qt5script, qt5serialport,
  2564. systemd, wireguard, wireless-regdb
  2565. Issues resolved (http://bugs.uclibc.org):
  2566. #11101: host-patchelf Endian Issue with relative RPATH
  2567. 2018.02.3, Released June 18th, 2018
  2568. Important / security related fixes.
  2569. Various fixes for building on modern distributions (GCC 8.x,
  2570. no rpcgen utility).
  2571. ARM: Default to binutils 2.28 and warn about newer binutils
  2572. versions, which are known to cause boot failures for Linux
  2573. kernels built in thumb mode.
  2574. Busybox/mdev: Fix module autoloading.
  2575. Busybox/sysvinit: inittab: Add /dev/{stdin,stdout,stderr}
  2576. symlinks, call swapon -a to activate any configured swap
  2577. devices.
  2578. Dependencies: Check that PATH does not contain current working
  2579. directory, which triggers a number of build failures.
  2580. Infrastructure: Error out for packages erroneously using the
  2581. 'local' site method but not defining a _SITE.
  2582. Linux: Fix cuImage.<dtb> / simpleImage.<dtb> handling. Ensure
  2583. kconfig uses ncurses from the host to fix a ncurses/ncursesw
  2584. mixup, causing menuconfig display corruption.
  2585. Toolchain: Workarounds for fix-rpath issues with binutils and
  2586. elf2flt.
  2587. Util-linux: Fix blocking on getrandom() issue with recent
  2588. kernels.
  2589. Remove broken freescale_imx31_3stack,
  2590. freescale_imx6sololiteevk and freescale_imx6ulevk defconfigs.
  2591. Updated/fixed packages: apr-util, asterisk, attr, audit,
  2592. autofs, binutils, busybox, cifs-utils, cups-filters, dash,
  2593. ebtables, exim, expect, f2fs-tools, faketime, file, gdb, git,
  2594. glibc, gnupg, gnupg2, gst1-plugins-bad, imagemagick, jamvm,
  2595. jpeg-turbo, libcap, libcoap, libcurl, libgcrypt, libjpeg,
  2596. libnss, libressl, libtirpc, libvncserver, libvorbis, libxslt,
  2597. log4cplus, lrzsz, ltrace, lynx, mariadb, mbedtls, mpg123,
  2598. nasm, netplug, network-manager, nfs-utils, nodejs,
  2599. openvmtools, patch, perl, php-amqp, poppler, procps-ng,
  2600. python, python-websockets, quota, redis, samba4, sysvinit,
  2601. transmission, triggerhappy, util-linux, wavpack, wget,
  2602. wireshark, xen, zmqpp
  2603. Issues resolved (http://bugs.uclibc.org):
  2604. #10986: Installing package attr when already supplied by busybox..
  2605. #11031: ld-elf2flt: host/bin/ld.real': execvp: No such file or..
  2606. 2018.02.2, Released May 4th, 2018
  2607. Important / security related fixes.
  2608. Tweak package size/file instrumentation to better handle
  2609. package rebuilds.
  2610. Revert /etc/shells creation when bash is enabled.
  2611. Exclude /lib/firmware from the rpath fixup logic, as it may
  2612. contain non-native ELF files.
  2613. Scanpypi: Support the new PyPi infrastructure.
  2614. Handle GCC 8.x on the host.
  2615. Ensure timestamp of /usr is updated to support the systemd
  2616. ConditionNeedsUpdate option.
  2617. Updated/fixed packages: bluez5_utils, flann, gdb, gnupg2,
  2618. grub2, libcec, libcgi, libglib2, libgpg-error, libgpgme,
  2619. libtomcrypt, mbedtls, mkpasswd, php, python, python-requests,
  2620. python-watchdog, qt53d, qt5websockets, sdl2, sdl2_image,
  2621. syslog-ng, systemd, tcl, tcllib, uclibc, usb_modeswitch,
  2622. wireguard, wmctrl
  2623. Issues resolved (http://bugs.uclibc.org):
  2624. #10896: /bin/sh not in /etc/shells
  2625. #10961: Grub2 fails to build for x86_64 when BR2_SSP_ALL is enabled
  2626. 2018.02.1, Released April 9th, 2018
  2627. Important / security related fixes.
  2628. Removed unmaintained defconfigs: Creator Ci40, Firefly rk3288,
  2629. Freescale mpc8315erdb / p1010rdb_pa, Riotboard, Teliv EVK
  2630. Pro3.
  2631. Infrastructure: Speed up instrumentation for package size by
  2632. comparing timestamps instead of md5 checksums, as doing
  2633. checksums could lead to up to 25% longer build time for big
  2634. configurations.
  2635. Rename the internal <pkg>_BASE_NAME variable to <pkg>_NASENAME
  2636. to avoid name clashes with packages ending on '-base'.
  2637. Add a better fix for build issues for autotools based packages
  2638. checking for C++ support on toolchains without C++ support.
  2639. Build host-tar if tar is older than 1.27 on the build machine
  2640. to work around reproducibility issues with git archives
  2641. containing long paths.
  2642. check-unique-files: Fix for filenames not representable in the
  2643. users' locale.
  2644. Check-bin-arch: Add support for per-package ignore paths
  2645. (<pkg>_BIN_ARCH_EXCLUDE).
  2646. Toolchain: Fix SSP support detection for external toolchains.
  2647. linux: Add _NEEDS_HOST_OPENSSL / LIBELF options to ensure
  2648. these dependencies are available for Linux configurations
  2649. needed these dependencies, similar to how it is done for
  2650. U-Boot.
  2651. Support custom (not in tree) device tree files in addition to
  2652. in-tree ones.
  2653. U-Boot / uboot-tools: Fix header conflict with libfdt-devel
  2654. installed on host.
  2655. Updated/fixed packages: apache, busybox, c-ares, cmake,
  2656. docker-engine, enlightenment, eudev, fbgrab, freescale-imx,
  2657. gtest, imagemagick, intel-microcode, irssi, jimtcl, kmod,
  2658. kodi, ktap, libcoap, libcurl, libfcgi, libhttpparser,
  2659. libminiupnpc, libopenssl, libpjsip, libss7, libssh2, libupnp
  2660. libupnpp, libuv, libvorbis, memcached, motion, musl, nodejs,
  2661. ntp, openblas, opencv3, openocd, opus-tools, patch, php,
  2662. pkgconf, postgresql, powerpc-utils, python-jsonschema,
  2663. python-webpy, qemu, qt5bsae, qt5script, qt5webkit, rapidjson,
  2664. rauc, sam-ba, samba4, sngrep, systemd, tremor, uboot-tools,
  2665. uclibc-ng-test, upmpdcli, wireshark, xerces, xterm, zstd
  2666. New packages: docker-proxy, python-functools32
  2667. Issues resolved (http://bugs.uclibc.org):
  2668. #10766: upmpdcli: Segmentation fault
  2669. #10776: ktap fails to build
  2670. #10846: error in compiling gnutls
  2671. #10856: openblas on qemu_x86_64_defconfig fails with "sgemm_..
  2672. 2018.02, Released March 4th, 2018
  2673. Fixes all over the tree.
  2674. Issues with systemd with a readonly rootfs and DBus fixed.
  2675. Instructure:
  2676. - check-uniq-files: fix Python 2.6 compatibility.
  2677. - dependencies.sh: check for external argparse module for
  2678. Python 2.6.
  2679. - Add infrastructure to detect and use a UTF-8 locale on the
  2680. host, needed by systemd.
  2681. Update/fixed packages: clamav, dash, dhcp, dovecot, efl,
  2682. ffmpeg, libv4l, mono, mosquitto, php, postgresql, qt,
  2683. scanpypi, sdl2, systemd, tor, tvheadend, uboot, wavpack
  2684. Issues resolved (http://bugs.uclibc.org):
  2685. #10831: qemu_x86_64_defconfig build fails on linux-headers..
  2686. 2018.02-rc3, Released February 27th, 2018
  2687. Fixes all over the tree.
  2688. check-bin-arch: skip /lib/modules to allow 32-bit userland
  2689. with 64bit kernel.
  2690. dependencies: Blacklist tar 1.30+ and build our own host-tar
  2691. if needed as tar 1.30+ changed the --numeric-owner output for
  2692. long path names. Build host-tar before other host-dependencies
  2693. as they need it to extract their source tarballs.
  2694. Update/fixed packages: asterisk, azmq, bluez5_utils, domoticz,
  2695. e2fsprogs, erlang, exim, glibc, gpsd, jq, libglib2, libvorbis,
  2696. mariadb, mbedtls, mesa3d, mesa3d-headers, mpv, patch, pcre2,
  2697. php, qt5, qt5multimedia, qt5wayland, qt5webengine, qt5webkit,
  2698. systemd, quagga, rustc, uboot, wireguard, zic, zlib-ng
  2699. Issues resolved (http://bugs.uclibc.org):
  2700. #10726: Current libglib2.mk creates broken libglib2 binary...
  2701. #10786: Linux fails to build unless make linux-menuconfig...
  2702. #10796: Cannot generate cpio image without selecting CON...
  2703. 2018.02-rc2, Released February 15th, 2018
  2704. Fixes all over the tree.
  2705. Dependencies: Ensure C++ support is available like for C
  2706. support for packages needing 32bit host support.
  2707. utils/genrandconfig: Check host dependencies for config.
  2708. Updated/fixed packages: busybox, dnsmasq, dropbear, ffmpeg,
  2709. glibc, keepalived, libcpprestsdk, libgpiod, libmaxminddb,
  2710. librsvg, libtasn1, libv4l, libxml2, lightning, ltp-testsuite,
  2711. mesa3d, mesa3d-demos, mesa3d-headers, nftables, open-lldp,
  2712. php, postgresql, python-crossbar, qt5, qt53d, qt5enginio,
  2713. qt5tools, qt5webengine, qt5webkit, rsync, rust-bin, rustc,
  2714. systemd
  2715. Issues resolved (http://bugs.uclibc.org):
  2716. #9781: ti-sgx-km build on kernel >4.1
  2717. #10141: Squashfs extended attribute failures
  2718. 2018.02-rc1, Released February 5th, 2018
  2719. The global source-check and per-package <pkg>-source-check
  2720. targets have been removed.
  2721. Architecture: Add x86 Silvermont variant. Add several new ARM
  2722. variants, rework MIPS NaN logic. Support mainline binutils/gcc
  2723. for ARC.
  2724. Toolchains: Linaro toolchains upgraded to 2017.11 release, ARC
  2725. external toolchains upgraded to arc-2017.09. Libatomic is now
  2726. also copied for external musl based toolchains.
  2727. Add binutils 2.30.x and switch to binutils 2.29.x by default.
  2728. Added hardening options to build with RELRO and FORTITY.
  2729. New defconfigs: Bananapi M64, FriendlyARM Nanopi A64 & NEO2,
  2730. imx6slevk, imx6sx-sdb, imx6ulevk, Olimex A64-OLinuXino,
  2731. Orangepi lite / pc plus / pc / prime / win / win plus / zero
  2732. plus2, Pine64, Solidrun MacchiatoBin. Sopine.
  2733. Add utils/diffconfig, a simple utility for comparing
  2734. configuration files - Adapted from the version in the
  2735. Linux kernel.
  2736. Infrastructure: Check that the same file is not touched by
  2737. multiple packages, as a preparation for toplevel parallel
  2738. builds.
  2739. Hashes for the license files for a large number of packages
  2740. have been added, ensuring that license changes will not be
  2741. missed when packages are bumped.
  2742. Fix build issue for autotools based packages checking for C++
  2743. support on toolchains without C++ support and on a distro
  2744. lacking /lib/cpp (E.G. Arch Linux).
  2745. Support for the meson build system.
  2746. Pie charts generated by 'graph-build' or 'graph-size' are now
  2747. sorted according to the size of each piece.
  2748. System: Only show getty options when busybox init or sysvinit
  2749. are used.
  2750. ARM-trusted-firmware: Support ATF bundled in U-Boot as
  2751. well as U-Boot bundled in ATF.
  2752. Zlib is now a virtual package, provided by either libzlib or
  2753. zlib-ng, similar to openssl.
  2754. Support for the Rust programming language.
  2755. New packages: aoetools, armbian-firmware, binaries-marvell,
  2756. brltty, cargo, cargo-bin, cups-filters, curlpp, daq,
  2757. flatbuffers, gconf, glorytun, gstreamer1-mm, imx-m4fwloader,
  2758. imx-gpu-g2d, json-for-modern-cpp, libcpprestsdk, libgta,
  2759. libostree, libupnp18, luadbi, luadbi-sqlite3, lua-utf8, lynx,
  2760. meson, mv-ddr-marvell, nilfs-utils, opentracing-cpp,
  2761. open-lldp, pimd, proj, python-flask-cors,
  2762. python-jaraco-classes, python-more-itertools, python-oauthlib,
  2763. python-raven, python-remi, python-requests-oauthlib,
  2764. python-schedule, python-secretstorage, python-see,
  2765. python-tabledata, python-txtorcon, python-xlib, qt5charts,
  2766. rtl8189fs, rtl8723bu, rust, rustc, rust-bin, rygel, safeclib,
  2767. solatus, tcf-agent, traceroute, waylandpp, wolfssl,
  2768. zisofs-tools, zlib-ng
  2769. Removed packages: eeprog
  2770. 2017.11.2, Released January 21st, 2018
  2771. Important / security related fixes.
  2772. External toolchain: libatomic is now also copied for musl
  2773. based toolchains.
  2774. nconfig: Fix for ncurses/ncursesw linking issue causing crashes.
  2775. System: Only show getty options when busybox init or sysvinit
  2776. are used.
  2777. Infrastructure: Fix build issue for autotools based packages
  2778. checking for C++ support on toolchains without C++ support and
  2779. on a distro lacking /lib/cpp (E.G. Arch Linux).
  2780. Pie charts generated by 'graph-build' or 'graph-size' are now
  2781. sorted according to the size of each piece.
  2782. Updated/fixed packages: asterisk, avahi, bind, busybox,
  2783. coreutils, eeprog, intel-microcode, iputils, irssi, kmsxx,
  2784. libiio, linux-firmware, lz4, mariadb, matchbox-lib, mcookie,
  2785. ntp, php, pound, rpcbind, tar, ti-cgt-pru, webkitgtk, xen,
  2786. xlib_libXpm
  2787. Issues resolved (http://bugs.buildroot.org):
  2788. #9996: lz4 package does not install lz4 binaries in target
  2789. #10176: Rsyslog's S01logging is deleted by Busybox.mk from...
  2790. #10216: package/x11r7/mcookie/mcookie.c:207: bad size ?
  2791. #10301: systemd/getty unused options
  2792. #10331: kmsxx, host installation fails with BR2_SHARED_...
  2793. #10556: Building ntp package with SSL library libressl...
  2794. #10641: avahi-autoipd not starting when using systemd-tmpfiles
  2795. 2017.11.1, Released December 31th, 2017
  2796. Important / security related fixes.
  2797. Updated/fixed packages: asterisk, checkpolicy, dhcp, flann,
  2798. gdb, glibc, heimdal, kodi-pvr-mediaportal-tvserver,
  2799. kodi-pvr-stalker, libcue, libopenssl, libpqxx, libsoxr,
  2800. linknx, linux-tools, lldpd, ltp-testsuite, mariadb, mfgtools,
  2801. nodejs, nut, pulseaudio, python-cffi, qemu, rsync, tor, uboot,
  2802. uboot-tools, vlc, webkitgtk, weston, wireguard, wireshark,
  2803. xenomai, xfsprogs
  2804. 2017.11, Released November 30, 2017
  2805. Fixes all over the tree.
  2806. Toolchain: Use github mirror for Glibc.
  2807. Defconfigs: Correct boot.cmd for bananapi-m1.
  2808. Makefiles: Workaround include order issues for certain make
  2809. versions by explicitly sorting the result of wildcard where it
  2810. matters.
  2811. Download: Ensure subversion runs in non-interactive mode.
  2812. Updated/fixed packages: asterisk, boost, chrony, dovecot,
  2813. dvb-apps, exim, feh, freerdp, fwup, google-breakpad, jose,
  2814. kvm-unit-test, lftp, libcurl, libevent, libfastjson, libpjsip,
  2815. libupnp, linphone, localedef, lttng-tools, mp4v2, mtools,
  2816. ndisc6, oracle-mysql, parted, pdbg, qt, qt5connectivity,
  2817. qt5declarative, qt5webkit, rauc, runc, samba4, shairport-sync,
  2818. systemd-bootchart, webkitgtk, wireguard, xlib_libXcursor,
  2819. xlib_libXfont, xlib_libXfont2,
  2820. Issues resolved (http://bugs.buildroot.org):
  2821. 10501: host-localedef fails to compile on Ubuntu 17.10
  2822. 10506: Changed kernel image type (e.g. zImage to uImage)...
  2823. 2017.11-rc2, Released November 13th, 2017
  2824. Fixes all over the tree.
  2825. Updated/fixed packages: collectd, ffmpeg, freerdp,
  2826. go-bootstrap, imagemagick, jimtcl, libpjsip, libplist, libuv,
  2827. mesa3d, nodejs, ntp, openjpeg, postgresql, python-numpy, ruby,
  2828. snmp++, usb_modeswitch, util-linux, vboot-utils, webkitgtk,
  2829. wireshark, wpa_supplicant, xapp_xdriinfo
  2830. Issues resolved (http://bugs.buildroot.org):
  2831. #10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  2832. #10491: Cannot output security warning when compiled with buildroot..
  2833. 2017.11-rc1, Released November 6th, 2017
  2834. Fixes all over the tree and new features.
  2835. Openssl is now a virtual package, which may be provided by
  2836. OpenSSL (now renamed to libopenssl) or LibreSSL.
  2837. libssh2: there is now an explicit choice of the backend to use
  2838. (mbedtls, gnutls or openssl). Previously, the choice was implicit
  2839. based on the TLS library that was selected. Now, it is possible to
  2840. choose the backend, which is important if several TLS libraries are
  2841. selected.
  2842. netsnmp: all MIB files are now installed, making the target filesystem a
  2843. bit bigger than before. To remove unneeded MIBS, you should use a
  2844. post-build script.
  2845. Toolchain: Linaro toolchains updated to 2017.08, ARC toolchain
  2846. updated to 2017.09, Glibc updated to 2.26, Glibc support for
  2847. ARCv2. The toolchain wrapper now handles SOURCE_DATE_EPOCH for
  2848. older (pre-gcc7.x) toolchains for BR2_REPRODUCIBLE.
  2849. New defconfigs: Atmel SAM45D27, Bananapi M1 and M2 Plus,
  2850. Engicam i.CoreM6 Qt5 configuration, i.MX6 sabreauto (mainline
  2851. kernel/u-boot), i.MX6Q sabresd Qt5 configuration, i.MX7d-pico,
  2852. QEMU ppc64le, Raspberry pi3 Qt5 webengine configuration,
  2853. Technologic TS-7680.
  2854. New packages: asterisk, azmq, bcg729, boinc, dahdi-linux,
  2855. dahdi-tools, freeswitch-mod-bcg729, fscryptctl, libb64,
  2856. libpri, libss7, lua-basexx, lua-compat53, lua-cqueues,
  2857. lua-curl, lua-datafile, lua-fifo, lua-httpd,
  2858. lua-lpeg-patterns, lua-markdown, lua-sailor, lua-value,
  2859. luksmeta, minetest, minetest-game, pdmenu, prosody,
  2860. python-aiocoap, python-automat, python-ibmiotf,
  2861. python-iso8601, python-m2r, python-simplesqlite,
  2862. python-websockets, python-xmltodict, qt5wayland, qt5webengine,
  2863. restorecond, selinux-python, semodule-utils, uhubctl,
  2864. wireguard, wsapi-fcgi, wsapi-xavante
  2865. Removed packages: aiccu, rfkill, sepolgen
  2866. Issues resolved (http://bugs.buildroot.org):
  2867. #10281: lsblk does not compile for util-linux
  2868. #10336: lttng compilation fails : linking error
  2869. #10351: glibc missing in rootfs
  2870. #10356: nfs-utils missing header
  2871. #10361: python3 python-config script generates invalid includes
  2872. #10366: dropbear download url has changed
  2873. #10391: WiringPi retrieves wrong (old) version
  2874. #10406: Beaglebone black: Buggy SGX driver version, swapped...
  2875. #10426: uboot-tools' fw_setenv does not update the redundant...
  2876. #10451: libpcap 1.8.x and 1.7x does not compile on PPC
  2877. 2017.08.2, Released November 28th, 2017
  2878. Important / security related fixes.
  2879. Qt: 5.6 version updated to 5.6.3.
  2880. Reproducible: Do not override SOURCE_DATE_EPOCH if already set
  2881. in the environment.
  2882. Makefiles: Workaround include order issues for certain make
  2883. versions by explicitly sorting the result of wildcard where it
  2884. matters.
  2885. Updated/fixed packages: apr, apr-util, arqp-standalone,
  2886. azure-iot-sdk-c, collectd, dvb-apps, ffmpeg, go-bootstrap,
  2887. google-breakpad, gstreamer, imagemagick, irssi, jimtcl,
  2888. kvm-unit-test, libcurl, libfastjson, libglib2, libidn,
  2889. libpjsip, libplist, localedef, lttng-tools, luajit, mesa3d,
  2890. moarvm, mp4v2, openssh, openssl, oracle-mysql, postgresql,
  2891. python3, python-pyqt5, qt, qt5base, qt5canvas3d,
  2892. qt5connectivity, qt5declarative, qt5engineio,
  2893. qt5graphicaleffects, qt5imageformats, qt5location,
  2894. qt5multimedia, qt5quickcontrols, qt5quickcontrols2, qt5script,
  2895. qt5sensors, qt5serialbus, qt5serialport, qt5svg, qt5tools,
  2896. qt5webchannel, qt5webkit, qt5websockets, qt5x11extras,
  2897. qt5xmlpatterns, quagga, redis, ruby, samba4, sdl2, snmppp,
  2898. swupdate, ti-gfx, uboot-tools, usb_modeswitch, vboot-utils,
  2899. webkitgtk, wget, wireshark, xapp_xdriinfo.
  2900. Issues resolved (http://bugs.buildroot.org):
  2901. 10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  2902. 10361: python3 python-config script generates invalid includes
  2903. 10501: host-localedef fails to compile on Ubuntu 17.10
  2904. 2017.08.1, Released October 23rd, 2017
  2905. Important / security related fixes.
  2906. Webkitgtk bumped to the 2.18.x series, fixing a large number
  2907. of security issues.
  2908. Defconfigs: galileo: fix ext4 related kernel config, bump
  2909. kernel for gcc 6.x compatibility, enable wchar support for
  2910. grub2. wandboard: correct rootfs offset
  2911. support: Ensure gzip compression level 6 is used for git
  2912. tarballs. check-bin-arch: Correctly handle (ignore) symbolic
  2913. links. check-rpath: Also handle PIE binaries
  2914. External toolchain: Correctly handle glibc Buildroot
  2915. toolchains built with merged /usr
  2916. musl: fix ARMv4 build with binutils 2.27.51+, fix for
  2917. CVE-2017-15650
  2918. Updated/fixed packages: apache, augeas, bind, bluez5_utils,
  2919. busybox, bzip2, cmake, dnsmasq, ejabberd, gcc, git, go, ffmpeg, file,
  2920. flashrom, gd, gdk-pixbug, gnupg2, hostapd, ifupdown-scripts,
  2921. imagemagick, iucode-tool, kernel-module-imx-gpu-viv, lame,
  2922. libarchive, libcurl, libffi, libidn, libmbim, libnspr, libnss,
  2923. libressl, librsync, libsoup, libxml2, libzip, mbedtls, musl,
  2924. netplug, nginx, openvpn, pkgconf, poppler, proxychains-ng,
  2925. qemu, qt, rpi-userland, syslog, ruby, samba4, softether,
  2926. sqlite, strongswan, subversion, supertuxkart, supervisor, tcpdump,
  2927. tor, unrar, urq, vboot-utils, webkitgtk, wpa_supplicant, xen,
  2928. xmlstarlet, xlib_libXfont, xlib_libXfont2,
  2929. xserver_xorg-server, zsh
  2930. 2017.08, Released September 1st, 2017
  2931. Minor fixes.
  2932. Toolchain: Don't allow internal toolchain builds for MIPS
  2933. M6201/P6600, as support for these are not yet in mainline GCC.
  2934. Updated/fixed packages: bcusdk, connman, dialog, dnsmasq,
  2935. gnupg, grub2, iostat, iucode-tool, libgcrypt, libkcapi,
  2936. libphidget, libv4l, linux-tools, mediastreamer, minidlna,
  2937. nss-pam-ldapd, nvidia-driver, qt-webkit-kiosk, rpcbind, squid,
  2938. transmission, vde2, vim
  2939. Updated/fixed defconfigs:
  2940. Removed packages: simicfs.
  2941. Issues resolved (http://bugs.buildroot.org):
  2942. #10261: Grub2 fails to build for x86_64
  2943. 2017.08-rc3, Released August 23rd, 2017
  2944. Fixes all over the tree.
  2945. Updated/fixed packages: alsa-lib, alsa-utils, cc-tool,
  2946. dbus-cpp, e2fsprogs, elf2flt, faad2, fakeroot, gcc, git, gpsd,
  2947. gst1-validate, kvmtool, libconfuse, libepoxy, librsync,
  2948. libspatialindex, libunwind, linux, linux-headers, lua,
  2949. mariadb, mesa3d, mtd, openocd, python3, syslinux, sysvinit,
  2950. whois, xen, zmqpp.
  2951. Updated/fixed defconfigs: ci20, socrates_cyclone5,
  2952. toradex_apalis_imx6.
  2953. Removed defconfig: Armadeus APF9328.
  2954. skeleton-* packages introduced in -rc1 have been renamed to
  2955. skeleton-init-* instead.
  2956. Issues resolved (http://bugs.buildroot.org):
  2957. #10141: Squashfs extended attribute failures
  2958. 2017.08-rc2, Released August 11th, 2017
  2959. Fixes all over the tree.
  2960. Updated/fixed packages: bind, dbus, erlang-p1-xml, faad2,
  2961. ficl, gcc, gdb, glibc, jack2, libcurl, linux, linux-headers,
  2962. lua, mutt, nvme, qt5base, skeleton-common, snappy, stella,
  2963. swupdate, uclibc, valgrind, webkitgtk.
  2964. Updated/fixed defconfigs: beaglebone_qt5, minnowboard_max,
  2965. nanopi_m1{, _plus}, olimex_a20_olinuxino_lime, qemu_sparc,
  2966. qemu_sparc64.
  2967. The cmake-package infrastructure for host packages has been
  2968. fixed to not incorrectly detect target packages through
  2969. pkg-config.
  2970. Issues resolved (http://bugs.buildroot.org):
  2971. #9926: systemd-resolved.service: Failed at step NAMESPACE (systemd 233)
  2972. #10021: libqeglfs-viv-integration.so file is missing for qt5 on armv7
  2973. #10026: lua-5.3.4: fix lua linker error in swupdate
  2974. #10146: package/skeleton-common fix recursive variable
  2975. #10156: glibc compilation fails for X86 32bits (i386)
  2976. #10201: toolchain-wrapper.c:192: (error) Memory leak:
  2977. #10221: Buildroot Support
  2978. 2017.08-rc1, Released August 2nd, 2017
  2979. Infrastructure:
  2980. - The skeleton package has been split into multiple packages:
  2981. skeleton-sysv (when Busybox or SysV init are used),
  2982. skeleton-systemd (when systemd is used), skeleton-none (when
  2983. no init system is used) and skeleton-custom (when a custom
  2984. skeleton is used). Those packages, except skeleton-custom,
  2985. share common logic and data in a new package called
  2986. skeleton-common. The skeleton package becomes a virtual
  2987. package. This change allows to generate a filesystem that is
  2988. compliant with systemd expectations.
  2989. - Support for using a read-only filesystem with systemd has
  2990. been fixed.
  2991. - Major revamp of the gettext handling, with user-visible
  2992. effect:
  2993. - prior to this revamp, when BR2_ENABLE_LOCALE=y, each
  2994. package could decide to enable or not NLS support. When
  2995. BR2_ENABLE_LOCALE was disabled, NLS support was forced off
  2996. by passing --disable-nls to packages.
  2997. - after this revamp, a new BR2_SYSTEM_ENABLE_NLS option
  2998. controls whether NLS support should be enabled or not in
  2999. packages. This option defaults to disabled, which means
  3000. that now, NLS support is by default disabled in all
  3001. packages.
  3002. Therefore, if you need NLS support in packages, you must now
  3003. explicitly enable the BR2_SYSTEM_ENABLE_NLS option.
  3004. - The host directory no longer has a usr/ component. This
  3005. makes it much more natural to use that directory as an
  3006. externally used toolchain. For compatibility with existing
  3007. scripts, a usr -> . link is still added.
  3008. - Hashes are now checked on tarballs by Buildroot when a
  3009. package is sourced from a Git repository.
  3010. - Patches are no longer being downloaded from Github, since
  3011. auto-generated patches could change over time, and break
  3012. hashes. All patches that were downloaded from Github are now
  3013. stored in their respective package directories.
  3014. - Hash files in packages can now contain hashes for the
  3015. license files contained in the package source code. This
  3016. allows to detect changes in such license files.
  3017. - Binaries in $(TARGET_DIR) are now cleaned up from invalid
  3018. RPATHs at the end of the build.
  3019. - A new "make sdk" target prepares $(HOST_DIR) to be
  3020. relocatable: turns RPATHs in host binaries into relocatable
  3021. ones, removes bogus RPATHs from staging binaries/libraries,
  3022. and provides a relocate-sdk script that can be executed to
  3023. relocate the SDK after installation.
  3024. - Addition of utils/genrandconfig which generates a random
  3025. configuration based on a set of pre-defined toolchain
  3026. configurations (support/config-fragments/autobuild/) and a
  3027. random selection of packages. It is now used by the
  3028. autobuilders to generate the random configurations.
  3029. Filesystems:
  3030. - ext2/3/4 filesystems are now generated using mkfs.ext from
  3031. e2fsprogs instead of using genext2fs.
  3032. Architecture:
  3033. - Addition of support for ARM big.LITTLE variants
  3034. - Improved MIPS support, with options to select NaN encoding
  3035. and FP32 mode.
  3036. Toolchain:
  3037. - Switch to gcc 6.x as the default gcc version, add support
  3038. for gcc 7.x, remove support for gcc 4.8
  3039. - Switch to binutils 2.28 as the default binutils version, add
  3040. support for binutils 2.29, remove support for binutils 2.26
  3041. - Support added for gdb 8.0
  3042. - uClibc-ng bumped to 1.0.26
  3043. - CodeSourcery toolchains for x86 and SuperH have been
  3044. removed, they were using a too old glibc version
  3045. (2.17). External toolchains with glibc 2.17 or earlier are
  3046. no longer supported.
  3047. - The version selection in the glibc package has been
  3048. removed. Like musl and uClibc-ng, we now use the latest
  3049. glibc version.
  3050. - Improved support for Xtensa toolchain overlays, which can
  3051. now be downloaded.
  3052. Tools:
  3053. - Numerous improvements to the runtime test infrastructure
  3054. - Tests are now executed by Gitlab CI on a regular basis
  3055. - Tools that are directly useful to the user have been moved
  3056. from support/scripts/ to utils/: brmake, check-package,
  3057. get-developers, scancpan, scanpipy, size-stats-compare,
  3058. test-pkg.
  3059. New defconfigs: A13 Olinuxino, Engicam platforms (i.CoreM6
  3060. Solo/Dual/DualLite/Quad, RQS SOM, GEAM6UL SOM, Is.IoT MX6UL
  3061. SOM), Nano Pi M1 (Plus), OrangePi Zero and Plus.
  3062. New packages: azure-iot-sdk-c, cracklib, dt-utils, easy-rsa,
  3063. erlang-jiffy, erlang-p1-oauth2, erlang-p1-xmpp,
  3064. ifupdown-scripts, irrlicht, kodi-inputstream-adaptive,
  3065. kodi-inputstream-rtmp, kvazaar, let-me-create, libloki,
  3066. libpwquality, libressl, libspatialindex, libva-utils,
  3067. linuxconsoletools, linuxptp, luaossl, lua-sdl2, lua-stdlib,
  3068. lsscsi, paxtest, pcre2, pixz, python-asn1crypto,
  3069. python-backports-shutil-get-terminal-size, python-bcrypt,
  3070. python-cheroot, python-h2, python-hpack, python-hyperframe,
  3071. python-hyperlink, python-ipython-genutils, python-pathlib2,
  3072. python-pickleshare, python-priority, python-portend,
  3073. python-scandir, python-systemd, python-tempora,
  3074. python-traitlets, python-typepy, qt5virtualkeyboard,
  3075. ratpoison, rauc, refpolicy, rhash, sdl2_mixer, sdl2_net,
  3076. xr819-xradio, zstd
  3077. Removed packages: cloog, input-tools, mke2img
  3078. Issues resolved (http://bugs.buildroot.org):
  3079. #7892: systemd-journald is broken
  3080. #9341: avahi-utils does not compile with uClibc + libglib2
  3081. #9441: Link BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY to
  3082. BR2_ENABLE_DEBUG
  3083. #9746: ext4 image generated by Buildroot is not working
  3084. properly with U-Boot
  3085. #9886: Build fails with "unexpected EOF while looking for
  3086. matching `"'" if PATH contains a newline
  3087. #9891: parted 3.1 => 3.2?
  3088. #9911: qt5 does not build on sparc
  3089. #9916: qt5 does not build on
  3090. arm-buildroot-linux-uclibcgnueabihf for ARMv8 cores
  3091. #9936: Host QEMU does not build with SDL support because of
  3092. pkg-config
  3093. #9941: nodejs option disappears for arm
  3094. #9951: SCANCPAN failure
  3095. #9966: util-linux-2.30/.stamp_built' failed
  3096. #9976: License file for package 'rtl8821au' incorrect
  3097. #9991: SGX Error implicit declaration of function
  3098. ‘dmac_map_area’
  3099. #10011: wget does not work from Buildroot
  3100. #10036: Buildroot builds Raspbian Jessie headless image
  3101. presenting incorrect prompt
  3102. #10051: make: *** No rule to make target
  3103. 'raspberrpi3_defconfig'. Stop reported with Buildroot
  3104. v2017.05.1
  3105. #10056: No .config file was produced in /buildroot folder
  3106. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer
  3107. failure
  3108. #10071: fakeroot: replace hard-coded paths in post install
  3109. #10076: Makefile:4113: recipe for target 'all-gcc' failed
  3110. #10091: gcc7.1 does not build with graphite support due to old
  3111. isl
  3112. #10121: webkit without the multimedia option causes build
  3113. error
  3114. 2017.05.2, Released July 27th, 2017
  3115. Important / security related fixes.
  3116. Webkitgtk bumped to the 2.16.x series, fixing a large number
  3117. of security issues.
  3118. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  3119. which default to PIE mode.
  3120. Updated/fixed packages: aespipe, apache, bind, binutils,
  3121. busybox, ccache, collectd, dieharder, efibootmgr, efivar,
  3122. expat, ffmpeg, gcc, heimdal, iproute2, irssi, libglib2,
  3123. libmemcached, libosip2, libtirpc, libxml-parser-perl,
  3124. linux-fusion, linux-zigbee, mpg123, orc, pcre, php, protobuf,
  3125. pulseaudio, python-setproctitle, qt5base, rpi-firmware,
  3126. samba4, syslinux, systemd, spice, tcpdump, tiff, uboot-tools,
  3127. webkitgtk, x265, xserver_xorg-server, xvisor
  3128. Issues resolved (http://bugs.buildroot.org):
  3129. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  3130. 2017.05.1, Released July 4th, 2017
  3131. Important / security related fixes.
  3132. Update support/scripts/scancpan to use METACPAN v1 API as v0
  3133. has been shutdown.
  3134. Update support/scripts/mkusers to handle setups where
  3135. /etc/shadow is a symlink.
  3136. External toolchain: Don't create musl dynamic loader symlink
  3137. for static builds.
  3138. Setlocalversion: Correct detection of mercurial revisions for
  3139. non-tagged versions.
  3140. Defconfigs: at91sam9x5ek_mmc: workaround boot rom issue.
  3141. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  3142. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, glmark2,
  3143. gnutls, gst1-plugins-bad, imagemagick, imx-uuc, intltool,
  3144. iperf, ipsec-tools, irssi, kmod, libcurl, libgcrypt, libmad,
  3145. libnl, lugaro, mosquitto, mpg123, ncurses, nodejs, ntp,
  3146. openssh, openvpn, pngquant, python-simplegeneric, qt5base,
  3147. qt5multimedia, rtl8821au, socat, spice, systemd, tor, trinity,
  3148. tslib, vlc, x264, xen, xlib_libxshmfenc, xserver_xorg-server
  3149. Issues resolved (http://bugs.buildroot.org):
  3150. #9976: License file for package 'rtl8821au' incorrect
  3151. 2017.05, Released May 31st, 2017
  3152. Minor fixes.
  3153. External toolchain: musl dynamic linker symlink for mips-sf
  3154. corrected.
  3155. Updated/fixed packages: agentpp, bash, exim, hans, madplay,
  3156. qpid-proton, rtl8188eu, snmppp, stm32flash, strongswan, sudo,
  3157. xen
  3158. Issues resolved (http://bugs.buildroot.org):
  3159. #9906: genimage: Disk full
  3160. 2017.05-rc3, Released May 30th, 2017
  3161. Fixes all over the tree.
  3162. ARC toolchain bumped to 2017.03
  3163. Runtime testing improvements and cleanups.
  3164. Updated/fixed packages: acpica, armadillo, audiofile, c-icap,
  3165. cppcms, dhcp, docker-engine, dropbear, elfutils, erlang,
  3166. fbgrab, ffmpeg, flashrom, ftop, gnutls, google-breakpad,
  3167. keepalived, kodi, libcdio, libepoxy, libev, libminiupnpc,
  3168. libqmi, libtasn1, libv4l, mariadb, mono, mosh, mosquitto,
  3169. mxml, ntp, opencv, openpowerlink, oracle-mysql, popt,
  3170. pulseview, python-enum34, rabbitmq-c, redis, samba4, stella,
  3171. xen
  3172. Removed packages: firejail, ola
  3173. Issues resolved (http://bugs.buildroot.org):
  3174. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  3175. #9876: aarch64 support with gcc 4.8 toolchain
  3176. #9896: host-gcc-initial error downloading because incorrect URL
  3177. 2017.05-rc2, Released May 17th, 2017
  3178. Fixes all over the tree.
  3179. ARC toolchain bumped to 2017.03-rc2
  3180. Updated/fixed packages: bluez_utils, boost, clamav, daemon,
  3181. efibootmgr, efl, espeak, expedite, faketime, ffmpeg, fxload,
  3182. git, gpsd, kvm-unit-tests, libcdio, libv4l, lua, mke2img,
  3183. mpir, mpv, odroid-scripts, openblas, opencv3, openvpn, php,
  3184. postgresql, protobuf, qt5declarative, qwt, radvd, rpcbind,
  3185. rtmpdump, strongswan, sudo, ltp-testsuite, uclibc-ng-test,
  3186. vlc, x11vnc, xfsprogs
  3187. Issues resolved (http://bugs.buildroot.org):
  3188. #9796: source-check broken for Git downloads
  3189. #9866: BASE_DIR usage
  3190. 2017.05-rc1, Released May 8th, 2017
  3191. Fixes all over the tree and new features.
  3192. Infrastructure:
  3193. - Installed binaries are now checked for correct architecture
  3194. to catch natively built binaries or binaries built for other
  3195. architecture variants.
  3196. - Luarocks infrastructure improvements to extraction handling,
  3197. support for upstream name != Buildroot package name.
  3198. - 'make printvars' output format has changed to make it easier
  3199. to use in scripts. It now has options to quote the variables
  3200. and to show the expanded/unexpanded values.
  3201. - Automatic ext2 rootfs size calculation has been removed. The
  3202. logic was not working working reliable in all setups as it
  3203. depends on the host filesystem behaviour, so instead now the
  3204. size has to be specified explicitly (defaults to 60MB).
  3205. - The git download infrastructure now ensures that GNU format
  3206. tar files are created.
  3207. - Fixed a variable clashing issue in the mkusers script with
  3208. internal bash variables.
  3209. - Fakeroot now links against libacl to fix issues on
  3210. distributions using acls.
  3211. - Correct permissions for /dev/pts/ptmx when systemd is used
  3212. with recent glibc versions.
  3213. - br2-external: Improve error reporting.
  3214. - A wrapper script for genimage has been added in
  3215. support/scripts/genimage.sh for easy use of genimage from
  3216. post-image scripts.
  3217. - A script to check for common style issues in new packages
  3218. before submitting has been added in support/scripts/check-package
  3219. - Defconfigs are now tested by gitlab-CI instead of Travis:
  3220. https://gitlab.com/buildroot.org/buildroot
  3221. - Infrastructure for runtime testing has been added to
  3222. support/testing
  3223. Toolchain:
  3224. - External linaro toolchains updated to 2017.02, ARC toolchain
  3225. updated to 2017.03-rc1, NIOSII CodeSourcery to 2017.05
  3226. - A number of fixes and improvements to the external toolchain
  3227. handling, including C library detection, multilib and ld.so
  3228. handling
  3229. - Glibc 2.25 and uClibc-ng 1.0.24 added, wordexp support enabled
  3230. for uClibc-ng
  3231. - Binutils 2.28 added and default changed to 2.27
  3232. Architectures:
  3233. - Support for the C-SKY architecture has been added.
  3234. License handling:
  3235. - The package license markings for legal info now uses the
  3236. SPDX short identifiers for the license string where possible.
  3237. - License info has been improved / added for a number of packages.
  3238. Misc:
  3239. - Cmake 3.7.x installed on the host is no longer ignored as a
  3240. workaround for the RPATH issues has been implemented.
  3241. - Docker-engine can now be built statically on an otherwise
  3242. dynamic linked build for docker-in-docker setups.
  3243. - U-Boot now supports out-of-tree device trees, similar to
  3244. Linux
  3245. - Nodejs 0.10.x support (and with it, support for <ARMv6) has
  3246. been removed as this is now EOL upstream.
  3247. New defconfigs: AT91sam9x5ek dev/mmc/mmc-dev, banana pro,
  3248. Nationalchip gx6605s, MIPS creator ci40, nexbox a95x, 64bit
  3249. defconfig for raspberry pi 3, stm32f429-disc1.
  3250. The raspberry pi zero-w and rpi3 compute module are now also
  3251. supported by the rpi0 / rpi3 defconfigs, beaglebone green is
  3252. supported by the beaglebone defconfig.
  3253. Removed defconfig: minnowboard, via imx6 vab820, altera
  3254. socdk/sockit
  3255. New packages: arp-scan, atest, augeas, bluez-tools, daemon,
  3256. dc3dd, dieharder, execline, fmt, ghostscript, gqrx,
  3257. gst1-vaapi, jo, keepalived, kmscube, kodi-jsonschemabuilder,
  3258. kodi-skin-confluence, kodi-texturepacker, lensfun, leptonica,
  3259. libbson, libcsv, libgphoto2, libkcapi, libmaxminddb,
  3260. libmediaart, libnpth, libscrypt, lua-bit32, lua-resty-http,
  3261. lugaru, memtool, mpir, nanomsg, physfs, phytool, pngquant,
  3262. python-decorator, python-simplegeneric,
  3263. python-sortedcontainers, rpi-bt-firmware, rpi-wifi-firmware,
  3264. s6, s6-dns, s6-linux-init, s6-linux-utils, s6-networking,
  3265. s6-portable-utils, s6-rc, supertux, tesseract-ocr,
  3266. uccp420wlan, wilink-bt-firmware
  3267. Broken packages: ola
  3268. Removed packages: cosmo, kodi-visualisation-fountain,
  3269. polarssl, portmap, xdriver_xf86-video-glide,
  3270. xdriver_xf86-video-v4l, xdriver_xf86-video-wsfb
  3271. Issues resolved (http://bugs.buildroot.org):
  3272. #8831: image generation fails on host ZFS due to "no free space"
  3273. #9436: e2fsprogs remove busybox applets even of unselected e2fs..
  3274. #9456: mkusers script bash errors
  3275. #9496: mke2img fails during build on ntfs-3g host partition
  3276. #9531: NPM fails to build embedded modules
  3277. #9596: KODI: --enable-lirc needs "HAVE_LIRC" compiler definition..
  3278. #9691: Wrong cryptsetup package include files location
  3279. #9696: Wrong cryptsetup package include files location
  3280. #9706: Can't download newer revisions of package from PyPI
  3281. #9711: Recent libCEC version bump seems to break kodi package
  3282. #9716: exit, shutdown, reboot from kodi
  3283. #9721: version 2017.02: no acceptable m4 could be found in $PATH
  3284. #9726: Raspberry Pi version B - Problems with UART speed in..
  3285. #9751: expat legal info - manifest.csv: GPLv2 Source site: MIT..
  3286. #9756: glibc fails to build on buildroot-sh4*-buildroot-linux-gnu
  3287. #9766: support/scripts/pkgutil.py conflicts with the pkgutil.py..
  3288. #9776: libubox build failed
  3289. #9791: Python searches for packages in the user site directory
  3290. #9806: libseccomp is not available when BR2_arm=y
  3291. #9826: post-build scritp - symlinks created in post-build script..
  3292. #9836: triggerhappy: systemd unit broken
  3293. #9846: musl libc not installed correctly in target folder
  3294. #9856: build libubox failed on ubuntu 17.04 64bit
  3295. 2017.02.11, Released April 11th, 2018
  3296. Important / security related fixes.
  3297. dependencies: Blacklist tar 1.30+ and build our own host-tar
  3298. if needed as tar 1.30+ changed the --numeric-owner output for
  3299. long path names. Build host-tar before other host-dependencies
  3300. as they need it to extract their source tarballs.
  3301. Updated/fixed packages: apache, busybox, clamav, dhcp,
  3302. dnsmasq, dovecot, exim, imagemagick, irssi, jq, libcurl,
  3303. libpjsip, librsvg, libtasn1, libvorbis, libxml2, lz4, mariadb,
  3304. mbedtls, mosquitto, ntp, openblas, opencv3, openssl, patch,
  3305. postgresql, python-webpy, qt53d, qt5tools, quagga, rsync,
  3306. samba4, sngrep, tremor, wavpack, wireshark, xerces, xterm
  3307. Issues resolved (http://bugs.uclibc.org):
  3308. #10856: openblas on qemu_x86_64_defconfig fails with "sgemm_..
  3309. 2017.02.10, Released January 31st, 2018
  3310. Important / security related fixes.
  3311. nconfig: Fix for ncurses/ncursesw linking issue causing crashes.
  3312. System: Only show getty options when busybox init or sysvinit
  3313. are used.
  3314. Infrastructure: Fix build issue for autotools based packages
  3315. checking for C++ support on toolchains without C++ support and
  3316. on a distro lacking /lib/cpp (E.G. Arch Linux).
  3317. Updated/fixed packages: avahi, berkeleydb, bind, busybox,
  3318. ccache, clamav, coreutils, dovecot, eeprog, eudev, fis,
  3319. intel-microcode, iputils, irssi, kmsxx, libcurl, liberation,
  3320. libiio, lz4, mariadb, matchbox-lib, mcookie, openocd, php,
  3321. pound, rpcbind, squid, tar, ti-cgt-pru, transmission,
  3322. util-linux, webkitgtk, wireshark, xen
  3323. Issues resolved (http://bugs.buildroot.org):
  3324. #9996: lz4 package does not install lz4 binaries in target
  3325. #10176: Rsyslog's S01logging is deleted by Busybox.mk from...
  3326. #10216: package/x11r7/mcookie/mcookie.c:207: bad size ?
  3327. #10301: systemd/getty unused options
  3328. #10331: kmsxx, host installation fails with BR2_SHARED_...
  3329. #10536: Finding non-relative paths in the ccache
  3330. #10641: avahi-autoipd not starting when using systemd-tmpfiles
  3331. 2017.02.9, Released January 1st, 2018
  3332. Important / security related fixes.
  3333. Fix divide by zero issue in size-stats script.
  3334. Fix makefile include ordering issue with certain make versions
  3335. in the external toolchain handling.
  3336. Updated/fixed packages: dhcp, exim, flann, gdb, heimdal,
  3337. libcue, libcurl, libevent, libpqxx, libsoxr, linphone, lldpd,
  3338. mariadb, mfgtools, mtools, nodejs, nut, openssl, rsync,
  3339. samba4, tor, vlc, webkitgtk, wireshark, xfsprogs,
  3340. xlib_libXcursor, xlib_libXfont, xlib_libXfont2
  3341. 2017.02.8, Released November 27th, 2017
  3342. Important / security related fixes.
  3343. Qt: 5.6 version updated to 5.6.3.
  3344. Reproducible: Do not override SOURCE_DATE_EPOCH if already set
  3345. in the environment.
  3346. Updated/fixed packages: apr, apr-util, arqp-standalone,
  3347. collectd, dvb-apps, ffmpeg, google-breakpad, gstreamer,
  3348. imagemagick, libfastjson, libglib2, libpjsip, libplist,
  3349. localedef, luajit, mesa3d, openssh, openssl, postgresql,
  3350. python3, python-pyqt5, qt5base, qt5canvas3d, qt5connectivity,
  3351. qt5declarative, qt5engineio, qt5graphicaleffects,
  3352. qt5imageformats, qt5location, qt5multimedia, qt5quickcontrols,
  3353. qt5quickcontrols2, qt5script, qt5sensors, qt5serialbus,
  3354. qt5serialport, qt5svg, qt5tools, qt5webchannel, qt5webkit,
  3355. qt5websockets, qt5x11extras, qt5xmlpatterns, quagga, ruby,
  3356. samba4, snmppp, ti-gfx, vboot-utils, webkitgtk, wireshark,
  3357. xapp_xdriinfo.
  3358. Issues resolved (http://bugs.buildroot.org):
  3359. 10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  3360. 10361: python3 python-config script generates invalid includes
  3361. 10501: host-localedef fails to compile on Ubuntu 17.10
  3362. 2017.02.7, Released October 28th, 2017
  3363. Important / security related fixes.
  3364. Webkitgtk bumped to the 2.18.x series, fixing a large number
  3365. of security issues.
  3366. Defconfigs: wandboard: Correct rootfs offset
  3367. Toolchain: Linaro toolchains updated to 2017.08 release,
  3368. fixing a number of issues. Musl: fix for CVE-2017-15650.
  3369. Updated/fixed packages: busybox, bzip2, dnsmasq, git, go,
  3370. hostapd, irssi, iucode-tool, lame, libcurl, libffi, libnspr,
  3371. libnss, nodejs, openssh, openvpn, qemu, qt, redis, sdl2,
  3372. webkitgtk, wget, wpa_supplicant, xen, xlib_libXfont,
  3373. xlib_libXfont2, xserver_xorg-server
  3374. 2017.02.6, Released September 24th, 2017
  3375. Important / security related fixes.
  3376. Cmake: Ensure correct pkg-config is used when building host
  3377. packages
  3378. fs/iso9660: Ensure files from earlier builds are not included.
  3379. Updated/fixed packages: apache, bcusdk, bind, binutils,
  3380. bluez5_utils, botan, cmake, connman, dbus, dialog, e2fsprogs,
  3381. faad2, fakeroot, ffmpeg, file, flashrom, gcc, gd, gdb,
  3382. gdk-pixbuf, git, gnupg, gpsd, grub2, gst1-plugins-bad,
  3383. imagemagick, iostat, iucode-tool, jack2, libarchive, libcurl,
  3384. libgcrypt, libidn, libphidget, librsync, librsvg, libsoup,
  3385. libxml2, linux-tools, lua, mariadb, mbedtls, mediastreamer,
  3386. minidlna, netplug, nss-pam-ldapd, nvidia-driver, openjpeg,
  3387. postgresql, proxychains-ng, python-libconfig,
  3388. python-service-identity, qt, rpcbind, ruby, samba4, squashfs,
  3389. squid, strongswan, subversion, supervisor, sysvinit, tcpdump,
  3390. tor, transmission, unrar, valgrind, vim, webkitgtk, whois,
  3391. xen, zmqpp
  3392. Issues resolved (http://bugs.buildroot.org):
  3393. #10141: Squashfs extended attribute failures
  3394. #10261: Grub2 fails to build for x86_64
  3395. #10276: BR2_PACKAGE_LINUX_TOOLS_GPIO fails for MIPS with...
  3396. 2017.02.5, Released July 27th, 2017
  3397. Important / security related fixes.
  3398. Webkitgtk bumped to the 2.16.x series, fixing a large number
  3399. of security issues.
  3400. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  3401. which default to PIE mode.
  3402. Updated/fixed packages: aespipe, apache, bind, binutils,
  3403. busybox, ccache, collectd, efibootmgr, efivar, expat, ffmpeg,
  3404. gcc, heimdal, iproute2, irssi, libglib2, libmemcached,
  3405. libosip2, libtirpc, libxml-parser-perl, linux-fusion,
  3406. linux-zigbee, mpg123, nodejs, orc, pcre, php, pulseaudio,
  3407. python-setproctitle, qt5base, rpi-firmware, samba4, syslinux,
  3408. systemd, spice, tcpdump, tiff, webkitgtk, x265, xen,
  3409. xserver_xorg-server, xvisor
  3410. Issues resolved (http://bugs.buildroot.org):
  3411. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  3412. 2017.02.4, Released July 4th, 2017
  3413. Important / security related fixes.
  3414. Update support/scripts/scancpan to use METACPAN v1 API as v0
  3415. has been shutdown.
  3416. Update support/scripts/mkusers to handle setups where
  3417. /etc/shadow is a symlink.
  3418. External toolchain: Don't create musl dynamic loader symlink
  3419. for static builds.
  3420. Setlocalversion: Correct detection of mercurial revisions for
  3421. non-tagged versions.
  3422. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  3423. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, gnutls,
  3424. gst1-plugins-bad, imagemagick, imx-uuc, intltool, iperf,
  3425. ipsec-tools, irssi, libgcrypt, libmad, libnl, mosquitto,
  3426. mpg123, ncurses, nodejs, ntp, openssh, openvpn, qt5base,
  3427. qt5multimedia, rtl8821au, socat, spice, systemd, tor, tslib,
  3428. vlc, x264, xserver_xorg-server
  3429. Issues resolved (http://bugs.buildroot.org):
  3430. #9976: License file for package 'rtl8821au' incorrect
  3431. 2017.02.3, Released June 2nd, 2017
  3432. Important / security related fixes.
  3433. Download: <pkg>-source-check fixed for packages from git.
  3434. External toolchain: musl dynamic linker symlink for mips-sf
  3435. corrected.
  3436. Updated/fixed packages: armadillo, audiofile, bash,
  3437. bluez_utils, cppcms, dbus, dhcp, dropbear, efibootmgr, efl,
  3438. elfutils, faketime, fbgrab, flashrom, ftop, gdb, git,
  3439. google-breakpad, gpsd, hans, kvm-unit-tests, kyua, libev,
  3440. libmicrohttpd, libminiupnpc, libtasn1, libubox, ltp-testsuite,
  3441. lua, madplay, mariadb, mono, mosquitto, mxml, ntp,
  3442. nvidia-driver, openblas, openvpn, oracle-mysql, picocom, popt,
  3443. postgresql, pulseview, qt5base, qwt, rabbitmq-c, redis,
  3444. rpcbind, rtmpdump, samba4, strongswan, sudo, vlc
  3445. Issues resolved (http://bugs.buildroot.org):
  3446. #9796: source-check broken for Git downloads
  3447. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  3448. 2017.02.2, Released May 1st, 2017
  3449. Important / security related fixes.
  3450. Use HTTPS for the Codesourcery external toolchains as the HTTP
  3451. URLs no longer work.
  3452. Updated/fixed packages: bind, busybox, dovecot, freetype,
  3453. ghostscript, glibc, granite, hiredis, icu, imagemagick,
  3454. gst-plugins-base, gst1-plugins-base, libcroco, libcurl, libnl,
  3455. libnspr, libnss, libsamplerate, libsndfile, libunwind,
  3456. minicom, mplayer, mpv, nodejs, python-django, python-pyyaml,
  3457. python-web2py, samba4, syslinux, systemd, tiff, trinity,
  3458. uboot, wireshark, xen
  3459. Issues resolved (http://bugs.buildroot.org):
  3460. #9791: Python searches for packages in the user site directory
  3461. 2017.02.1, Released April 4th, 2017
  3462. Important / security related fixes.
  3463. Fix a variable clashing issue in the mkusers script with
  3464. internal bash variables.
  3465. Improve external toolchain version detection.
  3466. Correct permissions for /dev/pts/ptmx when systemd is used
  3467. with recent glibc versions.
  3468. Fix python module name clash for graph-depends.
  3469. Fakeroot now links against libacl to fix issues on
  3470. distributions using acls.
  3471. Ensure that the git download infrastructure creates GNU format
  3472. tar files.
  3473. br2-external: Improve error reporting.
  3474. Updated/fixed packages: acl, apr, audiofile, busybox, cairo,
  3475. dbus-cpp, dbus-glib, dbus-triggerd, domoticz, elfutils,
  3476. fakeroot, filemq, fmc, gdb, git, gnutls, gst-ffmpeg,
  3477. gst1-plygins-bad, harfbuzz, htop, imagemagick, jasper, libcec,
  3478. libiio, libplatform, librsvg, libselinux, libsidplay2, libsoc,
  3479. libwebsockets, libxkbcommon, linux-firmware, logrotate,
  3480. lpt-testsuite, lttng-libust, mariadb, mbedtls, memcached,
  3481. mesa3d, mpd, mplayer, nbd, ncftp, ntp, openssh, opentyrian,
  3482. pcre, perl-gd, python, qt5base, rpi-userland, rpm, samba4,
  3483. skalibs, slang, sngrep, squashfs, syslog-ng, taglib,
  3484. tcpreplay, tor, upmpdcli, wget, wireshark,
  3485. xdriver_xf86-video-vmware, xlib_libXv, zmqpp
  3486. Issues resolved (http://bugs.buildroot.org):
  3487. #9456: mkusers script bash errors
  3488. 2017.02, Released February 28th, 2017
  3489. Minor fixes, mainly fixing autobuilder issues.
  3490. Don't use cmake 3.7.x from the build host as it is also
  3491. affected by the RPATH handling issues, and instead build our
  3492. own if needed.
  3493. Updated/fixed packages: assimp, classpath, genimage, mplayer,
  3494. mpv, openocd, python-libconfig, qt5base, qt5quickcontrols,
  3495. vlc, xterm
  3496. 2017.02-rc3, Released February 26th, 2017
  3497. Fixes all over the tree.
  3498. Cmake reverted to version 3.6.3 to workaround regressions
  3499. related to RPATH handling.
  3500. Updated/fixed packages: bctoolbox, berkeleydb, binutils,
  3501. btrfs-progs, classpath, directfb, glibc, gstreamer1,
  3502. gst1-plugins-{base,good,bad,ugly}, gst1-libav,
  3503. gst1-rtsp-server, gst1-validate, gst-omx, htop, libcurl,
  3504. libepoxy, libimxvpuapi, libpcap, libuv, ncurses, openssh,
  3505. oracle-mysql, poco, python, qt5base, qt5webkit, sslh, synergy,
  3506. trousers, uclibc-ng-test, util-linux, vlc, xfsprogs
  3507. Issues resolved (http://bugs.buildroot.org):
  3508. #9251: Shared C++ libraries for Microblaze results in Segmentation...
  3509. #9456: mkusers script bash errors
  3510. #9506: Collectd 5.7.0 fails to build with libcrypt
  3511. #9581: VagrantFile provisioning step fails due to issue with grub-pc
  3512. #9586: usbmount: usbmount slows down the system... to a state of...
  3513. #9616: CMake host packages cannot provide CONF_ENV
  3514. #9641: Need raptor package installed in staging
  3515. #9671: stunnel build error
  3516. 2017.02-rc2, Released February 20th, 2017
  3517. Fixes all over the tree.
  3518. Support for SOURCE_DATE_EPOCH in the toolchain wrapper for
  3519. older gcc versions for reproducible builds has been
  3520. (temporarily) reverted because of licensing compatiblity
  3521. concerns.
  3522. Defconfigs: SD card generation fix for the Udoo Neo board
  3523. Infrastructure to handle .lz compressed tarballs added, and
  3524. affected packages updated to use it.
  3525. Updated/fixed packages: bctoolbox, bind, canelloni,
  3526. cbootimage, ccache, classpath, cups, dbus, ddrescue, directfb,
  3527. ed, erlang, gcc, gdb, glmark2, gstreamer, gstreamer1, hiredis,
  3528. kmod, kmsxx, lcdapi, libasplib, libgpiod, libnss, libraw,
  3529. libv4l, mesa3d-headers, mosquitto, mpd, mpv, musl, ntfs-3g,
  3530. ocrad, openswan, postgresql, qt5base, qt5quickcontrols, redis,
  3531. riemann-c-client, samba4, sunxi-mali, tcping, trousers,
  3532. uclibc, util-linux, vim, wavpack, wget, wiringpi, xfsprogs,
  3533. xserver_xorg-server
  3534. Issues resolved (http://bugs.buildroot.org):
  3535. #8941: Valgrind fails to build with stack protection turned on
  3536. #9291: perl: SysV message queues not configured, even if available
  3537. #9651: libxcb-1.12 built Error
  3538. #9656: util-linux: schedutils doesn't build on target w/o enabl...
  3539. #9666: qt5quickcontrols install fails
  3540. 2017.02-rc1, Released February 11th, 2017
  3541. Fixes all over the tree and new features.
  3542. Infrastructure:
  3543. - numerous improvements to support reproducible builds
  3544. - new waf-package package infrastructure to support packages
  3545. that use the Waf build system. 6 packages converted to
  3546. this infrastructure.
  3547. - add option <pkg>_PREFER_INSTALLER to the perl package
  3548. infrastructure
  3549. Architecture:
  3550. - add support for the OpenRISC CPU architecture
  3551. - merge description of the ARM and ARM64 options, and add
  3552. support for selecting a specific ARM64 core
  3553. Toolchain:
  3554. - major rework of the external toolchain support. It is now
  3555. split into several packages, one per external toolchain,
  3556. and a common infrastructure.
  3557. - important fix for musl to prevent a conflict between musl
  3558. and kernel headers (fixes the build of numerous packages
  3559. with musl)
  3560. - uClibc-ng bumped to 1.0.22, and therefore enable uClibc
  3561. for ARM64, mips32r6 and mips64r6
  3562. - add gdb 7.12.1, and switch to gdb 7.11 as the default
  3563. - Linaro toolchains updated to 2016.11, ARC toolchain
  3564. components updated to arc-2016.09, MIPS Codescape
  3565. toolchains bumped to 2016.05-06, CodeSourcery AMD64 and
  3566. NIOS2 toolchains bumped
  3567. - remove Analog Devices toolchain for the Blackfin
  3568. architecture, remove pre-built musl toolchains from
  3569. musl.codu.org
  3570. New defconfigs: Freescale i.MX23EVK, Qemu OpenRISC emulation,
  3571. Qemu NIOS2 emulation, Grinn chiliBoard, Freescale i.MX6Q
  3572. SabreSD, BeagleBoard X15, OrangePi One, ARC HS38 HAPS
  3573. New packages: angular-websocket, aubio, bctoolbox, darkhttpd,
  3574. ddrescue, easydbus, fakedate, git-crypt, hiredis, ifenslave,
  3575. jsmn, libgpiod, libgsm, linux-syscall-support, mariadb, mimic,
  3576. nginx-dav-ext, nmon, opkg-utils, policycoreutils,
  3577. pru-software-support, python-arrow, python-attrs,
  3578. python-babel, python-bitstring, python-chardet,
  3579. python-constantly, python-flask-babel, python-gunicorn,
  3580. python-incremental, python-jsonschema, python-logbook,
  3581. python-markdown2, python-mbstrdecoder, python-mutagen,
  3582. python-pathpy, python-pudb, python-pyqrcode,
  3583. python-pytablereader, python-setuptools-scm, python-sh,
  3584. python-toml, python-vcversioner, python-whoosh,
  3585. raspberrypi-usbboot, riemann-c-client, rtl8723bs, skalibs,
  3586. sslh, sngrep, ti-cgt-pru, uclibc-ng-test, udpxy, uhttpd,
  3587. upower, ustream-ssl, waf, xlib_libXfont2
  3588. Removed packages: perl-db-file, snowball-hdmiservice,
  3589. snowball-init
  3590. Tooling: addition of a test-pkg script to help contributors
  3591. build test their package.
  3592. Issues resolved (http://bugs.buildroot.org):
  3593. #8946: Valgrind fails to build with stack protection turned on
  3594. #9461: odroidc2 - toolchain Linaro AArch64 2016.11 compile error
  3595. #9466: VIM_REMOVE_DOCS removes rgb.txt
  3596. #9486: xorg-server 1.19 fails to compile for glibc with systemd init (x86_64)
  3597. #9501: eudev fails to build with older kernel headers
  3598. #9526: Embedded NPM fails to start with "no such file or directory" error
  3599. #9541: Platform drivers autoloading from info in device tree does not work
  3600. #9546: seems BR2_PACKAGE_RPI_FIRMWARE_INSTALL_DTB_OVERLAYS do nothing
  3601. #9551: Coreutils fails to build target src/src_libsinglebin_pinky_a-pinky.o
  3602. #9566: [kmod] Compilation fails with uclibc
  3603. #9571: buildroot fails while building opencv for arm64 platform
  3604. #9576: External tree with BR 2016.11 does not work anymore
  3605. #9606: xorg-server cannot build for ARM target
  3606. 2016.11.3, Released March 9th, 2017
  3607. Important / security related fixes.
  3608. Updated/fixed packages: bind, dbus, gnutls, imagemagick,
  3609. lcms2, libcurl, ntfs-3g, ntp, openssl, php, quagga, redis,
  3610. squid, stunnel, tcpdump, vim, wavpack, wireshark, xlib_libXpm
  3611. 2016.11.2, Released January 25th, 2017
  3612. Important / security related fixes.
  3613. A fix for BR2_EXTERNAL trees referenced using relative paths,
  3614. which broke in 2016.11.
  3615. Updated/fixed packages: bind, docker-engine, gd, gnutls, go,
  3616. imagemagick, irssi, libpng, libvncserver, musl, opus, php,
  3617. php-imagick, rabbitmq-server, runc, wireshark,
  3618. Issues resolved (http://bugs.buildroot.org):
  3619. #9576: External tree with BR 2016.11 does not work anymore
  3620. 2016.11.1, Released December 29th, 2016
  3621. Important / security related fixes.
  3622. Updated/fixed packages: apache, cryptopp, docker-engine,
  3623. dovecot, exim, gdk-pixbuf, libcurl, libupnp, links, monit,
  3624. nodejs, openssh, php, python, python-bottle, samba4, squid,
  3625. uboot, vim, wireshark, xorg-server uboot
  3626. Issues resolved (http://bugs.buildroot.org):
  3627. #9466: VIM_REMOVE_DOCS removes rgb.txt
  3628. 2016.11, Released November 30th, 2016
  3629. Minor fixes.
  3630. Updated/fixed packages: bzip2, gcc, jasper, sane-backends,
  3631. uboot, uclibc
  3632. Issues resolved (http://bugs.buildroot.org):
  3633. #9451: packages/postgresql/postgresql.mk contains wrong POST...
  3634. 2016.11-rc3, Released November 28th, 2016
  3635. Fixes all over the tree, including a number of security fixes.
  3636. The move from fakeroot to pseudo unfortunately brought a
  3637. number of issues. The SELinux issue described in #9386 which
  3638. triggered the move to pseudo has been investigated further and
  3639. a workaround implemented and the pseudo changes reverted.
  3640. Linux kernel: update default to 4.8.11.
  3641. Defconfigs: Updates/fixes for imx28ek, mx6udoo, imx6ulpico,
  3642. olimex a20 olinuxino lime mali, roseapplepi, synopsis aarch64
  3643. vdk, axs101, axs103 and hs38 smd vdk.
  3644. Updated/fixed packages: autossh, chrony, dosfstools,
  3645. dtv-scan-tables, e2fsprogs, gcc, gdb, gnuchess, gnuradio,
  3646. gpsd, gst1-plugins-bad, gst1-plugins-good, imagemagick,
  3647. kvm-unit-tests, libfribi, libuv, mesa3d, mpfr, mplayer, mpv,
  3648. ntp, ola, olsr, openblas, openjpeg, openssh, postgresql,
  3649. ptpd2python3, qemu, qextserialport, qt5base, quagga, xqwt,
  3650. taskd, tiff, tremor, trousers, udisks, uclibc, wireshark,
  3651. xapp_xload, xenomai, xmlstarlet
  3652. Issues resolved (http://bugs.buildroot.org):
  3653. #9386: ubinize fails with or without custom config
  3654. #9431: A misspelling
  3655. #9446: make raspberrypi3_defconfig compilation failure
  3656. 2016.11-rc2, Released November 13th, 2016
  3657. Fixes all over the tree.
  3658. Architecture: add support for MIPS XBurst cores; remove MIPS
  3659. support for M5100 cores.
  3660. Updated/fixed packages: mesa3d, lttng-babeltrace, tinyalsa, pseudo,
  3661. czmq, libxml2, makedevs, binutils, kvm-unit-tests, libnss, privoxy,
  3662. qemu, ser2net, net-tools, ffmpeg, assimp, libmpeg2, ccache, mpv,
  3663. libxslt, python, python3, php, valgrind, guile, domoticz, efl,
  3664. jasper, kvmtool, go, wget, sane-backends, weston, tinymembench,
  3665. strace, openjpeg, lcms2, quota.
  3666. Linux kernel: update default to 4.8.7.
  3667. CMake support: fix cmake wrapper to properly pass NDEBUG flag.
  3668. Filesystems: use a wrapper to pseudo, to better mimick the behaviour
  3669. of fakeroot; makedevs no longer breaks of the destination already
  3670. exists and is of the correct type/major/minor.
  3671. Defconfigs: a few legacy and broken defconfigs have been removed
  3672. because they now fail to build: kb9202_defconfig, mini2440_defconfig,
  3673. freescale_p2020ds, qmx6, calao*, atmel_sama5d4ek. Other defconfigs
  3674. have been updated: nanopi-neo, olimex_a20_olinuxino_lime_mali,
  3675. armadeus_apf51, armadeus_apf28, freescale_imx31_3stack, ci20,
  3676. olimex_a20_olinuxino_lime2, atmel_at91sam9260eknf,
  3677. atmel_at91sam9rlek, atmel_at91sam9g20dfc, atmel_at91sam9g45m10ek,
  3678. atmel_sama5d3xek.
  3679. 2016.11-rc1, Released November 3rd, 2016
  3680. Fixes all over the tree and new features.
  3681. It is now possible to specify multiple BR2_EXTERNAL
  3682. directories. The required files in a BR2_EXTERNAL directory
  3683. have changed to accomodate this feature. Refer to the
  3684. documentation for details of how to update them. External
  3685. trees now have a name and a description. Also, it is possible
  3686. to override a defconfig in the external tree.
  3687. The default skeleton now uses UID 65534 for the "nobody"
  3688. user instead of UID 99, like most distros do. See
  3689. https://lwn.net/Articles/695478/ for a complete discussion.
  3690. Programs and configuration files that explicitly refer to UID
  3691. 99 will have to be updated.
  3692. When the build environment already has a suitable cmake version
  3693. (3.1 or later), that one will be used instead of building
  3694. host-cmake. This can speed up the build significantly.
  3695. The ExtUtils::MakeMaker perl module is now required in the
  3696. build environment.
  3697. An additional check is done during the build that files are
  3698. not installed in the output directory within the output
  3699. directory. This happens e.g. when the target directory is
  3700. contained both in --prefix and in DESTDIR. The build will
  3701. terminate with an error message that specifies which package
  3702. and which file caused the failure.
  3703. The concept of "deprecated packages" and the BR2_DEPRECATED
  3704. option have been removed. Instead, packages are removed
  3705. immediately. Packages are only removed when they don't work
  3706. for some reason. If you still need a removed package and
  3707. you have a solution for the problem(s) that caused the
  3708. removal, please contribute it.
  3709. Architecture: support for sh64 removed, improved support for
  3710. MIPS core selection.
  3711. Toolchain: support for musl powerpc64le, mips64 and mipsr6
  3712. toolchains, ARC toolchain components updates, gcc 6.x series
  3713. bumped to 6.2.0, default binutils version switched to 2.26,
  3714. default gcc version switched to gcc 5.x, Linaro toolchains
  3715. updated, uclibc-ng bumped to 1.0.19. GCC is now always built
  3716. with TLS support. Checking of unsafe compiler options (that
  3717. point to host directories) has been extended with -isystem,
  3718. -idirafter and -iquote.
  3719. Package infrastructure: new variable $(PKG)_DL_OPTS, addition
  3720. of <pkg>-show-rdepends to list reverse dependencies, and
  3721. <pkg>-graph-rdepends to graph reverse dependencies. Linux tools
  3722. are now in a separate linux-tools package instead of in the
  3723. kernel build. Fakeroot has been replaced by pseudo.
  3724. CMake support: the toolchainfile.cmake file now provides a
  3725. definition of the CMAKE_BUILD_TYPE variable. The
  3726. toolchainfile.cmake also no longer forces the compiler/linker
  3727. flags defined by Buildroot.
  3728. New defconfigs: WaRP7, Solidrun's MX6 Cubox/Hummingboard,
  3729. TS-4900, Grinn's liteBoard, Udoo MX6Q/DL, Qemu ARM noMMU,
  3730. BeagleBone Qt5 demo, Digilent Zybo, FriendlyARM Nanopi NEO.
  3731. New packages: arm-trusted-firmware, amd-catalyst, atop, aufs,
  3732. aufs-util, fwts, gst1-rtsp-server, libglob, libite, mfgtools,
  3733. mksh, motion, paho-mqtt-c, php-amqp, pseudo, python-couchdb,
  3734. python-crcmod, python-cssutils, python-docutils,
  3735. python-futures, python-mwclient, python-mwscrape,
  3736. python-mwscrape2slob, python-pyelftools, python-pyicu,
  3737. python-pylru, python-pyqt5, python-requests-toolbelt,
  3738. python-simpleaudio, python-slob, rabbitmq-server, shapelib,
  3739. vdr, vdr-plugin-vnsiserver, vexpress-firmware, xvisor, iio and
  3740. gpio linux tools.
  3741. Removed packages: binutils 2.24, fakeroot, gcc 4.7, ipkg,
  3742. kodi-addon-xvdr, libgail, sstrip, torsmo, webkit, webkitgtk24,
  3743. wvdial, wvstreams.
  3744. Documentation: the list of packages that was present in the
  3745. Buildroot manual has been removed.
  3746. Legal info: the "licenses.txt" file that concatenates all
  3747. license texts is no longer generated - it was not considered
  3748. useful. The manifest.csv contains an empty cell instead of
  3749. "not saved" when no license file is available.
  3750. Other: addition of a DEVELOPERS file listing developers taking
  3751. care of packages or architectures.
  3752. Issues resolved (http://bugs.buildroot.org):
  3753. #7802: host-python build hangs compiling getbuildinfo.o
  3754. #8206: mplayer uses host xorg development files
  3755. #8516: mkcubiecard.sh uses outdated sfdisk switch -D
  3756. #8536: Building sudo with PAM results in unusable sudo
  3757. #8646: check-host-rpath script returns false positives when rpath
  3758. contains symlink
  3759. #8696: xdriver_xf86-input-mouse install header files in target
  3760. directory
  3761. #8811: rp-pppoe - generated scripts commands use HOST pathnames,
  3762. not necessarily TARGET
  3763. #8846: Orphaned/missing toolchain borks eclipse plugin
  3764. #8856: python tornado runtime wasn't met on buildroot 2016.02
  3765. #8901: gcc failes to build if fortran is enabled
  3766. #8916: LDFLAGS pass to openssh
  3767. #8941: "ls" of an NFSv4 share only works when pumped through strace
  3768. #8946: Valgrind fails to build with stack protection turned on
  3769. #9021: Kodi - Broken: Illegal instruction (core dumped)
  3770. #9096: rootfs.ubi not created
  3771. #9111: glibc 2.23: libmvec.so not copied
  3772. #9176: minnowboard : USB not mounted
  3773. #9196: raspberry pi 3 default build seem broken
  3774. #9201: Permission denied make: *** [core-dependencies] Error 126 in
  3775. Buildroot-2015.08.1
  3776. #9216: log4cpp package build fails to build within install
  3777. #9221: Kodi needs "Python .py and .pyc support" otherwise it crashes when
  3778. pressing buttons.
  3779. #9229: Firefly boot fails with: "failed to find part:boot"
  3780. #9256: [Config file] New device: Odroid-U2/U3
  3781. #9296: Buildroot Fails on applying patches
  3782. #9301: U-boot fails to build with default zynq_zed_defconfig configuration
  3783. #9316: U-boot fails to build if libssl-dev is not installed
  3784. #9321: Vanilla libcrypt++ v5.6.3 doesn't allow to work Nvidia Tegra's
  3785. flash utility (tegrarcm)
  3786. #9326: Odroid-C2 build results in non-bootable image
  3787. #9336: Improve iconv support for external toolchain based builds
  3788. #9356: gdb package
  3789. #9366: no link rootfs.ext4 -> rootfs.ext2
  3790. #9371: openssl: download failes with "Only allow downloads from primary
  3791. download site" + local server
  3792. #9381: check-host-rpath issues
  3793. #9386: ubinize fails with or without custom config
  3794. 2016.08, Released September 1st, 2016
  3795. Minor fixes.
  3796. Toolchain: ARC tools updated to arc-2016.09-eng010.
  3797. Updated/fixed packages: libshout, luajit, mpd, mplayer
  3798. Issues resolved (http://bugs.buildroot.org):
  3799. #7520: CodeSourcery toolchain ARM: C++11 std::exception_ptr..
  3800. #8341: Getting EGL Error: Could not create the egl surface:..
  3801. #9121: gst1-imx for i.MX6 compile failed, cannot find PXP, ..
  3802. 2016.08-rc3, Released August 29th, 2016
  3803. Fixes all over the tree.
  3804. Toolchain: C++ support for the internal blackfin toolchain
  3805. re-enabled.
  3806. Architecture: Default to bf532 CPU variant for blackfin,
  3807. Fix flat one memory region support for m68k and disable flat
  3808. seperate data support because of compatibility issues.
  3809. Defconfigs: Minnowboard and Raspberrypi: Fix errors with
  3810. post-build scripts when systemd is used.
  3811. Zynq microzed/zc706/zed: Fix u-booot configuration.
  3812. netbsd-queue package extended and renamed to
  3813. musl-compat-headers. With this, a number of musl compatibility
  3814. patches are no longer needed.
  3815. Updated/fixed packages: aircrack-ng, android-tools, babeld,
  3816. bcusdk, binutils, boa, busybox, connman, cpupower,
  3817. docker-engine, domoticz, elf2flt, ffmpeg, fwup, gcc,
  3818. glib-networking, gnupg, hplip, igd2-for-linux, imagemagick,
  3819. imx-uuc, iputils, jack2, kismet, kmsxx, libaio, libamcodec,
  3820. libconfuse, libffi, libfreeimage, libgcrypt, libgpg-error,
  3821. libiio, libraw, libsepol, libserialport, libxmlrpc, linknx,
  3822. linux-pam, lirc-tools, lldpd, logrotate, lshw, musl, ncurses,
  3823. neon, nettle, norm, ntfs-3g, openblas, openmpi, openswan,
  3824. pinentry, pixman, protobuf, python-meld3, qlibc, qt, qt5base,
  3825. quagga, rpcbind, rt-tests, runc, sane-backends, sconeserver,
  3826. squeezelite, stella, tftpd, tinycbor, tinydtls, trace-cmd,
  3827. trousers, tstools, uboot-tools, uclibc, ulogd, ustr, vlc,
  3828. webkitgtk, wireshark, xdriver_xf86-video-intel
  3829. Issues resolved (http://bugs.buildroot.org):
  3830. #9101: Error on support/download/git with system git older than 1.8.4
  3831. #9181: Compiling linux kernel fails if BR2_LINUX_KERNEL_TOOL_CPU..
  3832. 2016.08-rc2, Released August 17th, 2016
  3833. Fixes all over the tree.
  3834. Toolchain: disable broken C++ support for internal blackfin
  3835. toolchains, ARC toolchain bumped to arc-2016.09-eng008 (GCC 6)
  3836. to fix various issues.
  3837. System: Zoneinfo is available for the musl C library as well.
  3838. Updated/fixed packages: am33x-cm3, axel, barebox, bdwgc,
  3839. blktrace, cairo, dante, enlightenment, fbterm, ffmpeg, flex,
  3840. fontconfig, gcc, gmp, gnuplot, gnuradio, gst1-imx, hidapi,
  3841. inotify_tools, iproute2, kmsxx, lftp, libaio, libcofi,
  3842. libical, libpjsip, libsidplay2, libunwindow, libxml2,
  3843. linux-zigbee, lttng-libust, mpv, mtd, ncdu, netplug, ntp,
  3844. openblas, openipmi, owfs, php, poco, procps, qt, quota,
  3845. sg3_utils, spidev_test, systemd-bootchart, thrift,
  3846. uboot-tools, uclibc, webrtc-audio-processing, wayland, weston,
  3847. xdriver_xf86-video-savage, xserver_xorg-server, xen
  3848. Issues resolved (http://bugs.buildroot.org):
  3849. #9136: make graph-size fails with "ValueError: too many values to..
  3850. #9151: qt: fix build with ALSA >= 1.1.x
  3851. #9156: qt: Fix missing runtime Qt3Support dependency
  3852. #9161: modsetting patch not applied to xserver 1.18.4
  3853. #9166: Missing overlays directory in VFAT image for raspberry pi 3
  3854. 2016.08-rc1, Released August 6th, 2016
  3855. Fixes all over the tree and new features.
  3856. Toolchain: Fortran support added. eglibc support removed, musl
  3857. support no longer experimental. Blackfin and Microblaze
  3858. support for internal uClibc-ng toolchain, m68k/coldfire
  3859. improvements. The check for unsafe (build host) directories
  3860. access (/usr/include and /usr/lib) is now enabled by default.
  3861. Unused locales are now purged by default to save space (and
  3862. the default list of locales shrunk). The option to control
  3863. this has now moved from the toolchain menu to system
  3864. configuration.
  3865. Legal info improvements: sources are now hardlinked instead of
  3866. copied if possible to save space. Patches and extra downloads
  3867. are also saved.
  3868. An experimental configuration knob (BR2_REPRODUCIBLE) has been
  3869. added to make the builds more reproducible (E.G. less
  3870. differences in the binary output between builds of the same
  3871. configuration). This is still work in progress.
  3872. An option to execute a custom script inside the fakeroot
  3873. environment used to the generate the filesystem (E.G. to tweak
  3874. permissions or similar) has been added.
  3875. Git support now supports git submodules if
  3876. <pkg>_GIT_SUBMODULES is enabled.
  3877. Hash files for integritry validation have been added for all
  3878. packages.
  3879. Scanpypi utility to help creating packages from the Python
  3880. package index (pypi) has been added.
  3881. The makedevs utility now has support for adding file
  3882. capabilities using extended attributes.
  3883. New defconfigs: Arcturus uCP1020, Atmel sama5d{2,3,4} xplained
  3884. development configs, Blackfin GDB simulator, Linksprite
  3885. pcDuino, Minnow Board Max graphical demo, NXP i.MX25 PDK,
  3886. i.MX51 EVK, i.MX6UL Pico, i.MX7 sabresd, QEMU MIPS32r6{,el} and
  3887. MIPS64r6{,el} malta, Roseapple Pi, Samsung Snow chromebook,
  3888. Toradex Apalis i.MX6 COM, TS-4800, x86-64 PC BIOS and EFI
  3889. demos. A number of defconfigs have been updated and extended
  3890. to generate SD card images. Synopsys HS38 VDK defconfig removed.
  3891. New packages: 4th, acpica, acpitool, alljoyn, alljoyn-base,
  3892. alljoyn-tcl, alljoyn-tcl-base, argparse, babeld, batman-adv,
  3893. circus, dante, docker-containerd, docker-engine, domoticz,
  3894. efibootmgr, efivar, ficl, fwup, gsettings-desktop-schemas,
  3895. gtksourceview, gupnp-dlna, gupnp-tools, igd2-for-linux,
  3896. jemalloc, kmsxx, lapack, lft, libaacs, libamcodec, libbdplus,
  3897. libcoap, libdvdcss, libebur128, libfastjson, libminiupnpc,
  3898. libnatpmp, libpqxx, libuio, libvdpau, log4cpp, minissdpd,
  3899. mxsldr, nginx-nasxi, nginx-upload, ninja, nodm, odroid-mali,
  3900. odroid-scripts, omxplayer, openblas, openmpi, openzwave,
  3901. p7zip, pdbg, python-argh, python-dataproperty,
  3902. python-dateutil, python-dialog3, python-dicttoxml,
  3903. python-dominate, python-engineio, python-flask-jsonrpc,
  3904. python-flask-login, python-humanize, python-pathtools,
  3905. python-pathvalidate, python-pillow, python-prompt-toolkit,
  3906. python-pytablewriter, python-pytz, python-scapy3k,
  3907. python-sdnotify, python-socketio, python-tomako,
  3908. python-ubjson, python-u-msgpack, python-watchdog,
  3909. python-wcwidth, python-xlrd, python-xlsxwriter,
  3910. python-xlutils, python-xlwt, rs485conf, runc, sdl2_gfx,
  3911. sdl2_image, sdl2_ttf, shellinabox, sphinxbase, stella,
  3912. supertuxkart, systemd-bootchart, tekui, terminology, tinycbor,
  3913. tinydtls, ti-sgx-demos, ti-sgx-km, ti-sgx-um, tunctl, wavemon,
  3914. wiringpi, xen
  3915. Deprecated packages: ipkg, sstrip
  3916. Removed packages: sunxi-mali-prop
  3917. Issues resolved (http://bugs.buildroot.org):
  3918. #8931: segment fault when compile argp-help.c using aarch64-bu...
  3919. #8966: eglfs error. buildroot don't compile the library libeglfs.so
  3920. #8971: build for beaglebone fails
  3921. #8986: qt5imageformats fails to build on AArch64
  3922. #8991: grub2 fails to compile
  3923. #9001: Nodejs option not available
  3924. #9006: gcc with c++ support v4 and v5 fail to compile on fedora 24
  3925. #9016: arceb-buildroot-linux-uclibc ld uses incorrect default format
  3926. #9066: 8139TOO - faulty behaviour
  3927. #9086: Syntax Error (missing ")" in boot/uboot/uboot.mk on line 203)
  3928. #9091: U-Boot fails to boot with large ramdisk
  3929. 2016.05, Released May 31st, 2016
  3930. Minor fixes.
  3931. External toolchain: Fix for symlink handling when copying
  3932. links to target.
  3933. Updated/fixed packages: gcc, grantlee, gst-ffmpeg,
  3934. ipsec-tools, iptraf-ng, libcurl, libdrm, libsigsegv, ltris,
  3935. lttng-babeltrace, mbedtls, mesa3d, moarvm, mplayer, mtools,
  3936. net-tools, openpowerlink, pulseview, rpm, tinyalsa,
  3937. xdriver_xf86-video-fbturbo, xserver_xorg-server
  3938. 2016.05-rc3, Released May 26th, 2016
  3939. Fixes all over the tree.
  3940. Tweaks for SSP handling for external toolchains.
  3941. Updated/fixed packages: aircrack-ng, bluez5_utils, connman,
  3942. cups, erlang-p1-stringprep, expat, ffmpeg, flann, flannel, go,
  3943. gst1-libav, hidapi, hplip, iptraf-ng, jamvm, kodi,
  3944. kodi-screensaver-matrixtrails, libcurl, libepoxy, libgpgme,
  3945. libsemanage, libxslt, liquid-dsp, ltris, lxc, mesa3d, midori,
  3946. mpg123, mtr, openpgm, openpowerlink, oprofile, php,
  3947. postgresql, putty, python-service-identity, python-treq,
  3948. qlibc, qt5serialbus, ruby, stress-ng, strongswan, time, tinc,
  3949. ustr, valgrind, webkitgtk, libxml2, xorriso,
  3950. xserver_xorg-server
  3951. Issues resolved (http://bugs.uclibc.org):
  3952. #8936: Aircrack-ng - Alot of missing dependencies
  3953. 2016.05-rc2, Released May 17th, 2016
  3954. Fixes all over the tree.
  3955. Rootfs overlay handling now refuses to overwrite
  3956. /{usr,bin,sbin,lib} symlinks from BR2_ROOTFS_MERGED_USR option
  3957. even if these directories are present in the overlay.
  3958. External toolchain: Unbreak user provided libraries deployment
  3959. (BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS) handling after refactoring.
  3960. QEMU coldfire: Fix for signal handling kernel issue, enable
  3961. networking support.
  3962. Updated/fixed packages: android-tools, assimp, boost, gcc,
  3963. glibc, glmark2, gmrender-resurrect, go, go-bootstrap, iputils,
  3964. jack2, kodi-screensaver-asterwave, kodi-screensaver-rsxs,
  3965. kodi-visualisation-shadertoy, libarchive, libinput, libpjsip,
  3966. mali-t76x, mtr, nginx, opencv, openvpn, python-coherence,
  3967. qt5multimeda, quagga, samba4, sg3-utils, stress-ng, turbolua
  3968. 2016.05-rc1, Released May 10th, 2016
  3969. Fixes all over the tree and new features.
  3970. Architectures: new ARM variants: Cortex A17 and M4, improved
  3971. nonmmu (cortex-M) support, m68k has been re-enabled with
  3972. support for ColdFire. For x86, support for the i386 variant
  3973. has been dropped.
  3974. Toolchain: Add GCC 6 support, remove GCC 4.5, mark GCC 4.7 as
  3975. deprecated. Go programming language support, Add Binutils 2.26
  3976. support. Old Sourcery PowerPC external toolchains removed,
  3977. Sourcery MIPS 2016.06-8, AMD64 2015.11-139, NiosII 2015.11-130
  3978. added, Linaro ARM/ARMeb/Aarch64 toolchains updated.
  3979. New defconfigs: Firefly RK3288, Boundary Devices i.MX7 Nitrogen7,
  3980. STM32F429 and STM32F469 Discovery boards, Hardkernel ODROID-C2,
  3981. Raspberry Pi Zero and Raspberry Pi 3. Some Qemu defconfigs were
  3982. added for m68k, eXtensa-nommu and ColdFire.
  3983. Linux: use zImage by default on ARM, subversion repository
  3984. support (for u-boot as well).
  3985. New packages: aer-inject, android-tools, cannelloni,
  3986. cbootimage, cgroupfs-mount, connman-gtk, crudini, dt,
  3987. gmrender-resurrect, flannel, font-awesome, freeswitch, go,
  3988. go-bootstrap, gr-osmosdr, granite, i7z, imx-uuc,
  3989. kodi-adsp-basic, kodi-adsp-freesurround,
  3990. kodi-audiodecoder-opus, kodi-pvr-hdhomerun,
  3991. kodi-screensaver-asterwave, kodi-screensaver-cpblobs,
  3992. kodi-screensaver-matrixtrails, kodi-screensaver-planestate,
  3993. kodi-screensaver-rsxs, kodi-visualisation-fishbmc,
  3994. kodi-visualisation-fountain, kodi-visualisation-goom, libgee,
  3995. libimxvpuapi, libpjsip, libtomcrypt, libtommath, libusbgx,
  3996. lksctp-tools, mali-t76x, mkpimage, mpv, msr-tools, nload,
  3997. norm, nvme, owfs, pound, privoxy, procrank_linux, putty,
  3998. python-autobahn, python-characteristic, python-crossbar,
  3999. python-cryptography, python-iniparse, python-iowait,
  4000. python-lmdb, python-pexpect, python-ptyprocess,
  4001. python-pyasn-modules, python-pygments, python-pymysql,
  4002. python-pynacl, python-pyopenssl, python-pysocks,
  4003. python-pytrie, python-rpi-gpio, python-service-identity,
  4004. python-setproctitle, python-shutilwhich, python-treq,
  4005. python-txaio, python-ujson, python-wsaccel, qt5canvas3d,
  4006. qt5location, qt5quickcontrols2, qt5serialbus, qt5tools,
  4007. raptor, scrub, taskd, tegrarcm, turbolua, valijson,
  4008. wayland-protocols, webkitgtk, wilc1000-firmware, wpan-tools,
  4009. xdriver_xf86-video-amdgpu
  4010. Removed packages: foomatic-filters, python-m2crypto,
  4011. qt5quick1, qt5webkit-examples, samba, xdriver_xf86-input-void
  4012. Issues resolved (http://bugs.buildroot.org):
  4013. #6830: Qt5: no fonts are installed
  4014. #7562: musl buildroot-toolchain and BR2_MIPS_SOFT_FLOAT break
  4015. #7580: Invalid filesystem in Pandaboard defconfig
  4016. #8346: wf111 package removes all kernel module dependencies
  4017. #8436: xserver_xorg-server Segmentation fault
  4018. #8736: IPV6 forced on in busybox
  4019. #8746: At startup system stops with 'cannot set terminal proces..
  4020. #8751: make fail [fio does not build on sh]
  4021. #8766: Compiling host-gcc-final-4.9.3 broken on i386
  4022. #8771: make savedefconfig modifies sources
  4023. #8781: Unable to build uboot for imx28evk
  4024. #8786: gdb fails to build with xz and expat support at the same
  4025. #8801: Compilation of Buildroot 2016.2 for Raspberry Pi with...
  4026. #8806: Buildroot 2016.2 for Raspberry Pi requires that ext4...
  4027. #8836: Can't select Vim in menuconfig
  4028. #8851: Make sure fio can compile with libaio support if it...
  4029. #8861: With buildroot 2016.02 trying to build for corei7-avx
  4030. fails while trying to build host-binutils
  4031. #8866: Making an USB flash bootable with extlinux build with
  4032. buildroot does not work
  4033. 2016.02, Released March 1st, 2016
  4034. Minor fixes, mostly security related.
  4035. Circular dependency issue with same-as-kernel linux-headers
  4036. option fixed.
  4037. Updated/fixed packages: bluez5_utils, heirloom-mailx,
  4038. imx-gpu-viv, kodi-pvr-argustv, kodi-pvr-mediaportal-tvserver,
  4039. kodi-pvr-nextpvr, libfcgi, openssl, pifmrds, powerpc-utils,
  4040. python-m2crypto, slang, sox, squid, tn5250, xerces, zsh
  4041. 2016.02-rc3, Released February 27th, 2016
  4042. Fixes all over the tree.
  4043. Defconfigs: Ensure EABIhf is correctly enabled for ARM cores
  4044. where VFP is optional (but present on the specific hw). Fix
  4045. ARM variant selection for freescale_imx31_3stack_defconfig.
  4046. Ensure tarballs of downloaded git trees do not contain a
  4047. timestamp.
  4048. Clarify license of patches in COPYING.
  4049. Updated/fixed package: avahi, binutils, cairo, can-festival,
  4050. chrony, cifs-utils, dnsmasq, dvdauthor, e2fsprogs, efl,
  4051. erlang-rebar, eudev, fbterm, gawk, gnupg2, gnuradio, gpm,
  4052. gst1-plugins-good, hostapd, imagemagick, iproute2, iputils,
  4053. jack2, kexec, kismet, lftp, libarchive, libeXosip2, libfm,
  4054. libglib2, libsoil, libssh, libssh2, libuci, links, lshw, lxc,
  4055. mediastreamer, mono, mraa, mutt, nfs-utils, numactl, ofono,
  4056. omniorb, openipmi, openobex, patch, pax-utils, perf,
  4057. pulseaudio, pure-ftp, qhull, qt, quagga, quota, sdl_sound,
  4058. shairport-sync, spice, sysklogd, syslog-ng, trace-cmd,
  4059. trousers, tvheadend, util-linux, vim, webkitgtk24, wireshark,
  4060. wpa_supplicant, xerces, zsh
  4061. Issues resolved (http://bugs.uclibc.org):
  4062. #8651: libMonoPosixHelper.so wrong link reference in buildroot..
  4063. 2016.02-rc2, Released February 18th, 2016
  4064. Fixes all over the tree.
  4065. Toolchain: PR19405 backport to binutils 2.25.1 to fix NIOS ld
  4066. crash, backport of Xtensa .init/.fini literals handling.
  4067. glibc security patches for CVE-2014-8121, CVE-2015-1781
  4068. and CVE-2015-7547.
  4069. Defconfigs for Acmesystems Arietta g25 added.
  4070. Updated/fixed packages: binutils, boost, chrony, dovecot,
  4071. e2fsprogs, fio, gdb, glibc, graphite2, icu, kbd, libbsd,
  4072. libcue, libgcrypt, libraw, links, mc, mosquitto, nodejs,
  4073. postgresql, pptp-linux, pulseaudio, samba4, spice, squid,
  4074. sysklogd, systemd, tiff, uclibc, ulogd, util-linux, valgrind.
  4075. Issues resolved (http://bugs.uclibc.org):
  4076. #8576: Building embedded Linux for Atmel SAMA5D4_Xplained...
  4077. #8606: Problem compiling on Arch Linux
  4078. #8681: kbd 2.0.3 does not build on rpi
  4079. 2016.02-rc1, Released February 10th, 2016
  4080. Fixes all over the tree and new features.
  4081. Toolchain: Support for GCC 5.3.x. ARC toolchain updated to
  4082. arc-2015.12. Support for legacy uClibc dropped, default to
  4083. uClibc-ng instead. Added sys/queue.h implementation for MUSL
  4084. for compatibility. Updated versions of Code sourcery and
  4085. Linaro toolchains. MIPS Codescape toolchains added. Version
  4086. selection for preconfigured external toolchains removed.
  4087. New Defconfigs: ARM Juno r0/r1 development boards, Freescale
  4088. i.MX6UL Evaluation Kit, Intel Galileo Gen 2, Orange Pi PC.
  4089. A number of defconfigs have been extended to generate complete
  4090. system images using genimage.
  4091. Linux: Automatically patch timeconst.pl for <3.9 kernels,
  4092. which isn't compatible with modern perl versions, breaking the
  4093. build when building on recent (Fedora 23, Debian
  4094. Testing/Unstable, ..) distributions.
  4095. Makedevs utility now accepts textual (non-numerical) user and
  4096. group names.
  4097. Vagrant file to easily setup a working development environment
  4098. in a VM has been added.
  4099. Size-stats-compare script to compare rootfs sizes between
  4100. builds has been added.
  4101. Infozip package renamed to zip. EFL packages restructured.
  4102. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  4103. angularjs, apache, apr, argp-standalone, armadillo, arptables,
  4104. at, atk, audiofile, aumix, autoconf-archive, avahi, bash, bc,
  4105. bcache-tools, bdwgc, beecrypt, bind, binutils, bluez5_utils,
  4106. bluez_utils, bonnie, boost, busybox, cairo, cdrkit, chrony,
  4107. clamav, cmake, collectd, connman, coreutils, cppcms, crda,
  4108. cryptodev-linux, cryptsetup, cups, cwiid, cxxtest, dbus,
  4109. dbus-cpp, dbus-glib, debianutils, dhcp, dhcpcd, dhrystone,
  4110. dillo, directfb, directfb-examples, dmraid, dnsmasq, doom-wad,
  4111. dovecot, dovecot-pigeonhole, dropbear, dtv-scan-tables,
  4112. dvb-apps, dvbsnoop, ecryptfs-utils, eigen, ejabberd,
  4113. elementary, elfutils, enlightenment, erlang, espeak, eudev,
  4114. eventlog, exfat, exfat-utils, exiv2, expedite, faifa,
  4115. fakeroot, fastd, fbgrab, fetchmail, ffmpeg, findutils, fio,
  4116. firmware-imx, flann, flashrom, flite, flot, fmlib, freerdp,
  4117. freescale-imx, freetype, gauche, gawk, gcc, gcc-final, gcr,
  4118. gdb, gdk-pixbuf, geoip, gesftpserver, gettext, giflib, git,
  4119. glibc, glibmm, glog, gmp, gnupg, gnupg2, gnutls, gob2, gpsd,
  4120. gptfdisk, grep, gst1-libav, gst1-plugins-{bad,base,good,ugly},
  4121. gst-ffmpeg, gst-plugins-{bad,base,good,ugly}, gstreamer,
  4122. gstreamer1, guile, gvfs, gzip, harfbuzz, haserl, hiawatha,
  4123. hostapd, hplip, icu, ifupdown, imagemagick, imx-gpu-viv,
  4124. imx-kobs, imx-lib, input-tools, intel-microcode, iperf3,
  4125. ipmitool, iproute2, iprutils, ipsec-tools, ipset, iptables,
  4126. iputils, irda-utils, irssi, iucode-tool, jack2, janus-gateway,
  4127. jpeg-turbo, jquery-datetimepicker, jquery-keyboard,
  4128. jquery-sparkline, jquery-ui, jquery-ui-themes,
  4129. jquery-validation, json-c, kbd, kernel-module-imx-gpu-viv,
  4130. keyutils, kmod, knock, kodi, lcdproc, lcms2, leafnode2,
  4131. leafpad, libass, libatomic_ops, libbroadvoice, libbsd,
  4132. libcap-ng, libcdaudio, libcue, libcurl, libdrm, libecore,
  4133. libedbus, libedit, libedje, libeet, libefreet, libeina,
  4134. libeio, libelementary, libembryo, libepoxy, libethumb, libev,
  4135. libevas, libevas-generic-loaders, libevdev, libevent, libffi,
  4136. libfm, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  4137. libftdi, libfuse, libgail, libglew, libglib2, libgtk2,
  4138. libgtk3, libgudev, libhttpparser, libidn, libinput, libiscsi,
  4139. libjpeg, liblinear, libmbim, libmicrohttpd, libndp, libnspr,
  4140. libnss, liboauth, liboping, libpciaccess, libplist, libpng,
  4141. libraw, libraw1394, librsvg, libseccomp, libsecret,
  4142. libserialport, libsigc, libsigrok, libsigrokdecode,
  4143. libsndfile, libsoc, libsodium, libsoup, libssh2, libsvg,
  4144. libsvg-cairo, libtasn1, libtirpc, libtorrent, libungif,
  4145. libunwind, libupnpp, liburcu, libuv, libv4l, libva,
  4146. libva-intel-driver, libvips, libvncserver, libxml2, libxmlpp,
  4147. lightning, lighttpd, linknx, linux-firmware, linux-fusion,
  4148. linux-headers, liquid-dsp, lirc-tools, live555, lm-sensors,
  4149. lockdev, lshw, ltp-testsuite, ltrace, lttng-babeltrace,
  4150. lttng-libust, lttng-modules, lttng-tools, lua, luabitop,
  4151. luarocks, luv, lvm2, lxc, makedevs, mc, memcached, memtest86,
  4152. mesa3d, mesa3d-demos, mesa3d-headers, micropython,
  4153. micropython-lib, minicom, minidlna, mjpg-streamer, mke2img,
  4154. moarvm, modem-manager, mongoose, mongrel2, monkey, mono,
  4155. monolite, mosh, mosquitto, mpd, mplayer, msgpack, mtdev2tuio,
  4156. musepack, musl, mysql, nano, nasm, nbd, neard, netatalk,
  4157. netsnmp, nettle, net-tools, network-manager, nfs-utils, nginx,
  4158. nmap, nodejs, ntfs-3g, ntp, numactl, nut, nvidia-driver,
  4159. odhcp6c, ofono, ola, olsr, omniorb, opencv, opencv3, openipmi,
  4160. openldap, openntpd, openobex, openocd, openpgm,
  4161. open-plc-utils, openpowerlink, openssh, openssl, openswan,
  4162. openvpn, opkg, oprofile, opus, opusfile, p11-kit, package,
  4163. pango, pax-utils, pciutils, pcmanfm, perl, perl-db-file,
  4164. perl-io-socket-ssl, perl-libwww-perl, perl-net-dns, perl-uri,
  4165. perl-xml-libxml, php, php-ssh2, picocom, pinentry, pixman,
  4166. polarssl, popt, portaudio, pppd, procps-ng, proftpd, protobuf,
  4167. psmisc, ptpd2, pulseaudio, pulseview, pv, python, python3,
  4168. python-alsaaudio, python-can, python-cffi, python-cherrypy,
  4169. python-httplib2, python-jinja2, python-lxml, python-m2crypto,
  4170. python-mako, python-msgpack, python-psutil, python-pyasn,
  4171. python-pycparser, python-pydal, python-pyftpdlib,
  4172. python-pyroute2, python-pyxml, python-pyzmq, python-requests,
  4173. python-serial, python-setuptools, python-six, python-spidev,
  4174. python-tornado, python-twisted, python-web2py, python-webpy,
  4175. python-werkzeug, python-zope-interface, qemu, qhull, qpdf, qt,
  4176. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  4177. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  4178. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  4179. qt5serialport, qt5svg, qt5webchannel, qt5webkit,
  4180. qt5webkit-examples, qt5websockets, qt5x11extras,
  4181. qt5xmlpatterns, qt-webkit-kiosk, racehound, radvd, read-edid,
  4182. readline, redis, rpcbind, rpi-firmware, rpi-userland, rrdtool,
  4183. rsync, rsyslog, rtai, rtorrent, rt-tests, rubix, ruby, samba4,
  4184. sconeserver, setools, shairport-sync, sigrok-cli, skeleton,
  4185. smack, snowball-init, socat, sp-oops-extract, sqlite,
  4186. squashfs, squeezelite, squid, sredird, sshfs,
  4187. start-stop-daemon, strace, strongswan, stunnel, subversion,
  4188. sunxi-tools, swig, sysdig, syslog-ng, sysstat, systemd,
  4189. sysvinit, taglib, tcl, tcpreplay, thrift, ti-gfx, tinyalsa,
  4190. tor, torsmo, trace-cmd, transmission, tremor, triggerhappy,
  4191. trinity, tvheadend, tzdata, uboot-tools, uclibc, udisks,
  4192. udpcast, unionfs, upmpdcli, usb_modeswitch,
  4193. usb_modeswitch_data, ustr, util-linux, vala, valgrind,
  4194. vboot-utils, vde2, vlc, vnstat, webkit, webkitgtk24, weston,
  4195. wget, whetstone, whois, wine, wipe, wireless-regdb, wireshark,
  4196. wpa_supplicant, w_scan, x11r7, xapp_xbacklight, xapp_xcompmgr,
  4197. xapp_xinput, xapp_xkbcomp, xdriver_xf86-input-evdev,
  4198. xdriver_xf86-input-libinput, xdriver_xf86-input-synaptics,
  4199. xdriver_xf86-video-ati, xdriver_xf86-video-fbturbo,
  4200. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  4201. xfont_encodings, xfont_font-adobe-100dpi,
  4202. xfont_font-adobe-75dpi, xfont_font-adobe-utopia-100dpi,
  4203. xfont_font-adobe-utopia-75dpi, xfont_font-adobe-utopia-type1,
  4204. xfont_font-alias, xfont_font-arabic-misc,
  4205. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  4206. xfont_font-bh-lucidatypewriter-100dpi,
  4207. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  4208. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  4209. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  4210. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  4211. xfont_font-daewoo-misc, xfont_font-dec-misc,
  4212. xfont_font-ibm-type1, xfont_font-isas-misc,
  4213. xfont_font-jis-misc, xfont_font-micro-misc,
  4214. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  4215. xfont_font-misc-meltho, xfont_font-misc-misc,
  4216. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  4217. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  4218. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  4219. xfont_font-xfree86-type1, xfsprogs, xkeyboard-config, xl2tp,
  4220. xlib_libfontenc, xlib_libXi, xmlstarlet, xscreensaver,
  4221. xserver_xorg-server, xtables-addons, xvkbd, xz, yad, yasm,
  4222. ympd, zeromq, zic, znc, zsh,
  4223. New packages: acsccid, assimp, atkmm, autofs, bcm2835,
  4224. cairomm, cantarell, chocolate-doom, comix-cursors, cxxtest,
  4225. edid-decode, emlog, gcr, gtkmm3, hidapi, jquery-sidebar,
  4226. kernel-module-imx-gpu-viv, libasplib, libcroco, libdvbpsi,
  4227. libfreeglut, libgdiplus, libglfw, libhdhomerun, libnet,
  4228. libsoil, lldpd, luvi, mbedtls, minizip, miraclecast, mongodb,
  4229. mraa, netbsd-queue, netsniff-ng, nss-pam-ldapd,
  4230. obsidian-cursors, openal, openbox, pangomm,
  4231. python-backports-abc, python-beautifulsoup4, python-cbor,
  4232. python-click, python-cssselect, python-ecdsa, python-html5lib,
  4233. python-idna, python-ipaddress, python-mistune, python-netaddr,
  4234. python-paho-mqtt, python-paramiko, python-pyparted,
  4235. python-pysmb, python-pyudev, python-singledispatch,
  4236. python-smbus-cffi, python-urllib3, qt53d, rabbitmq-c, rfkill,
  4237. sbc, spi-tools, tpm-tools, trousers, ubus, unrar, unscd,
  4238. unzip, v4l2grab, xdriver_xf86-video-nouveau, xdotool, zbar
  4239. Removed packages: libungif, python-pyxml,
  4240. Issues resolved (http://bugs.uclibc.org):
  4241. #7886: gettext: link failure with locally-installed libxml2
  4242. #7892: systemd-journald is broken
  4243. #8066: nodejs crashes when built with gcc 4.9
  4244. #8296: nodejs 0.12.7 - npm crashes (seg core dump)
  4245. #8501: gunzip fails to uncompress files
  4246. #8541: fail to build host-fakeroot-1.20.2
  4247. #8546: build instructions for raspberry pi don't work
  4248. #8571: strace for ARC compile error
  4249. #8581: pciutils.mk PCIUTILS_MAKE_OPTS typo
  4250. #8616: Fail to build for raspberrypi_defconfig with big endian
  4251. #8621: sqlite package, properly enable readline
  4252. 2015.11, Released November 30th, 2015
  4253. Minor fixes.
  4254. Merged/seperate /usr handling is now also performed for
  4255. staging so cross-gdb / gdbserver can find the libraries.
  4256. Updated/fixed packages: autossh, conntrack-tools, dcron,
  4257. espeak, gcc, glmark2, gpsd, gstreamer1, libglib2, libsigsegv,
  4258. libsoc, libv4l, minidlna, mongrel2, opencv, polarssl,
  4259. rpi-userland, rubix, skeleton, tovid, uemacs, valgrind, yad,
  4260. zmqpp
  4261. Issues resolved (http://bugs.uclibc.org):
  4262. #8441: Invalid directory for X11 fonts in target (RPi2)
  4263. #8491: libglib2 2.46.1 not Building for armv5 on 2015.11-rc3
  4264. 2015.11-rc3, Released November 26th, 2015
  4265. Fixes all over the tree.
  4266. We have a new modern website!
  4267. Updated/fixed packages: apitrace, audiofile, autossh, bullet,
  4268. c-ares, collectd, conntrack-tools, cryptodev-linux, dropbear,
  4269. fastd, gmp, gpsd, gst-plugins-bad, gst-plugins-base,
  4270. gst-plugins-good, gst-plugins-ugly, gstreamer, gstreamer1,
  4271. guile, iodine, iproute2, jimtcl, kompexsqlite, libethumb,
  4272. libfreeimage, libgsasl, libgtk3, libxml2, localedef,
  4273. lttng-tools, macchanger, mongrel2, mpd, openntpd, openssl,
  4274. oprofile, pcre, qt5base, quagga, rpi-userland, sconeserver,
  4275. sdl, spidev_test, sqlite, strongswan, ustr, xapp_sessreg,
  4276. yajl, zmqpp
  4277. Issues resolved (http://bugs.uclibc.org):
  4278. #6872: gpsd: disabled on microblaze
  4279. #8321: invalid opcode error with minidlna and ffmpeg
  4280. #8336: Default systemd configuration fails to boot correctly in 2015-08
  4281. #8446: rpi-userland failed to build with glibc 2.22
  4282. 2015.11-rc2, Released November 19th, 2015
  4283. Fixes all over the tree.
  4284. LD_LIBRARY_PATH is no longer used to ensure host binaries find
  4285. their libraries, fixing issues on recent Fedora.
  4286. Toolchain fixes for powerpc e5500 / e6500. Fix for an issue
  4287. with ${TARGET}-cc after the move to use a toolchain wrapper
  4288. for the internal toolchain.
  4289. Appy-patches.sh now correctly applies all files listed in
  4290. series files.
  4291. Fixes for merged /usr handling when a custom skeleton is used.
  4292. Updated/fixed packages: axfsutils, boost, busybox, dhcp,
  4293. directfb, dropbear, ebtables, fastd, ffmpeg, gauche, gcc,
  4294. gettext, gst1-plugins-bad, hostapd, ibrdtnd, libcurl,
  4295. libecore, libgudev, libnss, libpng, libserial, libssh2,
  4296. libuecc, libxml2, linux-headers, liquid-dsp, ltris,
  4297. lua-periphery, minidlna, mongrel2, mpd, mpg123, mplayer,
  4298. mysql, opencv, opencv3, package, perl-file-util, php-ssh2,
  4299. polarssl, pulseaudio, python-protobuf, qemu, qt5base, ranger,
  4300. ruby, skeleton, slang, squeezelite, strongswan, tovid, uclibc,
  4301. ushare, wine, wpa_supplicant, x265,
  4302. xdriver_xf86-video-siliconmotion, zxing-cpp
  4303. Issues resolved (http://bugs.uclibc.org):
  4304. #4790: Running udhcpc on a system with NFS root kills NFS
  4305. #8456: Building host-pkgconf on Fedora 23 fails due to..
  4306. 2015.11-rc1, Released November, 7th 2015
  4307. Fixes all over the tree and new features.
  4308. Architectures:
  4309. - Support for sparc64 added (internal toolchain with glibc
  4310. only).
  4311. - Support for mips32r6 and mips64r6 added.
  4312. - Support for Intel Quark X1000 CPU.
  4313. - Switch to EABIhf by default on ARM when a VFP is available.
  4314. Toolchains:
  4315. - glibc 2.22, gdb 7.10, use gdb 7.9 by default, musl 1.1.12,
  4316. uclibc-ng 1.0.8, host-gdb enabled on AArch64.
  4317. - The toolchain wrapper which was used only for external
  4318. toolchains is now also used for Buildroot internal
  4319. toolchains. This allowed to fix the ccache support, prepare
  4320. the way for top-level parallel build support and remove gcc
  4321. patches used to detect header/library path poisoning.
  4322. - Remove Analog Devices Blackfin toolchain 2012R2.
  4323. - Fix several Xtensa build failures by switching from
  4324. text-section-literals to auto-litpools.
  4325. - Enable MIPS64 support in uClibc-ng, use uClibc on ARC
  4326. rather than a specific fork.
  4327. - Linaro toolchains for ARM, ARMeb and AArch64 updated to
  4328. 2015.08. 2014.09 version is kept since 2015.08 only runs on
  4329. x86_64 hosts.
  4330. Bootloaders:
  4331. - Fix ARM64 support in U-Boot.
  4332. Defconfigs:
  4333. - Added: ARC HS38 VDK virtual boards, Avnet Microzed, Boundary
  4334. Devices Nitrogen SoloX, Freescale i.MX6 SoloX Sabre SD,
  4335. OLinuxino A20 Lime2, Qemu Sparc64, Qemu SuperH 4 big endian,
  4336. Synopsys AArch64 VDK virtual platform.
  4337. - Updated: calao_qil_a9260, calao_usb_a9g20_lpw, ci20,
  4338. cubieboad, freescale_imx6_*, imx53loco, imx6_vab820,
  4339. mpc8315erdb, qmx6, p1010rdb, qemu, raspberrypi,
  4340. raspberrypi2, riotboard, snps_axs10*, wandboard.
  4341. - Removed: at91rm9200df, at91sam9260dfc, at91sam9263ek,
  4342. calao_snowball_defconfig, gnublin, integrator926_defconfig.
  4343. Infrastructure:
  4344. - Support for fetching from Mercurial tags fixed.
  4345. - Introduce LINUX_NEEDS_MODULES, which allows to enforce
  4346. module support to be enabled in the kernel when a package
  4347. builds out-of-tree kernel modules (through the
  4348. pkg-kernel-module infrastructure or on its own).
  4349. - Improve the perl package infrastructure to automatically add
  4350. the dependency to the perl interpreter to target perl module
  4351. packages.
  4352. - Remove trailing slashes in <pkg>_SITE and addition of a
  4353. check to ensure such trailing slashes are no longer added.
  4354. - Extend the legal infrastructure to allow packages to declare
  4355. their actual source code. This is useful for packages for
  4356. which <pkg>_SOURCE points to pre-built binaries (as is the
  4357. case for external toolchains). The new <pkg>_ACTUAL_SOURCE
  4358. variable allows to point to the source code in such cases.
  4359. - Improved ccache support, thanks to the usage of a toolchain
  4360. wrapper for internal toolchain. Now a single cache directory
  4361. can be shared between different Buildroot builds.
  4362. - Addition of a 'graph-size' make targets, which generates a
  4363. PDF graph of per-package size of the root filesystem.
  4364. - Addition of <pkg>_EXCLUDES so that packages can request
  4365. certain parts of the source code tarball to not be
  4366. extracted. This feature is currently used by gcc and
  4367. toolchain-external.
  4368. - Packages can now use the <pkg>_PKGDIR variable, provided by
  4369. the package infrastructure, to reference their package
  4370. directory, instead of explicitly using package/<pkg>/.
  4371. Filesystems:
  4372. - Add high lz4 compression to squashfs.
  4373. - Simplification of shell profile files in the default
  4374. skeleton.
  4375. - Remove ftp user and /home/ftp from the skeleton, and let ftp
  4376. server packages create these when needed.
  4377. - Add support for /bin, /sbin and /lib to be symlinks to their
  4378. corresponding directories in /usr. This is enforced for
  4379. systemd configurations, and optional for other
  4380. configurations.
  4381. - Support for AXFS filesystem image generation added.
  4382. - New options to add extra space/inodes to ext2/3/4 images.
  4383. Updated/fixed packages:
  4384. adwaita-icon-theme, apache, apitrace, atk, audit, avahi,
  4385. barebox, bash, batctl, bind, binutils, bluez_utils, boost,
  4386. bridge-utils, cairo, ccache, chrony, clapack, cloog, cmake,
  4387. collectd, connman, conntrack-tools, coreutils, cpio,
  4388. cryptsetup, dbus, dbus-cpp, devmem2, dhcp, dhcpcd, dhcpdump,
  4389. dhrystone, dillo, directfb, directfb-examples, dmraid,
  4390. dos2unix, dovecot, dovecot-pigeonhole, drbd-utils, dropbear,
  4391. dropwatch, dtc, e2fsprogs, ebtables, efl, eigen, ejabberd,
  4392. elf2flt, elfutils, erlang, ethtool, eudev, evemu, exfat,
  4393. exfat-utils, expat, faifa, fbterm, fdk-aac, feh, ffmpeg, file,
  4394. flashrom, fping, freerdp, freescale-imx, freetype, gdk-pixbuf,
  4395. genimage, gettext, git, glib-networking, glmark2, gnupg2,
  4396. gnuradio, gnutls, gpsd, grep, grub2, gst1-imx, gst1-libav,
  4397. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  4398. gst1-plugins-ugly, gst1-validate, gst-fsl-plugins,
  4399. gst-plugins-bad, gstreamer1, guile, gvfs, harfbuzz, haveged,
  4400. hostapd, icu, imagemagick, impiutil, imx-gpu-viv, imx-vpu,
  4401. inadyn, intltool, iostat, iperf3, ipmiutil, iproute2,
  4402. iptables, iw, jpeg-turbo, jq, jsoncpp, kexec-lite, kmod, kodi,
  4403. kodi-audioencoder-flac, kodi-pvr-argustv, kodi-pvr-filmon,
  4404. kodi-pvr-hts, kodi-pvr-mythtv, kodi-pvr-pctv,
  4405. kodi-pvr-stalker, kodi-pvr-vbox,
  4406. kodi-visualisation-waveforhue, less, lftp, libbluray,
  4407. libcgroup, libconfuse, libcurl, libdcadec, libdrm, libevdev,
  4408. libffi, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  4409. libgcrypt, libglew, libglib2, libgtk3, libidn, liblinear,
  4410. liblockfile, libmicrohttpd, libnetfilter_conntrack, libnfs,
  4411. libnftnl, libnl, libnspr, libnss, libpcap, libpfm4, libpng,
  4412. libselinux, libserial, libsoup, libsoxr, libstrophe, libtasn1,
  4413. libtirpc, libtorrent, libupnpp, liburcu, libusb-compat, libuv,
  4414. libv4l, libva, libva-intel-driver, libxcb, lighttpd, links,
  4415. linux, linux-firmware, linux-fusion, linux-headers,
  4416. lirc-tools, localedef, lpeg, lsof, ltp-testsuite,
  4417. lttng-libust, lttng-tools, lua-periphery, luaposix, lvm2, lxc,
  4418. lz4, mdadm, mesa3d, mesa3d-headers, minicom, minidlna, moarvm,
  4419. modem-manager, mosquitto, mpd, mpdecimal, mpg123, mplayer,
  4420. mrouted, msmtp, mtd, mutt, nettle, network-manager, nfs-utils,
  4421. nftables, nginx, nodejs, noip, ntp, ofono, opencv3, openpgm,
  4422. openssl, openswan, openvpn, pango, parted, perl, perl-cross,
  4423. perl-crypt-openssl-random, perl-http-message,
  4424. perl-io-socket-ssl, perl-module-build, perl-mojolicious,
  4425. perl-netaddr-ip, perl-net-dns, perl-net-http, perl-net-ssleay,
  4426. perl-uri, perl-xml-libxml, php, picocom, pixman, pkgconf,
  4427. poco, polarssl, portaudio, portmap, postgresql, proftpd,
  4428. protobuf, protobuf-c, pulseaudio, python-configshell-fb,
  4429. python-networkmanager, python-numpy, python-pyparsing,
  4430. python-pypcap, python-rtslib-fb, python-spidev, python-urwid,
  4431. python-web2py, qemu, qt5base, redis, rngtools, rng-tools,
  4432. rpi-firmware, rpi-userland, rtmpdump, rtorrent, ruby, samba,
  4433. samba4, sane-backends, sconeserver, sdl, sed, setools,
  4434. shairport-sync, shared-mime-info, sland, smartmontools,
  4435. softether, spice-protocol, sqlcipher, sqlite, squid,
  4436. strongswan, stunnel, subversion, sudo, sunxi-tools,
  4437. supervisor, systemd, tar, targetcli-fb, tcpdump, tiff, tor,
  4438. tvheadend, tzdata, uboot-tools, udisks, unionfs, upmpdcli,
  4439. util-linux, vala, valgrind, vim, vlc, vorbis-tools, vsftpd,
  4440. vtun, wavpack, webkitgtk24, weston, whois, wireless-regdb,
  4441. wireshark, wpa_supplicant, xdriver_xf86-input-vmmouse,
  4442. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  4443. xdriver_xf86-video-sis, xlib_libXi, xorg-server,
  4444. xtables-addons, xterm, xz, zic, znc, zsh
  4445. New packages:
  4446. axfsutils, bitstream, check, dvblast, eventlog, fastd, gauche,
  4447. gmock, graphite2, gssdp, gupnp, gupnp-av, ibrcommon, ibrdtn,
  4448. ibrdtnd, ibrdtn-tools, imx-kobs, iqvlinux, irssi,
  4449. kompexsqlite, libbroadvoice, libcddb, libcodec2, libcrossguid,
  4450. libg7221, libhttpparser, libilbc, libldns, libmng,
  4451. libopenh264, libpam-radius-auth, libpam-tacplus, libsilk,
  4452. libsoundtouch, libssh, libuecc, libyuv, liquid-dsp, luv,
  4453. micropython, micropython-libs, python-pyratemp,
  4454. python-pyroute2, python-ranger, rapidxml, scrypt, sdl2,
  4455. sp-oops-extract, squeezelite, stress-ng, swupdate, syslog-ng,
  4456. x265, xdriver_xf86-video-fbturbo, xxhash, yad, zxing-cpp
  4457. Removed packages:
  4458. blackbox (was deprecated), divine (merged in directfb),
  4459. kobs-ng (replaced by imx-kobs), mediactl (merged in libv4l),
  4460. sawman (merged in directfb), schifra (marked broken since a
  4461. long time), texinfo (host variant only, no longer used), zxing
  4462. (replaced by zxing-cpp),
  4463. Issues resolved (http://bugs.uclibc.org):
  4464. #4099: cut utility from GNU coreutils works incorrect
  4465. #7772: libxml-parser-perl build failure: missing dependency
  4466. ExtUtils/MakeMaker
  4467. #7931: Default configuration for Cubieboard v1 is outdated
  4468. #8116: 2015.05-rc2 raspberrypi2_defconfig network interface
  4469. not coming up
  4470. #8246: X.org DRI2 build issue
  4471. #8256: pointing to /usr/bin/objcopy old version (x86) instead
  4472. of the generated one
  4473. #8266: mplayer build issue
  4474. #8281: pyrexc fails to run when path is too long
  4475. #8316: lttng-tools and lttng-babeltrace executables contain
  4476. bad RPATH pointing to host machine
  4477. #8331: kexec wants shutdown in /sbin, but systemd installs it
  4478. in /usr/sbin
  4479. #8361: Buildroot 2015.08.1 skeleton inittab overwritten by
  4480. busybox's version
  4481. #8366: libevent does not build
  4482. #8386: build failed with external toolchain
  4483. #8391: Node.js 0.12.7 fails to build on raspberry_pi defconfig
  4484. #8396: CCACHE initialization
  4485. #8401: gpsd 3.15 NMEA support
  4486. #8416: cups depends on BR2_DEPRECATED_SINCE_2015_05
  4487. #8421: util-linux installs systemd files in output/target/home/
  4488. 2015.08, Released August 31st, 2015
  4489. Minor fixes.
  4490. OpenCV 3.x package renamed to opencv3. OpenCV 2.4.x
  4491. reintroduced as opencv.
  4492. Updated/fixed packages: bootutils, canfestival, cppcms,
  4493. curlftpfs, dhcpdump, dropbear, erlang-p1-tls, exfat, gnuradio,
  4494. ipkg, libgudev, libmbim, libwebsock, linux-pam, lm-sensors,
  4495. ltrace, midori, network-manager, openssh, perl-file-listing,
  4496. perl-http-cookies, perl-http-daemon, perl-http-negotiate,
  4497. perl-www-robotrules, python-can, qt5base, qt5multimedia,
  4498. setools, sysvinit, tinyalsa, tn5250, tvheadend, uboot, vlc,
  4499. x264, xserver_xorg-server, zyre
  4500. 2015.08-rc2, Released August, 24th 2015
  4501. Fixes all over the tree.
  4502. Toolchain: fix gcc build on NIOS-II.
  4503. Infrastructure: add <fs>_POST_GEN_HOOKS mechanism to fix
  4504. hybrid ISO image generation.
  4505. Architectures: add arm1136j-s variant.
  4506. Updated/fixed packages: apitrace, audit, bcusdk, bdwgc,
  4507. beecrypt, boost, bwm-ng, cdrkit, c-icap, cifs-utils, clapack,
  4508. c-periphery, cpio, cramfs, czmq, dawgdic, dnsmasq, dosfstools,
  4509. dropbear, elfutils, empty, eudev, fan-ctrl, filemq, gnutls,
  4510. guile, haveged, imlib2, libcec, libepoxy, libev, libgpgme,
  4511. libiio, libnetfilter_queue, libnfnetlink, libpfm4, libpthsem,
  4512. librtas, libselinux, libsigsegv, libsodium, libv4l, lightning,
  4513. linux, lirc-tools, lrzsz, mono, mosh, mpd, msmtp, nbd,
  4514. netatalk, nodejs, ola, opencv, oprofile, php, poco,
  4515. postgresql, powertop, protobuf, protobuf-c, qt5base,
  4516. qt5quickcontrols, rapidjson, rng-tools, squid, sysdig,
  4517. sysstat, tftpd, tinc, tz, util-linux, webkitgtk24, weston,
  4518. wireshark, wvstreams, xdriver_xf86-input-synaptics, zyre.
  4519. Issues resolved (http://bugs.uclibc.org):
  4520. #8276: package/dropbear: symlink resolution incorrect
  4521. #8286: Error with buildroot
  4522. #8301: ldconfig parameter in Makefile
  4523. 2015.08-rc1, Released August, 5th 2015
  4524. Fixes all over the tree and new features.
  4525. Architectures:
  4526. - Refactor how the availability of an MMU is described.
  4527. - Minimal support for Cortex-M3
  4528. - Minimal support for AArch64 big-endian
  4529. Toolchains:
  4530. - Add CodeSourcery MIPS 2015.05, remove MIPS 2013.11
  4531. - Use uClibc-ng as the default uClibc version, instead of the
  4532. official uClibc, which hasn't done any release since 3+
  4533. years
  4534. - eglibc is now marked as deprecated
  4535. - GCC: gcc 4.9.x is now the default and was updated to 4.9.3,
  4536. support for gcc 5.x added.
  4537. - Binutils: use Binutils 2.24 as the default, 2.25.x series
  4538. bumped to 2.25.1, remove old Binutils 2.22.
  4539. - Update ARC toolchain components to 2015.06
  4540. - Add support for Fortran when building gcc
  4541. Bootloaders:
  4542. - Support for using the kconfig configuration system in
  4543. U-Boot
  4544. New Defconfigs:
  4545. - VIA VAB-820/AMOS-820
  4546. - OLimex OLinuxino A20 Lime
  4547. - Many new defconfigs for Atmel evaluation boards:
  4548. at91sam9rlek, at91sam9x5ek, sama5d3xek, sama5d4ek, sama5d4
  4549. Xplained Ultra, sama5d3 Xplained.
  4550. - ACME Systems Aria G25
  4551. - WarPboard
  4552. - Altera Cyclone 5 Development Board
  4553. - Xilinx zc706
  4554. - ARC AXS101 and AXS103 Software Development Platforms
  4555. - Significant updates to Raspberry Pi / Raspberry Pi 2
  4556. Infrastructure:
  4557. - Buildroot takes better care now of generating predictable
  4558. permissions in the target filesystem. However, existing
  4559. permissions on a custom skeleton or rootfs overlay will no
  4560. longer be preserved. Therefore, it is necessary to add a
  4561. permission table (BR2_ROOTFS_DEVICE_TABLE) to set the
  4562. required permissions.
  4563. - Add support for kconfig fragments.
  4564. - No longer pass --{enable,disable}-debug to autotools
  4565. packages depending on the value of
  4566. BR2_ENABLE_DEBUG. BR2_ENABLE_DEBUG now only controls
  4567. whether we build with -g or not.
  4568. - Support for extracting archives in .lzma in the generic
  4569. package infrastructure.
  4570. - Remove random-seed file from the default skeleton, since
  4571. seeding the entropy pool with a known seed makes more harm
  4572. than good.
  4573. - In the CVS download helper, add support to use a date as
  4574. the version.
  4575. - Add support for a per-package <pkg>_STRIP_COMPONENTS
  4576. variable, which packages can use to specify how many path
  4577. components should be stripped when extracting the tarball.
  4578. - Addition of a 'kernel-module' package infrastructure, which
  4579. simplifies the packaging of external kernel modules. Many
  4580. existing packages are converted to use it.
  4581. - Allow bootloaders to be implemented in $(BR2_EXTERNAL)
  4582. - Remove /etc/securetty from the default skeleton.
  4583. - Migration of sysV initscripts from the default skeleton to
  4584. a package called 'initscripts', installed only when Busbox
  4585. init or sysvinit are used.
  4586. - Migration of the skeleton logic to a proper 'skeleton'
  4587. package.
  4588. - Addition of a 'linux-tools' infrastructure in the 'linux'
  4589. package, to support building user-space tools bundled
  4590. within the Linux kernel sources, such as perf and cpupower.
  4591. - Usage of backticks instead of make $(shell ...) to execute
  4592. shell commands. This allows to delay the evaluation of such
  4593. commands when actually needed, and not when expanding the
  4594. variables. It is useful to make 'make printvars' less
  4595. noisy, and as a preparation to support top-level parallel
  4596. build.
  4597. - Libtool .la files are not mungled for all package types,
  4598. instead of being handled only for packages using the
  4599. autotools-package infrastructure.
  4600. - Add mechanism to allow packages to express a dependency on
  4601. gcc versions. This is needed for packages that use C++11 or
  4602. C11 support for example.
  4603. Important package updates:
  4604. - Complete rework of the matchbox packaging
  4605. - Lots of fixes in packages for compatibility with musl and
  4606. gcc 5.
  4607. - Hash files added to a large number of packages.
  4608. - Update a significant number of packages to use a new
  4609. hosting, after the announcement of Google Code and
  4610. Gitorious closing.
  4611. - Major packages needed for SELinux support have been merged,
  4612. but the support is not complete yet.
  4613. - Significant update of OpenCV to version 3.0, and addition
  4614. of lots of eatures.
  4615. - Significant update of all packages supporting the GPU and
  4616. VPU of i.MX ARM processors.
  4617. - Addition of systemd support in a significant number of
  4618. packages.
  4619. - Qt5 updated to 5.5.0
  4620. - Use modular X.org server by default instead of KDrive
  4621. Filesystems:
  4622. - Complete overhaul of the iso9660 support. Now allows to use
  4623. directly IS9660 as the root filesystem format and not only
  4624. an initrd, and supports Grub 2 and isolinux in addition to
  4625. Grub.
  4626. Updated packages: a10disp, agentpp, apache, at91bootstrap3,
  4627. audit, barebox, bc, bind, bmon, boost, btrfs-progs,
  4628. ca-certificates, can-utils, ccache, cloog, collectd, connman,
  4629. coreutils, c-periphery, cryptsetup, dado, dbus, dejavu,
  4630. dhcpcd, dnsmasq, dosfstools, dovecot, dovecot-pigeonhole,
  4631. e2fsprogs, ejabberd, erlang-p1-cache-tab, erlang-p1-sip,
  4632. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  4633. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml, ethtool,
  4634. eudev, evtest, exim, expect, explorercanvas, feh, ffmpeg,
  4635. file, flashrom, freescale-imx, freetype, gawk, gcc, gdb,
  4636. gettext, git, glib-networking, gnupg2, gnutls, gpsd, gptfdisk,
  4637. gpu-viv-bin-mx6q, gst-fsl-plugins, harfbuzz, hdparm, heimdal,
  4638. i2c-tools, imagemagick, imx-vpu, iproute2, ipset, isl, iw,
  4639. kodi, kodi-addon-xvdr, kodi-audioencoder-flac,
  4640. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  4641. kodi-audioencoder-wav, lftp, libass, libassuan, libcec,
  4642. libconfi, libcurl, libdrm, libevdev, libfreefare, libfslcodec,
  4643. libfslparser, libfslvpuwrap, libfuse, libglib2, libgpgme,
  4644. libgtk2, libgtk3, libical, libidn, libiio, libinput, libiscsi,
  4645. libllcp, libmicrohttpd, libnfc, libnss, libpcap, libpciaccess,
  4646. libpng, libserialport, libsigrok, libsoc, libtirpc, libubox,
  4647. libunistring, libupnp, libuv, libv4l, libva,
  4648. libva-intel-driver, libXrandr, lighttpd, linenoise, linux,
  4649. linux-firmware, linux-headers, live555, ltrace, lua,
  4650. lua-csnappy, lua-ev, luajit, lua-messagepack, luaperiphery,
  4651. lvm2, lxc, lzo, mesa3d, mesa3d-headers, midori, mmc-utils,
  4652. modem-manager, mono, mosquitto, mpd, mpd-mpc, mpfr, mpg123,
  4653. mtd, musl, nano, netperf, network-manager, nfs-utils, nginx,
  4654. nodejs, ntp, ola, opencv, openldap, openssh, openssl,
  4655. openswan, openvmtools, openvpn, opkg, orbit, orc, pcmanfm,
  4656. perl-cross, perl-encode-locale, perl-io-socket-ssl,
  4657. perl-mojolicious, perl-net-ssleay, perl-path-tiny, perl-uri,
  4658. perl-xml-libxml, php, pinentry, polarssl, postgresql,
  4659. pulseview, pure-ftpd, python, python-dpkt, python-lxml,
  4660. python-networkmanager, python-pyinotify, python-pypcap,
  4661. python-tornado, qextserialport, qt, qt5, rapidjson, redis,
  4662. rpcbind, rpi-firmware, rpi-userland, samba4, shairport-sync,
  4663. snmpp, sqlite, squid, strongswan, stunnel, sudo, sunxi-boards,
  4664. sunxi-mali, sysdig, sysstat, systemd, tcpdump, tiff, tmux,
  4665. tor, txheadend, tzdata, uboot, uclibc, ulogd, upmpdcli,
  4666. usb_modeswitch, usb_modeswitch_data, vala, vsftpd, wayland,
  4667. weston, whois, wireless-regdb, wireshark, x264, xapp_xvinfo,
  4668. xdriver_xf86-input-libinput, xdriver_xf86-input-vmmouse,
  4669. xdriver_xf86-video-cirrus, xdriver_xf86-video-geode,
  4670. xdriver_xf86-video-imx-viv, xdriver_xf86-video-mach64,
  4671. xdriver_xf86-video-neomagic, xdriver_xf86-video-r128,
  4672. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  4673. xdriver_xf86-video-vesa, xkeyboard-config, xlib_libfontenc,
  4674. xlib_libFS, xlib_libXaw, xlib_libxkbfile, xlib_libXrender,
  4675. xlib_libXt, xproto_kbproto, xproto_xproto, xproto_xrandrproto,
  4676. xscreensaver, xserver_xorg-server, xtables-addons, yaml-cpp,
  4677. zic.
  4678. New packages: angularjs, atf, audit, c-icap, c-icap-modules,
  4679. cpio, dawgdic, faketime, fcgiwrap, gflags, glog, initscripts,
  4680. jquery-datetimepicker, kodi-audioencoder-modplug,
  4681. kodi-audioencoder-nosefar, kodi-audioencoder-sidplay,
  4682. kodi-audioencoder-snesapu, kodi-audioencoder-stsound,
  4683. kodi-audioencoder-timidity, kodi-audioencoder-vgmstream,
  4684. kodi-platform, kodi-pvr-argustv, kodi-pvr-dvblink,
  4685. kodi-pvr-dvbviewer, kodi-pvr-filmon, kodi-pvr-hts,
  4686. kodi-pvr-iptvsimple, kodi-pvr-mediaportal-tvserver,
  4687. kodi-pvr-mythtv, kodi-pvr-nextpvr, kodi-pvr-njoy,
  4688. kodi-pvr-pctv, kodi-pvr-stalker, kodi-pvr-vbox,
  4689. kodi-pvr-vdr-vnsi, kodi-pvr-vuplus, kodi-pvr-wmc,
  4690. kodi-screensaver-asteroids, kodi-screensaver-biogenesis,
  4691. kodi-screensaver-crystalmorph, kodi-screensaver-greynetic,
  4692. kodi-screensaver-pingpong, kodi-screensaver-pyro,
  4693. kodi-screensaver-stars, kodi-visualisation-shadertoy,
  4694. kodi-visualisation-spectrum, kodi-visualisation-waveforhue,
  4695. kodi-visualisation-waveform, kvmtool, kyua, libfm,
  4696. libfm-extra, libplatform, librtas, libsodium, libsquish,
  4697. libucl, libump, linux-backports, lua-iconv, lutok, menu-cache,
  4698. moarvm, monkey, mono-gtksharp3, mosh, openipmi, python-can,
  4699. python-pycli, python-pydal, python-pyyaml, python-web2py,
  4700. qpid-proton, qt5webchannel, quazip, racehound, rtl8188eu,
  4701. rtl8821au, sepolgen, setools, skeleton, stm32flash,
  4702. webkitgtk24, xdriver_xf86-video-qxl, zynq-boot-bin.
  4703. Deprecated packages: webkitgtk, libgail, eglibc support in
  4704. glibc package.
  4705. Issues resolved (http://bugs.uclibc.org):
  4706. #4291: Segmentation fault with all binaries that use threads
  4707. when compiled with gcc 4.6
  4708. #6944: building toolchain for sh4 fails
  4709. #7592: Buildroot GCC: -lto requires plugin support in ranlib
  4710. #7628: Python SSL does not get built for Raspberry Pi
  4711. #7682: Missing dependencies for NFS
  4712. #7742: dhcp lacks important features when BR2_ENABLE_DEBUG
  4713. #7754: make: *** [/..../buildroot-2014.11/output/build/host-gcc-initial-4.8.3/.stamp_built] Error 2
  4714. #7946: libglib2-2.42.2 fails to build for sparc-buildroot-linux-gnu
  4715. #7956: glibc 2.20 and 2.21 fail to build for sh64-buildroot-linux-gnu
  4716. #7971: python-flask, python-werkzeug. No module named zlib
  4717. #7981: Target file system skeleton permissions hazard
  4718. #8006: rpcdebug in nfs-utils built for the host
  4719. #8036: alsa-lib headers problem that prevents to compile alsa
  4720. dependent projects
  4721. #8081: systemd init system: /tmp is not mode 1777
  4722. #8121: php opcache extension doesn't get installed
  4723. #8151: x86-64 make fails with ncurses 5.9
  4724. #8156: pkg-kconfig infra broken for *-update-{config, defconfig}
  4725. #8161: default /bin/sh symlink to busybox is full path and not relative
  4726. #8171: glamor missing
  4727. #8191: Request update support for the cubieboard series
  4728. #8201: Important security upgrades for node.js
  4729. 2015.05, Released May 31st, 2015
  4730. Minor fixes.
  4731. Updated/fixed packages: conntrack-tools, directfb, fio, flite,
  4732. gptfdisk, ipmiutil, iproute2, janus-gateway, keyutils, knock,
  4733. libelementary, libgcrypt, libgsasl, libjpeg, libstrophe,
  4734. lttng-libust, nbd, ncurses, nmap, php, postgresql, python,
  4735. python3, sconeserver, udpcast, upmpdcli
  4736. 2015.05-rc3, Released May 22nd, 2015
  4737. Several fixes, mainly related to static linking.
  4738. Updated/fixed packages: acl, alsa-utils, apr, armadillo, attr,
  4739. autoconf-archive, binutils, boost, czmq, dhcpcd, duma,
  4740. enlightenment, exim, fbterm, freerdp, gcc, gdk-pixbuf,
  4741. google-breakpad, gpsd, heirloom-mailx, hwloc, ipmiutil,
  4742. iproute2, jack2, jasper, kmod, lcdproc, leafnode2, libcap-ng,
  4743. libftdi1, libmatroska, libmemcached, libmodbus, libnftnl,
  4744. libsigrok, libupnpp, libuv, libxml-parser-perl, linux,
  4745. linux-headers, lirc-tools, lua-periphery, lxc, mongoose, mono,
  4746. mpg123, mosquitto, neardal, newt, ntp, ola, openldap, opencv,
  4747. php, postgresql, protobuf, pulseaudio, python-pyqt, qemu, qt,
  4748. qt5base, rpi-userland, rsyslog, snmppp, sqlite, tiff,
  4749. tinyxml2, uboot-tools, unionfs, ux5000-firmware, usbredir,
  4750. ushare, vpnc, vsftpd, wavpack, wireless_tools, wsapi,
  4751. wvstreams, xmlstarlet, zeromq, zmqpp
  4752. New packages: c-periphery
  4753. Issues resolved (http://bugs.uclibc.org):
  4754. #8106: mkfs.jffs2 uses the --pagesize parameter incorrectly
  4755. #8111: 2015.05.rc2 LIBFOO_CONF_OPTS not working
  4756. #8126: exim lacks plaintext and cram-md5 auth
  4757. 2015.05-rc2, Released May 11th, 2015
  4758. Minor fixes.
  4759. Toolchain: PR56780 backport to GCC 4.8.4 to fix GDB linking
  4760. issues. Context functions enabled for uClibc snapshot /
  4761. uClibc-NG.
  4762. Architectures: Endian handling symbol for Xtensa, binutils
  4763. fixes.
  4764. Infrastructure: Fix for kernel module stripping when
  4765. localversion contains spaces.
  4766. Updated/fixed packages: at, autoconf-archive, binutils,
  4767. cc-tool, cryptsetup, dstat, expedite, freerdp, giflib,
  4768. gnuchess, guile, ipmiutil, iproute2, mono, monolite, neard,
  4769. ola, poppler, postgresql, python-qt, qt, sqlite, valgrind,
  4770. xlib_libXfont
  4771. Issues resolved (http://bugs.uclibc.org):
  4772. #8086: Cannot select systemd as init with Linaro 2014.09...
  4773. 2015.05-rc1, Released May 4th, 2015
  4774. Fixes all over the tree and new features.
  4775. Architectures: Removed AVR32 support, deprecate SH64, added
  4776. support for steamroller, corei7-avx and core-avx2 x86
  4777. variants.
  4778. Toolchains: IPv6 and Largefile support now enforced for
  4779. uClibc. Corresponding Kconfig symbols removed.
  4780. External CodeSourcery AMD64 2014.05, MUSL-cross 1.1.6 added,
  4781. CS sh2, Xilinx microblaze v2/14.3 removed. Distro-class
  4782. external toolchains are now detected and blacklisted.
  4783. Internal toolchain support for Nios2 added, Blackfin
  4784. removed. Aarch64 and sh musl support. uClibc-ng support added.
  4785. Libatomic is now handled for internal and external
  4786. toolchains. Link time optimization (LTO) support.
  4787. New Defconfigs: Freescale i.MX28 EVK, i.MX31 PDK and SABRE
  4788. Auto, Raspberry Pi 2, RIoTboard,
  4789. Infrastructure: Hashes for a large number of packages have
  4790. been added. Missing hashes now stop the build unless
  4791. explicitly disabled.
  4792. Spaces and colons (:) are now supported in package
  4793. versions. Dependencies can now be listed for the patch step
  4794. (<PKG>_PATCH_DEPENDENCIES). Kconfig and Linux kernel
  4795. extensions infrastructure has been added.
  4796. Makedevs now has a recursive (r) option.
  4797. The variable containing the list of packages to build has been
  4798. renamed from TARGETS to PACKAGES.
  4799. Make external-deps / legal-info / source / source-check have
  4800. been reimplemented using the package infrastructure, so their
  4801. output/behaviour may differ from earlier (some packages were
  4802. not included in the past).
  4803. The old insecure DES password encoding is no longer supported.
  4804. U-Boot patch option now support direct references to patch
  4805. files and URLs in addition to directories of patches. The
  4806. i.MX28 SD format (u-boot.sd) is now supported.
  4807. Updated/fixed packages: agentpp, aircrack-ng, alsa-lib,
  4808. alsa-utils, apr-util, apr, atk, autossh, avahi, avrdude,
  4809. bcusdk, bdwgc, bind, binutils, bmon, boost, botan,
  4810. btrfs-progs, busybox, ca-certificates, cairo, can-utils,
  4811. canfestival, ccache, chrony, civetweb, clamav, cmake,
  4812. collectd, connman, copas, crda, cryptodev-linux, cryptsetup,
  4813. cups, czmq, dbus-cpp, dbus-glib, dbus-python, dbus, dfu-util,
  4814. dhcp, dhcpcd, dialog, dillo, dmraid, dnsmasq, dos2unix,
  4815. dosfstools, dovecot-pigeonhole, dovecot, dropbear, dropwatch,
  4816. dtv-scan-tables, dvdauthor, e2fsprogs, ecryptfs-utils,
  4817. libevas, elfutils, enscript, erlang, espeak, eudev, evemu,
  4818. exfat-utils, exim, f2fs-tools, feh, ffmpeg, fftw, flickcurl,
  4819. fltk, fluxbox, fmlib, fmtools, freeradius-client, freerdp,
  4820. gamin, gawk, gcc-final, gcc, gd, gdb, gengetopt, geoip, git,
  4821. glib-networking, gnu-efi, gnuchess, gnutls, gpsd, gptfdisk,
  4822. gpu-viv-bin-mx6q, gst-plugin-bad, gstreamer, gstreamer1,
  4823. gtest, gvfs, harfbuzz, haserl, haveged, hiawatha,
  4824. hicolor-icon-theme, hostapd, hplip, httping, i2c-tools, icu,
  4825. ifplugd, imagemagick, imlib2, iozone, iproute2, iptables,
  4826. iputils, irqbalance, iw, jack2, jhead, jimtcl, json-c, kexec,
  4827. kismet, kmod, kodi-audioencoder-flac,
  4828. kodi-audioencoder-vorbis, kodi-pvr-addons, kodi, ktap, lcms2,
  4829. libass, libatomic_ops, libbluray, libcap, libcgroup, libcurl,
  4830. libdrm, libdvbsi, libebml, libecore, libedit, liberation,
  4831. libev, libevas, libevdev, libftdi, libgcrypt, libglib2,
  4832. libgpgme, libgtk2, libgtk3, libiconv, libidn, libiio,
  4833. libinput, libiscsi, libksba, liblinear, libmatroska,
  4834. libmicrohttpd, libmodbus, libmpdclient, libnice, libnl,
  4835. libnspr, libnss, libpcap, libpciaccess, libphidget, libplayer,
  4836. libpthsem, libqmi, librsvg, libseccomp, libsigrok, libsoup,
  4837. libsrtp, libssh2, libtasn1, libtool, libunistring, liburcu,
  4838. libusb, libuv, libva-intel-driver, libva, libvncserver,
  4839. libvorbis, libvpx, libwebsockets, libxml2, libzip, lightning,
  4840. lighttpd, linknx, linphone, linux-firmware, linux-headers,
  4841. linux-pam, live555, ljsyscall, lmbench, lockdev, logrotate,
  4842. lpc3250loader, lpeg, lsof, lttng-libust, lttng-modules,
  4843. lttng-tools, lua, luacrypto, luafilesystem, luajit, luaposix,
  4844. luarocks, lvm2, lxc, make,
  4845. matchbox-{common,desktop,fakekey,keyboard,lib,startup-monitor,vm},
  4846. matchbox, mcelog, memcached, memstat, memtest86, mesa3d,
  4847. minidlna, mjpegtools, mjpg-streamer, modem-manager, mongoose,
  4848. monit, mono, monolite, mp4v2, mpc, mpd, mpdecimal, mpg123,
  4849. mplayer, musl, nano, nbd, ncftp, ncmpc, ncurses, ne10, neard,
  4850. neardal, net-tools, netatalk, netsnmp, network-manager, nginx,
  4851. nodejs, ntfs-3g, ntp, numactl, odhcp6c, ofono, open2300,
  4852. opencv, openldap, openntpd, openocd, openssh, openssl,
  4853. openswan, opentyrian, openvmtools, openvpn, oprofile, p11-kit,
  4854. pango, patch, patchelf, pciutils, pcre, perf, perl-gdgraph,
  4855. perl-io-socket-ssl, perl-json-tiny, perl-module-build,
  4856. perl-mojolicious, perl-net-ssleay, perl-path-tiny,
  4857. perl-xml-libxml, perl, phidgetwebservice, php-gnupg, php,
  4858. pkgconf, polarssl, poppler, popt, postgresql, powerpc-utils,
  4859. pppd, prboom, procps-ng, proftpd, psplash, ptpd2,
  4860. python-{cheetah,coherence,django,markdown,netifaces,pam,six},
  4861. python-tornado, python-twisted, python-zope-interface, python,
  4862. python3, qemu, qt, qt5, qt5base, qt5multimedia,
  4863. qt5xmlpatterns, qt5cinex, quagga, qwt, radvd, readline,
  4864. rng-tools, rpcbind, rpi-firmware, rpi-userland, rsync,
  4865. rsyslog, rtai, rtmpdump, ruby, sam-ba, samba, samba4,
  4866. sane-backends, sconeserver, shairport-sync, sigrok-cli, slang,
  4867. smcroute, snmppp, socat, socketcand, sofia-sip, sox,
  4868. spawn-fcgi, speex, sqlcipher, sqlite, squid, strace,
  4869. strongswan, stunnel, sudo, sunxi-boards, swig, sysstat,
  4870. systemd, tcpdump, tftpd, thrift, thttpd, ti-gfx, ti-utils,
  4871. tiff, tinyalsa, tn5250, transmission, trinity, tslib,
  4872. tvheadend, tzdata, uboot-tools, uclibc, ulogd, usb_modeswitch,
  4873. usbutils, ustr, util-linux, vala, valgrind, vlc, wayland,
  4874. webp, weston, wget, which, whois, wireless-regdb,
  4875. wireless_tools, wireshark, wpa_supplicant, wvstreams,
  4876. xapp_{bdftopcf,bitmap,fonttosfnt,fslsfonts},
  4877. xapp_{fstobdf,iceauth,mkfontscale,oclock,rgb,sessreg,setxkbmap},
  4878. xapp_{showfont,smproxy,twm,x11perf,xcalc,xclipboard,xcmsdb},
  4879. xapp_{xdbedizzy,xditview,xdpyinfo,xdriinfo,xedit,xev,xeyes},
  4880. xapp_{xf86dga,xfsinfo,xgamma,xgc,xhost,xinit,xinput,xkbcomp},
  4881. xapp_{xkbevd,xkbprint,xlsatoms,xlsfonts,xmag,xman,xmh,xmodmap},
  4882. xapp_xmore, xcb-util-image, xcb-util-keysyms,
  4883. xdata_xcursor-themes,
  4884. xdriver_xf86-input-{evdev,keyboard,synaptics,void},
  4885. xdriver_xf86-video-{ati,cirrus,geode,mach64,mga,neomagic},
  4886. xdriver_xf86-video-{r128,savage,siliconmotion,sis,tdfx},
  4887. xdriver_xf86-video-{trident,vmware,voodoo}, xenomai,
  4888. xfont_font-util, xkeyboard-config,
  4889. xlib_lib{ICE,X11,Xdmcp,Xfont,Xpm,XvMC},
  4890. xlib_lib{Xxf86vm,xshmfence,xtrans}, xproto_randrproto,
  4891. xproto_xproto, xserver_xorg-server, x11vnc, x264, xerces,
  4892. xorriso, xterm, xz, yaml-cpp, zeromq, zic, zmqpp
  4893. New packages: apache, autoconf-archive, batctl,
  4894. bitstream-vera, bullet, cc-tool, doxygen, drbd-utils,
  4895. dvdrw-tools, gnuradio, gst1-imx, hans, hwloc, ijs,
  4896. imx-usb-loader, inconsolata, iodine, iotop, ipmiutil, jsoncpp,
  4897. leveldb, libdcadec, libdri2, libfreeimage, libftdi1,
  4898. libsidplay2, lirc-tools, lua-periphery, mc, mesa3d-headers,
  4899. mosquitto, nvidia-driver, nvidia-tegra23{,-binaries,-codecs},
  4900. openjpeg, opusfile, perl-crypt-openssl-{random,rsa},
  4901. perl-db-file, perl-digest-{hmac,sha1},
  4902. perl-encode-{detect,locale}, perl-file-{listing,util},
  4903. perl-html-{parser,tagset}, perl-http-cookies,
  4904. perl-http-{daemon,date,message,negotiate}, perl-io-html,
  4905. perl-libwww-perl, perl-lwp-mediatypes, perl-mail-dkim,
  4906. perl-mailtools, perl-mime-base64, perl-net-{dns,http},
  4907. perl-netaddr-ip, perl-time-hires, perl-timedate, perl-uri,
  4908. perl-www-robotrules, powertop, pulseview,
  4909. python-{cherrypy,lxml,mako,pyqt,pyxml,sip,spidev,ws4py}, qpdf,
  4910. qt-webkit-kiosk, sl, softether, sysdig, tinyxml2, tor, tovid,
  4911. unixodbc, wf111, wine, libepoxy, xapp_xcompmgr,
  4912. xapp_xfindproxy, xcb-util-cursor, xcb-util-renderutil,
  4913. xdriver_xf86-input-libinput, xdriver_xf86-video-imx{,-viv},
  4914. xproto_xproxymanagementprotocol
  4915. Removed packages: gtk2-theme-hicolor
  4916. Deprecated packages: samba
  4917. Issues resolved (http://bugs.uclibc.org):
  4918. #7478: Multiple chosen python modules are not built due to...
  4919. #7508: Use of BR2_EXTERNAL and dependencies to existing packages
  4920. #7676: Package procps-ng installs binaries to nonsensical folder
  4921. #7724: Startx is not installed in the target
  4922. #7760: botan: wrong prefix in botan-1.10.pc
  4923. #7826: Building of cdparanoia
  4924. #7844: Lua with hard-float on MIPS by buildroot doesn't work
  4925. #7874: X.org configure error
  4926. #7941: glibc-2.20 fails to build for sparc-buildroot-linux-gnu
  4927. #7951: gcc 4.9.2 fails to build for sparc-buildroot-linux-gnu
  4928. #7961: Qt5 fails to build for xtensa-buildroot-linux-uclibc
  4929. #7976: mkuser script fails with: user already exists with...
  4930. #8011: When building only busybox and strace, strace fails...
  4931. #8016: collectd fails to build, network.c:171:19: error:...
  4932. #8041: error on building libcurl7.42.0
  4933. 2015.02, Released March 1st, 2015
  4934. Minor fixes.
  4935. Updated/fixed packages: civetweb, ding-libs,
  4936. directfb-examples, glibc, gnupg, gnupg2, gpm,
  4937. gst-plugins-good, gst1-plugins-good, freetype, libao, libevas,
  4938. libevent, libfribidi, libgcrypt, libgtk2, libshout, libsrtp,
  4939. libtheora, libupnpp, libxmlrpc, linux, make, opus, pinentry,
  4940. rpi-firmware, shared-mime-info, vlc, vorbis-tools,
  4941. xcb-util-keysyms
  4942. Removed packages: libgc
  4943. 2015.02-rc3, Released February 24th, 2015
  4944. Minor fixes.
  4945. Cmake and rebar (erlang) infrastructure fixes.
  4946. Updated/fixed packages: bind, btrfs-progs, busybox, e2fsprogs,
  4947. evtest, ffmpeg, fltk, gnutls, i2c-tools, imagemagick, libxcb,
  4948. make, mjpg-streamer, netsnmp, opentyrian, php, polarssl,
  4949. qt5base, samba, samba4, sudo, util-linux, xserver_xorg-server
  4950. 2015.02-rc2, Released February 15th, 2015
  4951. Minor fixes.
  4952. raspberrypi: fix kernel sha1 for DT variant.
  4953. Updated/fixed packages: dbus, dvdauthor, git, libsemanage,
  4954. libsepol, libssh2, mplayer, ntp, openvmtools, python3,
  4955. qt5base, qt5connectivity, xserver_xorg-server
  4956. 2015.02-rc1, Released February 8th, 2015
  4957. Fixes all over the tree and new features.
  4958. Static/shared library handling reworked. This is now a
  4959. tristate (shared only / shared and static / static
  4960. only). Default is now shared only to speed up the
  4961. build. BR2_PREFER_STATIC_LIB is now called BR2_STATIC_LIBS.
  4962. The toolchain (internal and external) will now warn when an
  4963. unsafe library or header path is used (such as /usr/include or
  4964. /usr/lib). If BR2_COMPILER_PARANOID_UNSAFE_PATH is enabled
  4965. under build options this instead becomes an error.
  4966. A installation path issue with the internal musl toolchain
  4967. support has been fixed so it is now possible to reuse it as an
  4968. external toolchain.
  4969. Architectures: Freescale E5500 and E6500 PowerPC support
  4970. added, deprecated MIPS 1/2/3/4 support removed.
  4971. New defconfigs: Freescale p2020ds, MIPS creator CI20,
  4972. Raspberrypi with DT, UDOO Quad.
  4973. 'make <foo>_defconfig' now saves the path to the defconfig in
  4974. the .config, so a 'make savedefconfig' automatically updates
  4975. it.
  4976. Infrastructure for packages using the Erland rebar tool has
  4977. been added.
  4978. Hashes for a large number of packages have been added. Hashes
  4979. are now checked for both target and host packages.
  4980. The system menu now has an option to automatically configure a
  4981. network interface through DHCP at bootup.
  4982. The default filesystem skeleton now uses a separate tmpfs for
  4983. /run instead of a symlink to /tmp/ for security reasons / to
  4984. protect against conflicts with user generated temporary files.
  4985. BR2_EXTERNAL is now exported to post-build and post-image
  4986. scripts.
  4987. New packages: bdwgc, benejson, blktrace, bootstrap, cgic,
  4988. ding-libs, dvdauthor, ejabberd, erlang-goldrush, erlang-lager,
  4989. erlang-p1-cache-tab, erlang-p1-iconv, erlang-p1-sip,
  4990. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  4991. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml,
  4992. erlang-p1-zlib, exiv2, freeradius-client, gengetopt, glmark2,
  4993. gpu-amd-bin-mx51, guile, host-qemu, ifupdown, iperf3,
  4994. janus-gateway, kodi, kodi-audioencoder-flac,
  4995. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  4996. kodi-audioencoder-wav, libcli, libiio, liblinear, libnice,
  4997. libselinux, libsemanage, libserialport, libsigro,
  4998. libsigrokdecode, libsrtp, liburiparser, libvips, libwebsock,
  4999. libz160, libzip, lightning, mcelog, memtest86, mjpegtools,
  5000. mjpg-streamer, mke2img, mpd-mpc, netsurf-buildsystem, odhcp6c,
  5001. openldap, python-alsaaudio, python-certifi, python-cheetah,
  5002. python-coherence, python-django, python-docopt, python-enum,
  5003. python-enum34, python-flask, python-gobject, python-httplib2,
  5004. python-ipaddr, python-itsdangerous, python-jinja,
  5005. python-markdown, python-markupsafe, python-networkmanager,
  5006. python-pam, python-psutil, python-pyftpdlib, python-pyinotify,
  5007. python-pysendfile, python-pyxb, python-requests, python-six,
  5008. python-twisted, python-webpy, python-werkzeug,
  5009. python-zope-interface, qt5cinex, sigrok-cli, sofia-sip,
  5010. start-stop-daemon, szip, triggerhappy, ustr, vnstat, xorriso,
  5011. xtables-addons
  5012. Removed packages (target): bison, distcc, gob2, m4
  5013. Issues resolved (http://bugs.uclibc.org):
  5014. #7556: make interactive CLI optional for nftables
  5015. #7730: Error while connecting Qt Cretaor to device
  5016. #7766: logrotate default gzip path is usually wrong
  5017. #7790: Invalid ext4 image generated by Buildroot
  5018. 2014.11, Released December 1st, 2014
  5019. Minor fixes.
  5020. Infrastructure: LD_LIBRARY_PATH handling tweak to ensure
  5021. current working directory isn't searched.
  5022. Updated/fixed packages: gd, gdb, libwebsockets, luajit, mono,
  5023. parted, shairport-sync, util-linux, xapp_bdftopcf,
  5024. xserver_xorg-server
  5025. 2014.11-rc3, Released November 28th, 2014
  5026. Fixes all over the tree.
  5027. System: File permissions of /etc/random-seed made more
  5028. restrictive.
  5029. Toolchain: Various fixes related to locale handling, a fix for
  5030. building the toolchain wrapper on MIPS.
  5031. Updated/fixed packages: bind, binutils. botan, btrfsprogs,
  5032. clamav, czmq, dhcp, dillo, dovecot, erlang, flac, gd, glibc,
  5033. gptfdisk, gst1-validate, heirloom-mailx, lame, libksba,
  5034. libllcp, libnspr, libpng, libshairplay, libtirpc, linux,
  5035. linux-headers, mpdecimal, mpg123, network-manager, nfstables,
  5036. nfs-utils, openssl, pcituils, qt, radvd, rtai, sqlcipher,
  5037. sstrip, tcpdump, uclibc, uemacs, ushare, wayland, weston,
  5038. xl2tp, xserver_xorg-server
  5039. Issues resolved (http://bugs.uclibc.org):
  5040. #7670: Fails to build mpc-1.0.2 on latest Cygwin
  5041. 2014.11-rc2, Released November 21st, 2014
  5042. Fixes all over the tree.
  5043. Inittab tweaks for shutdown handling (busybox and sysvinit).
  5044. Updated/fixed packages: aircrack-ng, botan, canfestival,
  5045. clamav, coreutils, czmq, dbus, dovecot, duma, e2fsprogs,
  5046. erlang, gcc, iputils, libcap, libgcrypt, libmemcached,
  5047. libssh2, libunwind, libv4l, linux-headers, mesa3d-demos, mutt,
  5048. mysql, ndisc6, nodejs, omniorb, perl-cross, php,
  5049. python-tornado, python3, qemu, qt5base, qt5webkit, rpm,
  5050. rt-tests, ruby, schifra, sdl_sound, shairport-sync, sysvinit,
  5051. tstools, tzdata, wireshark, x264
  5052. Issues resolved (http://bugs.uclibc.org):
  5053. #7646: strftime on datetime not works on python3
  5054. 2014.11-rc1, Released November 12th, 2014
  5055. Fixes all over the tree and new features.
  5056. Toolchains: Use -mcpu / -march instead of -mtune. Support
  5057. additional ARC and sparc variants. Updated Code sourcery
  5058. and Linaro external toolchains.
  5059. Defconfigs: Freescale iMX6DL SabreSD, Minnowboard MAX, QEMU
  5060. powerpc64 pseries added and a number of updates to the
  5061. existing configurations.
  5062. Infrastructure: Buildroot is now less noisy when built with
  5063. the silent option (make -s).
  5064. A number of package infrastructure variables have been renamed
  5065. from *_OPT to *_OPTS for constency. Buildroot will complain if
  5066. the old names are used to assist in updating out of tree
  5067. packages.
  5068. Fixes for host systems where bash isn't located in /bin, and
  5069. older systems not supporting mktemp --tmpdir.
  5070. Various cleanups of users/groups in the default skeleton.
  5071. There is now an option to choose what shell /bin/sh points to.
  5072. Documentation: Various updates to the user manual. The
  5073. asciidoc documentation handling has now been extended so it
  5074. can be used by (BR2_EXTERNAL) packages.
  5075. Updated/fixed packages: acl, acpid, agentpp, aircrack-ng,
  5076. alsa-lib, alsamixergui, alsa-utils, apitrace, apr, apr-util,
  5077. argus, arptables, at, atftp, atk, attr, audiofile, aumix,
  5078. automake, autossh, avahi, avrdude, axel, bandwidthd, bash,
  5079. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  5080. bluez_utils, bmon, boost, bootutils, bridge-utils,
  5081. btrfs-progs, busybox, bwm-ng, bzip2, ca-certificates, cairo,
  5082. ccache, ccid, ccrypt, cdrkit, cegui06, celt051, chrony,
  5083. cifs-utils, civetweb, cjson, clapack, classpath, cloog, cmake,
  5084. collectd, connman, copas, coreutils, coxpcall, cppcms, cppdb,
  5085. cppzmq, cramfs, crda, cryptsetup, ctorrent, cups, cvs, cwiid,
  5086. czmq, dash, dbus, dbus-cpp, dbus-glib, dbus-python, dejavu,
  5087. dhcp, dhcpcd, dhcpdump, dialog, dillo, directfb, distcc,
  5088. dmalloc, dmidecode, dmraid, dnsmasq, doc-asciidoc.mk,
  5089. dosfstools, dropbear, dropwatch, dstat, dtach, dtc, dvbsnoop,
  5090. e2fsprogs, ecryptfs-utils, ed, efl, eigen, elf2flt, elfutils,
  5091. enlightenment, enscript, erlang, espeak, ethtool, eudev,
  5092. evemu, evtest, exfat, exfat-utils, exim, expat, expect,
  5093. explorercanvas, faifa, fakeroot, fan-ctrl, fbdump,
  5094. fb-test-app, fetchmail, ffmpeg, file, filemq, findutils, flac,
  5095. flann, flickcurl, flite, fltk, fluxbox, fmc, fmlib,
  5096. fontconfig, foomatic-filters, freerdp, freescale-imx,
  5097. freetype, ftop, fxload, gamin, gcc, gd, gdb, gdk-pixbuf,
  5098. genimage, genpart, genromfs, geoip, gettext, giblib, git,
  5099. glibc, glib-networking, gmp, gmpc, gnu-efi, gnupg, gnupg2,
  5100. gnuplot, gnutls, google-breakpad, gpm, gpsd, gptfdisk,
  5101. gpu-viv-bin-mx6q, grantlee, grep, gsl, gst1-libav,
  5102. gst1-plugins-{bad,base,good,ugly}, gst-ffmpeg,
  5103. gst-fsl-plugins, gst-omx, gst-plugins-{bad,base,good,ugly},
  5104. gst-plugin-x170, gstreamer, gstreamer1, gtest, gtk2-engines,
  5105. gutenprint, gvfs, harfbuzz, haserl, haveged, hdparm, heimdal,
  5106. heirloom-mailx, hiawatha, hostapd, hplip, htop, httping,
  5107. hwdata, i2c-tools, icu, ifplugd, igh-ethercat, imagemagick,
  5108. imlib2, imx-lib, imx-vpu, inadyn, inotify-tools, input-tools,
  5109. intltool, iperf, iproute2, iprutils, ipsec-tools, ipset,
  5110. iptables, iputils, iw, jamvm, jansson, jasper, jimtcl, joe,
  5111. jpeg-turbo, jq, jquery-keyboard, jquery-mobile, jquery-ui,
  5112. jquery-ui-themes, jquery-validation, jsmin, json-c,
  5113. json-javascript, kbd, kexec, kexec-lite, keyutils, kismet,
  5114. kmod, knock, ktap, lame, lbase64, lbreakout2, lcdproc, lcms2,
  5115. lesstif, lftp, libaio, libao, libarchive, libargtable2,
  5116. libass, libassuan, libatasmart, libbluray, libbsd, libcap,
  5117. libcap-ng, libcdio, libcec, libcgicc, libcgroup, libcofi,
  5118. libconfig, libconfuse, libcurl, libdaemon, libdnet, libdrm,
  5119. libdvdnav, libecore, libedbus, libedit, libedje, libeet,
  5120. libelementary, libelf, libenca, libethumb, libevas,
  5121. libevas-generic-loaders, libevent, libexif, libeXosip2,
  5122. libffi, libftdi, libfuse, libgail, libgcrypt, libgeotiff,
  5123. libglade, libglib2, libgpgme, libgtk2, libhid, libidn,
  5124. libinput, libiscsi, libjson, libksba, liblockfile,
  5125. liblog4c-localtime, liblogging, libmad, libmatroska, libmbim,
  5126. libmemcached, libmicrohttpd, libmpdclient, libmpeg2, libndp,
  5127. libnfc, libnfs, libnftnl, libnl, libnspr, libnss, liboauth,
  5128. libogg, liboping, libosip2, libpcap, libpciaccess, libpfm4,
  5129. libplayer, libplist, libpng, libpthsem, libqmi, libqrencode,
  5130. libraw, libreplaygain, libroxml, librsvg, librtlsdr,
  5131. libsamplerate, libseccomp, libsecret, libshairplay, libsoc,
  5132. libsoup, libsoxr, libssh2, libstrophe, libsvg, libsvg-cairo,
  5133. libtasn1, libtheora, libtirpc, libtorrent, libubox, libuci,
  5134. libungif, liburcu, libusb, libuv, libv4l, libva,
  5135. libva-intel-driver, libvncserver, libvorbis, libvpx,
  5136. libwebsockets, libxcb, libxml2, libxml-parser-perl, libxmlrpc,
  5137. libxslt, lighttpd, linenoise, linknx, links, linphone,
  5138. linux-firmware, linux-fusion, linux-headers, linux-pam,
  5139. linux-zigbee, lite, live555, ljlinenoise, lmbench, lm-sensors,
  5140. localedef, lockdev, lockfile-progs, log4cxx, lpty, lrandom,
  5141. lrzsz, lshw, lsof, lsqlite3, ltp-testsuite, ltrace, ltris,
  5142. lttng-babeltrace, lttng-libust, lttng-modules, lttng-tools,
  5143. lua, luabitop, lua-coat, lua-coatpersistent, lua-csnappy,
  5144. lua-ev, luajit, luajson, lualogging, lua-messagepack,
  5145. lua-msgpack-native, luaposix, luarocks, luasec, luasocket,
  5146. luasql-sqlite3, lua-testmore, lunit, lvm2, lxc, lz4, lzlib,
  5147. lzma, m4, madplay, make, makedevs, Makefile.in,
  5148. matchbox-common, matchbox-desktop, matchbox-fakekey,
  5149. matchbox-keyboard, matchbox-lib, matchbox-panel,
  5150. matchbox-startup-monitor, matchbox-wm, mcrypt, mdadm,
  5151. media-ctl, mediastreamer, memcached, memstat, memtester,
  5152. mesa3d, metacity, midori, mii-diag, minidlna, mmc-utils,
  5153. modem-manager, mongoose, mongrel2, monit, mpc, mpd, mpdecimal,
  5154. mpfr, mpg123, mplayer, mrouted, msmtp, mtd, mtools, mtr,
  5155. musepack, musl, mutt, mxml, mysql, nano, nanocom, nbd, ncftp,
  5156. ncurses, ndisc6, ne10, neard, neon, netatalk, netperf,
  5157. netsnmp, nettle, net-tools, network-manager, newt, nfs-utils,
  5158. ngrep, nmap, nodejs, nss-mdns, ntfs-3g, ntp, numactl, nut,
  5159. nuttcp, ofono, ola, omap-u-boot-utils, omniorb,
  5160. on2-8170-modules, opencore-amr, opencv, openntpd, openobex,
  5161. openocd, openpowerlink, openssh, openssl, openswan,
  5162. opentyrian, opentyrian-data, openvpn, opkg, oprofile, opus,
  5163. opus-tools, orbit, orc, ortp, p11-kit, pango, parted,
  5164. pciutils, pcmanfm, pcre, pcsc-lite, perf, perl, perl-gd,
  5165. perl-gdgraph, perl-io-socket-ssl, perl-json-tiny,
  5166. perl-module-build, perl-mojolicious, perl-net-ssleay,
  5167. perl-path-tiny, perl-xml-libxml, perl-xml-parser, php,
  5168. php-geoip, php-gnupg, php-imagick, php-memcached, php-ssh2,
  5169. php-yaml, php-zmq, picocom, pifmrds, pinentry, pixman,
  5170. pkg-autotools.mk, pkg-cmake.mk, pkg-download.mk,
  5171. pkg-generic.mk, pkg-kconfig.mk, pkg-luarocks.mk, pkg-perl.mk,
  5172. pkg-python.mk, pkg-utils.mk, poco, polarssl, polkit, poppler,
  5173. popt, portaudio, portmap, postgresql, powerpc-utils, pppd,
  5174. pptp-linux, prboom, procps-ng, proftpd, protobuf, protobuf-c,
  5175. psmisc, ptpd2, pulseaudio, pv, pwgen, python, python3,
  5176. python-dialog, python-ipy, python-keyring, python-mad,
  5177. python-netifaces, python-numpy, python-protobuf, python-pyasn,
  5178. python-pyparsing, python-pyro, python-pyusb, python-serial,
  5179. python-setuptools, qdecoder, qemu, qextserialport, qjson, qt,
  5180. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  5181. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  5182. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  5183. qt5serialport, qt5svg, qt5webkit, qt5webkit-examples,
  5184. qt5websockets, qt5x11extras, qt5xmlpatterns, qtuio, quagga,
  5185. quota, qwt, radvd, rapidjson, rdesktop, redis, rings, rpcbind,
  5186. rpi-firmware, rpi-userland, rpm, rp-pppoe, rrdtool,
  5187. rsh-redone, rsync, rsyslog, rtai, rtmpdump, rt-tests, rubix,
  5188. ruby, samba, sam-ba, samba4, sane-backends, schifra,
  5189. sconeserver, scons, screen, sdl, sdl_gfx, sdl_image,
  5190. sdl_mixer, sdl_net, sdl_sound, sdl_ttf, sed, ser2net,
  5191. setserial, sg3_utils, shared-mime-info, simicsfs, sispmctl,
  5192. slang, slirp, smcroute, smstools3, snmppp,
  5193. snowball-hdmiservice, socat, socketcand, sox, spawn-fcgi,
  5194. speex, spice, spice-protocol, sqlcipher, sqlite, squashfs,
  5195. squid, sredird, startup-notification, strace, stress,
  5196. strongswan, stunnel, subversion, sudo, sunxi-boards,
  5197. sunxi-cedarx, swig, sylpheed, synergy, sysklogd, sysstat,
  5198. systemd, sysvinit, taglib, tar, tcl, tcllib, tcpdump,
  5199. tcpreplay, texinfo, tftpd, thrift, thttpd, tiff, ti-utils,
  5200. tn5250, torsmo, trace-cmd, transmission, tslib, tstools,
  5201. tvheadend, twolame, tz, uboot-tools, uclibc, udisks, ulogd,
  5202. upmpdcli, upx, urg, usb_modeswitch, usbmount, usbredir,
  5203. usbutils, util-linux, valgrind, vde2, vim, vlc, vo-aacenc,
  5204. vorbis-tools, vpnc, vsftpd, vtun, wayland, webkit, webp,
  5205. webrtc-audio-processing, weston, wget, whois, wireless-regdb,
  5206. wireshark, wpa_supplicant, wvstreams, x11r7, x11vnc,
  5207. xapp_xcalc, xapp_xdm, xapp_xdpyinfo, xapp_xf86dga, xapp_xfs,
  5208. xapp_xinit, xapp_xkbevd, xapp_xmh, xapp_xrandr, xapp_xsm,
  5209. xbmc, xbmc-pvr-addons, xcb-proto, xcursor-transparent-theme,
  5210. xdriver_xf86-input-mouse, xdriver_xf86-video-{ast,intel},
  5211. xdriver_xf86-video-vmware, xenomai, xerces,
  5212. xfont_font-adobe-{100,75}dpi,
  5213. xfont_font-adobe-utopia-{100dpi,75dpi,type1},
  5214. xfont_font-alias, xfont_font-arabic-misc,
  5215. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  5216. xfont_font-bh-lucidatypewriter-100dpi,
  5217. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  5218. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  5219. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  5220. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  5221. xfont_font-daewoo-misc, xfont_font-dec-misc,
  5222. xfont_font-ibm-type1, xfont_font-isas-misc,
  5223. xfont_font-jis-misc, xfont_font-micro-misc,
  5224. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  5225. xfont_font-misc-meltho, xfont_font-misc-misc,
  5226. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  5227. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  5228. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  5229. xfont_font-xfree86-type1, xfsprogs, xinetd, xkeyboard-config,
  5230. xlib_libdmx, xlib_libFS, xlib_libpciaccess, xlib_libSM,
  5231. xlib_libX11, xlib_libXaw, xlib_libXext, xlib_libXfont,
  5232. xlib_libXi, xlib_libXinerama, xlib_libXrandr, xlib_libXrender,
  5233. xlib_libXres, xlib_libXScrnSaver, xlib_libXt, xlib_libXv,
  5234. xlib_libXvMC, xlib_libXxf86dga, xlib_libXxf86vm, xmlstarlet,
  5235. xproto_xcmiscproto, xproto_xextproto, xscreensaver,
  5236. xserver_xorg-server, xterm, xz, zeromq, zlib, zlog, zmqpp,
  5237. znc, zsh, zxing
  5238. New packages: adwaita-icon-theme, am335x-pru-package,
  5239. bcache-tools, biosdevname, botan, canfestival, clamav,
  5240. cppunit, dos2unix, dovecot, dovecot-pigeonhole, getent, glm,
  5241. gst1-validate, hicolor-icon-theme, ipmitool, leafnode2,
  5242. libdvbcsa, libgtk3, libphidget, libshout, libunistring,
  5243. libupnpp, mesa3d-demos, modplugtools, mono, monolite, mp4v2,
  5244. netcat-openbsd, nginx, odhcploc, openvmtools,
  5245. phidgetwebservice, pps-tools, pure-ftpd,
  5246. python-configshell-fb, python-rtslib-fb, python-urwid, qlibc,
  5247. qt5location, shairport-sync, spidev_test, targetcli-fb,
  5248. tinyalsa, trinity, x264, yaml-cpp, ympd
  5249. Removed packages: libelf
  5250. Issues resolved (http://bugs.uclibc.org):
  5251. #261: New package: wxWidgets
  5252. #325: New package: ratpoison
  5253. #405: New package: OpenVZ tools
  5254. #1309: New package: rdiff-backup
  5255. #3427: New package: nginx
  5256. #3655: New package: libav
  5257. #3991: New Package: open-vm-tools (Vmware Tools)
  5258. #6878: dmraid: disabled on ARC
  5259. #6950: Full unicode support in ncurses
  5260. #7010: jamvm builds and runs fine under mips (be)
  5261. #7088: elfutils on Blackfin doesn't build
  5262. #7142: ecryptfs needs getent to run
  5263. #7280: CMake toolchain file uses the FORCE attribute on CMAKE_CXX_FLAGS
  5264. #7346: [2014.08rc3] vim-8ae50e3ef8bf.tar.gz can not be downloaded, ...
  5265. #7352: [2014.08-rc3] diffutils-3.3 failed on building
  5266. #7358: rpi-userland: linking with bcm_host doesn't give vc_dispmanx_*
  5267. #7364: monit builds a static application, even though BR2_PREFER_...
  5268. #7370: ngrep - requires --with-pcap-includes fully defined to find...
  5269. #7442: rootfs remount does not work as expected with sysvinit
  5270. #7448: Having export MACHINE="something" breaks glibc build on IMX6...
  5271. #7568: musl buildroot-toolchain does not put libgcc_s.so.1 into place
  5272. #7574: quota-4.01 fails to build statically
  5273. 2014.08, Released September 1st, 2014
  5274. Minor manual fixes/additions.
  5275. Updated/fixed packages: btrfs-progs, cmake, cppcms, exim,
  5276. lftp, libdaemon, libev, libgpgme, libiqrf, libnl, libplist,
  5277. libroxml, libwebsockets, mesa3d, mpd, mtdev2tuio, musepack,
  5278. perl-gd, php-geoip, php-gnupg, php-imagick, php-memcached,
  5279. php-ssh2, php-yaml, php-zmq, polarssl, ruby, systemd, taglib,
  5280. uboot-tools, upmpdcli, webkit, xapp_xfs, xapp_luit,
  5281. xscreensaver, yajl
  5282. Issues resolved (http://bugs.uclibc.org):
  5283. #7346: vim-8ae50e3ef8bf.tar.gz can not be downloaded, 404 not found
  5284. 2014.08-rc3, Released August 26th, 2014
  5285. Minor fixes.
  5286. User manual update / restructuring.
  5287. Updated/fixed packages: cairo, ecryptfs-utils, gettext,
  5288. gstreamer, gstreamer1, gutenprint, icu, imagemagick, jack2,
  5289. lbreakout2, libevas-generic-loaders, libftdi, libinput,
  5290. libtorrent, ltris, msgpack, ntp, php, procps-ng, pulseaudio,
  5291. thrift, tvheadend, usb_modeswitch, xmlstarlet,
  5292. Issues resolved (http://bugs.uclibc.org):
  5293. #7136: ecryptfs-utils needs gettext to run when glibc/eglibc...
  5294. #7322: libgomp dependency issue with imagemagick
  5295. #7328: Git dl of versions in x/y broken
  5296. 2014.08-rc2, Released August 18th, 2014
  5297. Fixes all over the tree.
  5298. User manual restructured / reworked.
  5299. Toolchain: Fix for C++ exceptions / pthread_exit() on
  5300. uClibc/glibc, C++-11 features with uClibc.
  5301. Updated/fixed packages: bandwidthd, bluez5_utils, empty,
  5302. espeak, fbv, ffmpeg, gd, gnupg2, gst1-plugin-good, iftop,
  5303. infozip, libcuefile, libeml, libnftl, localedef, ltrace,
  5304. matchbox, mpd, network-manager, nftables, ngrep, nut, openssl,
  5305. oprofile, perl, perl-net-ssleay, postgresql, pppd, procps-ng,
  5306. qt, subversion, synergy, systemd, tar, tftpd, webkit,
  5307. xapp_rstart, xbmc, xbmc-pvr-addons
  5308. Issues resolved (http://bugs.uclibc.org):
  5309. #7124: Use BR toolchain externally results a non-bootable...
  5310. #7208: Glibc C++ aplications crash if they use exceptions
  5311. #7250: Cannot build with -std=c++11
  5312. #7262: Generating locale en_US.UTF-8 fails on 64bit fedora..
  5313. #7286: systemd 215 doesn't build
  5314. 2014.08-rc1, Released August 8th, 2014
  5315. Fixes all over the tree and new features.
  5316. Architecture: Powerpc64 BE/LE added, AVR32 deprecated.
  5317. Improved altivec / SPE /atomic instructions
  5318. handling. Additional PowerPC CPU variants added.
  5319. Defconfigs: Atmel SAMA5D3, Congatec QMX6, Lego ev3, TS-5x00,
  5320. qemu-system-xtensa, qemu-aarch64-virt added. A number of
  5321. tweaks to existing ones. lpc32xx defconfigs removed.
  5322. Toolchain: Microblaze support for internal musl toolchain.
  5323. Default to GCC 4.8 for internal toolchain, remove deprecated
  5324. 4.3 and 4.6 versions.
  5325. External CodeSourcery / Linaro toolchain updates, option to
  5326. copy gconv libraries for external toolchains.
  5327. Infrastructure: graph-depends: misc fixes, transitive
  5328. dependencies are not drawn by default. Download handling is
  5329. now done using helper scripts. Integrity of downloads can now
  5330. be verified using sha* hashes. Subversion download now uses
  5331. peg revisions for robustness.
  5332. Legal-info: License info of local or overridden packages are
  5333. saved as well. Toolchain packages are also taken into account.
  5334. autotools: Static linking with libtool / v1.5 improvements.
  5335. Gettextize support, similar to autoreconf.
  5336. kconfig package infrastructure added.
  5337. Misc: Version selection for busybox dropped.
  5338. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  5339. alsamixergui, argus, armadillo, at, atftp, atk, avahi,
  5340. avrdude, axel, b43-firmware, b43-fwcutter, bandwidthd, bc,
  5341. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  5342. bmon, boa, bonnie, bootutils, bsdiff, btrfs-progs, bustle,
  5343. busybox, bwm-ng, bzip2, ca-certificates, cairo, can-utils,
  5344. ccache, ccrypt, chrony, cifs-utils, classpath, cloog, cmake,
  5345. collectd, connman, coreutils, cosmo, cppcms, cramfs, crda,
  5346. cryptodev-linux, cryptodev, ctorrent, cvs, dbus-cpp,
  5347. dbus-glib, dbus-python, dbus, dcron, dejavu, devmem2,
  5348. dfu-util, dhcp, dhcpcd, dhcpdump, dhrystone, dialog, dillo,
  5349. distcc, dmidecode, dmraid, dnsmasq, doom-wad, dropbear,
  5350. dropwatch, dsp-tools, dtv-scan-tables, dvb-apps, e2fsprogs,
  5351. e2tools, eeprog, eigen, elf2flt, elftosb, enlightenment,
  5352. enscript, espeak, ethtool, eudev, evemu, exim, expedite,
  5353. explorercanvas, ezxml, faifa, fan-ctrl, fconfig, feh,
  5354. fetchmail, ffmpeg, fftw, file, fio, fis, flann, flashrom,
  5355. flex, flot, fltk, fontconfig, freerdp, freescale-imx,
  5356. freetype, ftop, gcc, gd, gdb, genimage, genromfs, gettext,
  5357. giblib, glib-networking, glibc, gmp, gnupg, gnutls, gpm, gpsd,
  5358. gptfdisk, gpu-viv-bin-imx6q, gqview, grantlee, gst-ffmpeg,
  5359. gst-fsl-plugins, gst1-libav, gst1-plugins-bad,
  5360. gst1-plugins-ugly, gtk2-engines, gtk2-theme-hicolor, gtkperf,
  5361. gvfs, haserl, hdparm, hostapd, httping, i2c-tools, icu,
  5362. imagemagick, imx-lib, inadyn, inotify-tools, input-tools,
  5363. ipkg, iproute2, iputils, irda-utils, iw, jack2, jpeg, jquery,
  5364. jquery-keyboard, jquery-mobile, jquery-validation, jsmin, kbd,
  5365. kexec, kmod, knock, latencytop, lcdapi, leafpad, lesstif,
  5366. lftp, libaio, libarchive, libargtable2, libart, libatasmart,
  5367. libatomic_ops, libbsd, libcap-ng, libcec, libcgicc, libcgroup,
  5368. libconfuse, libcurl, libdrm, libdvdnav, libdvdread,
  5369. libeXosip2, libedit, liberation, libesmtp, libev, libevas,
  5370. libevdev, libevent, libfcgi, libffi, libfreefare, libfslcodec,
  5371. libfslparser, libfslvpuwrap, libgail, libgcrypt, libglade,
  5372. libglib2, libgpgme, libgtk2, libhid, libical, libiconv,
  5373. libiqrf, libjpeg, liblog4c-localtime, libmbus, libmicrohttpd,
  5374. libmms, libndp, libnftnl, libnl, libnspr, libnss, liboauth,
  5375. libpcap, libpng, libpthsem, libqmi, libraw, libraw1394,
  5376. librsvg, libsoc, libsoup, libsvgtiny, libsysfs, libtasn1,
  5377. libtirpc, libtorrent, libusb, libv4l, libwebsockets, libxcb,
  5378. libxml2, libyaml, links, linux-firmware, linux-fusion,
  5379. linux-headers, linux-pam, lite, live555, lm-sensors,
  5380. lockfile-progs, lpc3250loader, lshw, lsof, lsuio, ltrace,
  5381. ltris, lua-messagepack, luainterpreter, luajit, luaposix,
  5382. luarocks, lvm2, lxc, lz4, lzo, make, makedevs, mdadm,
  5383. mediastreamer, mesa3d, metacity, minidlna, mkpasswd,
  5384. modem-manager, mongoose, mpd, mpg123, msgpack, mtd, mtools,
  5385. mtr, musepack, musl, mysql, nano, nasm, nbd, ncurses, ndisc6,
  5386. netatalk, netplug, network-manager, nftables, ngircd, nodejs,
  5387. nss-mdns, ntp, nut, olsr, open2300, opencv, openntpd, openocd,
  5388. openpgm, openpowerlink, openssh, openssl, openswan, openvpn,
  5389. opkg, oprofile, opus-tools, orc, p910nd, pango, parted,
  5390. pax-utils, pcmanfm, perf, perl, perl-module-build, php,
  5391. pixman, pkgconf, poco, polarssl, popt, portmap, postgresql,
  5392. prboom, protobuf-c, proxychains-ng, psmisc, psplash, ptpd2,
  5393. python,
  5394. python-{bottle,dpkt,id3,mad,msgpack,nfc,pygame,pyzmq,simplejson},
  5395. python3, qhull, qt, qt5base, qt5connectivity, qt5declarative,
  5396. qt5graphicaleffects, qt5multimedia, qt5quickcontrols,
  5397. qt5sensors, qt5svg, qt5webkit, quagga, quota, radvd, rdesktop,
  5398. read-edid, rpcbind, rpi-firmware, rpi-userland, rpm,
  5399. rsh-redone, rsync, rt-tests, rtmpdump, rtorrent, rubix, ruby,
  5400. samba, samba4, sane-backends, sawman, sconeserver, setserial,
  5401. sg3_utils, shared-mime-info, smartmontools, smcroute, snappy,
  5402. socketcand, spawn-fcgi, sqlite, squashfs, squid, sredird,
  5403. startup-notification, statserial, strongswan, stunnel,
  5404. sunxi-mali, supervisor, synergy, sysklogd, sysprof, sysstat,
  5405. systemd, tcpdump, tcpreplay, texinfo, thrift, thttpd, ti-gfx,
  5406. ti-utils, tinyhttpd, torsmo, trace-cmd, transmission, tslib,
  5407. tstools, tvheadend, tzdata, uboot-tools, uclibc, udev,
  5408. udpcast, usb_modeswitch, usbmount, util-linux, valgrind, vim,
  5409. vlc, w_scan, wayland, webrtc-audio-processing, weston, wget,
  5410. wireless-regdb, wireless_tools, wireshark, wpa_supplicant,
  5411. xapp_{twm,xconsole,xcursorgen,xedit,xfs,xinit,xrandr},
  5412. xdriver_xf86-video-intel, xlib_lib{FS,ICE,Xext,Xfont,Xft,Xi},
  5413. xproto_fontsproto, xproto_inputproto, xserver_xorg-server,
  5414. x11vnc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons, xterm, xvkbd,
  5415. xz
  5416. New packages: flickcurl, fmc, fmlib, geoip, gnupg2,
  5417. google-breakpad, imx-vpu, isl, kexec-lite, libglew, libglu,
  5418. libinput, libksba, libmemcached, libmpdclient, librtlsdr,
  5419. libuv, libva, libva-intel-driver, linux-zigbee, memcached,
  5420. mpdecimal, ncmpc, opencore-amr, patchelf, perl-datetime-tiny,
  5421. perl-gd, perl-gdgraph, perl-gdtextutil, perl-io-socket-ssl,
  5422. perl-json-tiny, perl-mojolicious, perl-net-ssleay,
  5423. perl-path-tiny, perl-try-tiny, perl-xml-libxml,
  5424. perl-xml-namespacesupport, perl-xml-sax, perl-xml-sax-base,
  5425. php-geoip, php-memcached, pifmrds, pinentry, powerpc-utils,
  5426. procps-ng, pwgen, python-cffi, python-daemon, python-flup,
  5427. python-ipython, python-numpy, qt5enginio, qt5webkit-examples,
  5428. qt5websockets, simicsfs, sispmctl, sox, sshpass, tclap,
  5429. twolame, upmpdcli, whois, xlib_libxshmfence, xproto_dri3proto
  5430. Removed packages: procps
  5431. Issues resolved (http://bugs.uclibc.org):
  5432. #5750: Doing a Buildroot build from /usr doesn't work
  5433. #5900: config flags to the Xenomai build system
  5434. #6230: Cannot compile gcc without threads (uClibc-based)
  5435. #6626: procps Unknown HZ value! (XX) Assume 100
  5436. #7118: Package "thrift" requires atomic operations
  5437. #7154: Local uClibc config file gets overwritten using ...
  5438. #7160: host-xz not built
  5439. #7166: hostapd: segfault when using RT5370
  5440. #7172: Name collision of rpath token expansion and internal..
  5441. #7178: NTPd package cannot sync time without a proper ntp.conf
  5442. #7184: supervisord depends on libxml2 implicitly
  5443. #7196: Unable to build on UBUNTU13.10
  5444. #7268: python 2.7 compilation issue on a Debian/Ubuntu ...
  5445. 2014.05, Released May 31st, 2014
  5446. Minor fixes.
  5447. Minor manual fixes. U-Boot now defaults to spl/u-boot-spl.bin
  5448. for the spl file.
  5449. Updated/fixed packages: exim, glibc, gnutls, libfribidi,
  5450. qt5base, qt5webkit, sysklogd, thrift, u-boot
  5451. 2014.05-rc3, Released May 28th, 2014
  5452. Minor fixes.
  5453. Updated/fixed packages: acl, attr, connman, dosfstools,
  5454. dropbear, dvb-apps, exim, flite, gdb, httping, hwdata,
  5455. lesstif, libnss, libv4l, lttng-babeltrace, midori, monit,
  5456. mplayer, php, python2, rdesktop, rpi-userland, ruby, samba,
  5457. samba4, slang, xbmc
  5458. Issues resolved (http://bugs.uclibc.org):
  5459. #7100: license info for package 'acl' missing
  5460. #7106: license info for package 'attr' missing
  5461. #7112: license info for package 'hwdata'
  5462. 2014.05-rc2, Released May 21st, 2014
  5463. Fixes all over the tree.
  5464. Stripping using sstrip has been deprecated.
  5465. BR2_EXTERNAL can now also be used to implement custom
  5466. filesystem types.
  5467. The newly added BR2_GRAPH_DEPTH variable to limit the depth of
  5468. the generated dependency graph has been renamed to
  5469. BR2_GRAPH_DEPS_OPTS, so additional options can be supported in
  5470. the future.
  5471. The virtual package infrastructure will now error out early
  5472. if multiple packages providing the same virtual package has
  5473. been enabled (E.G. opengl). This change requires that the
  5474. packages explicitly declare what virtual package(s) they
  5475. provide.
  5476. Updated/fixed packages: acpid, armadillo, avahi, bellagio,
  5477. btrfs-progs, cairo, clapack, directfb, duma, ecryptfs-utils,
  5478. elfutils, eudev, fbgrab, fio, flann, fluxbox, gdb, gpm,
  5479. gpu-viv-bin-mx6q, gst1-plugins-good, gst-plugins-good,
  5480. imagemagick, iprutils, ipsec-tools, jack2, libdvdnav,
  5481. libdvdread, libnss, libunwind, linux-headers, lsof, lua,
  5482. luajit, matchbox-keyboard, mesa3d, mpd, mplayer, mtr, mysql,
  5483. netsnmp, nodejs, openpowerlink, openvpn, pciutils,
  5484. php-imagick, postgresql, pulseaudio, qt5quick1, rpi-userland,
  5485. rsyslog, samba, samba4, sane-backends, sunxi-mali, systemd,
  5486. ti-gfx, tstools, udev, webkit, wpa_supplicant, xbmc,
  5487. xlib_libXpm, xserver_xorg-server, zyre
  5488. Issues resolved (http://bugs.uclibc.org):
  5489. #5396: Boot hangs when starting samba if BR2_ENABLE_LOCALE...
  5490. #7016: Git issues in resulting buildroot tar
  5491. #7094: pciutils doesn't build on Blackfin
  5492. 2014.05-rc1, Released May 13th, 2014
  5493. Fixes all over the tree and new features.
  5494. Architectures: Support for MIPS o32 ABI on MIPS-64 targets has
  5495. been removed. Building o32 ELF files for MIPS64 is an exotic
  5496. configuration that nobody should be using. If o32 is required,
  5497. then is better if it's built for MIPS 32-bit cores so only
  5498. 32-bit instructions will be used leading to a more efficient
  5499. o32 usage.
  5500. Support for the ARM A12 variant and Intel corei7.
  5501. Configs: Minnowboard and Altera SoCkit added, QEMU updates.
  5502. Bootloaders: Grub2 and gummiboot support, syslinux support
  5503. extended.
  5504. Toolchains: GCC 4.9. Glibc 2.19. Support for the musl C
  5505. library for internal and external toolchains. 4.8-R3 support
  5506. for ARC, Internal toolchain support for Aarch64 and
  5507. Microblaze. Environment variable to control debug output of
  5508. toolchain wrapper renamed to BR2_DEBUG_WRAPPER to match the
  5509. other variables. Toolchain tuple vendor name can now be
  5510. customized. Updated external Linaro ARM/Aarch64
  5511. toolchains. Added external Linaro ARMEB toolchain.
  5512. A GDB gdbinit file is now generated for external toolchains to
  5513. automatically set the correct sysroot.
  5514. Kconfig handling for minimum kernel headers version required
  5515. for packages. Now packages needing specific kernel header
  5516. features can specify these requirements in Kconfig.
  5517. Infrastructure: Support for (but disabled as it leads to
  5518. unreproducible builds) toplevel parallel builds. See the
  5519. comment at the top of Makefile for details about how to enable
  5520. it and what the problems are if you want to test it.
  5521. Python package infrastructure extended to support Python 3.x
  5522. Perl and virtual package infrastructure support added.
  5523. PRE_*_HOOKS support for all build steps.
  5524. Updated/fixed packages: acpid, agentpp, aiccu, apr, avahi,
  5525. barebox, bash, beecrypt, bellagio, binutils, boost,
  5526. boot-wrapper-aarch64, bustle, busybox, ca-certificates, cairo,
  5527. ccache, ccid, cgilua, chrony, cifs-utils, civetweb, cmake,
  5528. collectd, connman, coreutils, coxpcall, cppcms, cppzmq, crda,
  5529. cryptodev, cryptsetup, cups, czmq, dbus, dhcpdump, directfb,
  5530. dmalloc, dmraid, dnsmasq, dosfstools, dsp-tools, dtc,
  5531. dvb-apps, ebtables, ecryptfs-utils, eigen, erlang, ethtool,
  5532. evemu, evtest, f2fs-tools, fdk-aac, feh, ffmpeg, file, filemq,
  5533. flac, flot, fmtools, fping, freetype, fswebcam, gcc, gd, gdb,
  5534. gettext, giblib, git, glibc, glibmm, glib-networking, gmp,
  5535. gnutls, gpm, gpsd, gpu-viv-bin-mx6q, grep, gst1-libav,
  5536. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  5537. gst1-plugins-ugly, gst-ffmpeg, gst-fsl-plugins, gst-omx,
  5538. gst-plugins-good, gstreamer1, gvfs, harfbuzz, haveged,
  5539. hostapd, htop, httping, ifplugd, iftop, igmpproxy,
  5540. imagemagick, imlib2, imx-lib, infozip, intltool, iproute2,
  5541. ipsec-tools, ipset, jansson, jpeg, jpeg-turbo, jquery,
  5542. jquery-keyboard, jquery-ui, jquery-ui-themes, json-glib,
  5543. json-javascript, kexec, kmod, lame, lbase64, lbreakout2,
  5544. lcdproc, lftp, libao, libatasmart, libatomic_ops, libcap,
  5545. libcdio, libcec, libcgicc, libcgroup, libcurl, libdrm,
  5546. libdvdnav, libdvdread, libegl, libeio, libenca, libesmtp,
  5547. libevas, libevdev, libfribidi, libfslcodec, libfslparser,
  5548. libfslvpuwrap, libgail, libgles, libglib2, libgtk2, libhid,
  5549. libjpeg, libmbim, libmicrohttpd, libmodplug, libnftnl,
  5550. libnspr, libogg, libopenmax, libopenvg, libpcap, libplayer,
  5551. libpng, libpthread-stubs, librsvg, libsigsegv, libsocketcan,
  5552. libsoup, libtasn1, libtool, libtpl, libunwind, liburcu,
  5553. libusb, libwebsockets, libxcb, libxml2, libxmlpp, libyaml,
  5554. lighttpd, linphone, linux-firmware, linux-headers, ljsyscall,
  5555. lmbench, lsof, ltp-testsuite, ltris, lttng-babeltrace,
  5556. lttng-libust, lttng-modules, lttng-tools, lua, lua-cjson,
  5557. luacrypto, lua-ev, luaexpat, luaexpatutils, luafilesystem,
  5558. luainterpreter, luajit, lua-msgpack-native, luaposix,
  5559. luarocks, luasec, luasocket, luasql-sqlite3, lvm2, macchanger,
  5560. memstat, mesa3d, metacity, minidlna, mmc-utils,
  5561. mobile-broadband-provider-info, modem-manager, mongrel2,
  5562. monit, mpd, mplayer, msmtp, mtd, mtools, mutt, mysql, nasm,
  5563. ncurses, ne10, netatalk, netsnmp, nettle, network-manager,
  5564. newt, nfs-utils, nmap, nodejs, ntfs-3g, ntp, nut, ofono, ola,
  5565. olsr, omniorb, opencv, opengl, openpgm, openssh, openssl,
  5566. openswan, openvpn, orbit, orc, p11-kit, pango, parted,
  5567. pciutils, pcre, pcsc-lite, perf, perl, perl-xml-parser, php,
  5568. picocom, pixman, pkgconf, poppler, popt, portmap, powervr,
  5569. pppd, pptp-linux, proftpd, protobuf, protobuf-c, ptpd2,
  5570. pulseaudio, python, python3, python-bottle, python-m2crypto,
  5571. python-netifaces, python-pyasn, python-pycrypto,
  5572. python-pygame, python-pysnmp, python-pysnmp-apps,
  5573. python-pysnmp-mibs, python-serial, python-setuptools,
  5574. qextserialport, qt, qt5, qt5base, qt5connectivity,
  5575. qt5declarative, qt5graphicaleffects, qt5imageformats,
  5576. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  5577. qt5sensors, qt5serialport, qt5svg, qt5webkit, qt5x11extras,
  5578. qt5xmlpatterns, qtuio, qwt, radvd, readline, rings,
  5579. rpi-firmware, rpi-userland, rsh-redone, rsync, rsyslog, rtai,
  5580. rtmpdump, rt-tests, ruby, samba, sconeserver, scons, sdl,
  5581. sdl_image, sdl_mixer, sg3_utils, slang, smstools3, snmppp,
  5582. socat, speex, sqlcipher, sqlite, squashfs, squid, strongswan,
  5583. stunnel, sunxi-boards, sunxi-mali, sunxi-tools, sylpheed,
  5584. syslinux, sysstat, systemd, taglib, tcl, tcllib, tcpreplay,
  5585. tidsp-binaries, ti-gfx, tmux, tvheadend, tzdata, uboot,
  5586. uboot-tools, uclibc, udev, udisks, ulogd, usb_modeswitch,
  5587. usb_modeswitch_data, usbmount, util-linux, valgrind, vlc,
  5588. webkit, weston, wget, wireshark, wpa_supplicant, wsapi,
  5589. w_scan, xapp_appres, xapp_bdftopcf, xapp_beforelight,
  5590. xapp_bitmap, xapp_editres, xapp_fslsfonts, xapp_fstobdf,
  5591. xapp_iceauth, xapp_ico, xapp_mkfontscale, xapp_rgb,
  5592. xapp_rstart, xapp_sessreg, xapp_showfont, xapp_twm,
  5593. xapp_viewres, xapp_xauth, xapp_xbacklight, xapp_xcalc,
  5594. xapp_xclock, xapp_xditview, xapp_xdpyinfo, xapp_xdriinfo,
  5595. xapp_xev, xapp_xfd, xapp_xfontsel, xapp_xfs, xapp_xfsinfo,
  5596. xapp_xgc, xapp_xhost, xapp_xinit, xapp_xkbutils, xapp_xkill,
  5597. xapp_xload, xapp_xlsclients, xapp_xlsfonts, xapp_xmag,
  5598. xapp_xman, xapp_xmessage, xapp_xmodmap, xapp_xprop,
  5599. xapp_xrandr, xapp_xrdb, xapp_xrefresh, xapp_xset,
  5600. xapp_xsetroot, xapp_xsm, xapp_xstdcmap, xapp_xvidtune,
  5601. xapp_xvinfo, xapp_xwd, xapp_xwininfo, xcb-util-wm,
  5602. xdriver_xf86-input-evdev, xdriver_xf86-input-joystick,
  5603. xdriver_xf86-input-keyboard, xdriver_xf86-input-mouse,
  5604. xdriver_xf86-input-synaptics, xdriver_xf86-input-vmmouse,
  5605. xdriver_xf86-video-ark, xdriver_xf86-video-ast,
  5606. xdriver_xf86-video-ati, xdriver_xf86-video-cirrus,
  5607. xdriver_xf86-video-dummy, xdriver_xf86-video-fbdev,
  5608. xdriver_xf86-video-geode, xdriver_xf86-video-glide,
  5609. xdriver_xf86-video-glint, xdriver_xf86-video-i128,
  5610. xdriver_xf86-video-intel, xdriver_xf86-video-mach64,
  5611. xdriver_xf86-video-mga, xdriver_xf86-video-neomagic,
  5612. xdriver_xf86-video-newport, xdriver_xf86-video-nv,
  5613. xdriver_xf86-video-openchrome, xdriver_xf86-video-r128,
  5614. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  5615. xdriver_xf86-video-sis, xdriver_xf86-video-tdfx,
  5616. xdriver_xf86-video-tga, xdriver_xf86-video-trident,
  5617. xdriver_xf86-video-vesa, xdriver_xf86-video-vmware,
  5618. xdriver_xf86-video-voodoo, xenomai, xerces, xl2tp, xlib_libFS,
  5619. xlib_xtrans, xproto_xproto, xserver_xorg-server,
  5620. xutil_util-macros, zeromq, zic, zmqpp, zyre
  5621. New packages: armadillo, btrfs-progs, clapack, cosmo, dado,
  5622. dbus-triggerd, dtv-scan-tables, e2tools, eudev, exim, expect,
  5623. fetchmail, flann, flite, gnu-efi, grub2, gummiboot, heimdal,
  5624. iprutils, iptraf-ng, jack2, jquery-mobile, libee, libestr,
  5625. libgc, libgl, liblogging, libndp, libsoxr, libstrophe,
  5626. libubox, libuci, libxmlrpc, ljlinenoise, lpeg, lpty, lrandom,
  5627. lsqlite3, lua-coat, lua-coatpersistent, lua-csnappy, luajson,
  5628. lualogging, lua-messagepack, lua-testmore, lunit, lzip, lzlib,
  5629. musl, nftables, opentyrian, opentyrian-data,
  5630. perl-module-build, php-gnupg, php-imagick, php-ssh2, php-yaml,
  5631. php-zmq, postgresql, python-libconfig, python-pypcap,
  5632. python-pyrex, qdecoder, qhull, samba4, smack, tz, tzdump, ucl,
  5633. upx, vo-aacenc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons,
  5634. yaffs2utils, zlog, znc
  5635. Removed packages: crosstool-ng, python-distutilscross, vala
  5636. Issues resolved (http://bugs.uclibc.org):
  5637. #6842: Checking external toolchain for eabihf
  5638. #6956: Packaging libsoxr
  5639. #6986: Make legal-info fails on uboot versions before 2014.01
  5640. #6992: Incorrect installation rights on external kernel module..
  5641. 2014.02, Released February 27th, 2014
  5642. Minor fixes.
  5643. Updated/fixed packages: cegui06, cppdb, e2fsprogs, gcc, gdb,
  5644. gst1-plugins-bad, gstreamer, gstreamer1, haserl, imagemagick,
  5645. libpng, libxml2, lua, luajit, luarock, ncftp, openswan,
  5646. pcsc-lite, qt5connectivity, ramsmp, strongswan, vlc
  5647. Issues resolved (http://bugs.uclibc.org):
  5648. #6938: mkuser script generates wrong password for new user in..
  5649. 2014.02-rc3, Released February 25th, 2014
  5650. Minor fixes.
  5651. Updated/fixed packages: aiccu, ala-lib, alsa-utils, binutils,
  5652. cairo, coreutils, dhcpcd, distcc, efl, evas, iputils, gdb,
  5653. gpsd, gst-fsl-plugins, icu, libcec, libcgi, libplayer,
  5654. libsecret, libsepol, libsigsegv, libtool, libv4l,
  5655. linux-headers, matchbox-lib, mpg123, ncftp, opencv, pcmanfm,
  5656. pixman, pv, qt, rt-tests, sawman, sconeserver, sdl, thrift,
  5657. tvheadend, util-linux, webkit, xscreensaver
  5658. Issues resolved (http://bugs.uclibc.org):
  5659. #4706: Removing .stamp_target_installed does not trigger...
  5660. #5030: busybox built fails if we use an override src dir...
  5661. #5420: Dbus and /var/run management
  5662. #5768: Not able to build ALSA-Lib for static build
  5663. #5774: Not able to build ALSA-Utils for static build
  5664. #6542: external python modules fail to compile to pyc if...
  5665. #6764: Support for kernel signed modules
  5666. #6794: Busybox compiled from buildroot hangs on pass from...
  5667. 2014.02-rc2, Released February 20th, 2014
  5668. Fixes all over the tree. Static linking / nommu fixes and
  5669. annotations for several packages.
  5670. Updated/fixed packages: boost, busybox, collectd, coreutils,
  5671. dropbear, elfutils, feh, gcc, gst1-libav, imagemagick, iozone,
  5672. jimtcl, kexec, libvncserver, lvm2, lxc, mplayer, netsnmp, nut,
  5673. opencv, python, python3, qtuio, systemd, thrift, transmission,
  5674. uclibc, vlc, webkit
  5675. Issues resolved (http://bugs.uclibc.org):
  5676. #5450: AT91SAM9260 Bootstrap compilation problem
  5677. #5582: libiconv 1.14 failed to build
  5678. #5624: When building directfb, BR2_TARGET_LDFLAGS not used by..
  5679. #5852: [2012.11] usb_modeswitch should depends of "BR2_PACK..
  5680. #6218: binutils-2.23.2/gas fails with undefined reference to..
  5681. #6236: binutils-2.23.2/bfd fails with undefined reference to..
  5682. #6470: If the build directory is a child of /usr, the build..
  5683. #6776: systemd error: static declaration of 'execvpe' follows..
  5684. #6818: toolchainfile.cmake has absolut path references
  5685. 2014.02-rc1, Released February 11th, 2014
  5686. Fixes all over the tree and new features.
  5687. Support for external packages/defconfigs (BR2_EXTERNAL). See
  5688. user manual for details.
  5689. Cleanup of environment variable names for consistency. The
  5690. download directory location override (BUILDROOT_DL_DIR) is now
  5691. called BR2_DL_DIR. Likewise the name of the current .config is
  5692. renamed from BUILDROOT_CONFIG to BR2_CONFIG. Please update
  5693. your post build scripts if you use this! BUILD_DIR is now also
  5694. exported to the post build/image scripts.
  5695. Toolchain: GCC 4.8 fix for ARM stack corruption, reverted
  5696. uClibc pread/pwrite backport as they cause issues on certain
  5697. architectures, new Linaro and Sourcery Codebench toolchains.
  5698. x86: Support for AMD Jaguar cores, SSE4.x, SH: SH2/SH3/SH3EB
  5699. variants removed, Microblaze: Internal toolchain support
  5700. Legal infrastructure: Info is now split between host and
  5701. target packages, large number of license annotations.
  5702. Lua: selection between lua 5.1 / 5.2, luarocks support
  5703. Python: package infrastructure, many new packages.
  5704. Defconfigs: Armadeus APF51 + Zedboard added, apf27, apf28,
  5705. beaglebone, microblaze, pandaboard, qemu, raspberry pi
  5706. updated.
  5707. Updated/fixed packages: aiccu, alsa-lib, alsa-utils,
  5708. am33x-cm3, aumix, autoconf, automake, barebox, bellagio,
  5709. berkeleydb, binutils, bison, blackbox, bluez_utils, boost,
  5710. bustle, busybox, cairo, can-utils, ccache, ccid, cgilua,
  5711. cifs-utils, civetweb, cmake, collectd, connman, copas,
  5712. coreutils, coxpcall, cppzmq, cramfs, crda, cryptodev-linux,
  5713. cryptsetup, cups, czmq, dhcpcd, dhcpdump, dhrystone, dialog,
  5714. dmraid, dnsmasq, dosfstools, dropbear, dropwatch, dtc, duma,
  5715. dvb-apps, e2fsprogs, eglibc, eigen, elf2flt, erlang, ethtool,
  5716. f2fs-tools, ffmpeg, file, filemq, fio, flashrom, flex,
  5717. fluxbox, fontconfig freerdp, freetype, gadgetfs-test, gawk,
  5718. gcc, gdb, gdbm, gettext, git, glibc, gnupg, gnutls, gob2,
  5719. gpsd, grep, grub, gst-ffmpeg, gst-plugins-good,
  5720. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  5721. gst1-plugins-ugly, gstreamer, gstreamer1, gtest, icu, iftop,
  5722. imagemagick, inadyn, infozip, iozone, iproute2, iptables, iw,
  5723. jpeg, jpeg-turbo, jq, kexec, kmod, knock, lbase64, lcdapi,
  5724. lftp, libcdaudio, libcgi, libcgicc, libcuefile, libcurl,
  5725. libdmtx, libdrm, libdvdnav, libdvdread, libegl, libevent,
  5726. libexif, libfcgi, libfreefare, libgles, libglib2, libllcp,
  5727. libmicrohttpd, libmpd, libnfc, libnl, libnss, libopenmax,
  5728. libopenvg, libpcap, libpfm4, libplayer, libpng, libqmi,
  5729. libreplaygain, libroxml, libsamplerate, libsexy, libsigsegv,
  5730. libsndfile, libsoc, libtasn1, libtorrent, libtpl, libupnp,
  5731. libusb, libusb-compat, libvorbis, libxcb, libxml2, libxmlpp,
  5732. libyaml, lighttpd, linknx, linux-firmware, linux-pam, live555,
  5733. lm_sensors, lmbench, lockdev, logrotate, lrzsz, ltrace, lua,
  5734. lua-ev, lua-msgpack-native, luabitop, luaexpat, luaexpatutils,
  5735. luafilesystem, luajit, luaposix, luasec, luasocket,
  5736. luasql-sqlite3, m4, matchbox, mdadm, minicom, mongrel2, mpc,
  5737. mpd, mpg123, mplayer, mtd, mysql, lvm2, mxml, ncurses, ne10,
  5738. neard, neardal, netsnmp, netstat-nat, network-manager, nodejs,
  5739. numactl, ofone, ola, olsr, omniorb, open2300, opencv,
  5740. openpowerlink, openssh, openssl, openvpn, oprofile, opus,
  5741. opus-tools, orbit, p11-kit, parted, pcre, pcsc-lite, perl,
  5742. php, poco, poppler, powervr, protobuf-c, psplash, python,
  5743. python-bottle,
  5744. python-{crc16,distutilscross,dpkt,id3,ipy,m2crypto,mad,meld},
  5745. python-{netifaces,nfc,protobuf,pygame,pyparsing,pyro,pyzmq},
  5746. python-{serial,setuptools}, qt, qt5base, qt5connectivity,
  5747. qt5declarative, qt5graphicaleffects, qt5jsbackend,
  5748. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  5749. qt5webkit, radvd, redis, rings, rng-tools, rpcbind,
  5750. rpi-firmware, rpi-userland, rt-tests, sam-ba, samba, sawman,
  5751. sconeserver, scons, sdl, sg3_utils, snappy, snmppp,
  5752. socketcand, spice, spice-protocol, sqlcipher, sqlite, squid,
  5753. sshfs, strace, subversion, sunxi-mali, supervisor, sysklogd,
  5754. sysprof, sysstat, systemd, sysvinit, taglib, tar, tcpdump,
  5755. ti-gfx, ti-utils, tinymembench, tn5250, trace-cmd,
  5756. transmission, tvheadend, tzdata, zxing, uboot, uboot-tools,
  5757. uclibc, udev, udpcast, ulogd, urg, usb_modeswitch_data,
  5758. util-linux, vala, valgrind, vorbis-tools, wavpack, wayland,
  5759. weston, wget, wireless-regdb, wireshark, wpa_supplicant,
  5760. wsapi, xavante, xapp_xdpyinfo, xapp_xrandr, xcb-proto,
  5761. xdriver_xf86-video-intel, xenomai, xkeyboard-config, xl2tp,
  5762. xlib_lib{FS,SM,X11},
  5763. xlib_libX{au,aw,composite,cursor,damage,ext,fixes,font,i},
  5764. xlib_libX{inerama,mu,pm,randr,render,res,t,tst,v,xf86dga},
  5765. xlib_libXxf86vm, xlib_libdmx, xlib_libfontenc,
  5766. xlib_libpciaccess, xlib_xtrans, xproto_dri2proto,
  5767. xproto_{glproto,inputproto,presentproto,randrproto,videoproto},
  5768. xproto_xextproto, xproto_xproto, xutil_util-macros,
  5769. xutil_makedepend, zic, zmqpp, zxing, zsh, zyre
  5770. New packages: apitrace, avrdude, c-ares, ca-certificates,
  5771. cwiid, dbus-cpp, evemu, fping, fswebcam, gpm, gst1-libav,
  5772. haveged, intel-microcode, iucode-tools, jasper, joe, ktap,
  5773. lbreakout2, libass, libbluray, libcdio, libenca, libevdev,
  5774. libmbim, libmodplug, libnfs, libnftnl, libplist, libshairplay,
  5775. libsocketcan, ljsyscall, log4cplus, ltris, luainterpreter,
  5776. luarocks, minidlna, mmc-utils, modemmanager, mtr, net-tools,
  5777. python-configobj, python-dialog, python-json-schema-validator,
  5778. python-keyring, python-msgpack, python-posix-ipc,
  5779. python-pyasn, python-pycrypto, python-pysnmp,
  5780. python-pysnmp-apps, python-pysnmp-mibs, python-pyusb,
  5781. python-simplejson, python-tornado, python-versiontools,
  5782. rtmpdump, rtptools, smcroute, smstools3, tcpreplay, thrift,
  5783. ti-uim, tinyxml, tmux, vlc, wmctrl, xconsole
  5784. Removed packages: autoconf, automake, ccache, cpanminus, lzma,
  5785. netkitbase, netkittelnet, pkg-config, squashfs3, ttcp, xstroke
  5786. Issues resolved (http://bugs.uclibc.org):
  5787. #65: new package: dbus c++ language bindings
  5788. #769: Update configuration menu for MIPS target
  5789. #2419: Add a bundle of Lua modules
  5790. #2629: Segmentation faults and division by zero in Grub on ext2
  5791. #3811: Added auto-mount for USB and SD Card (mdev) (for 2011.05)
  5792. #4339: Allow override of DL_DIR in extract step
  5793. #4363: Make sure that copied linux and busybox defconfig are...
  5794. #4454: There should be simple way to update image, when chang...
  5795. #5024: grub fails to build for x86_64 target architecture
  5796. #5066: New-Package: net-tools
  5797. #5072: ncurses: add ncurses-progs to target
  5798. #5294: uclibc build ignores target CFLAGS and LDFLAGS
  5799. #5366: Login doesn't work with util-linux versions of login/agetty
  5800. #5378: dropbear Makefile broken
  5801. #5390: System banner - change to empty doesn't remove /etc/issue
  5802. #5780: spurious build failure because it cannot remove ubinize.cfg
  5803. #5798: ncurses-5.9 fails to compile statically
  5804. #5810: Buildroot 2012.11: Additional GCC option "-msoft-float" ...
  5805. #6080: Git fetch caching
  5806. #6092: Bootable ISO image creation seems to have stopped working..
  5807. #6272: coreutils build fails
  5808. #6434: apply-patches.sh does not work recursively
  5809. #6446: eglibc doesn't install ldconfig to target
  5810. #6484: Add c-ares
  5811. #6596: Slow bootup if mdev is chosen
  5812. #6656: Build Qt5 with ccache
  5813. #6662: internal compiler error: Segmentation fault during making..
  5814. #6722: Usage of $($(PKG)_DIR_PREFIX) is an issue with linux package
  5815. #6752: genext2fs: e2fsck must run before tunefs -U random
  5816. #6770: openssl 1.0.1f fails with ccache
  5817. #6830: Qt5: no fonts are installed
  5818. #6848: Qt5: no text shown in simple QWidget / frame-buffer setup
  5819. #6854: Update to Qt 5.2.1
  5820. 2013.11, Released November 30th, 2013:
  5821. Minor fixes.
  5822. Updated/fixed packages: apr, binutils, dbus-python, dropwatch,
  5823. ecryptfs-utils, eglibc, gdb, gpsd, grantlee, hostapd,
  5824. iptables, qlibiscsi, libnspr, libnss, libpfm4, libtool,
  5825. lua-ev, lvm2, mplayer, qt, qt5, quagga, ruby, tinymembench,
  5826. tvheadend, util-linux, wpa_supplicant
  5827. Issues resolved (http://bugs.uclibc.org):
  5828. #1279: Buildroot compiled Busybox and Coreutils LFS issues
  5829. #2995: -fstack-protector-all causes ssh to SIGSEGV
  5830. #5570: Cannot compile software on the target machine
  5831. #6428: util-linux libmount segfaults with patch from buildroot
  5832. #6500: php fails to build for armel
  5833. #6554: gdb needs to dependents on host texinfo
  5834. #6692: GNU nano fails to compile for x86_64
  5835. #6704: wpa_supplicant: fix wrong path to executable file in D-Bus
  5836. 2013.11-rc3, Released November 26th, 2013
  5837. Fixes all over the tree.
  5838. Architecture: Mark MIPS I, II, III and IV as deprecated.
  5839. Updated/fixed packages: beecrypt, dbus, e2fsprogs, libcap-ng,
  5840. libglib2, libroxml, libsigsegv, libvncserver, lxc, mdadm,
  5841. mongoose, nut, ola, omniorb, openssl, pcre, php, poco,
  5842. protobuf-c, pv, qt5base, ruby, schifra, squid, sunxi-mail,
  5843. swig, ti-gfx, tinymembench, uclibc, udisks, vim
  5844. 2013.11-rc2, Released November 18th, 2013
  5845. Fixes all over the tree.
  5846. Defconfigs: qemu_arm_versatile, qemu_arm_nuri, sheevaplug:
  5847. Adjust kernel versions.
  5848. Toolchain: avr32: fix for modern kernel headers
  5849. Bootloader: Barebox updated to 2013.10.1
  5850. Updated/fixed packages: dhcp, e2fsprogs, gst1-plugins-bad,
  5851. libcurl, libvncserver, nano, pc, qt5base, squashfs, ttcp,
  5852. wayland, wvstreams
  5853. Issues resolved (http://bugs.uclibc.org):
  5854. #3601: DHCPD S80dhcp-server startup script issues
  5855. #6320: Fix kernel compile issue if BR2_LINUX_KERNEL_CUSTOM_GIT_VERS..
  5856. #6416: Xenomai package, patch alternative
  5857. #6590: directfb-examples build failed whit linaro toolchain
  5858. 2013.11-rc1, Released November 12th, 2013
  5859. Architectures: Nios-II support, MIPS arch handling fixes
  5860. Defconfigs: cubieboard2, freescale i.MX 6sololite evk,
  5861. sabre-sd, wandboard added, rpi renamed to raspberrypi_defconfig
  5862. Toolchain: glibc support, upstream uClibc fixes, uClibc 0.9.31
  5863. for avr32, crosstool-ng backend removed, external musl
  5864. toolchain support, gcc 4.8.2, updated Linaro external
  5865. toolchains. Fortran and objective-C support deprecated,
  5866. mudflap support
  5867. Bootloaders: U-Boot: u-boot.imx support, version bumps
  5868. Linux: use kmod instead of module-init-tools
  5869. System: default to devtmpfs for /dev
  5870. Infrastructure: Make 3.82 fixes, locales generation fixes, CVS
  5871. download support, post-rsync hooks
  5872. Fs: u-boot image support for cpio
  5873. Updated/fixed packages: aircrack-ng, alsamixergui, apr,
  5874. apr-util, atk, automake, bellagio, berkeleydb, bind, binutils,
  5875. bison, boost, busybox, can-utils, ccache, ccid, cgilua,
  5876. chrony, cifs-utils, cjson, collectd, connman, conntrack-tools,
  5877. copas, cppcms, cppzmq, czmq, dash, dbus, dhcpcd, diffutils,
  5878. directfb, dmidecode, dnsmaqs, docker, dosfstools, dropbear,
  5879. dropwatch, ebtables, eglibc, elf2flt, empty, enchant, erlang,
  5880. ethtool, fbgrab, fbv, fdk-aac, feh, ffmpeg, file, findutils,
  5881. fltk, fmtools, freetype, gdk-pixbuf, gettext, git,
  5882. glib-networking, gmp, gnupg, gnutls, gpu-viv-bin-mx6q, gsl,
  5883. gstreamer, gstreamer1, gst1-plugins-{bad,base,good,ugly},
  5884. gtest, gutenprint, hplip, i2c-tools, icu, ifplugd,
  5885. imagemagick, iozone, iproute2, ipset, iptables, iw, jamvm,
  5886. jansson, jpeg-turbo, kismet, kmod, lcms2, libassuan, libcap,
  5887. libcap-ng, libcdaudio, libcec, libcue, libcurl, libdrm,
  5888. libedit, libevas, libevent, libfreefare, libfuse,
  5889. libgpg-error, libiconv, liblog4c-localtime, libmicrohttpd,
  5890. libmnl, libmodbus,
  5891. libnetfilter_{acct,conntrack,cthelper,cttimeout,log,queue},
  5892. libnfnetlink, libnl, libpng, libqmi, libqrencode, libroxml,
  5893. libsecret, libsigsegv, libsoup, libtirpc, libunwind, libusb,
  5894. libvpx, lighttpd, linphone, linux-pam, lmbench,
  5895. lockfile-progs, log4cxx, logrotate, logsurfer, ltp-testsuite,
  5896. ltrace, luacrypto, luaposix, lvm2, m4, matchbox-lib,
  5897. media-ctl, mediastreamer, minicom, minidlna, mongoose, monit,
  5898. mpc, mpd, mpg123, mplayer, mrouted, mtdev, mutt, mysql_client,
  5899. nano, ncftp, ndisc6, neard, neardal, neon, net-snmp, netatalk,
  5900. netcat, netkitbase, netperf, netplug, nettle, nfacct,
  5901. nfs-utils, ngircd, ngrep, noip, nuttcp, olsr, openssh, opkg,
  5902. oprofile, opus-tools, orc, ortp, pciutils, pcre, pcsc-lite,
  5903. perf, perl, perl-cross, php, picocom, pkgconf, polarssl,
  5904. poppler, pppd, proftpd, protobuf, proxychains-ng, pulseaudio,
  5905. pv, qemu, qt, qt5base, qt5webkit, quagga, radvd, redis,
  5906. rpi-{firmware,userland}, rrdtool, rsync, rtorrent, ruby,
  5907. samba, scons, screen, sdl_sound, ser2net, setserial,
  5908. smartmontools, socat, socketcand, sqlcipher, sqlite, squid,
  5909. stress, strongswan, stunnel, sudo, syslinux, systemd,
  5910. sysvinit, tcl, ti-gfx, time, transmission, tremor, tslib,
  5911. tstools, tvheadend, tzdata, uboot-tools, uclibc, udpcast,
  5912. uemacs, ulogd, usb_modeswitch{,_data}, util-linux, vala,
  5913. valgrind, vde2, vorbus-tools, vpnc, vsftpd, vtun, wayland,
  5914. webkit, webp, webrtc-audio-processing, weston, wget,
  5915. wireshark, wsapi, xavante, xdriver_xf86-video-geode, xenomai,
  5916. xinetd, xlib_libpthread-stubs, xl2tp, xmlstarlet,
  5917. xserver_xorg-server, xz, zeromq, zic, zmqpp
  5918. New packages: aiccu, autossh, bc, civetweb, cppdb, cryptsetup,
  5919. duma, eigen, harfbuzz, igmpproxy, iputils, jq, knock, kobs-ng,
  5920. lesstif, libcgroup, libsepol, libsoc, libssh2, luasec, luasql,
  5921. lxc, nut, ola, omniorb, openpowerlink, orbit, p910nd, psplash,
  5922. python-crc16, python-ipy, python-pyzmq, qt5sensors,
  5923. qt5serialport, qt5x11extras, snmppp, subversion, tcping,
  5924. trace-cmd, xscreensaver, zsh
  5925. Removed packages: module-init-tools
  5926. Issues resolved (http://bugs.uclibc.org):
  5927. #1138: Buildroot fails to build packages if BR2_GCC_SHARED_LIBGCC=y
  5928. #5408: qt build failure with Sourcery CodeBench ARM 2010.09
  5929. #5630: makefile error with toolchain helpers.mk
  5930. #5672: htop: remove X11 stuff
  5931. #5678: linux.mk: linux-menuconfig fails
  5932. #5696: python3 installation is too large, patches from python2 needed
  5933. #5978: Erlang does not build for arm in 2013.02-rc3
  5934. #6392: Extended ARM uImage kernel options
  5935. #6404: Buildroot's coreutils 'uname -p' reports 'Unknown' on recent..
  5936. #6428: util-linux libmount segfaults with patch from buildroot
  5937. #6452: eglibc from Linaro 2013.07 not copied to target correctly
  5938. #6566: PHP segfault when crosscompiled to mips64 - patch included
  5939. #6572: [PowerPC] Buildroot uses wrong external toolchain libraries..
  5940. #6578: udisks package broken
  5941. #6602: ebtables 64 bit kernel + 32 bit userland alignment error..
  5942. #6608: ebtables missing ethertypes - fix included
  5943. #6620: Sysvinit package missing killall5 and symlinks - patch included
  5944. #6632: CMake use host pkg-config
  5945. #6638: pkgconf doesn't download
  5946. #6644: "all" target doesn't work in out-of-tree builds
  5947. #6650: Segmentation fault when trying to build latest buildroot
  5948. #6668: iptables limit module alignment problem on mips64
  5949. 2013.08, Released August 31th, 2013:
  5950. Minor fixes.
  5951. Documentation build fixed.
  5952. Updated/fixed packages: ltrace, strongswan
  5953. 2013.08-rc3, Released August 29th, 2013:
  5954. Fixes all over the tree.
  5955. External toolchain lib32/lib64 handling, ABI name for EABIhf,
  5956. misc fixes for generatelocales, apply-patches and module
  5957. stripping.
  5958. Top level menu names reordered and renamed for clarity.
  5959. Updated/fixed packages: acl, attr, bash, dbus, directfb,
  5960. dvb-apps, kexec, kmod, libbsd, linux-fusion, mesa3d, minidlna,
  5961. openssh, openssl, pulseaudio, python-setuptools, qt5,
  5962. qt5webkit, redis, strongswan, sunxi-mali
  5963. Issues resolved (http://bugs.uclibc.org):
  5964. #6464: dbus-daemon-launch-helper needs setuid
  5965. 2013.08-rc2, Released August 16th 2013:
  5966. Documentation improvements.
  5967. External toolchains fixes.
  5968. Updated/fixed packages: aircrack-ng, bash, boost, cairo,
  5969. cppcms, eglibc, ffmpeg, gcc, git, gnupg, imagemagick, libcec,
  5970. libffi, libgcrypt, linux, linux-headers, ltrace, netatalk,
  5971. opencv, opengl, readline, samba, strongswan, sunxi-cedarx,
  5972. uclibc, udev, wayland, webkit, zeromq.
  5973. Issues resolved (http://bugs.uclibc.org):
  5974. #6440: typo in ffmpeg makefile
  5975. 2013.08-rc1, Released August 5th, 2013:
  5976. Architectures:
  5977. - improved support for floating point on ARM and Thumb/Thumb2
  5978. - support for ARM OABI removed
  5979. Toolchains:
  5980. - support added for Sourcery CodeBench ARM and MIPS 2013.05
  5981. - Linaro ARM and Aarch64 toolchains updated
  5982. - support added for the Arago ARMv5 and ARMv7 toolchains
  5983. - gcc 4.8.x version bumped
  5984. - support for installing both FDPIC and FLAT libraries on
  5985. Blackfin
  5986. - support for uClibc 0.9.31 removed,
  5987. - convert the internal toolchain backend to use the package
  5988. infrastructure
  5989. - support added for eglibc in the internal toolchain backend
  5990. - toolchain components for the ARC architecture updated and
  5991. gdb for ARC added.
  5992. - support for Blackfin in the internal toolchain fixed
  5993. Defconfigs: beaglebone_defconfig updated, new defconfig for
  5994. CubieBoard, for Olimex mx233 Olinuxino, for Calao Systems
  5995. TNY-A9G20-LPW.
  5996. A number of packages have been fixed to use the
  5997. <pkg>_CONFIG_SCRIPTS mechanism to get their <pkg>-config shell
  5998. script installed and modified properly. Licensing informations
  5999. has been added to a number of packages.
  6000. Use XZ tarballs for a number of packages.
  6001. Noticeable package changes/additions:
  6002. - The glib2/libgtk2/webkit stack has been updated to recent
  6003. versions.
  6004. - Support for Gstreamer 1.x has been added.
  6005. - OpenGL support for TI OMAP platforms has been added.
  6006. - OpenGL support for Allwinner platforms has been added.
  6007. - OpenMAX support for RasberryPi has been added.
  6008. Updated/fixed packages: acl, attr, autoconf, avahi, barebox,
  6009. bind, binutils, busybox, bwm-ng, bzip2, cifs-utils, colletctd,
  6010. cpanminus, cups, curl, dash, dbus, dhcp, directfb,
  6011. directfb-examples, dnsmasq, dosfstools, dropbear, dtc,
  6012. e2fsprogs, ed, efl, enlightenment, erlang, ethtool, fbgrab,
  6013. fftw, firmware-imx, flot, fltk, freetype, gawk, gdk-pixbuf,
  6014. gettext, gmp, gnutls, gsl, gutenprint, gvfs, gzip, haserl,
  6015. hiawatha, httping, icu, imagemagick, imlib2, imx-lib,
  6016. intltool, iozone, ipset, iptables, jquery, jquery-keyboard,
  6017. jquery-sparkline, kmod, less, libart, libcdaudio, libcgicc,
  6018. libesmtp, libftdi, libfuse, libglib2, libgtk, libgtk2, libidn,
  6019. libiqrf, liblog4c-localtime, libnspr, libnss, libpcap,
  6020. libroxml, libserial, libsigsev, libsoup, libtool, libtpl,
  6021. libvncserver, libxml2, linphone, lm_sensors, logrotate,
  6022. ltrace, lttng, luafilesystem, luajit, minicom, monit, mpg123,
  6023. mtd, mutt, mxml, neard, netatask, netsnmp, nettle,
  6024. network-manager, nodejs, nss-mdns, openssh, openswan, openvpn,
  6025. opkg, opus, pcre, perl-cross, php, pixman, poco, polarssl,
  6026. pulseaudio, pv, python, python3, qt, qt5, qt5declarative,
  6027. qt5jsbackend, qt5quick1, readline, rpi-firmware, ruby, samba,
  6028. sane-backends, sconeserver, sdl_image, sdparm, ser2net,
  6029. socketcand, sqlite, squid, strace, tcl, tcpdump, tinyhttpd,
  6030. tvheadend, tzdata, uboot, udpcast, usb_modeswitch,
  6031. usb_modeswitch_data, usbutils, webkit, wireshark, wvstreams,
  6032. xapp_luit, xapp_xmodmap, xenomai, xfsprogs, xlib_libX11, zic,
  6033. zlib.
  6034. New packages: a10disp, aespipe, am33x-cm3, cppcms, dhcpcd,
  6035. dropwatch, dtc, ecryptfs-utils, eglibc, elf2flt, fdk-aac,
  6036. gcc-final, gcc-initial, gcc-intermediate, git,
  6037. gpu-viv-bin-mx6q, gst1-plugins-bad, gst1-plugins-base,
  6038. gst1-plugins-good, gst1-plugins-ugly, gst-omx,
  6039. gst-plugin-x170, gstreamer1, jimtcl, lbase64, libassuan,
  6040. libbsd, libcec, libdvbsi, libedit, libgpgme, libqmi,
  6041. libqrencode, libsvg, libsvg-cairo, libunwind, libvpx,
  6042. linux-headers, lockdev, luabitop, luacrypto, lua-ev,
  6043. luaexpatutils, msgpack, ocrad, on2-8170-libs,
  6044. on2-8170-modules, p11-kit, pax-utils, ptpd, ptpd2,
  6045. python-pyro, ramspeed/smp, snappy, strongswan, sunxi-boards,
  6046. sunxi-cedarx, sunxi-mali, sunxi-tools, ti-gfx, tinymembench,
  6047. tree, tstools, uclibc, w_scan.
  6048. Issues resolved (http://bugs.uclibc.org):
  6049. #4718: python (built for powerpc) distutils has paths to host
  6050. compiler toolchain
  6051. #5516: appended device tree blobs on uImage fails
  6052. #6302: Versions of packages retrieved from github.com are wrong
  6053. #6308: dosfstools download link is wrong
  6054. #6326: Dropbear: Add options to allow better config for
  6055. different target devices (e.g. routers)
  6056. #6338: Wrong download link for minicom package
  6057. #6344: Wrong handling of license text files with same name and
  6058. different directory
  6059. #6374: gnutls package broken if linux cryptodev module
  6060. selected
  6061. #6410: omap3_beagle has uimage error load address error
  6062. 2013.05, Released May 31th, 2013:
  6063. Minor fixes.
  6064. External toolchain wrapper fix for if host/usr/bin is placed
  6065. in the patch.
  6066. Updated/fixed packages: acpid, at91bootstrap, czmq, elf2flt,
  6067. flex, jamvm, kmod, libplayer, libtirpc, libv4,
  6068. lttng-babeltrace, opengl, qt5jsbackend, udpcast, wvstreams
  6069. Issues resolved (http://bugs.uclibc.org):
  6070. #4868: Buildroot compile failure for toolchain/gdb-7.4/intl/reloc...
  6071. #4988: flex and m4 problems
  6072. #5912: obsolete CVS files
  6073. 2013.05-rc3, Released May 25th, 2013:
  6074. Minor fixes.
  6075. Updated/fixed packages: aircrack-ng, bellagio, boost, crda,
  6076. dvb-apps, flot, libatomic_ops, libeXosip2, libosip2, libxml2,
  6077. mongrel2, poco, portaudio, pptp-linux, tvheadend, urg, weston,
  6078. wireshark
  6079. 2013.05-rc2, Released May 15th, 2013:
  6080. Fixes all over the tree.
  6081. Default number of parallel jobs is now number of CPUs + 1.
  6082. Defconfigs: Add Telit EVK-PRO3, AT91SAM9260-EK Nand flash.
  6083. Updated/fixed packages: aircrack-ng, busybox, cairo,
  6084. classpath, curlftpfs, czmq, dbus, f2fs-tools, fan-ctrl,
  6085. filemq, gst-plugin-bad, gutenprint, hplip, json-c,
  6086. libatomic_ops, libcurl, libdrm, libglib2, libnspr, libnss,
  6087. libsha1, libsigsegv, libxcb, linknx, linux-pam, lttng-modules,
  6088. lttng-tools, matchbox-lib, mcookie, mesa3d, neon, pixman,
  6089. pulseaudio, python-nfc, qt5imageformats, quota, openssl,
  6090. sconeserver, strace, sylpheed, wvstreams,
  6091. xapp_{appres,bdftopcf,beforelight,bitmap,edires,fonttosfnt},
  6092. xapp_{fslsfonts,fstobdf,iceauth,ico,listres,luit,mkfontdir},
  6093. xapp_{mkfontscale,oclock,rgb,rstart,scripts,sessreg,setxkbmap},
  6094. xapp_{showfont,smproxy,twm,viewres,x11perf,xauth,xbacklight},
  6095. xapp_x{biff,calc,clipboard,clock,cmsdb,cursorgen,dbedizzy,ditview},
  6096. xapp_x{dm,dpyinfo,driinfo,edit,ev,eyes,f86dga,fd,fontsel,fs,fsinfo},
  6097. xapp_x{gamma,gc,host,input-calibrator,input,kbcomp,kbevd,kbprint},
  6098. xapp_x{kbutils,kill,load,logo,lsatoms,lsclients,lsfonts,mag,man},
  6099. xapp_x{message,mh,modmap,more,pr,prop,randr,rdb,refresh,set,setmode},
  6100. xapp_x{setpointer,setroot,sm,stdcmap,vidtune,vinfo,wd,wininfo,wud},
  6101. xcb-util, xcursor-transparent-theme, xdata_xbitmaps,
  6102. xdata_xcursor-themes,
  6103. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synaptics},
  6104. xdriver_xf86-input-{tslib,vmmouse,void},
  6105. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,fbdev,geode,glide},
  6106. xdriver_xf86-video-{glint,i128,intel,mach64,mga,neomagic,newport},
  6107. xdriver_xf86-video-{nv,openchrome,r128,savage,siliconmotion,sis},
  6108. xdriver_xf86-video-{tdfx,tga,trident,v4l,vesa,vmware,voodoo,wsfb},
  6109. xfont_encodings, xfont_font-adobe-{100,75}dpi,
  6110. xfont_font-utopia-{100dpi,75dpi,type1},
  6111. xfont_font-{alias,arabic-misc,bh-100dpi,bh-75dpi},
  6112. xfont_font-bh-lucidatypewriter-{100,75}dpi, xfont_font-bh-{ttf,type1},
  6113. xfont_font-bitstream-{100dpi,75dpi,type1}, xfont_font-cronyx-cyrillic,
  6114. xfont_font-{cursor,daewoo,dec,isas,jis,micro}-misc,
  6115. xfont_font-ibm-type1, xfont_font-misc-{cyrillic,ethiopic,meltho,misc},
  6116. xfont_font-{mutt,schumacher}-misc,
  6117. xfont_font-{screen-cyrillic,sony-misc,sun-misc,util},
  6118. xfont_font-winitzki-cyrillic, xfont_font-xfree86-type1,
  6119. xlib_lib{FS,ICE,SM,X11,XScrnSaver,Xau,Xaw,Xcomposite,Xcursor},
  6120. xlib_libX{damage,dmcp,ext,fixes,font,ft,i,inerama,mu,pm,randr},
  6121. xlib_libX{render,res,t,tst,v,vMC,xf86dga,xf86vm},
  6122. xlib_lib{dmx,fontenc,pciaccess,pthread-stubs,xkbfile}, xlib_xtrans,
  6123. xproto_{applewm,bigreqs,composite,damage,dmx,dri2,fixes}proto,
  6124. xproto_{fontcache,font,gl,input,kb,randr,record,render}proto,
  6125. xproto_{resource,scrnsaver,video,windowswm,xcmisc,xext}proto,
  6126. xproto_{xf86bigfont,xf86dga,xf86dri,xf86vidmode,xinerama,x}proto,
  6127. xserver_xorg-server, xutil_{makedepend,util-macros}
  6128. Readded Packages: xapp_xinit
  6129. Issues resolved (http://bugs.uclibc.org):
  6130. #5054: amd64: cannot find init - due to missing /lib64 folder
  6131. 2013.05-rc1, Released May 8th, 2013:
  6132. Architectures: ARC support, Blackfin support, FLAT binary
  6133. format, ARM: Drop old CPU variants, add fa526/626, Marvell PJ4
  6134. Toolchains: Add new Microblaze external toolchains, Linaro
  6135. ARM/Aarch64 updates, GCC 4.6.4 / 4.7.3 / 4.8.0 added to
  6136. internal toolchain, default to GCC 4.7.x. Internal
  6137. Crosstool-ng backend deprecated.
  6138. Defconfigs: Add Atmel at91sam9g45m10ek, freescale mpc8315erdb
  6139. & p1010rdb, Armadeus apf27 / apf28, Openblocks A6, Raspberry
  6140. pi, gnublin board.
  6141. FS: LZO and XZ compression methods, extra ubifs options,
  6142. ext2 rev 0/1 and ext3/4 support.
  6143. Patch handling: apply-patches now has .patch.xz support,
  6144. Patch logic reworked as discussed during Febrary dev days:
  6145. http://elinux.org/Buildroot:DeveloperDaysFOSDEM2013
  6146. <pkg>-rsync now excludes version control files.
  6147. linux: uImage load address for ARM multiplatform kernels
  6148. Infrastructure for multiple OpenGL / ES / EGL / OpenVG
  6149. providers, similar to how libjpeg / libjpeg-turbo is handled.
  6150. Infrastructure for packages to add system users.
  6151. kconfig: updated to 3.9-rc2, support make olddefconfig
  6152. Updated/fixed packages: alsa-lib, alsa-utils, apr, apr-util,
  6153. argp-standalone, at, at91bootstrap, audiofile, aumix, avahi,
  6154. bash, blackbox, bind, binutils, bison, boost, bridge-utils,
  6155. busybox, ccache, cifs-utils, cmake, collectd, connman,
  6156. conntrack-tools, cpanminus, crosstool-ng, diffutils, directfb,
  6157. directfb-examples, divine, dmalloc, dnsmasq, dosfstools,
  6158. dropbear, e2fsprogs, ebtables, eeprog, erlang, ethtool,
  6159. fb-test-app, fbset, feh, ffmpeg, file, flex, flot, foomatic,
  6160. fxload, gd, gdb, gdisk, genimage, gettext, gmp, gnuchess,
  6161. gnutls, gob2, gperf, gpsd, gstreamer, haserl, hiawatha, htop,
  6162. httping, icu, inotify-tools, intltool, iproute2, ipset,
  6163. iptables, iw, jpeg, jquery, jquery-{sparkline,validation},
  6164. json-c, kbd, kexec, kismet, kmod, lcdproc, libarchive,
  6165. libatasmart, libcap, libconfig, libconfuse, libcurl, libdrm,
  6166. libeet, libev, libevas, libeXosip2, libffi, libfribi, libfuse,
  6167. libgcrypt, libglib2, libgtk2, libid3tag, libmicrohttpd,
  6168. libnetfilter_acct, libnetfilter_conntrack, libnl, libpcap,
  6169. libplayer, libsigc, libv4l, libxcb, linenoise, linux-pam,
  6170. lm_sensors, ltp-testsuite, luajit, lzop, madplay, make, mdadm,
  6171. mediastreamer, memtester, mesa3d,
  6172. mobile-broadband-provider-info, monit, mpd, mpfr, mpg123,
  6173. mrouted, msmtp, nbd, ncurses, ndisc6, neard, neardal, neon,
  6174. netperf, netsnmp, nettle, nfacct, ntfs-3g, ofono, olsr,
  6175. omap-u-boot-utils, openssh, openssl, openswan, openvpn,
  6176. oprofile, orc, patch, pciutils, pcre, perl, php, poco,
  6177. polarssl, proftpd, psmisc, pulseaudio, python,
  6178. python-{bottle,netifaces,serial,setuptools}, qt, quagga,
  6179. quota, radvd, rpi-firmware, rpi-userland, rt-tests, sam-ba,
  6180. samba, sawman, sdl, ser2net, smartmontools, socat, socketcand,
  6181. speex, squid, stress, stunnel, sudo, syslinux, sysstat,
  6182. sysvinit, tcl, tcprelay, tinyhttpd, tslib, tvheadend,
  6183. uboot-tools, udev, ulogd, util-linux, vala, vtun, webkit,
  6184. xapp_{iceauth,luit,makefontscale,sessreg,setxkbmap,smproxy},
  6185. xapp_{xauth,xcmsdb,xdpyinfo,xev,xgamma,xhost,xinput,xkbcomp},
  6186. xapp_{xkbevd,xlsatoms,xlsclients,xmodmap,xpr,xprop,xrandr,xrdb},
  6187. xapp_{xset,xwd,xwininfo}, xcb-{proto,util},
  6188. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synptics},
  6189. xdriver_xf86-input-{tslib,vmmouse,void},
  6190. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,geode,glide,glint},
  6191. xdriver_xf86-video-{i128,intel,mach64,mga,neomagic,newport},
  6192. xdriver_xf86-video-{openchrome,r128,savage,siliconmotion,sis},
  6193. xdriver_xf86-video-{tdfx,trident,vesa,vmware,wsfb}, xenomai,
  6194. xfont, xinetd, xkeyboard-config, xlib_lib{FS,ICE,SM,X11},
  6195. xlib_libX{scrnSaver,au,aw,cursor,dmcp,ext,fixes,font,ft,i},
  6196. xlib_libX{inerama,mu,pm,randr,res,tst,v,vMC,xf86dga,xf86vm},
  6197. xlib_lib{dmx,fontenc,pciaccess,xkbfile}, xlib_xtrans,
  6198. xproto_{applevm,bigreqs,dri2,fonts,gl,input,kbd,record}proto,
  6199. xproto_{resource,scrnsaver,xcmisc,xext,x}proto,
  6200. xserver_xorg-server, xutil_makedepend, xz, zeromq
  6201. New packages: aircrack-ng, bcusdk, chrony, crda,
  6202. cryptodev-linux, cppzmq, czmq, dtach, enscript, exfat,
  6203. exfat-utils, f2fs-tools, fan-ctrl, filemq, foomatic-filters,
  6204. genimage, genpart, glibmm, gnuplot, gtest, gutenprint, hplip,
  6205. iozone, jansson, jhead, jquery-keyboard, jquery-ui,
  6206. jquery-ui-themes, json-glib, json-javascript, lcms2, libpfm4,
  6207. libpthsem, libserial, libsigsegv, libtasn1, libwebsockets,
  6208. libxkbcommon, libxml++, linknx, log4cxx, mongoose, mongrel2,
  6209. mtools, ne10, nmap, nodejs, openobex, openpgm, poppler,
  6210. protobuf-c, python-m2crypto, python-thrift, qjson, qt5base,
  6211. qt5declarative, qt5graphicaleffects, qt5imageformats,
  6212. qt5jsbackend, qt5multimedia, qt5quick1, qt5script, qt5svg,
  6213. qt5webkit qt5xmlpatterns, rapidjson, redis, swig, texinfo,
  6214. tzdata, urg, ussp-push, wayland, webp, weston, wireless-regdb,
  6215. wireshark, wvdial, wvstreams, xcb-util-image, xcb-util-wm,
  6216. xcursor-transparent-theme, zic, zmqpp, zyre
  6217. Removed packages: microperl, ocf-linux, xapp_xinit,
  6218. xapp_xplsprinters, xapp_xprehashprinterlist,
  6219. xfont_font-bitstream-speedo,
  6220. xlib_lib{Xfontcache,XprintAppUtil,XprintUtil,Xp,oldX,xkbui},
  6221. xproto_{print,xf86rush}proto
  6222. Deprecated packages: vala
  6223. Issues resolved (http://bugs.uclibc.org):
  6224. #1291: Add support for Faraday 526 arm processor (fa526)
  6225. #2683: cups does not install correctly to target
  6226. #3313: mesa3d fails to build
  6227. #5186: initramfs/cpio should support lzo compression
  6228. #5636: agetty - cannot get controlling tty error - need updated...
  6229. #5906: collectd client headers not exported
  6230. #5966: bison unnecessarily required as build dependency
  6231. #6140: --enable-fileinfo not applied for php package
  6232. #6164: openvpn usage of ip tool from Busybox
  6233. 2013.02, Released February 28th, 2013:
  6234. Misc manual updates.
  6235. Updated/fixed packages: busybox, collectd, flashbench,
  6236. libgtk2, libupnp, mii-diag, quota
  6237. 2013.02-rc3, Released February 26th, 2013
  6238. Minor fixes.
  6239. Updated/fixed packages: conntrack-tools, dialog,
  6240. enlightenment, haserl, keyutils, libfif, libmad,
  6241. linux-firmware, linux-fusion, matchbox-desktop, matchbox-wm,
  6242. ruby, spawn-fcgi, vtun
  6243. Issues resolved (http://bugs.uclibc.org):
  6244. #5960: fusion.ko driver does not install to target rootfs
  6245. 2013.02-rc2, Released February 19th, 2013
  6246. Fixes all over the tree.
  6247. Various manual updates and fixes.
  6248. Updated/fixed packages: busybox, collectd, gesftpserver,
  6249. glib-networking, gnutls, inotify-tools, libcurl, libffi,
  6250. libglib2, libtorrent, libvorbis, neard, network-manager,
  6251. ntfs-3g, openssl, qt, rpi-userland, rtorrent, thttpd, vim.
  6252. Issues resolved (http://bugs.uclibc.org):
  6253. #5906: collectd client headers not exported
  6254. 2013.02-rc1, Released February 10th, 2013
  6255. Toolchain: Crosstool-ng 1.17.0, default to GCC 4.6.3, target
  6256. libraries install fixed. Add Linaro ARM
  6257. 2012.11/2012.12/2013.01, AArch64 12.11/12.12/13.01. Sourcery
  6258. CodeBench MIPS 2012.03/09. Infrastructure to warn about
  6259. missing 32bit support for binary toolchains. Toolchain wrapper
  6260. is now relocatable. Add GDB 7.5.1 / Remove 6.8 / 7.0 /
  6261. 7.1. Deprecate uClibc 0.9.31.
  6262. Architecture: Xtensa fixes, add missing powerpc variants, arm
  6263. 1136jf-s rev1, add A5/A15, neon support toggle, OABI
  6264. deprecated. Sparc: drop old unused variants
  6265. Bootloaders: At91bootstap: fix upstream URL, Barebox: add
  6266. 2012.12/2013.01/2013.02, remove 2012.08/09/10, lzop fixes,
  6267. environment image support, U-Boot: add 2013.01.01
  6268. Linux: fix appended dtb handling for v3.8+ kernels, support
  6269. multiple device trees
  6270. Defconfigs: calao USB-A9260, snowball, QEMU PPC440 on ML507
  6271. board, QEMU ARM Exynos4210, Kernel version in QEMU defconfigs
  6272. updated, at91rm9200df: misc fixes. Lock kernel headers to
  6273. match kernel.
  6274. Infrastructure: Git download fixes. Toolchain make target
  6275. renamed from 'cross' to 'toolchain'. Eclipse integration
  6276. support. Option to set root password, post image scripts,
  6277. config scripts handling.
  6278. Updated/fixed packages: alsa-lib, argp-standalone, argus,
  6279. arptables, atk, audiofile, axel, beecrypt, bind, bison,
  6280. bluez_utils, boost, cairo, can-utils, bmon, boa, busybox,
  6281. cairo, ccache, cdrkit, cifs-utils, cjson, cmake, collectd,
  6282. connman, coreutils, cpanminus, cups, dbus, dhcp, dialog,
  6283. diffutils, directfb, distcc, divine, dnsmasq, docker,
  6284. dosfstools, dstat, e2fsprogs, ebtables, ed, empty, ethtool,
  6285. expedite, fbset, fbv, ffmpeg, flex, fltk, fluxbox, freetype,
  6286. gadget-test, gawk, gdb, genext2fs, gettext, giblib,
  6287. glib-networking, gmp, gmpc, gnupg, gnutls, gpsd,
  6288. gst-plugins-{bad,base,good}, gstreamer, gzip, haserl, hdparm,
  6289. heirloom-mailx, hiawanta, hostapd, icu, imagemagick, imlib2,
  6290. inadyn, infozip, iproute2, ipset, iptables, iw, jpeg, jquery,
  6291. jquery-sparklines, jqeury-validation, kismet, kmod, lame,
  6292. libao, libcap, libcurl, libdvdnav, libdvdread, libecore,
  6293. libedbus, libedje, libeet, libefreet, libeina, libeio,
  6294. liberation, libelementary, libembryo, libethumb, libev,
  6295. libevas, libffi, libfribidi, libfuse, libgcrypt, libglib2,
  6296. libgpg-error, libgtk2, libhid, libidn, libmicrohttpd, libmpd,
  6297. libnl, libnspr, libnss, libogg, libpcap, libplayer, libpng,
  6298. libroxml, librsvg, libseccomp, libsigc, libsndfile, libungif,
  6299. libupnp, liburcu, libusb-compat, libvncserver, libvorbis,
  6300. libxml2, libxslt, lighttpd, links, linux-firmware,
  6301. linux-fusion, ltp-testsuite, ltrace,
  6302. lttng-{babel,libust,modules,tools}, lvm2, lua, luajit, lzop,
  6303. matchbox-{desktop,lib}, mdadm, metacity, midori, minicom, mpd,
  6304. mpfr, mplayer, mtd, mysql_client, ncurses, neon, netatalk,
  6305. networkmanager, nspr, ntfs-3g, nuttcp, ofone, olsr, openssl,
  6306. openvpn, opkg, oprofile, opus, opus-tools, orc, ortp, pango,
  6307. pciutils, pcmanfm, pcre, pcsc-lite, perl, php, pixman,
  6308. pkgconf, polarssl, pptp-linux, proxychains, pulseaudio,
  6309. python, python3, qemu, qextserialport, qt, quagga, radvd,
  6310. readline, rng-tools, rt-tests, rubix, ruby, sam-ba, samba,
  6311. sane-backends, sconeserver, scons, screen, sdl, sdl_gfx,
  6312. sdl_mixer, sdl_ttf, sdparm, sed, ser2net, smartmontools,
  6313. speex, sqlite, squid, sshfs, strace, sudo, sylpheed, tn5250,
  6314. taglib, tar, torsmo, transmission, tslib, uboot-tools, ulogd,
  6315. usb_modeswitch, util-linux, valgrind, vim, vsftpd, wavpack,
  6316. webkit, wipe, wireless_tools, wpa_supplicant, xapp_xinit,
  6317. xapp_xinput-calibrator, xapp_xman, xapp_xmh, xlib_libX11,
  6318. xlib_libXdmcp, xlib_libXft, xlib_libpthread-stubs,
  6319. xlib_xtrans, xproto_xcmiscproto, xproto_xextproto,
  6320. xserver_xorg-server, xstroke, xvkbd, xz
  6321. New packages: b43-firmware, b43-fwcutter, bustle,
  6322. cache-calibrator, cegui06, celt051, classpath, curlftpfs,
  6323. dvb-apps, dvbsnoop, elfutils, enlightenment, firmware-imx,
  6324. flashbench, gd, gesftpserver, gst-fsl-plugins, httping, iftop,
  6325. imx-lib, jamvm, jpeg-turbo, keyutils, libatasmart, libcofi,
  6326. libebml, libevas-generic-loaders, libfslcodec, libfslparser,
  6327. libfslvpuwrap, libgsasl, libiscsi, libmatroska, libmcrypt,
  6328. libmhash, libqwt, libseccomp, libsha1, linenoise, mcrypt,
  6329. media-ctl, ncdu, neard, neardal, nettle, perf, polkit,
  6330. proxychains, python-bottle, python-pyparsing, rpi-firmware,
  6331. rpi-userland, sg3_utils, slirp, snowball-hdmiservice, spice,
  6332. spice-protocol, tcllib, tvheadend, udisks, usbredir
  6333. ux500-firmware, vde2, xcb-utils-keysyms, yavta,
  6334. zd1211-firmware
  6335. Removed packages: customize, xdriver_xf86-input-{acecad,aiptek},
  6336. xdriver_xf86-video-{apm,chips,i740,rendition,s3,s3virge,sisusb},
  6337. xdriver_xf86-video-sun{cg14,cg3,cg6,ffb,leo,tcx},
  6338. xdriver_xf86-video-{tsend,xgi,xgixp}
  6339. Deprecated packages: xstroke
  6340. Issues resolved (http://bugs.uclibc.org):
  6341. #4237: building shared openssl w/-Os fails due to gcc bug
  6342. #5690: python3 does not obey to BR2_PACKAGE_PYTHON3_PYC_ONLY=y
  6343. #5602: python3 should install a "python" symbolic link
  6344. #5846: Extra slash added to last slash in URL
  6345. 2012.11.1, Released January 3rd, 2013:
  6346. Toolchain: Fixed non-largefile builds on recent Ubuntu
  6347. versions.
  6348. Arch: fix missing x86/generic handling, Build for Xtensa with
  6349. longcalls option.
  6350. Updated/fixed packages: dosfstools, qt
  6351. 2012.11, Released December 2nd, 2012:
  6352. Git shallow clone fix for older git version.
  6353. Updated/fixed packages: ctuio, libtool
  6354. Issues resolved (http://bugs.uclibc.org):
  6355. #5726: List all the available hook points
  6356. 2012.11-rc2, Released November 30th, 2012:
  6357. Minor fixes around the tree.
  6358. Various manual updates and fixes.
  6359. Add checks for legacy features.
  6360. Updated/fixed packages: acpid, alsa-lib, arptables, binutils,
  6361. busybox, ccache, cjson, cramfs, directfb, flex, fluxbox, gdb,
  6362. hiawatha, igh-ethercat, imagemagick, imlib2, lcdproc,
  6363. libdaemon, libecore, libhid, libmad, libpcap, libsigc, libusb,
  6364. linux-fusion, matchbox, ocf-linux, owl-linux, python, rrdtool,
  6365. scons, strace, sylpheed
  6366. Issues resolved (http://bugs.uclibc.org):
  6367. #5732: Error : package/alsa-lib/alsa-lib.mk
  6368. 2012.11-rc1, Released November 17th, 2012
  6369. Fixes all over the tree and new features.
  6370. Defconfigs: use u-boot 2012.10 on at91 and beaglebone,
  6371. sheevaplug + qemu: bump kernel version, add qemu-mips64-malta
  6372. + nitrogen6x defconfigs.
  6373. Bootloaders: add u-boot 2012.07/10, ais target format, add
  6374. barebox 2012.08/09/10/11, linker overlap issue fix for
  6375. at91bootstrap, mxs-bootlets updated for new Barebox versions.
  6376. Toolchains: binutils 2.23.1, gcc 4.7.2, default to gcc 4.6.x,
  6377. Codebench arm/sh/x86 2012.03/09, Linaro 2012.08/09/10.
  6378. Libtirpc support for modern glibc variants. Toolchain on
  6379. target has been deprecated.
  6380. Initial Aarch64 support, Xtensa support re-added.
  6381. Infrastructure: Use shallow git clone when possible, use
  6382. tarballs rather than git URLs for github. Moved to pkgconf
  6383. rather than pkg-config. System directory added, default
  6384. skeleton/device tables moved. More than 1 post-build script
  6385. can now be used. output/target now contains a
  6386. THIS_IS_NOT_YOUR_ROOT_FILESYSTEM warning, to help people
  6387. understand how to (not) use it.
  6388. Manual has been reworked and extended.
  6389. Legal-info: Lots of package annotations, CSV file fixes,
  6390. _LICENSE / _REDISTRIBUTE splitup, per-package hooks.
  6391. Updated/fixed packages: acpid, alsa-lib, alsa-utils,
  6392. alsamixergui, attr, autoconf, automake, bash, bind, binutils,
  6393. bison, blackbox, bluez-utils, busybox, cairo, can-utils,
  6394. cifs-utils, cjson, cmake, collectd, connman, conntrack-tools,
  6395. coreutils, cups, cvs, dbus, dhcp, directfb, dmalloc, dnsmasq,
  6396. dropbear, e2fsprogs, ethtool, fbdump, feh, fftw, file,
  6397. flashrom, fluxbox, gdb, gdisk, gdk-pixbuf, genext2fs, gettext,
  6398. gnutls, gpsd, gqview, grep, gsl, gst-plugins-{bad,good},
  6399. hdparm, hiawatha, hostapd, input-tools, iproute2, ipset,
  6400. iptables, iw, json-c, kexec, kmod, lcdproc, leafpad, less,
  6401. libcurl, libdrm, libdvdnav, libdvdread, libffi, libfuse,
  6402. libglib2, libhid, liblockfile, libmad, libmbus, libmnl,
  6403. libnetfilter_{acct,conntrack,cthelper,cttimeout,queue},
  6404. libnfc, libnfc-llcp, libnfnetlink, libnl, libnspr, libnss,
  6405. libpcap, libplayer, libtool, libtorrent, liburcu, libv4l,
  6406. libxcb, libxml2, libxslt, links, linux-firmware, lm-sensors,
  6407. lmbench, lockfile-progs, logrotate, lshw, lsof,
  6408. lttng-babeltrace, lttng-tools, lua, luajit, mesa3d, microperl,
  6409. mii-diag, module-init-tools, mpc, mpd, mpg123, mplayer,
  6410. mtd-utils, mysql_client, nbd, ncurses, netatalk, netkitbase,
  6411. netkittelnet, netsnmp, newt, nfs-utils, openntpd, openssh,
  6412. openssl, opkg, patch, pciutils, pcre, php, poco, polarssl,
  6413. popt, portmap, pppd, procps, pulseaudio, python, python-nfc,
  6414. python-protobuf, qt, quota, rp-pppoe, rtorrent, sam-ba, samba,
  6415. scons, sdl_gfx, smartmontools, sqlite, squid, strace, sudo,
  6416. sylpheed, tcpdump, tremor, ttcp, tiff, unionfs,
  6417. usb_modeswitch, usbutils, util-linux, vala, valgrind, vpnc,
  6418. vsftpd, webkit, wget, which, wpa_supplicant, x11vnc, xapp_*,
  6419. xdriver_*, xenomai, xfont_*, xinetd, xl2tp, xlib_*, xlsclient,
  6420. xproto_*, xserver_xorg-server, xutil_util-macros, xz, zeromq
  6421. New packages: arptables, at91bootstrap3, boot-wrapper-aarch64,
  6422. ccid, cpanminus, cpuload, erlang, evtest, fb-test-apps,
  6423. fxload, gdbm, gnupg, googlefontdirectory, grantlee, gsl,
  6424. lcdapi, liblo, liblog4c-localtime, libtirpc, linux-pam,
  6425. lua-msgpack-native, macchanger, mtdev, mtdev2tuio, nfacct,
  6426. opus, opus-tools, pcsc-lite, perl, pkgconf, python-meld3,
  6427. python3, qemu, qextserialport, qtuio, rpcbind, schifra,
  6428. sconeserver, supervisor, time, ulogd, usb_modeswitch_data,
  6429. yasm
  6430. Deprecated packages: netkitbase, netkittelnet
  6431. Issues resolved (http://bugs.uclibc.org):
  6432. #807: [PATCH] samba - make iconv and smbd optional
  6433. #3049: binutils have a sysroot bug in ld
  6434. #5330: update vsftpd to 3.0.0
  6435. #5486: libglib2 build fails on: libs/libglib-2.0.so: undefined...
  6436. #5666: Fails to build python 2.7.2 for 2440 arm
  6437. 2012.08, Release August 31th, 2012
  6438. Updated/fixed packages: microperl, cups, luajit, rrdtool,
  6439. prboom, oprofile.
  6440. Added license information for: sqlite.
  6441. Changed the source URLs of all packages located on Sourceforge
  6442. in order to use the automatic mirror selection URL
  6443. downloads.sourceforge.net, and get rid of the
  6444. BR2_SOURCEFORGE_MIRROR option.
  6445. 2012.08-rc3, Released August 25th, 2012
  6446. Updated/fixed packages: libglib2, netsnmp, freetype, libfuse,
  6447. libpng, x11vnc, zlib, gpsd, ifplugd, bash, distcc.
  6448. Added license informations for: barebox, grub, syslinux,
  6449. uboot, xloader, yajl, zlib, zxing, alsa-lib, alsa-utils,
  6450. faad2, nano, fbdump, rsync, librsync, fontconfig,
  6451. inotify-tools,
  6452. 2012.08-rc2, Released August 15th, 2012
  6453. Updated/fixed packages: imagemagick, sudo, crosstool-ng.
  6454. Added license informations for: mxml, nanocom, empty, expat,
  6455. lua, lucjson, xinetd, cjson, luaexpat, lmbench, bwm-ng,
  6456. input-event-daemon, luajit, cgilua, copas, coxpcall,
  6457. luafilesystem, luasocket, rings, wsapi, xavante, libtpl,
  6458. avahi, busybox, libfcgi, ifplugd, libcgicc, libcurl,
  6459. libdaemon, libdnet, libgpg-error, libpcap, libpng, lighttpd,
  6460. mtd, openssl, psmisc, socat, spawn-fcgi.
  6461. Fixes to Microblaze external toolchains
  6462. configuration. Improvements of the pkg-stats
  6463. script. Out-of-tree fix for the graph-depends script.
  6464. Kernel headers version bump.
  6465. 2012.08-rc1, Released August 1st, 2012
  6466. Fixes all over the tree and new features.
  6467. Integration of a legal information reporting infrastructure,
  6468. which allows to generate detailed informations about the
  6469. licenses and source code of all components of a system
  6470. generated by Buildroot. License information will progressively
  6471. be added on packages.
  6472. Default configuration files added for Calao-systems USB-A9263
  6473. and Calao-systems USB-A9G20-LPW.
  6474. External toolchains update: allow download of a custom
  6475. toolchain, add Linaro 2012.05 and 2012.06 for ARM, add
  6476. Blackfin toolchain 2012R1-BETA1, add Sourcery CodeBench MIPS
  6477. 2011.09.
  6478. Allow the restriction of downloads to the primary site only.
  6479. This is useful for project developers who want to ensure that
  6480. the project can be built even if the upstream tarball
  6481. locations disappear.
  6482. Add a 'System configuration' choice to select between 3
  6483. different init systems: Busybox init, SysV init and Systemd
  6484. init.
  6485. Cleanups to the package infrastructure. The visible change to
  6486. developers is that $(eval $(call AUTOTARGETS)) is now $(eval
  6487. $(autotools-package)), and similarly for other package
  6488. infrastructures and host packages. Refer to the documentation
  6489. for details.
  6490. By default, automatic detection of the number of compilation
  6491. jobs to use, depending on the number of CPUs available.
  6492. Improvements to generate systems with static libraries only
  6493. (infrastructure and package fixes).
  6494. Add proper support in the Linux kernel package to generate
  6495. Device Tree Blobs or combined Device Tree / Kernel
  6496. images. This will be useful on Microblaze, PowerPC and ARM,
  6497. which are architectures making extensive use of the Device
  6498. Tree.
  6499. Updated/fixed packages: audiofile, autoconf, automake, axel,
  6500. barebox, bash, beecrypt, berkeleydb, bind, bison, bluez_utils,
  6501. bonnie, boost, busybox, bsdiff, bwm-ng, bzip2, cifs-utils,
  6502. cgilua, cmake, connman, conntrack-tools, crosstool-ng, cups,
  6503. dbus, dhcp, dnsmasq, e2fsprogs, eeprog, ethtool, faad2, fbv,
  6504. ffmpeg, freetype, gmp, gnutls, gob2, gpsd, grep,
  6505. gst-plugins-base, gst-plugins-good, gzip, hiawatha, hostapd,
  6506. htop, icu, igh-ethercat, imagemagick, input-tools, iostat,
  6507. iproute2, ipset, iptables, iw, kmod, less, libcap, libgci,
  6508. libconfig, libcurl, libelf, libevas, libeXosip2, libexif,
  6509. libfuse, libidn, libmad, libmbus, libmnl,
  6510. libnetfilter-conntrack, libnl, libnspr, libnss, libogg,
  6511. libosip2, libpcap, libpng, libroxml, liburcu, libusb, libxml2,
  6512. libxslt, lighttpd, linux, ltrace, lttng-libust, lttng-modules,
  6513. lttng-tools, lua, m4, memtester, midori, mii-diag,
  6514. module-init-tools, mpfr, mpg123, mrouted, msmtp, mtd, mxml,
  6515. mysql_client, nasm, nbd, ncurses, nfs-utils, opencv, openocd,
  6516. openssl, pciutils, php, polarssl, portaudio, pppd,
  6517. pthread-stubs, pulseaudio, qt, quagga, quota, radvd, rpm,
  6518. rrdtool, samba, sam-ba, scons, sdl_gfx, sdl_sound, speex,
  6519. sqlite, squashfs, squid, sudo, synergy, syslinux, systemd,
  6520. tar, tcpdump, tcpreplay, udev, usbutils, valgrind, wget,
  6521. wpa_supplicant, wsapi, xavante, xserver_xorg-server, zlib
  6522. New packages: cjson, collectd, dfu-util, dmidecode, elftosb,
  6523. fbterm, flashrom, freerdp, inadyn, libfreefare,
  6524. libnetfilter_cttimeout, libnfc, libnfc-llcp, liboping,
  6525. libtorrent, linphone, logsurfer, lshw, luacjson, luaexpat,
  6526. luajit, mediastreamer, mobile-broadband-provider-info, monit,
  6527. mxs-bootlets, nanocom, nss-mdns, ofone, omap-u-boot-utils,
  6528. opkg, ortp, owl-linux, python-id3, python-nfc, quota,
  6529. ramspeed, rtorrent, sound-theme-borealis,
  6530. sound-theme-freedesktop, sysprof, webrtc-audio-processing,
  6531. xinetd, zxing
  6532. Issues resolved (http://bugs.uclibc.org):
  6533. #1315: Allow use of older external toolchains without sysroot
  6534. support [won't fix]
  6535. #5276: Hiawatha needs to manage IPV6 if so [fixed]
  6536. #5360: buildroot fails when building "host-libglib2 2.30.2
  6537. Building" [won't fix, upstream problem]
  6538. #5384: Can't build packages relying on gets on newer glibc
  6539. [fixed]
  6540. 2012.05, Released May 30th, 2012:
  6541. Updated/fixed packages: busybox, netsnmp, pptp-linux
  6542. 2012.05-rc3, Released May 25th, 2012:
  6543. Minor fixes around the tree.
  6544. Infra: Fix for DOWNLOAD macro when using primary mirrors with
  6545. scp targets.
  6546. Toolchain: Kernel headers 3.2.18 / 3.3.7.
  6547. Updated/fixed packages: binutils, bison, busybox, cifs-utils,
  6548. gnuchess, gpsd, iperf, libmpeg2, mtd, ntfs-3g, oprofile,
  6549. xserver-xorg
  6550. 2012.05-rc2, Released May 18th, 2012:
  6551. Fixes all over the tree.
  6552. Toolchain: uClibc: Use 0.9.33.2, Crosstool-ng: fix gperf
  6553. dependency, disable decimal floats support, Linux 3.2.17 /
  6554. 3.3.6 kernel headers. Fix sysroot copy handling for toolchains
  6555. without C++ support.
  6556. Updated/fixed packages: apr, apr-util, ccache, dnsmasq,
  6557. heirloom-mailx, gdb, ndisc6, opencv, openssl, socat, vala
  6558. 2012.05-rc1, Released May 10th, 2012:
  6559. Fixes all over the tree and new features.
  6560. Use /etc/os-release for version info rather than
  6561. /etc/br-version.
  6562. CMake toolchain file moved to $HOST_DIR/usr/share/buildroot.
  6563. Apply-patches.sh: cleanups, archived patches handling fixes,
  6564. support series files.
  6565. Defconfigs: beaglebone, mx53qsb, pandaboard, qemu configs for
  6566. arm-vexpress/microblaze/ppc-mpc88544ds, use 3.2.x for
  6567. atngw100, use 3.3.x for qemu configs.
  6568. Menu structure: Libraries moved out of multimedia section
  6569. Atom processor support. Prescott fix, blackfin ABI fix,
  6570. Microblaze architecture support (using ext toolchain). Cleanup
  6571. architecture names, deprecate Xtensa support.
  6572. Toolchain: Add GCC 4.4.7, 4.6.3, 4.7.0. uClibc 0.9.33.1,
  6573. default to uClibc 0.9.33.x, enable
  6574. UCLIBC_SUPPORT_AI_ADDRCONFIG by default, static and 64bit
  6575. fixes for external toolchains, linaro ext toolchains, new
  6576. sourcery codebench ext toolchains, GDB 7.4.1, crosstool-ng
  6577. 1.15.2.
  6578. Bootloaders: U-Boot: add 2012.04.01, SPL and u-boot.img
  6579. support. Barebox: add 2012.04, remove 2011.12.
  6580. Updated/fixed packages: alsa-lib, alsa-utils, at, atk, avahi,
  6581. barebox, berkeleydb, bind, bluez_utils, boost, busybox,
  6582. can-utils, ccache, cifs-utils, coreutils, cups, dbus, dhcp,
  6583. directfb, dnsmasq, doom-wad, dosfstools, e2fsprogs, expat,
  6584. fakeroot, feh, ffmpeg, file, fis, freetype, gamin, gawk,
  6585. gdk-pixbuf, gettext, giblib, glib-networking, gmp, gnutls,
  6586. gpsd, grep, gstreamer, gst-plugins-{bad,base,good,ugly},
  6587. haserl, hdparm, imagemagick, iproute2, iptable, iw, kexec,
  6588. kmod, lame, libaio, libarchive, libatomic_ops, libconfig,
  6589. libcurl, libdvdnav, libdvdread, libedbus, libethumb, libffi,
  6590. libfuse, libglib2, libgtk2, libhid, libmad, libmbus, libmpeg2,
  6591. libnl, libplayer, libpng, libsigc, libsoup, libupnp, liburcu,
  6592. libusb, libusb-compat, libxml2, libxml-parser-perl, libxslt,
  6593. lighttpd, linux-firmware, linux-fusion, lite, lsof, ltrace,
  6594. lttng-libust, lua, m4, makedevs, microperl, mpd, mpfr, mpg123,
  6595. mrouted, mtd, mysql_client, nbd, ncftp, ncurses, neon,
  6596. netsnmp, network-manager, nfs-utils, ngrep, ntfs-3g, openntpd,
  6597. openssh, openssl, parted, pango, pcre, php, pixman, poco,
  6598. psmisc, pulseaudio, python, qt, quagga, radvd, rpm, rsync,
  6599. ruby, samba, sam-ba, sane-backends, sawman, screen, sdl_net,
  6600. smartmontools, speex, sqlite, squashfs3, squid, sshfs, sudo,
  6601. syslinux, sysstat, taglib, tcpdump, tftp-hpa, transmission,
  6602. tiff, tinyhttpd, uboot-tools, udev, uemacs, unionfs, usbutils,
  6603. util-linux, vala, valgrind, vim, vsftpd, wget, wipe,
  6604. wpa_supplicant, xdriver_xf86-{input-vmmouse,video-fbdev},
  6605. xfsprogs, zlib
  6606. New packages: apr, apr-util, audiofile, bellagio,
  6607. conntrack-tools, empty, fmtools, glib-networking,
  6608. heirloom-mailx, hiawatha, latencytop, lcdproc, libcap-ng,
  6609. libdmtx, libfcgi, libnetfilter_conntrack, libnfnetlink,
  6610. libtpl, localedef, minicom, msmtp, ndisc6, netatalk,
  6611. ocf-linux, openswan, parted, polarssl, protobuf, read-edid,
  6612. socketcand, stress, systemd, ushare, zeromq
  6613. Deprecated packages: ttcp
  6614. Removed packages: ntfsprogs
  6615. Issues resolved (http://bugs.uclibc.org):
  6616. #2353: [lua] fix build with 2010.08-rc1
  6617. #2503: Microperl fails build on MIPSel or with Fedora13.x86_64
  6618. #2557: [PATCH] mkfs.xfs complains about missing libxfs.so.0
  6619. #2881: Can't build project statically with external toolchain
  6620. #3751: MIPS: fix BR2_GCC_TARGET_ABI for MIPS n64
  6621. #4808: ccache may build against wrong zlib
  6622. #4880: New package lcdproc
  6623. #4886: New package protobuf
  6624. #4892: build fails on ltp-testsuite-20101031/testcases/kernel/fs/...
  6625. #4898: * make: [target-finalize] Error 1 (ignored)*
  6626. #4985: Qt 4.7.4 build crashes with Linux 2.6.29
  6627. #4970: udev 181 fails to build if kernel version 3.3 is selected
  6628. #5018: dialog broken: exits with assert in uClibc
  6629. #5102: qt package moc, uic, rcc read from wrong place
  6630. #5144: Patch to fix ixon bug in uemacs
  6631. #5198: Line graphics output is broken in GNU Screen
  6632. #5204: Missing terminfo file(s) for GNU screen terminal type
  6633. 2012.02, Released February 29th, 2012:
  6634. Updated/fixed packages: libecore
  6635. 2012.02-rc3, Released February 27th, 2012:
  6636. Fixes all over the tree.
  6637. Automatic host dependencies handling for cmake packages
  6638. fixed. Customize package deprecated as using a post-build
  6639. script is nowadays the preferred way of adding extra stuff to
  6640. the rootfs.
  6641. Linux-headers 3.0.x / 3.2.x stable version bumped.
  6642. QEMU defconfigs updated to 3.2.x kernels and readme fixed.
  6643. Updated/fixed packages: dropbear, ffmpeg, libpng
  6644. 2012.02-rc2, Released February 19th, 2012:
  6645. Fixes all over the tree.
  6646. Toolchain: uClibc: Added upstream post-0.9.33 fixes, Bump
  6647. linux-headers 3.0.x / 3.2.x stable versions.
  6648. Documentation: Added makedev / <pkg>_DEVICES /
  6649. <pkg>_PERMISSIONS documentation.
  6650. Updated/fixed packages: busybox, ffmpeg, gst-dsp, libecore,
  6651. libvncserver, mxml, python.
  6652. 2012.02-rc1, Released February 12th, 2012:
  6653. Fixes all over the tree and new features.
  6654. Toolchain: Default to GCC 4.5.x, add binutils 2.22. Java
  6655. support removed, Powerpc SPE ABI support. GDB ELF support fix,
  6656. GDB 7.4, crosstool-NG 1.13.4.
  6657. Gentargets: scp and mercurial support.
  6658. Autotools: derive host dependencies from target by default.
  6659. Packages can now declare device table snippets.
  6660. Host utilities menu with commonly used host tools.
  6661. defconfigs: qemu configs for x86-64, mips and sparc, at91
  6662. defconfigs now use modern U-Boot / mainline Linux, added
  6663. lpc3250 defconfigs.
  6664. uClibc: remove 0.9.30, backport unshare() support, add
  6665. 0.9.32.1 / 0.9.33, use same config for ctng.
  6666. Bootloaders: U-Boot: add 2011.12, remove 2010.xx versions,
  6667. Barebox: add 2012.01/02, remove 2011.10/11, LPC32xx
  6668. bootloaders added.
  6669. Various manual updates. Release tarballs now contain generated
  6670. manual in text/html/pdf formats.
  6671. Buildroot now calls the stop function of scripts in
  6672. /etc/init.d at shutdown.
  6673. Updated/fixed packages: atk, avahi, barebox, bash, beecrypt,
  6674. bind, binutils, bison, bluez_utils, bzip2, busybox, cairo,
  6675. ccache, cdrkit, coreutils, cramfs, dbus, dbus-glib, dialog,
  6676. diffutils, dmalloc, dropbear, e2fsprogs, ebtables, ed,
  6677. ethtool, expat, ffmpeg, file, fis, flex, fluxbox, fontconfig,
  6678. freetype, gawk, grep, gst-dsp, gst-ffmpeg, gst-plugins-base,
  6679. hdparm, hostapd, htop, i2c-tools, icu, iproute2, ipsec-tools,
  6680. ipset, iptables, iw, jpeg, kismet, lame, libcap, libcgi,
  6681. libev, libeXosip2, libffi, libftdi, libgpg-error, libgtk2,
  6682. libidn, libmms, libmnl, libmodbus, libnl, libogg, libosip,
  6683. libpcap, libpng, libraw1394, libroxml, libusb, libusb-compat,
  6684. libv4l, libvorbis, libxcb, libxml-parser-perl, libxslt,
  6685. lighttpd, links, lm-sensors, lua, m4, module-init-tools, mpc,
  6686. mesa3d, mpd, mpfr, mplayer, mtd-utils, nano, nbd, ncurses,
  6687. netperf, netsnmp, ntp, opencv, openocd, openssl, openvpn, orc,
  6688. pciutils, pcre, pixman, pkg-config, poco, popt, proftpd,
  6689. python, python-serial, qt, ruby, samba, sdl, sdparm,
  6690. squashfs3, sshfs, sqlite, squid, sudo, syslinux, tcl, tcpdump,
  6691. ti-utils, tiff, tremor, uboot, uboot-tools, udev, usbmount,
  6692. util-linux, vala, valgrind, vsftpd, wpa_supplicant,
  6693. xapp_{bdftopcf,mkfontdir,mkfontscale,xkbcomp,xcursorgen,xinit},
  6694. xapp_xinput, xapp_xman, xcb-util, xdm, xenomai,
  6695. xf86-video-sis, xfont_{encodings,font-util},
  6696. xlib_lib{fontenc,X11,Xau,Xcursor,Xdmcp,Xfixes,Xfont,Xrender},
  6697. xlib_libxkbfile, xterm, xutil_makedepend, yajl
  6698. New packages: boost, connman, dstat, expedite, explorercanvas,
  6699. feh, flot, giblib, igh-ethercat, imlib2, jquery,
  6700. jquery-sparklines, jquery-validation, jsmin, kmod, libecore,
  6701. libedbus, libedje, libeet, libeina, libelementary, libesmtp,
  6702. libethumb, libevas, libical, libmbus, liboauth, liburcu,
  6703. libvncserver, linux-firmware,
  6704. lttng-{babeltrace,libust,modules,tools}, NetworkManager,
  6705. open2300, python-distutilscross, python-dpkt,
  6706. python-netifaces, python-pygame, python-setuptools, rt-tests,
  6707. sam-ba, sane-backends, sqlcipher, transmission, unionfs,
  6708. xf86-input-tslib, xinput-calibrator
  6709. Issues resolved (http://bugs.uclibc.org):
  6710. #743: Add Transmission bit torrent option to buildroot
  6711. #755: Add Boost libraries as a package
  6712. #2299: Add crypto support to libsoup
  6713. #2617: Pixman 0.19.2 & Cairo 1.10.0
  6714. #3403: libgpg-error: bump to version 1.10
  6715. #3409: libgpg-error: download from gnupg.org
  6716. #3421: nano: make tiny flag optional
  6717. #3691: New EFL packages
  6718. #4664: Cannot patch AT91Bootstrap
  6719. #4700: setlocalversion not working for combination svn/ubuntu 11.10...
  6720. #4760: Qt: add host-pkg-config to dependency-list
  6721. 2011.11, Released November 30th, 2011:
  6722. Fixes all over the tree.
  6723. Bump kernel headers / default Linux version to 3.1.4.
  6724. Updated/fixed packages: ruby
  6725. 2011.11-rc3, Released November 26th, 2011:
  6726. Fixes all over the tree.
  6727. Toolchain: Fix gdb dependencies for external toolchains,
  6728. adjust uClibc patches so they don't confuse modern versions of
  6729. patch, bump crosstool-ng, kernel headers and linux versions.
  6730. Updated/fixed packages: busybox, freetype, mplayer, opencv,
  6731. php, rsyslog, ruby, thttpd, xapp_xf86dga
  6732. Issues resolved (http://bugs.uclibc.org):
  6733. #4357: Prevent patch commands from accessing source control
  6734. #4369: Fix permissions on untared lsof archive
  6735. 2011.11-rc2, Released November 18th, 2011:
  6736. Fixes all over the tree and new features.
  6737. Updated asciidoc documentation
  6738. Toolchain: Bumped 3.x stable kernel headers, use wget in
  6739. crosstool-ng as well, bump crosstool-ng version, gdb fixes,
  6740. uClibc sparc fix.
  6741. Updated/fixed packages: distcc, file, gst-plugins-bad, libxcb,
  6742. mplayer, newt, qt, rpm, rrdtool, tar, tftpd
  6743. Issues resolved (http://bugs.uclibc.org):
  6744. #3355: mplayer fails to build
  6745. #4021: uClibc: undefined reference to `__GI___errno_location'
  6746. #4297: Qt's qmake uses wrong pkg-config
  6747. 2011.11-rc1, Released November 11th, 2011:
  6748. Fixes all over the tree and new features.
  6749. Moved misc scripts and support stuff to support/. Renamed
  6750. patch-kernel.sh to support/scripts/apply-patches.sh.
  6751. Documentation: Moved to asciidoc format, make targets to
  6752. generate text/html/pdf/epub output added.
  6753. Defconfigs: Qemu configs updated to 3.1 kernel and readmes
  6754. added.
  6755. Bootloaders: Add support for custom git tree / tarballs for
  6756. barebox, similar to how it's handled for u-boot. Clean up
  6757. menuconfig options.
  6758. Toolchain: Update external codesourcery toolchain download
  6759. URLs after Codesourcery got bought by Mentor, add x86
  6760. toolchain, update toolchain versions and optimize toolchain
  6761. sysroot copying. Fix uClibc 0.9.32 builds for e500 PPC,
  6762. updated GDB versions / download URLs. Binutils
  6763. libbfd/libopcodes static/dynamic linking fix. GCC 4.6.2 added,
  6764. use ctng-1.13.0.
  6765. Package infrastructure: Support for local packages /
  6766. overrides, package dir / name arguments dropped from
  6767. {GEN,AUTO,CMAKE}TARGETS.
  6768. Linux: Kernel extensions infrastructure support, Xenomai +
  6769. RTAI support.
  6770. Updated/fixed packages: acpid, bind, busybox, dash, dbus,
  6771. dbus-glib, directfb, dnsmasq, drystone, e2fsprogs, ethtool,
  6772. fakeroot, fbdump, file, freetype, fuse, gamin, gmp, gmpc,
  6773. gnutls, gob2, gst-plugins-{base,bad,good,ugly}, gstreamer,
  6774. hostapd, ifplugd, imagemagick, intltool, ipsec-tools, ipset,
  6775. iptables, iw, jpeg, kexec, leafpad, less, libargtable2, libao,
  6776. libconfuse, libcuefile, libcurl, libdaemon, libevent,
  6777. libglib2, libiconv, libmpd, libreplaygain, libroxml,
  6778. libsamplerate, libsndfile, libsoup, libsvgtiny, libtool,
  6779. libxcb, lighttpd, links, linux-fusion, lite, lrzsz, lsof, lzo,
  6780. lzop, makedevs, mcookie, mpg123, mpd, mpfr, mtd, musepack,
  6781. mutt, mysql_client, ncftp, ncurses, neon, netcat, netsnmp,
  6782. ntfs-3g, ntfsprogs, ntp, openntpd, openssh, openssl, oprofile,
  6783. orc, pciutils, psmisc, python, qt, quagga, radvd, rpm, rsync,
  6784. samba, sawman, sdl_sound, smartmontools, sqlite, squid,
  6785. stunnel, sudo, sylpheed, sysstat, taglib, tar, tcpreplay,
  6786. tslib, usbutils, util-linux, valgrind, wget, whetstone, which,
  6787. wpa-supplicant, xdata_xcursor-themes, xmlstarlet, xterm
  6788. New packages: bluez-utils, cifs-utils, fftw, fluxbox, json-c,
  6789. libev, libftdi, libgeotiff, libmodbus, libplayer, live555,
  6790. ngrep, noip, opencv, openocd, picocom, poco, portaudio,
  6791. pulseaudio, pv, rtai, vala, xenomai.
  6792. Removed packages: liboil, sfdisk, swfdec, webif
  6793. Issues resolved (http://bugs.uclibc.org):
  6794. #505: live555: new package
  6795. #507: Enable live and tv options in MPlayer-1.0rc2
  6796. #531: let e2fsprogs package to export headers to staging dir if needed
  6797. #1171: Linuxthreads new cannot find sysdep.h
  6798. #1357: Add bluez to buildroot system
  6799. #2107: New package: input-event-daemon
  6800. #2599: New package: orc (Oil Runtime Compiler)
  6801. #2605: gstreamer: Update to 0.10.30
  6802. #2677: introducing util-linux-ng as replacement for util-linux
  6803. #2917: Qt: Add declarative module
  6804. #3145: jffs2 image generation fails
  6805. #3271: netperf-2.4.5 fails to compile
  6806. #3331: xdata_xcursor-themes depends on xcursorgen
  6807. #3343: Add file:// download SITE_METHOD
  6808. #3391: Add support for specifying an external kernel tree
  6809. #3631: Error while compiling with Xorg
  6810. #3709: oprofile doesn't build for mipsel
  6811. #3925: midori not getting compile
  6812. #4045: Add support for downloading i386 toolchains from codesourcery
  6813. #4165: lrzsz-fix-symlink-at-rebuild.patch
  6814. #4171: makedevs-unused-but-set-variable.patch
  6815. #4183: Codesourcery toolchain download site has changed
  6816. #4231: libneon.so: undefined reference to `SSL_SESSION_cmp'
  6817. #4381: Add option to lighttpd to enable Lua support
  6818. #4387: Make sure that dest dir exists before installing mtd files
  6819. 2011.08, Released August 31th, 2011:
  6820. Fixes all over the tree.
  6821. Toolchain: Fix codesourcery 2009q3 ARM download, Linux 3.0.4
  6822. kernel headers.
  6823. Updated/fixed packages: ipset, python
  6824. 2011.08-rc2, Released August 29th, 2011:
  6825. Fixes all over the tree.
  6826. Toolchain: crosstool-NG 1.12.1, use binutils 2.21 on
  6827. mips/sh/older uClibc, disallow uClibc 0.9.32 on avr32/sh
  6828. (broken).
  6829. Defconfigs: kernel updates, fix mini2440 serial port config,
  6830. remove old arm toolchain configs.
  6831. Bootloaders: Fix grub patching, add barebox-{n,x,menuconfig}
  6832. targets similar to linux/busybox.
  6833. Updated/fixed packages: barebox, directfb, libsoup,
  6834. libxml-parser-perl, mtd, ncurses, python, ti-utils, udev,
  6835. usbmount, util-linux, xfont_font-misc-misc
  6836. Issues resolved (http://bugs.uclibc.org):
  6837. #3685: ncurses installation hangs due to old version of tic
  6838. #4093: Grub fails to install bz2 patch after conversion to...
  6839. 2011.08-rc1, Released August 4th, 2011:
  6840. Fixes all over the tree and new features.
  6841. Toolchain: uClibc 0.9.32 / NPTL support, 0.9.29 removed,
  6842. ext-toolchain-wrapper improvements, improved non-MMU
  6843. support. GCC 4.3.6 / 4.6.1.
  6844. GENTARGETS infrastructure extended to cover bootloaders and
  6845. Linux kernel as well. Options to retrive Linux/U-Boot from a
  6846. custom git repo instead of upstream tarballs.
  6847. Support for Linux 3.x and release candidate tarballs.
  6848. X-Loader bootloader for omap added.
  6849. Make source/external-deps now also works for external
  6850. toolchains / crosstool-ng backend.
  6851. Updated/fixed packages: autoconf, berkeleydb, bind, binutils,
  6852. bmon, bridge-utils, busybox, cmake, dbus, dbus-glib,
  6853. e2fsprogs, ethtool, ffmpeg, gst-plugins-{bad,base,good,ugly},
  6854. gvfs, hostapd, iproute2, iptables, iw, jpeg, lame, libarchive,
  6855. libdnet, libdrm, libgcrypt, libgtk2, libmpeg2, libpng,
  6856. libsoup, lighttpd, linux-fusion, lzo, midori, mtd-utils,
  6857. nfs-utils, openvpn, oprofile, orc, pkg-config, proftpd, qt,
  6858. ruby, samba, sdl, shared-mime-info, sudo, sqlite, squid,
  6859. synergy, udev, usbmount, usbutils, util-linux, valgrind,
  6860. webkit, xorg-xserver, xz, zlib
  6861. New packages: acl, attr, ebtables, gnutls, inotify-tools,
  6862. ipset, libargtable2, libiqrf, libmnl, libnspr, libnss,
  6863. libroxml, libyaml, live555, mxml, orc, rsyslog, sredird,
  6864. statserial, stunnel, ti-utils, uboot-tools, yajl
  6865. Deprecated packages: liboil, swfdec
  6866. Removed packages: hal
  6867. Issues resolved (http://bugs.uclibc.org):
  6868. #3559: libnspr: Add new package
  6869. #3595: patch to add libroxml
  6870. #3565: libnss: Add new package
  6871. #3583: xfonts_font-adobe-100dpi fails due to missing map file
  6872. #3649: [PATCH] Add mapdir to existing pkg-config patch
  6873. #3907: 2011.05 - Qt 4.7.3 not building on ARM
  6874. #3961: Nfs-utils: Remove SUSv3-function index
  6875. #3985: "help" target's defconfig list needs sort
  6876. #3997: bump libroxml to v2.1.0
  6877. 2011.05, Released May 27th, 2011:
  6878. Updated/fixed packages: makedevs
  6879. 2011.05-rc2, Released May 24th, 2011:
  6880. Fixes all over the tree.
  6881. Toolchain: Code sourcery ARM 2009q1 download URL fixed /
  6882. 2009q3 external toolchains added. Crosstool-NG bumped to
  6883. 1.11.3, eglic/glibc configuration fixes. Linux kernel 2.6.38.x
  6884. bumped to 2.6.38.7.
  6885. Updated/fixed packages: bind, fakeroot, kbd, psmisc, qt
  6886. 2011.05-rc1, Released May 18th, 2011:
  6887. Fixes all over the tree and new features.
  6888. External toolchain improvements: We now build a binary
  6889. toolchain wrapper and install it into HOST_DIR/usr/bin, which
  6890. enforces the correct compiler arguments, making an external
  6891. toolchain as easy to use outside of Buildroot as the internal
  6892. ones are. This also brought a cleanup of CFLAGS, making the
  6893. Buildroot build output easier to read.
  6894. Rootfs device handling improvements: Choice between static
  6895. /dev, devtmpfs and devtmpfs with either mdev or udev.
  6896. Toolchain: More preconfigured codesourcery external
  6897. toolchains, improved Crosstool-NG support, fix for GCC
  6898. snapshot versions, GCC 4.4.6 / 4.5.3, experimental GCC 4.6.0
  6899. support, target-GCC fixes, uClibc fixes, 0.9.32-rc3 support.
  6900. Bootloaders: U-boot 2011.03, Barebox 2011.05.0
  6901. Linux: support for custom kernel image targets, E.G. for
  6902. powerpc builds with embedded device trees.
  6903. Misc fixes for qemu defconfigs, ensuring correct serial
  6904. terminal setup out of the box.
  6905. Misc gentarget / autotools handling fixes.
  6906. Updated/fixed packages: alsa-lib, alsa-utils, alsamixergui,
  6907. atk, avahi, bind, bison, busybox, copas, dbus-glib, dhcp,
  6908. dhcpdump, dnsmasq, dropbear, ethtool, fakeroot, ffmpeg, file,
  6909. gamin, gnuconfig, gst-ffmpeg, gst-plugins-good, gtk2-engines,
  6910. haserl, hostapd, icu, imagemagick, iproute2, iw, kismet, less,
  6911. libcap, libdnet, libglade, libglib2, libgtk2, libnl, libpng,
  6912. libxml2, libxml2, libxslt, lighttpd, lockfile-progs, makedevs,
  6913. midori, mpg123, mpc, mpd, mpfr, mplayer, mtd-utils, ncurses,
  6914. netsnmp, openssh, openssl, openvpn, pango, pkg-config, popt,
  6915. procps, proftpd, qt, quagga, readline, rsync, samba, sdl,
  6916. socat, squashfs, squid, sudo, tslib, udev, usbutils, webkit,
  6917. wpa_supplicant, xerces, xfont_font-misc-misc, xlib_libX11,
  6918. xlib_libXfont, xlib_xtrans, xorg-server, xterm, xz
  6919. New packages: bonnie++, can-utils, gdisk, htop,
  6920. input-event-daemon, libexif, libraw, libv4l, ngircd
  6921. Removed packages: festival
  6922. Issues resolved (http://bugs.uclibc.org):
  6923. #2131: Add OpenMP support to the toolchain
  6924. #3379: New Package: bonnie++
  6925. #3445: Not working openssl-10.0.0d on 386sx
  6926. #3451: fakeroot package: wrong FAKEROOT_SITE variable
  6927. #3457: alsamixergui: broken URL
  6928. #3475: Calling sync on large filesystems when not always necessary
  6929. #3511: make busybox-menuconfig does not download busybox package
  6930. #3541: Quotes in the top Makefile:217 break buildroot/kernel config...
  6931. #3571: u-boot: fw_printenv does not build
  6932. #3643: popt source url is not responding
  6933. #3733: dropbear: make zlib optional
  6934. #3757: Buildroot can't build mplayer with libmad
  6935. 2011.02, Released February 28th, 2011:
  6936. Fixes all over the tree.
  6937. Updated/fixed packages: alsamixergui, avahi, ffmpeg, icu, mpd,
  6938. nuttcp, qt, slang, squashfs, sylpheed, synergy, xerces
  6939. Deprecated packages: devmem2, webif
  6940. Issues resolved (http://bugs.uclibc.org):
  6941. #2911: Qt: Disable qt3support-option, if gui-module isn't selected
  6942. #3259: Unable to build webkit (on arm)
  6943. #3295: slang fails to build on mipsel
  6944. #3325: ffmpeg fails to build
  6945. 2011.02-rc2, Released February 24th, 2011:
  6946. Fixes all over the tree.
  6947. Festival packages marked as broken. Unless someone steps up
  6948. to support them, they will be removed during the 2011.05
  6949. development cycle.
  6950. Updated/fixed packages: atk, avahi, bind, cairo, dbus,
  6951. enchant, fakeroot, gmpc, gpsd, gvfs, iperf, jpeg, libarchive,
  6952. libcgicc, libdaemon, libdrm, libevent, libgail, libglib2,
  6953. libgpg-error, libmicrohttpd, librsvg, libsoup, libxcp,
  6954. makedevs, matchbox-fakekey, matchbox-startup-monitor, mdadm,
  6955. metacity, mpd, nasm, nfs-utils, olsr, openssl, popt,
  6956. pthread-stubs, quagga, rpm, samba, sdl, sdl_gfx, sdl_image,
  6957. sdl_mixer, sdl_sound, sdl_ttf, squashfs, synergy, taglib,
  6958. tcpreplay, tiff, wpa_supplicant, xcb-util,
  6959. xdriver_xf86-input-{acepad,aiptek,evdev,joystick,keyboard},
  6960. xdriver_xf86-input-{mouse,synaptics,void},
  6961. xdriver_xf86-video-{chips,dummy,geode,glide,intel,nv,wsfb},
  6962. xlib_lib{ICE,SM,XScrnSaver,Xau,Xcursor,Xdmcp,Xi,Xinerama},
  6963. xlib_lib{Xrandr,Xt,Xtst,Xxf86dga,Xxf86vm,dmx,fontenc,pciaccess},
  6964. xserver_xorg-server, xz
  6965. Removed packages: ace_of_penguins, vlc
  6966. Issues resolved (http://bugs.uclibc.org):
  6967. #3205: Failing chmod when running "make" in buildroot (openssl)...
  6968. #3277: quagga fails to build with SNMP support
  6969. #3283: See why nfs-utils needs fakeroot, and convert to autotools
  6970. #3307: synergy fails to build due to missing XTest library
  6971. 2011.02-rc1, Released February 14th, 2011:
  6972. Fixes all over the tree and new features.
  6973. External toolchain improvements: clarification of the options,
  6974. and introduction of the toolchain profile concept, for
  6975. well-known toolchains. Buildroot is now capable of
  6976. automatically downloading and extracting well-known toolchains
  6977. (for the moment, CodeSourcery ARM, PowerPC, MIPS and SuperH
  6978. toolchains are supported). Crosstool-NG backend updated and
  6979. improved.
  6980. Complete rework of how hardware boards are supported.
  6981. Each board now only has a single defconfig file, and all
  6982. board-specific options have been removed. See
  6983. docs/buildroot.html#board_support for details.
  6984. Added support for the following boards: Mini2440, Qemu ARM
  6985. Versatile, Qemu MIPSel Malta, Qemu PowerPC G3beige, Qemu SH4
  6986. r2d and Qemu x86. The Qemu boards support allows to easily
  6987. build systems that are known to work under Qemu.
  6988. Initial support for Blackfin processors.
  6989. Staging directory moved into $(O)/host/usr/<tuple>/sysroot, in
  6990. preparation for support of SDK. For the same reason, the
  6991. toolchain binaries (cross-compiler and other related tools)
  6992. are now installed in $(O)/host/usr/bin/. The cross pkg-config
  6993. now also automatically returns correct values for cross
  6994. compilation, without needing any environment variables to be
  6995. set.
  6996. Ccache support reworked. Now used for both host and target
  6997. compilation, and cache is stored in ~/.buildroot-ccache.
  6998. Toolchain: uClibc 0.9.32-rc2, several components moved to
  6999. normal AUTOTARGET packages.
  7000. Generic cmake infrastructure, similar to the existing
  7001. GENTARGETS/AUTOTARGETS.
  7002. Support for bzr downloads, next to the existing git/svn support.
  7003. Kconfig infrastructure rebased against 2.6.38-rc3, bringing
  7004. misc fixes. 'xconfig' now uses Qt4 rather than Qt3.
  7005. EXT2 file system size handling improved, UBI image support, fs
  7006. configuration options cleanup, U-Boot/Barebox version bumps.
  7007. Updated/fixed packages: alsa-utils, at, autoconf, automake,
  7008. bash, binutils, bison, busybox, bzip2, cdrkit, cloop, cmake,
  7009. coreutils, cups, dbus, dbus-python, dhcp, directfb,
  7010. direcfb-examples, dmalloc, dnsmasq, dosfstools, e2fsprogs, ed,
  7011. fbset, ffmpeg, findutils, flac, freetype, gdk-pixbuf, gmp,
  7012. grep, gperf, gst-ffmpeg, gst-plugins-bad, gst-plugins-base,
  7013. gst-plugins-good, gst-plugins-ugly, gstreamer, gvfs, hdparm,
  7014. hostapd, i2c-tools, icu, imagemagick, input-tools, iproute2,
  7015. iptables, iw, jpeg, kexec, libaio, libart, libcap, libconfig,
  7016. libfuse, libglib2, libidn, libmad, libogg, libpcap, libpng,
  7017. libsndfile, libtheora, libtool, libusb-compat, libvorbis,
  7018. libxcb, libxml2, libxslt, links, linux-fusion, lm-sensors,
  7019. lsof, ltp-testsuite, ltrace, lvm2, lzo, m4, makedevs,
  7020. memtester, mesa3d, mii-diag, mpc, mpfr, mpg123, mplayer,
  7021. mrouted, mtd-utils, nano, netperf, netplug, ntfs-3g, ntp,
  7022. openssh, openssl, openvpn, oprofile, pango, patch, pciutils,
  7023. php, pkgconfig, portmap, psmisc, python, qt, rsync, ruby,
  7024. sawman, screen, sdl_gfx, sdl_sound, smartmontools, socat,
  7025. sqlite, squid, sshfs, sstrip, sysklogd, sysstat, sysvinit,
  7026. tar, tcpdump, tslib, udev, usbutils, vim, vtun, webkit, wipe,
  7027. x11vnc, xapp_xlogo, xcb-proto, xfont_font-util,
  7028. xkeyboard-config, xlib_libX11, xz, zlib
  7029. New packages: dhrystone, dsp-tools, faad2, fbgrab, gst-dsp,
  7030. gst-omapfb, irda-utils, lame, libao, libcue, libcuefile,
  7031. libffi, libhid, libreplaygain, libsamplerate, libsigc++,
  7032. lsuio, mpd, musepack, python-mad, python-serial, rsh-redone,
  7033. sdparm, tidsp-binaries, vorbis-tools, wavpack, whetstone,
  7034. xl2tp, xmlstarlet
  7035. Removed packages: hotplug, l2tp, libfloat, microcom,
  7036. ng-spice-rework
  7037. Issues resolved (http://bugs.uclibc.org):
  7038. #267: The make target: cross fails because toolchain_build_...
  7039. #415: Berkeley DB: mut_pthread.o: relocation R_X86_64_32 against...
  7040. #561: ltp-testsuite failed to install
  7041. #1447: Installing gfortran on PowerPC
  7042. #1651: Build fail caused by ccache in module-init-tools
  7043. #1681: Cross-compiled binaries shouldn't be installed into staging
  7044. #1723: [PATCH] axel: convert to generic package infrastructure and...
  7045. #1735: [PATCH] mplayer: convert to autotools infrastructure
  7046. #2551: [PATCH] native toolchain in the target filesystem fails
  7047. #2623: buildroot-snapshot-20100922 fails when compiling development...
  7048. #2647: makedevs package lacks support for 16-bit major/minor numbers
  7049. #2371: QT MYSQL Module does not build when MySQL installed on the host
  7050. #2839: compile fails in various packages with a odd message "error:...
  7051. #2887: tar "buffer overflow detected" error
  7052. #2893: Broken "make source" with external toolchain
  7053. #2905: Qt: Speed up compilation, if gui-module isn't selected
  7054. #2929: genext2fs: couldn't allocate a block (no free space)
  7055. #2935: Ntpdate isn't installed
  7056. #2965: Broken linkage to xkbcomp (blocking X server startup)
  7057. #2983: xlib_libX11 build failed
  7058. #3007: kexec doesn't build: Missing regdef.h file
  7059. #3085: Init scripts are not compatible with sysVinit (when busybox...
  7060. #3103: make external-deps wants to download gcc-.tar.bz2 when...
  7061. #3109: abnormal `make busybox-menuconfig`
  7062. #3115: How about board specific makefiles?
  7063. #3169: python patch has typo, aborts build in scenario
  7064. #3181: dhcp.mk copies S80dhcp-server to etc/init.d, not etc/init.d/
  7065. 2010.11, Released November 30th, 2010:
  7066. Fixes all over the tree.
  7067. Updated/fixed packages: libgcrypt, qt, squid, sysstat, tcpdump,
  7068. xserver-xorg
  7069. Issues resolved (http://bugs.uclibc.org):
  7070. #2773: squid with openssl support needs openssl on the host
  7071. #2857: OBJDUMP definition is missing from TARGET_CONFIGURE_OPTS
  7072. 2010.11-rc2, Released November 25th, 2010:
  7073. Fixes all over the tree.
  7074. Add support for LEON Sparc architecture variants. Fix make
  7075. source/external-deps for host packages.
  7076. Updated/fixed packages: bash, bind, busybox, dialog, gpsd,
  7077. libglib2, libcurl, libmad, lrzsz, midori, module-init-tools,
  7078. mtd-utils, openssh, openssl, pciutils, php, qt, sqlite,
  7079. sysstat, webkit, zlib
  7080. Issues resolved (http://bugs.uclibc.org):
  7081. #759: Sysstat build broken without libintl
  7082. #2479: host-module-init-tools 3.11 fails to build
  7083. #2725: Buildroot overrides kernel config
  7084. #2785: mtd-utils build fails due to missing libmtd
  7085. #2791: Added PHP-Process Control to the PHP-Package
  7086. #2797: pciutils dependencies on zlib not taken into account
  7087. #2809: failed to compile libglib2
  7088. #2821: [PATCH] Patch for JavaScriptCore in QtWebKit module
  7089. #2827: qt-4.7.0-pthread_getattr_np.patch invalid for qt 4.6...
  7090. #2833: Failed to compile webkit without X11
  7091. 2010.11-rc1, Released November 8th, 2010:
  7092. Fixes all over the tree and new features.
  7093. Kconfig infrastructure rebased against 2.6.36-rc1, bringing
  7094. misc fixes + nconfig and savedefconfig targets.
  7095. Toolchain: ARM cortex A9 support, experimental crosstool-ng
  7096. backend, GCC 4.5.x.
  7097. Fs: Squashfs 4.1 with lzo support
  7098. Old-style package hooks (*_HOOK_POST_*) removed. Use the more
  7099. generic new-style ones instead.
  7100. Download handling reworked and support for git/svn downloads
  7101. added.
  7102. Removed experimental shared config.cache support, as it is
  7103. too unreliable.
  7104. A convenience Makefile wrapper is created when using
  7105. out-of-tree building, similar to how it is done for the kernel.
  7106. Alpha, Cris, IA64 and Sparc64 architecture support removed.
  7107. New packages: argp-standalone, gdk-pixbuf, gpsd, gst-ffmpeg,
  7108. libmpeg2, kbd, librsvg, nuttcp, rng-tools, rrdtool, xz
  7109. Updated/fixed packages: acpid, alsa-lib, argus, at, autoconf,
  7110. automake, avahi, axel, beecrypt, berkeleydb, bind, bmon, boa,
  7111. bootutils, bridge-utils, bsdiff, busybox, cvs, dbus, directfb,
  7112. dmraid, docker, dosfstools, dropbear, e2fsprogs, ethtool,
  7113. expat, ezxml, fbset, fconfig, ffmpeg, freetype, gadgetfs-test,
  7114. gamin, gawk, genext2fs, gperf, gst-plugins-base,
  7115. gst-plugins-ugly, gtk2-themes, gtkperf, gvfs, haserl, hdparm,
  7116. hostapd, hwdata, ifplugd, imagemagick, iperf, ipsec-tools,
  7117. iproute2, iptables, iw, jpeg, kexec, kismet, less, libcgi,
  7118. libcurl, libdaemon, libdnet, liberation, libevent, libeXosip2,
  7119. libglade, libgtk2, libiconv, libidn, libintl, libmms, libmpd,
  7120. libnl, liboil, libosip2, libpcap, libpng, libtool, libungif,
  7121. libxml2, libxslt, lighttpd, lite, lm-sensors, lockfile-progs,
  7122. logrotate, m4, matchbox, mdadm, mesa3d, metacity, mplayer,
  7123. mtd-utils, mysql_client, nano, nbd, ncftp, neon, netperf,
  7124. netsnmp, ng-spice-rework, ntfsprogs, ntp, openntpd, openssh,
  7125. openssl, openvpn, oprofile, pango, patch, pcre, php,
  7126. pkg-config, portmap, pppd, pptp-linux, prboom, proftpd, radvd,
  7127. rdesktop, readline, rp-pppoe, ruby, qt, quagga, samba, sawman,
  7128. sdl_mixer, sdl_sound, sed, setserial, shared-mime-info, slang,
  7129. speex, sqlite, squashfs, startup-notification, strace,
  7130. sylpheed, sysstat, taglib, tcpdump, thttpd, tiff, tn5250,
  7131. torsmo, tslib, udev, udpcast, usbmount, usbutils, vsftpd,
  7132. vtun, which, wireless-tools, wpa_supplicant, xapp_twm,
  7133. xapp_xbacklight, xapp_xcursorgen, xapp_xinit, xapp_xinput,
  7134. xapp_xmore,
  7135. xdriver_xf86-input-{acecad,aiptek,evdev,joystick,keyboard},
  7136. xdriver-xf86-input-{mouse,synaptics,vmmouse,void},
  7137. xdriver-xf86-video-{apm,ark,ast,ati,chips,cirrus,dummy,fbdev},
  7138. xdriver-xf86-video-{geode,glide,glint,i128,i740,intel,mach64},
  7139. xdriver-xf86-video-{mga,neomagic,newport,nv,openchrome,r128},
  7140. xdriver-xf86-video-{rendition,s3,s3virge,savage,siliconmotion},
  7141. xdriver-xf86-video-{sis,sisusb,suncg3,suncg6,suncg14,sunffb},
  7142. xdriver-xf86-video-{sunleo,suntcx,tdfx,tga,trident,v4l,vesa},
  7143. xdriver-xf86-video-{vmware,voodeo,wsfb,xgi,xgixp},
  7144. xkeyboard-config, xlib_libX11, xserver_xorg-server, xstroke,
  7145. xterm, xvkbd, zlib
  7146. Deprecated packages: hotplug, lzma, ng-spice-rework, sfdisk
  7147. Removed packages: dillo, libglib12, libgtk12, microwin,
  7148. pcmcia
  7149. Issues resolved (http://bugs.uclibc.org):
  7150. #901: new package: gpsd
  7151. #2389: Generate a Makefile wrapper in $(O)
  7152. #2461: wireless_tools: install shared library if needed
  7153. #2521: Can't compile sdl_mixer, mikmod.h can't be found
  7154. #2533: xserver_xorg-server: Enable glx, if mesa3d is built
  7155. #2563: [PATCH] cairo: Expose the configure option to disable some...
  7156. #2581: libmms: Update to 0.6, and patch to work on architectures...
  7157. #2707: Can't compile linux kernel using buildroot + crosstool-ng
  7158. #2731: Build order
  7159. #2737: buildroot configuration tool crashing when the path exceeds...
  7160. #2767: Build for lsof broken in buildroot-2010.08
  7161. 2010.08: Released August 31th, 2010:
  7162. Fixes all over the tree.
  7163. Updated/fixed packages: atk, xstroke
  7164. Removed packages: lxdoom
  7165. 2010.08-rc2, Released August 30th, 2010:
  7166. Fixes all over the tree.
  7167. Mark the combination of uClibc 0.9.31, gcc 4.2.x, C++ and
  7168. locale support as broken. Remove deprecated GCC 4.2.[1-3]
  7169. versions.
  7170. Mark CRIS architecture as deprecated, as it is discontinued
  7171. upstream.
  7172. Marked shared config.cache as experimental and disabled by
  7173. default as it is known to break with certain package
  7174. combinations.
  7175. Toolchain: fixed gcc 4.2.x build after uClibc NPTL support got
  7176. added.
  7177. fs: old-style squashfs for big endian archs fixed.
  7178. Updated/fixed packages: busybox, gst-plugins-base,
  7179. imagemagick, kismet, libgail, libglib2, libgtk2, lua,
  7180. luafilesystem, lzo, ncurses, netcat, pango, php, pppd,
  7181. proftpd, qt, samba, startup-notification, swfdec, sysvinit,
  7182. util-linux
  7183. Removed packages: stunnel
  7184. Issues resolved (http://bugs.uclibc.org):
  7185. #635: util-linux fails to build in 2009.08
  7186. #2239: netcat package installs its binary to target as avr32-linux...
  7187. #2395: libglib2-2.24.1 and libxml2-2.7.7 fails build on MIPS because...
  7188. #2443: Initramfs: Don't overwrite $(TARGET_DIR)/init if it exists
  7189. #2449: Minor fixes for squashfs makefile and correct PowerPC e500 ...
  7190. 2010.08-rc1, Released July 30th, 2010:
  7191. Fixes all over the tree and new features.
  7192. Toolchain: GCC 4.3.5, older 4.3.x versions removed. GCC 4.1.2
  7193. and non-sysroot support removed. Added support for (snapshot)
  7194. NPTL in uClibc, 0.9.28.3 removed,
  7195. Bootloaders: Various cleanups, moved to boot/, added Barebox,
  7196. removed yaboot. Support building u-boot from custom tarball,
  7197. u-boot 2010.06.
  7198. New GTK-based configurator, usable using 'make gconfig'.
  7199. Java packages marked as broken. Unless someone steps up to
  7200. support this, they will be removed during the 2010.11
  7201. development cycle.
  7202. Alpha, IA64 and Sparc64 architectures marked as deprecated.
  7203. GTK+ on DirectFB has also been marked as deprecated, as it is
  7204. not supported in recent GTK+ versions, and more and more
  7205. packages depends on the new versions.
  7206. Unless someone steps up to support them, they will be removed
  7207. during the 2010.11 development cycle.
  7208. New packages: cgilua, copas, coxpcall, ffmpeg, libsvgtiny,
  7209. libgail, luafilesystem, luasocket, rings, wsapi, xavante, xterm
  7210. Updated/fixed packages: alsa-lib, alsamixergui, at, atk,
  7211. avahi, berkeleydb, bash, blackbox, busybox, bzip2, cairo,
  7212. cdrkit, cmake, dash, dhcp, dialog, diffutils, distcc, dmalloc,
  7213. dnsmasq, dropbear, e2fsprogs, fbv, file, flex, fontconfig,
  7214. gawk, gmpc, gnuchess, gst-plugins-base, gst-plugins-good,
  7215. gstreamer, gzip, icu, intltool, iostat, ipsec-tools, iptables,
  7216. iw, libart, libcgi, libcurl, libdrm, libeXosip, libfuse,
  7217. libglib2, libgpg-error, libiconv, libidn, liblockfile, libpng,
  7218. libsoup, lighttpd, links, linux-fusion, lmbench, lrzsz,
  7219. ltrace, make, midori, module-init-tools, mplayer,
  7220. mysql_client, nbd, ncurses, neon, netcat, netperf, netsnmp,
  7221. ntfsprogs, openssl, oprofile, pango, php, qt, quagga, samba,
  7222. setserial, sdl, sdl_mixer, sdl_sound, sdl_ttf, speech-tools,
  7223. sqlite, squashfs, swfdec, tftpd, thttpd, tn5250, tremor,
  7224. usbutils, webif, webkit, wireless_tools, xerces,
  7225. xkeyboard-config, xserver_xorg-server, xvkbd, zlib
  7226. Removed packages: modutils, portage, rxvt
  7227. Deprecated packages: dillo, libglib12, libgtk12, microwin, pcmcia
  7228. Issues resolved (http://bugs.uclibc.org):
  7229. #321: alsa-lib uses host include files for python which breaks ...
  7230. #361: linux kernel configuration choice works incorrectly
  7231. #387: Tremor not installed to toolchain
  7232. #401: new package: ffmpeg
  7233. #475: uImage target for U-boot failed generating
  7234. #543: ATK requires X11 on DirectFB target
  7235. #575: webkit: Buildroot Libtool Patch Fails
  7236. #583: build fails with external x86_64 toolchain
  7237. #729: sstrip creates corrupted headers
  7238. #829: Webkit r44552 needs libXt
  7239. #835: Package Dataflashboot-1.05 does not compile with buildroot...
  7240. #847: Compiling target-gcc v4.4 fails with "libc.so.0: cannot open...
  7241. #859: Add (head of) nptl branch to list of uClibc versions
  7242. #949: compile with debug info
  7243. #955: Grub fails to build with External Toolchain
  7244. #1051: Webkit doesn't compile (Linuxthreads new, x86)
  7245. #1213: Move .config into output directory
  7246. #1225: Buildroot fails to account for "nof" subdirectory (no float...
  7247. #1231: (sparc) Linux kernel fails to build
  7248. #1261: The getline() in output/build/linux-2.6.28/scripts/unifdef.c...
  7249. #1339: Busybox needs -fno-strict-aliasing to compile cleanly
  7250. #1393: neon config fails libxml/parser.h: libxml2 requires, but not ...
  7251. #1405: WebKit fails to build because pthread_getattr_np is not impl...
  7252. #1675: GMP Error during buildroot make process
  7253. #1741: external toolchain linking error
  7254. #1753: lmbench: convert to generic package infrastructure
  7255. #1771: Fakeroot and the target/generic/device_table.txt create bad...
  7256. #1807: LZMA 4.32.7, Required header file(s) are missing
  7257. #1813: xkeyboard-config fails to build because of intltool problem
  7258. #1879: Bump iptables to 1.4.8
  7259. #1885: Add a bunch of lua modules
  7260. #1897: Bump libusb to 1.0.7
  7261. #1903: Bump tn5250 to 0.17.4 and migrate to autotargets
  7262. #1909: netperf-2.4.5 fails to build because of undeclared SOCK_DCCP
  7263. #1927: Bump file to 5.03 and migrate to autotargets
  7264. #1933: Bump gawk to 3.1.8 and migrate to autotargets
  7265. #1945: PHP: add sqlite3 dependency when using external lib
  7266. #1951: Bump openssl to 0.9.8o
  7267. #1957: Bump sqlite to 3.6.23.1
  7268. #1975: Package removal/deprecation
  7269. #1981: zlib: bump to 1.2.5
  7270. #1987: intltool: Fix spelling mistake
  7271. #1993: Bump bash to 4.1.7(1) and migrate to autotargets
  7272. #1999: Typo in path checking
  7273. #2005: Bump dnsmasq to 2.55 and migrate to gentargets
  7274. #2035: ipsec-tools-0.7.2 fails to build with gcc-4.4.x
  7275. #2038: Bump ncurses to 5.7
  7276. #2095: make gconfig: undefined reference to symbol 'dlsym@@GLIBC_2.2.5'
  7277. #2101: blackbox depends on locale support
  7278. #2119: Tries to build kernel, although disabled in config
  7279. #2125: libXfont build fail
  7280. #2143: buildroot compiler generates segfaulting statically linked exe..
  7281. #2149: xterm build failure
  7282. #2155: Compression lzo don't set for ubifs
  7283. #2161: [SECURITY] Update libpng to 1.2.44
  7284. #2167: Bump busybox to 1.17.0, convert to gentargets, drop 1.12, ...
  7285. #2181: pixman can't apply pixman-0.10.0-no-tests.patch
  7286. #2191: linux-fusion build fail
  7287. #2221: Qt does not compile (dependencies not taken into account?)
  7288. #2233: Atmel atstk target skeletons have /etc/mtab as a file, not ...
  7289. #2245: Netcat does not work due to incorrect assumptions about signed..
  7290. #2251: directory output/build after make *_defconfig not found
  7291. #2257: Convert netsnmp package to autotargets
  7292. #2263: Bump samba to 3.3.13
  7293. #2269: setserial causes make error
  7294. 2010.05, Released May 30th, 2010:
  7295. Fixes all over the tree.
  7296. Updated/fixed packages: coreutils, hal, libcap,
  7297. lockfile-progs, ncftp, xserver_xorg-server
  7298. Issues resolved (http://bugs.uclibc.org):
  7299. #1789: binutils fails to build for i386
  7300. #1843: Fix libcap build failure
  7301. #1855: XORG Keyboard driver fails to compile
  7302. 2010.05-rc3, Released May 27th, 2010:
  7303. Fixes all over the tree.
  7304. Updated/fixed packages: aumix, atk, avahi, bmon, busybox, cairo,
  7305. cdrkit, dbus-glib, dbus-python, docker, enchant, fltk, gamin,
  7306. gettext, gmpc, gob2, grep, gstreamer, gst-plugins-bad,
  7307. gst-plugins-base, gvfs, hal, iconv, icu, iperf, libcgicc,
  7308. libdvdnav, libdvdread, libglade, libglib2, libgtk2, libidn,
  7309. libmms, libmpd, libpcap, libsoup, lmbench, lsof, ltrace, lvm2,
  7310. make, metacity, microperl, mtd-utils, mutt, nbd, netsnmp,
  7311. ntfsprogs, ntp, olsr, pango, pciutils, pcmanfm, php,
  7312. pkg-config, psmisc, qt, samba, shared-mime-info, squashfs,
  7313. squashfs3, sshfs, startup-notification, swfdec, sylpheed,
  7314. uemacs, util-linux, valgrind, vpnc, vsftpd, webkit, xstroke
  7315. Issues resolved (http://bugs.uclibc.org):
  7316. #75: arm buildroot "unrecognized option" error
  7317. #699: Buildroot fails to copy libstdc++ to target when using external...
  7318. #1693: NTP trys IPV6 even if not configured error: 'IPV6_MULTICAST...
  7319. #1729: alsamixergui fails to build
  7320. #1801: Avahi-autoipd doesn't create TARGET_DIR/var/lib
  7321. #1819: pciutils small bugs
  7322. #2065: Internal toolchain: bump gcc 4.3.x series to 4.3.5
  7323. 2010.05-rc2, Released May 11th, 2010:
  7324. Fixes all over the tree.
  7325. Updated/fixed packages: busybox, customize, gawk, gnuchess,
  7326. hal, hostapd, less, libgcrypt, libnl, libxcb, linux-fusion,
  7327. ltp-testsuite, mplayer, netplug, pciutils, php, sed,
  7328. shared-mime-info usb_modeswitch, usbutils, vlc wpa_supplicant,
  7329. xapp_bdftopcf, xapp_mkfontdir, xdriver_xf86-video-openchrome,
  7330. xfont_encodings, xlib_libX11, xlib_libXfont, xlib_xtrans,
  7331. xproto_fontcacheproto, xproto_fontsproto, xvkbd
  7332. Removed packages: vice
  7333. Issues resolved (http://bugs.uclibc.org):
  7334. #849: "customize" package copies files to wrong place in target tree
  7335. #985: Bump usb_modeswitch package to 1.1.0
  7336. #1135: Package customize. Wrong copying
  7337. #1525: Package hal deletes a whole <target>/etc/rc.d directory
  7338. #1531: libxcb 1.5 build fails, due to missing xcbgen Python module
  7339. #1669: Busybox failed to compile when using an external toolchain
  7340. #1699: Fix usbutils dependencies and bump
  7341. #1705: Fix pciutils broken cross compiling
  7342. #1717: External toolchain fixes for hostapd & wpa_supplicant
  7343. 2010.05-rc1, Released May 3rd, 2010:
  7344. Cleaned up / restructured package menu.
  7345. Toolchain: uClibc 0.9.30.3 / 0.9.31, older 0.9.30.x removed.
  7346. 2.6.33 kernel headers, binutils 2.20.1, GCC 4.4.4,
  7347. removed broken nios2 support, ppc e300cX/e500mc support,
  7348. improved external toolchain support, GDB 7.x support.
  7349. X.org updated to 7.5.
  7350. New packages: cdrkit, cramfs, genext2fs, genromfs,
  7351. libatomic_ops, librsync, libusb-compat, lmbench, netperf,
  7352. squashfs, squashfs3, squid
  7353. Updated/fixed packages: alsa-utils, argus, autoconf, bison,
  7354. busybox, bzip2, directfb, dnsmasq, dosfstools, e2fsprogs,
  7355. eeprog, fakeroot, fbv, findutils, freetype, haserl, hostapd,
  7356. iperf, iptables, iw, less, libaio, libcgi, libcgicc, libdrm,
  7357. libgcrypt, libglib2, libid3tag, libmad, liboil, libosip2,
  7358. libpng, libraw1394, libsysfs, libxml2, libxslt, linux-fusion,
  7359. ltrace, lua, lzma, madplay, makedevs, matchbox, mdadm,
  7360. memstat, mesa3d, mtd-utils, nano, ncurses, openssl, patch,
  7361. pciutils, php, pixman, portage, pppd, pthread-stubs, python,
  7362. qt, radvd, samba, setserial, smartmontools, tar, tslib,
  7363. udpcast, usb_modeswith, vtun, wget, xdata_xcursor-themes,
  7364. xdriver_xf86-video-intel, xkeyboard-config, xlib_libX11,
  7365. xlib_libXaw, xlib_libXfont, xlib_libXfontcache,
  7366. xlib_libXxf86misc, xlib_libXtst, xlib_libpciaccess,
  7367. xproto_dri2proto, xproto_eviext, xproto_fontcacheproto,
  7368. xproto_xf86miscproto, xserver_xorg-server
  7369. Removed packages: xapp_xtrap, xlib_libXTrap, xlib_libXevie,
  7370. xlib_libXxf86misc, xxproto_evieext, proto_trapproto,
  7371. xproto_xf86miscproto
  7372. Issues resolved (http://bugs.uclibc.org):
  7373. #513: Add new squid package
  7374. #661: lmbench: new package
  7375. #719: Add lua option to haserl
  7376. #800: [PATCH] iperf update to 2.0.4
  7377. #803: [PATCH] lua - add shared library patch and config option for...
  7378. #805: [PATCH] mdadm - version update
  7379. #817: integrator926_defconfig uses unsupported uboot board name
  7380. #851: Add option to specify --sysroot value for external toolchain
  7381. #1093: Upgrade libusb to v1.0.3 and add new libusb-compat
  7382. package for compatibility with old packages that expect
  7383. the pre-1.0 API.
  7384. #1105: Add new netperf package
  7385. #1111: Bump wget to 1.12 and migrate to Makefile.autotools.in
  7386. #1117: Bump nano to 2.2.3 and migrate to Makefile.autotools.in
  7387. #1123: Bump less to 436 and migrate to Makefile.autotools.in
  7388. #1129: Bump memstat to 0.8 and migrate to Makefile.package.in
  7389. #1189: Wrong u-boot configuration name for integrator926 target
  7390. #1219: kernel headers not correctly installed into toolchain/staging
  7391. #1267: Wrong BR2_EXTRA_VERSION
  7392. #1273: BR2_INET_IPV6 does not enable IPv6 in pppd
  7393. #1303: Add librsync package
  7394. #1321: Busybox link fails due to lack of --sysroot option
  7395. #1327: mtd-utils compile failure due to lack of --sysroot in CFLAGS
  7396. #1345: Bump pppd to 2.4.5 and convert to Makefile.autotools.in
  7397. #1369: cannot build radvd (flex problem)
  7398. #1387: xlib_libX11-1.3.2 can't find libjpeg
  7399. #1411: [SECURITY] Update openssl package to 0.9.8n
  7400. #1417: Bump iptables to 1.4.7
  7401. #1423: Bump e2fsprogs to 1.41.11
  7402. #1429: [SECURITY] Update php to 5.2.13
  7403. #1441: Add binutils 2.20.1
  7404. #1447: Package installation on target with debug symbols is broken
  7405. #1459: Misc QA fixes
  7406. #1489: radvd update to 1.6
  7407. #1513: Enable powerpc e300c2, e300c3 and e500mc optimization
  7408. #1537: dev entries not created anymore
  7409. #1555: Fix default uclibc-0.9.31 configuration
  7410. #1561: [SECURITY] Update samba to 3.3.12
  7411. #1567: openssl0.9.8n fails to compile
  7412. #1573: Alsa-utils alsactl/init/* not installed to target
  7413. #1591: portmap fails to compile
  7414. #1615: Convert eeprog package to gentargets
  7415. #1645: Bump hostapd package to 0.7.2
  7416. 2010.02, Release February 26th, 2010:
  7417. Fixes all over the tree.
  7418. Updated/fixed packages: avahi, busybox, cramfs, ipsec-tools, libcgicc,
  7419. libgtk2, libraw1394, madplay, netsnmp, pango, squashfs, sylpheed, qt,
  7420. xfont_font-util
  7421. Removed packages: hostap, openmotif, xpdf
  7422. Issues resolved (http://bugs.uclibc.org):
  7423. #165: openmotif does not build
  7424. #1147: Remove obsolete hostap package
  7425. #1183: make source fails to download gmp, mpfr and patches
  7426. 2010.02-rc2, Released February 23th, 2010:
  7427. Fixes all over the tree and new features.
  7428. New packages: intltool
  7429. Updated/fixed packages: ace_of_penguins, alsa-lib, alsa-utils, argus,
  7430. at, automake, ccache, dosfstools, e2fsprogs, flex, gob2, gmpc,
  7431. gst-plugins-good, imagemagick, iw, kexec, libeXosip, libgtk2,
  7432. libpcap, libpng, libsoup, libxcb, libxml-parser-perl, libxml2,
  7433. libxslt, lvm2, matchbox, mplayer, rsync, rubix, shared-mime-info,
  7434. tcl, webkit, xapp_mkfontscale, xfont_encodings, xfont_font-util,
  7435. xlib_libfontenc, xproto_trapproto, zlib
  7436. Removed package: xboard
  7437. Issues resolved (http://bugs.uclibc.org):
  7438. #335: atk looks for the path to the gnome library on the host
  7439. #355: Please update WebKit - it doesn't compile!
  7440. #453: libglib2 autoreconf
  7441. #457: e2fsprogs link problem
  7442. #459: libgtk2 autoreconf
  7443. #469: build of libgtk2 for host incorrectly assumes that X.org ...
  7444. #671: Bash fails to build when building buildront on Ubuntu 9.04
  7445. #711: WebKit host dependencies problems
  7446. #821: cp: illegal operation
  7447. #1039: Not compiled on ubuntu karmic
  7448. #1069: [PATCH] The AT91BOOTSTRAP makefile contains a typo
  7449. 2010.02-rc1, Released February 9th, 2010:
  7450. Fixes all over the tree and new features.
  7451. Generalized autotools infrastructure to be usable for
  7452. non-autotools packages, see package/Makefile.package.in for
  7453. details.
  7454. Cleaned up avr32 toolchain config, external source-based
  7455. toolchain support is gone.
  7456. Dependency checks: Also check for makeinfo, only print output
  7457. on errors.
  7458. Toolchain: uClibc 0.9.30.2, gcc 4.4.3
  7459. New packages: libcdaudio, libdvdnav, libdvdread, hostapd, ser2net,
  7460. tcpreplay
  7461. Updated/fixed packages: alsa-lib, alsa-utils, at, autoconf, bash,
  7462. bind, binutils, bootutils, busybox, dbus, directfb, dnsmasq,
  7463. e2fsprogs, gstreamer, gperf, gst-plugins-bad, gvfs, fbdump, flex,
  7464. hal, iptables, iw, jpeg, kismet, libfuse, libglib2, liboil, libpcap,
  7465. libungif, libxml2, libxslt, lighttpd, mesa, mpg123, mtd-utils, nbd,
  7466. neon, netstat-nat, newt, openvpn, pcre, php, qt, rdesktop, readline,
  7467. rpm, sawman, sdl, sdl_ttf, sqlite, sshfs, tremor, u-boot,
  7468. usb_modeswitch, usbutils, webkit, wpa_supplicant, xfsprogs, zlib
  7469. Removed package: asterisk, openswan
  7470. Issues resolved (http://bugs.uclibc.org):
  7471. #515: tcpreplay: new package
  7472. #553: Wrong DirectFB ps2mouse limitation
  7473. #559: mesa3d build fails
  7474. #679: Autoconf cannot find M4
  7475. #739: New/updated hostapd package
  7476. #749: Bump usbutils package to version 0.86
  7477. #751: Kernel 2.6 snapshot fetch fail
  7478. #753: Bump lighttpd package to 1.4.25
  7479. #757: U-Boot: mkimage cannot be installed using external toolchain
  7480. #761: Add binutils 2.20 to toolchain options
  7481. #763: [SECURITY] Update pcre to 7.9
  7482. #765: Add buildroot branding to gcc
  7483. #767: Bump iw package to 0.9.18
  7484. #773: [SECURITY] Update bind to 9.5.2-P1
  7485. #795: Minor edits to fix typos, grammar, spelling, usage in documen...
  7486. #813: Drop not very useful generic package selection options ...
  7487. #823: Editor backup files (~) is copied from the target_skeleton
  7488. #827: Bump mtd-utils package to version 1.2.0
  7489. #841: Build error
  7490. #913: Bump iptables to 1.4.6
  7491. #919: Bump usb_modeswitch package to 1.0.7
  7492. #925: Bump wpa_supplicant package to 0.6.10
  7493. #931: Bump kismet package to 2010-01-R1
  7494. #937: Bump openvpn package to 2.1.1
  7495. #943: Bump sqlite package to 3.6.22
  7496. #961: Bump dnsmasq to 2.52
  7497. #967: Bump netstat-nat to 1.4.10
  7498. #973: Bump iw to 0.9.19
  7499. #1003: DHCP options disabled with busybox-1.16.0
  7500. #1009: [SECURITY] Bump php to 5.2.12
  7501. #1015: [SECURITY] Bump bind to 9.5.1-P2
  7502. #1027: Busybox flash commands conflict with those from mtd-utils
  7503. #1063: [SECURITY] Update lighttpd to 1.4.26
  7504. 2009.11, Released December 1st, 2009:
  7505. Additional fixes and cleanups.
  7506. Updated/fixed packages: alsamixergui, autoconf, coreutils, fltk,
  7507. microperl, ncurses, vim
  7508. Issues resolved (http://bugs.uclibc.org):
  7509. #707: Cant configure fltk-1.1.7. configure: error: Configure could ...
  7510. 2009.11-rc2, Released November 29th, 2009:
  7511. Additional fixes and cleanups.
  7512. Updated/fixed packages: busybox, dbus, fltk, gvfs, ltrace
  7513. 2009.11-rc1, Released November 23rd, 2009:
  7514. Fixes all over the tree and new features.
  7515. Cleaned up / Simplified build directory layout. Refer to
  7516. docs/buildroot.html#using for details.
  7517. Target defconfig files moved to configs/ and listed in 'make help'
  7518. output.
  7519. Fixed *clean targets. Now clean removes everything generated,
  7520. so you can do a fresh rebuild. Distclean furthermore removes
  7521. kbuild tools and .config, bringing the source tree back in a
  7522. pristine state.
  7523. Toolchain: ARM cortex A8 support, GCC 4.4.2, sensible default
  7524. soft / hardfloat setting for architecture, ensure target-ldd
  7525. gets installed.
  7526. New packages: divine, gvfs, libarchive, libmicrohttpd,
  7527. sdl_sound, swfdec, sysstat
  7528. Updated/fixed packages: alsa-lib, alsamixergui, autoconf, bootutils,
  7529. busybox, gcc, directfb, dnsmasq, e2fsprogs, festival, gamin, gperf,
  7530. gqview, gstreamer, gst-plugins-bad, gst-plugins-base, gst-plugins-good,
  7531. imagemagick, ipkg, iptables, iw, kernel-headers, kismet, leafpad,
  7532. libelf, libevent, libglib2, libidn, liblockfile, libmad, libpcap,
  7533. libupnp, libuuid, libxml2, lighttpd, ltrace, lua, lzma, magiccube4d,
  7534. matchbox, mdadm, nbd, ncftp, ncurses, netkittelnet, netsnmp,
  7535. ng-spice-rework, ntfs-3g, openntp, openssl, pcmanfm, php, psmisc,
  7536. python, quagga, radvd, rpm, rsync, rubix, samba, sawman, sdl, sdl_image,
  7537. shared-mime-info, sfdisk, spawn-fcgi, speech-tools, sqlite, squashfs,
  7538. synergy, syslinux, sysklogd, target-binutils, tcpdump, torsmo, u-boot,
  7539. udpcast, util-linux, valgrind, vsftpd, wipe, wpa-supplicant, x11vnc,
  7540. xdata_xcursor-themes, xboard, xfsprogs, xstroke, zlib[5~
  7541. Removed package: mdnsresponder, mpatrol, gcc 3.4.6 + 4.0.4, vice
  7542. Issues resolved (http://bugs.uclibc.org):
  7543. #301: allow to install libsmbclient
  7544. #303: add gvfs package
  7545. #477: Add sdl_sound package
  7546. #487: Make kismet package sexier
  7547. #511: New package usb_modeswitch
  7548. #527: misc fixes for dnsmasq package
  7549. #565: libevent: Bump version and clean up makefile
  7550. #587: Use iptables multipurpose binaries and bump to 1.4.4
  7551. #593: Missing early check for patch(1)
  7552. #597: (REOP) Selecting busybox in buildroot's config clobbers ar ...
  7553. #609: libmicrohttpd: New package
  7554. #615: python: Don't delete .py files unless asked
  7555. #617: netkit/inetd requires RPC and fails to build if RPC is disabled
  7556. #619: netkittelnet requires netkitbase to install, but there's no ...
  7557. #645: allow to build nbd-server with NBD package
  7558. #653: [SECURITY] Update php package to version 5.2.11
  7559. #655: Update sqlite package to version 3.6.18
  7560. #657: Bug in imagemagick-clean target
  7561. #663: Add option for NAND flash with 512B Page and 16 kB erasesize ...
  7562. #665: [PATCH] Samba package
  7563. #667: [PATCH] e2fsprogs
  7564. #683: SDL-dfb does not select directfb
  7565. #701: make install problem with unstripped binaries
  7566. #703: [SECURITY] Update openssl package to 0.9.8l
  7567. #705: Bump spawn-fcgi package to 1.6.3
  7568. #709: Bump lighttpd package to 1.4.24
  7569. #713: Migrate openntpd package to Makefile.autotools.in
  7570. #715: Bump libidn package to 1.15 and other fixes
  7571. #717: Bump dnsmasq to 2.51 and introduce new IDN option
  7572. #731: Bump iw package to 0.9.17
  7573. 2009.08, Released August 31th, 2009:
  7574. Additional fixes and cleanups.
  7575. Updated/fixed packages: ctorrent, saveconfig/getconfig,
  7576. sdl_net, util-linux.
  7577. Issues resolved (http://bugs.uclibc.org):
  7578. #529: util-linux doesn't find headers and include libs correctly
  7579. #557: Build ctorrent with SSL support if available
  7580. 2009.08-rc3, Released August 26th, 2009:
  7581. Additional fixes and cleanups.
  7582. Updated/fixed packages: alsa-utils, berkeleydb, busybox, dbus,
  7583. directfb, enchant, kernel headers.
  7584. Issues resolved (http://bugs.uclibc.org):
  7585. #471: Allow directfb compilation with debug
  7586. #541: Removal of CVS directories in target filesystem broken
  7587. #547: berkeleydb: Update config.{sub, guess}
  7588. #549: enchant: Fix dependencies.
  7589. #569: Fix alsa-utils build for x86 on x86-64
  7590. 2009.08-rc2, Released August 6th, 2009:
  7591. Additional fixes and new features.
  7592. New packages: libuuid, gcc 4.3.4.
  7593. Updated/fixed packages: busybox, classpath, gzip, ipsec-tools,
  7594. jamvm, libusb, microperl, neon, popt, sed, webkit.
  7595. Fixed issue with 'make oldconfig'
  7596. Issues resolved (http://bugs.uclibc.org):
  7597. #525: sed broken with external toolchain
  7598. #537: Fix gzip build with recent glibc
  7599. 2009.08-rc1, Released August 2nd, 2009:
  7600. Fixes all over the tree and new features.
  7601. Improvement of external toolchain support:
  7602. - Support for glibc toolchains.
  7603. - The toolchain configuration announced to Buildroot is
  7604. verified against the real toolchain configuration.
  7605. - Fixes, documentation.
  7606. Cleanup X.org support: clarified configuration options, and
  7607. removed mandatory dependency on useless libraries such as
  7608. libXt or libXaw.
  7609. New QT-based configurator, usable using 'make xconfig'.
  7610. Support for the Xtensa architecture.
  7611. Toolchain: GCC 4.4.1, 2.6.30 kernel headers, removed < 2.6.26
  7612. headers.
  7613. New packages: bmon, ctorrent, dosfstools, enchant,
  7614. gst-plugins-bad, iw, libmms, libnl, netstat-nat, ntfsprogs,
  7615. sdl_gfx, spawn-fcgi.
  7616. Updated packages: bind, busybox, coreutils, sqlite, directfb,
  7617. expat, gamin, gnuconfig, haserl, ipsec-tools, classpath,
  7618. libcurl, libglib2, liblockfile, libpng, libsoup, libxml2,
  7619. lighttpd, ltp-testsuite, lvm2, matchbox, memstat,
  7620. gst-plugins-good, gstreamer, libogg, libvorbis, mplayer,
  7621. neon, openssl, pciutils, php, qt, ruby, sawman, webkit,
  7622. wpa-supplicant, xdriver_xf86-input-synaptics,
  7623. xdriver_xf86-video-intel, xlib_libXfont, xlib_libXft,
  7624. xlib_libXt, xproto_xproto, xserver-xorg, xutil_makedepend,
  7625. xutil_util-macros.
  7626. Issues resolved (http://bugs.uclibc.org):
  7627. #83: liblockfile fails to compile due to eaccess redefinition
  7628. #163: Xtensa architecture port
  7629. #171: xorg-server / kernel headers 2.6.26 - vm86.c compilation issue
  7630. #241: device mapper + lvm2: build together
  7631. #243: ctorrent: new package
  7632. #247: ntfsprogs: new package
  7633. #271: Library 'libgcc_s.so.1' not installed in search path
  7634. #287: New package libnl
  7635. #289: New package iw
  7636. #331: Update MPlayer to version 1.0rc2
  7637. #333: Bump sqlite package to 3.6.15
  7638. #349: update libsoup to version 2.26.2
  7639. #357: New package netstat-nat
  7640. #359,#413: Upgrade openvpn to Makefile.autotools.in
  7641. #367: linux kernel compile error for arm926t
  7642. #369: Add SDL_gfx package
  7643. #373: Support for building gstreamer without libxml
  7644. #379: update DirectFB to version 1.4.0
  7645. #383: gst-plugins-good: Allow soup plugin to be configured
  7646. #385: neon: Fix pkgconfig dependency
  7647. #387: Tremor not installed to toolchain
  7648. #389: New package bmon
  7649. #391: gstreamer: Bump version to 0.10.23
  7650. #393: gst-plugins-base: Bump version to 0.10.23
  7651. #395: gst-plugins-bad: New package
  7652. #403: Error while building iso9660 image
  7653. #409: Bump php package to 5.2.10
  7654. #411: ipsec-tools: Bump version to 0.7.2
  7655. #417: New package spawn-fcgi
  7656. #419: Bump lighttpd package to 1.4.23
  7657. #421: toolchain: Clean up toolchain locale support menu
  7658. #427: webkit: Update to WebKit svn r44552
  7659. #437: ltp-testsuite: Bump version to 20090630
  7660. #451: Upgrade from unmaintained dosfstools-2.11 to dosfstools-3.0.3
  7661. #467: DirectFB 1.4.1
  7662. #473: memstat_0.5.tar.gz has install with -D and that fails "make"
  7663. #491: libxml2: Bump version to 0.7.3
  7664. #495: Bump bind package to 9.5.1-P3 (security)
  7665. #497: OpenSSL RSA key generation hangs on x86_64
  7666. #509: Bump sqlite package to 3.6.16
  7667. #523: pciutils broken with external toolchain
  7668. #533: Update gamin to 0.1.10 to fix compilation
  7669. 2009.05, Released June 1st, 2009:
  7670. Fixes for dropbear & diffutils, bump linux-advanced 2.6.29.x
  7671. version and marked ubifsroot as broken.
  7672. 2009.05-rc3, Released May 27th, 2009:
  7673. Fixes for toolchain (gcc arm pr37436), stable kernel versions,
  7674. busybox, curl, libusb, readline, python and strace.
  7675. Issues resolved (http://bugs.uclibc.org):
  7676. #345: libcurl package needs a urandom fix
  7677. 2009.05-rc2, Released May 19th, 2009:
  7678. Fixes for toolchain (gcc w/softfloat on ppc, 3.4.6 buildfix
  7679. for newer hosts), stable kernel versions, busybox, cups,
  7680. dmraid, docker, mesa3d, rsync and updated defconfigs.
  7681. xserver marked as broken on AVR32 and atngw100-expanded
  7682. config removed.
  7683. Issues resolved (http://bugs.uclibc.org):
  7684. #167: metacity does not build
  7685. #295: gamin installs python support even if python is disabled
  7686. #323: gen_matypes fails to execute during build of Mesa when us...
  7687. 2009.05-rc1, Released May 5th, 2009:
  7688. Fixes all over the tree, further conversion of packages to
  7689. Makefile.autotools.in and we now build host versions of
  7690. packages where needed for build time dependencies instead of
  7691. relying on the correct versions being available on the build
  7692. host. Ancient toolchain / busybox versions have furthermore
  7693. been removed as announced in the 2009.02 release notes.
  7694. New packages: flac, gob2, lzop, taglib, wpa_supplicant
  7695. Updated packages: avahi, bind, binutils, busybox, dbus, dbus-glib,
  7696. directfb, dnsmasq, freetype, gcc, gmp, gstreamer, iptables, kernel
  7697. headers, kexec, libglib2, libpng, libsndfile, lua, mpfr, ntfs-3g,
  7698. openssl, php, qtopia4, rsync, samba, sqlite, tar, uboot, uclibc,
  7699. util-linux, xorg7, xerces
  7700. Issues resolved (http://bugs.uclibc.org):
  7701. #5,#77,#141,#143: Convert php package to Makefile.autotools.in
  7702. and a ton of other improvements
  7703. #19: page.h missing by util-linux
  7704. #37: update libglib2 to version 2.18.4
  7705. #61: tslib puts staging_dir into pkgconfig file
  7706. #69: tar refuses to build
  7707. #71,#175: ./wchar.h:41:12: error: empty filename in #include
  7708. #73: Bump openssl package to the latest version
  7709. #81: New package wpa_supplicant
  7710. #99: new package: flac
  7711. #101: update gstreamer packages
  7712. #105,#313: menuconfig segfaults on tinyx if wchar is not
  7713. selected
  7714. #107: convert libvorbis to Makefile.autotools.in
  7715. #109: Make pppd package avoid bsd err
  7716. #111: binutils 2.17 fails to build when texinfo >= 4.10
  7717. #133: Modify ncurses5-config to get correct include path
  7718. #137: Bump php to version 5.2.9
  7719. #139: Bump sqlite to 3.6.11 and convert to
  7720. Makefile.autotools.in
  7721. #145: Bump bind package to 9.5.1-P1 (security)
  7722. #147: buildroot toolchain fails to build w/binutils-2.19.1
  7723. #151: openssl package trivial fixes
  7724. #161: vim fails on patching with errors in configure.patch
  7725. #169: blackbox-0.70.1 does not build
  7726. #177: xdriver_xf86-input-keyboard does not build
  7727. #179: Upgrade dropbear to Makefile.autotools.in
  7728. #181: Update to Xorg 7.4
  7729. #187: ntfs-3g: could not build cross
  7730. #191: alsa-lib ARM binaries always built with EABI
  7731. #213: Bump wpa_supplicant package to version 0.6.9
  7732. #217: Bump openssl package to 0.9.8k (security)
  7733. #219: Toolchain build fails on m4
  7734. #225: m4 macros are out of place
  7735. #233: make ipv6 optional in iptables
  7736. #237: ncftp: convert to Makefile.autotools.in
  7737. #239: ntfs-3g: convert to Makefile.autotools.in
  7738. #245: lzop: new package
  7739. #271: Bump bind package to 9.5.1-P2 (security)
  7740. #277: Bump sqlite package to 3.6.16
  7741. #279: update libglib2 to version 2.20.1
  7742. #281: update DirectFB to version 1.2.8
  7743. #283: add taglib
  7744. #285: compilation of samba fails if IPV6 support is missing
  7745. #293: update samba to version 3.3.3
  7746. #299: add shared-mime-info package
  7747. #307: make openssl package respect build flags