CHANGES 393 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981
  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.2, released November 16th, 2020
  84. Important / security related fixes.
  85. Toolchain-wrapper: Pass -fno-tree-loop-distribute-patterns to
  86. fix kernel build on microblaze with gcc 10.x when
  87. optimizations are enabled.
  88. Updated/fixed packages: apparmor, argp-standalone, asterisk,
  89. bandwidthd, binutils, bitcoin, busybox, collectd, cryptsetup,
  90. cups-filters, darkhttpd, davfs2, docker-cli,
  91. docker-containerd, docker-engine, dovecot-pigeonhole,
  92. dvb-apps, elf2flt, fastd, fbset, fbtft, freetype, gcc,
  93. ghostscript, grpc, gst1-plugins-bad, jsoncpp,
  94. kernel-module-imx-gpu-viv, keepalived, kmscube, libass,
  95. libexif, libiqrf, libnetfilter_conntrack, libpam-tacplus,
  96. libraw, linux-backports, linux-firmware, lzlib, mp4v2,
  97. netsnmp, nginx, numactl, oniguruma, opencv3, openntpd,
  98. patchelf, php, pistache, postgresql, python-pyqt5, qemu,
  99. qt5base, rauc, redis, samba4, slirp, systemd, tcpdump,
  100. tinyproxy, tmux, tor, waf, webkitgtk, wine,
  101. wireguard-linux-compat, wireshark, wpewebkit, xen, xorriso,
  102. xvisor, zeromq, zxing-cpp
  103. Issues resolved (http://bugs.uclibc.org):
  104. #11931: Bugs in support/scripts/apply-patches.sh
  105. 2020.08.1, released October 12th, 2020
  106. Important / security related fixes.
  107. Fixes for various compilation issues with GCC 10.x.
  108. meson: Correct SDK cross-compilation.conf file when
  109. per-package builds were used to build SDK.
  110. systemd: Use /run rather than /var/run for PID files in units.
  111. Toolchain: use Secure-PLT rather than BSS-PLT for PowerPC 32.
  112. Fakeroot scripts (BR2_ROOTFS_POST_FAKEROOT_SCRIPT) are now run
  113. after all finalization hooks (including pre-rootfs) to ensure
  114. they can override any late configuration done by packages.
  115. support/script/pycompile: Rework logic to ensure .pyc files
  116. contain absolute target paths, fixing code inspection at
  117. runtime when executed with cwd != '/'.
  118. support/scripts/setlocalversion: Correct Mercurial output to
  119. match behaviour with Git.
  120. support/scripts/apply-patches.sh: Use patch
  121. --no-backup-if-mismatch, so we no longer blindly have to
  122. remove *.orig files after patching, fixing issues with
  123. packages containing such files.
  124. fs/jffs2: Now correctly handles xattrs
  125. Updated/fixed packages: acpica, afboot-stm32, alsa-utils,
  126. apparmor, bandwidthd, barebox, bash, bison, brotli,
  127. cifs-utils, cups, dhcpcd, dhcpdump, docker-cli, docker-engine,
  128. ecryptfs-utils, efl, fail2ban, fbterm, ffmpeg, fontconfig,
  129. freetype, gcc, gdb, ghostscript, gnupg2, gnutls, go, gqview,
  130. gst1-plugins-base, gst1-plugins-ugly, ipmitool, jbig2dec,
  131. kexec, lcdproc, libcamera, libhtp, libnetconf2, libraw,
  132. libssh, libxml2, libxml-parser-perl, libzip, linux-headers,
  133. live555, localedef, ltp-testsuite, lua, matchbox, memcached,
  134. memtester, mesa3d, meson, minidlna, mongodb, mongrel2, motion,
  135. mraa, mtd, musepack, neardal, netatalk, netperf, netsniff-ng,
  136. nginx, nodejs, nss-pam-ldapd, open-plc-utils, openswan,
  137. opentyrian, openvmtools, php, postgresql, python,
  138. python-aenum, python-cycler, python-engineio, python-fire,
  139. python-pymodbus, python-scapy, python-semver,
  140. python-sentry-sdk, python-socketio, python-texttable,
  141. python-tinyrpc, python-txtorcon, python3, qt5base, quagga,
  142. read-edid, redis, rsh-redone, runc, samba4, socketcand,
  143. strace, supertux, suricata, systemd, ti-utils, trinity,
  144. uclibc, usb_modeswitch, vlc, vsftpd, wampcc,
  145. wayland-protocols, wireguard-linux-compat, wireshark, wlroots,
  146. wolfssl, w_scan, xerces, xfsprogs, xdriver-xf86-video-ati,
  147. xserver_xorg-server, ympd, zeromq, zlib-ng, zstd
  148. Issues resolved (http://bugs.uclibc.org):
  149. #12911: usb_modeswitch installation race condition
  150. #13236: Can't compile linux 5.4.8 (with gcc 10 on host)
  151. 2020.08, released September 1st, 2020
  152. Various fixes.
  153. Updated/fixed packages: am33x-cm3, avahi, bluez-tools,
  154. busybox, chocolate-doom, collectd, dhcp, docker-cli, domoticz,
  155. gobject-introspection, graphite2, haproxy, ibm-sw-tpm2,
  156. imagemagick, libeXosip2, libressl, lxc, mbedtls, menu-cache,
  157. mongodb, mosquitto, nvidia-driver, paho-mqtt-c, pixz,
  158. postgresql, python-django, rtty, squid, stress-ng, systemd,
  159. trousers, uclibc, wireshark, wolfssl, zbar
  160. 2020.08-rc3, released August 28th, 2020
  161. Fixes all over the tree.
  162. Infrastructure: Ensure RPATH entries that may be needed for
  163. dlopen() are not dropped by patchelf.
  164. Toolchain: Drop old GCC 6 based external Sourcery AMD64
  165. toolchain.
  166. Updated/fixed packages: assimp, davfs2, dillo, glibc,
  167. gnuradio, hostapd, ibm-sw-tpm2, ipmitool, json-c, libroxml,
  168. linux, mender, netopeer2, openal, openjpeg, python-matplotlib,
  169. ripgrep, shadowsocks-libev, trousers, xlib_libX11,
  170. xserver_xorg-server
  171. Issues resolved (http://bugs.uclibc.org):
  172. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  173. 2020.08-rc2, released August 24th, 2020
  174. Fixes all over the tree, including a number of fixes for
  175. compilation with GCC-10.
  176. Toolchain: Disallow building uClibc-ng for RISC-V 64-bit,
  177. because of issues with a missing __riscv_flush_icache()
  178. implementation.
  179. Defconfigs: CI20: Use mainline Linux and U-boot. Update
  180. Microchip sama5d27_wlsom1_ek_mmc_dev to use bluez5-utils
  181. instead of (the removed) legacy bluez-utils
  182. Updated/fixed packages: 18xx-ti-utils, aircrack-ng, apache,
  183. atest, bandwidthd, bellagio, bind, bird, bluez-alsa, boost,
  184. c-periphery, capnproto, chrony, collectd, cpio, cvs,
  185. dieharder, domoticz, dovecot, dovecot-pigeonhole, drbd-utils,
  186. dump1090, efl, elixir, f2fs-tools, feh, fluidsynth, fping,
  187. gdbm, gdk-pixbuf, ghostscript, gst1-plugins-bad,
  188. gstreamer1-editing-services, htop, ibm-sw-tpm2, ifplugd,
  189. iftop, igd2-for-linux, ima-evm-utils, iprutils, iputils,
  190. keepalived, kmsxx, libabseil-cpp, libcamera, libcurl,
  191. libfuse3, libnss, librtlsdr, libubox, libunwind, live555,
  192. lttng-tools, luabitop, mender-artifact, minizip,
  193. mjpg-streamer, mpd, mpv, mtd, ncftp, open-lldp, openal,
  194. opencv, opencv3, openfpgaloader, optee-os, owfs, php,
  195. pistache, prosody, pulseview, python-decorator,
  196. python-gunicorn, python-rpi-gpio, python-spidev,
  197. python3-decorator, python3-mako, python3-pyselftools, qt5,
  198. qt5webengine, rauc, redis, ripgrep, rtl8188eu, rtl8821au,
  199. setools, smstools3, supertux, tftpd, tpm2-abrmd,
  200. wpa_supplicant, xen, xlib_libX11, xserver_xorg-server
  201. New packages: python3-cython, python3-pycryptodomex
  202. Issues resolved (http://bugs.uclibc.org):
  203. #12876: nodejs fails to build when host-icu has been built before
  204. #13111: python-gunicorn: missing dependency on python-setuptools
  205. #13121: wpa_supplicant fails to build without libopenssl enabled
  206. #13146: raspberrypi3_defconfig: "Inappropriate ioctl for device"..
  207. #13156: package live555 new license
  208. #13166: python-rpi-gpio: does not work against aarch64, unint..
  209. 2020.08-rc1, released August 6th, 2020
  210. Toolchain:
  211. - GCC 10.x added, GCC 9.x is the default
  212. - binutils 2.34 added, binutils 2.33 is the default, binutils
  213. 2.31 removed
  214. - glibc updated to 2.31
  215. - ARC toolchain components updated to 2020.03-release.
  216. - Enable uClibc-ng usage for RISC-V 64-bit
  217. Infrastructure:
  218. - qmake-package was fixed to be compatible with
  219. BR2_PER_PACKAGE_DIRECTORIES
  220. - complete rewrite of the Gitlab CI Yaml configuration file,
  221. now generated directly by the Gitlab CI pipeline itselfs
  222. Misc:
  223. - cargo and cargo-bin packages removed, as cargo is now part
  224. of Rust itself
  225. Filesystem: ubinize configuration files can now use
  226. BINARIES_DIR to refer to the $(O)/images directory.
  227. New packages: bitwise, earlyoom, fuse-overlayfs, gloox,
  228. kodi-pvr-octonet, kodi-pvr-zattoo, libabseil-cpp, libcutl,
  229. libnids, libnpupnp, libodb, libodb-boost, libodb-mysql,
  230. libodb-pgsql, mbpfan, netopeer2, odb, parprouted,
  231. python-colorzero, python-gpiozero, python-pybind, python-yatl,
  232. python3-decorator, qt5quicktimeline, resiprocate, ttyd,
  233. unclutter-xfixes, urandom-scripts,
  234. New defconfigs: bananapi_m2_zero, freescale_imx8mnevk,
  235. globalscale_espressobin, imx6ullevk,
  236. microchip_sama5d27_wlsom1_ek, rock_pi_4, rock_pi_n10
  237. Removed packages: cargo, cargo-bin,
  238. kodi-peripheral-steamcontroller
  239. Issues resolved (http://bugs.uclibc.org):
  240. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_DIRECTORIES
  241. #12946: Grub: Decompressor is too big.
  242. #12986: Mtools: Error converting to codepage 850
  243. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  244. #13011: Incorrect selection of gcc version
  245. #13021: Minor code error when building granite-0.4.1
  246. #13026: rpi-firmware: must not rename start files
  247. #13046: Optimize for fast -Ofast is not compliant
  248. #13081: host-e2fsprogs attempts to create udev rules.d on build host if not exists
  249. #13101: BR audit2allow support
  250. 2020.05.3, released October 12th, 2020
  251. Important / security related fixes.
  252. meson: Correct SDK cross-compilation.conf file when
  253. per-package builds were used to build SDK.
  254. systemd: Use /run rather than /var/run for PID files in units.
  255. Toolchain: use Secure-PLT rather than BSS-PLT for PowerPC 32.
  256. Fakeroot scripts (BR2_ROOTFS_POST_FAKEROOT_SCRIPT) are now run
  257. after all finalization hooks (including pre-rootfs) to ensure
  258. they can override any late configuration done by packages.
  259. support/script/pycompile: Rework logic to ensure .pyc files
  260. contain absolute target paths, fixing code inspection at
  261. runtime when executed with cwd != '/'.
  262. support/scripts/setlocalversion: Correct Mercurial output to
  263. match behaviour with Git.
  264. support/scripts/apply-patches.sh: Use patch
  265. --no-backup-if-mismatch, so we no longer blindly have to
  266. remove *.orig files after patching, fixing issues with
  267. packages containing such files.
  268. Updated/fixed packages: alsa-utils, apparmor, avahi,
  269. bandwidthd, barebox, bash, bison, brotli, busybox, cifs-utils,
  270. cryptsetup, cups, dhcpcd, dhcpdump, docker-cli, docker-engine,
  271. ecryptfs-utils, efl, fail2ban, freetype, gcc, gdb,
  272. ghostscript, gnutls, go, graphite2, gst1-plugins-base,
  273. gst1-plugins-ugly, imagemagick, ipmitool, jbig2dec, libhtp,
  274. libraw, libssh, libxml2, libxml-parser-perl, linux-headers,
  275. localedef, lua, mbedtls, memcached, mesa3d, meson, minidlna,
  276. mongodb, nginx, nodejs, nss-pam-ldapd, openvmtools,
  277. paho-mqtt-c, php, postgresql, python, python-aenum,
  278. python-django, python-engineio, python-fire, python-pymodbus,
  279. python-scapy, python-semver, python-sentry-sdk,
  280. python-socketio, python-texttable, python-tinyrpc,
  281. python-txtorcon, python3, qt5base, rsh-redone, runc, samba4,
  282. strace, supertux, suricata, systemd, uclibc, usb_modeswitch,
  283. vlc, vsftpd, wayland-protocols, wireguard-linux-compat,
  284. wireshark, wlroots, wolfssl, xserver_xorg-server, ympd,
  285. zeromq, zstd
  286. Issues resolved (http://bugs.uclibc.org):
  287. #12911: usb_modeswitch installation race condition
  288. #13251: cryptsetup does not work on branch 2020.02 following..
  289. 2020.05.2, released August 29th, 2020
  290. Important / security related fixes.
  291. Infrastructure: Ensure RPATH entries that may be needed for
  292. dlopen() are not dropped by patchelf.
  293. BR_VERSION_FULL/setlocalversion (used by make print-version
  294. and /etc/os-release): Properly handle local git tags
  295. Updated/fixed packages: apache, assimp, at91bootstrap3, bind,
  296. boost, busybox, capnproto, cegui, chrony, collectd, cpio,
  297. cryptsetup, cups, cvs, dbus, docker-engine, domoticz, dovecot,
  298. dovecot-pigeonhole, dropbear, efl, elixir, f2fs-tools, ffmpeg,
  299. gd, gdk-pixbuf, ghostscript, glibc, gnuradio, grub2,
  300. gst1-plugins-bad, gstreamer1-editing-services, hostapd,
  301. ibm-sw-tpm2, iputils, jasper, json-c, libcurl, libressl,
  302. libwebsockets, linux, live555, mesa3d, mongodb, mosquitto,
  303. mpv, nodejs, opencv, opencv3, openfpgaloader, openjpeg,
  304. patchelf, perl, php, postgresql, prosody, python-django,
  305. python-gunicorn, python-matplotlib, ripgrep, rtl8188eu,
  306. rtl8821au, ruby, shadowsocks-libev, squid, systemd,
  307. tpm2-abrmd, tpm2-tools, trousers, uboot, webkitgtk, wireshark,
  308. wolfssl, wpa_supplicant, wpewebkit, xen, xlib_libX11,
  309. xserver_xorg-server
  310. Issues resolved (http://bugs.uclibc.org):
  311. #12876: nodejs fails to build when host-icu has been built before
  312. #13111: python-gunicorn: missing dependency on python-setuptools
  313. #13121: wpa_supplicant fails to build without libopenssl enabled
  314. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  315. #13156: package live555 new license
  316. 2020.05.1, released July 25th, 2020
  317. Important / security related fixes.
  318. Toolchain:
  319. - Make external toolchain version check also work for
  320. toolchains configured with --with-gcc-major-version-only
  321. - Do not handle SOURCE_DATE_EPOCH in toolchain wrapper if the
  322. compiler supports it, fixing an issue with precompiled
  323. headers
  324. - Ensure debug libs from external toolchains are not installed
  325. into target if debugging is disabled
  326. Download:
  327. - Correct reproducibility issue in handling of git submodules
  328. for older git versions.
  329. - Fix file locking over NFS
  330. fs: Ensure cpio archive element order is reproducible
  331. Br2-external: Fix error reporting for invalid br2-external trees
  332. Per-package:
  333. - Fix an issue with python3 sysconfig data not getting
  334. correctly expanded
  335. - Fix per-package building for packages using the qmake
  336. infrastructure
  337. Updated/fixed packages: a10disp, asterisk, bind, brltty,
  338. cdrkit, clamav, cryptodev-linux, dbus, docker-cli,
  339. docker-engine, dvb-apps, e2fsprogs, exim, exiv2, freerdp, gdb,
  340. gdk-pixbuf, gerbera, gnutls, go, granite, grub2, gssdp,
  341. gst1-plugins-good, gst1-plugins-ugly, gupnp, intel-microcode,
  342. iproute2, irrlicht, iwd, jq, kodi, libcamera, libcec,
  343. libconfuse, libcurl, libevdev, libhttpserver, libmicrohttpd,
  344. libnss, libressl, libvncserver, libxml2, libxmlrpc, lxc,
  345. mbedtls, mediastreamer, mesa3d, meson, minizip, mongodb,
  346. mtools, mutt, nano, network-manager, nghttp2, ngircd, nodejs,
  347. ntp, open-plc-utils, open2300, openjdk-bin, openssh,
  348. oracle-mysql, paho-mqtt-c, pango, php, poco, prosody, putty,
  349. python-greenlet, python-urllib3, python-validators, python3,
  350. readline, redis, rpi-firmware, rtl8821au, samba4, sdl2,
  351. sqlite, squid, strace, sunxi-mali-mainline-driver, syslog-ng,
  352. systemd, tcpreplay, tinydtls, upmpdcli, upx, vlc, webkitgtk,
  353. wireguard-linux-compat, wireshark, wpebackend-fdo, wpewebkit,
  354. x11vnc, znc, zstd
  355. Issues resolved (http://bugs.uclibc.org):
  356. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_..
  357. #12946: Grub: Decompressor is too big.
  358. #12986: Mtools: Error converting to codepage 850
  359. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  360. #13011: Incorrect selection of gcc version
  361. #13021: Minor code error when building granite-0.4.1
  362. #13026: rpi-firmware: must not rename start files
  363. #13031: nodejs: RangeError at new ArrayBuffer()
  364. #13046: Optimize for fast -Ofast is not compliant
  365. 2020.05, released June 1st, 2020
  366. Various fixes.
  367. Updated/fixed packages: arm-trusted-firmware, gcc, mp4v2, fmc,
  368. fmlib, glib-networking, libusb-compat, linux, qt5webengine,
  369. sysrepo, wampcc, xen
  370. 2020.05-rc3, released May 29th, 2020
  371. Fixes all over the tree.
  372. Infrastructure: Support checking download hashes for packages
  373. coming from Subversion.
  374. Defconfigs: Increase boot partition size to 64MB for Freescale
  375. boards to allow space for bigger kernels.
  376. Updated/fixed packages: audit, bind, dovecot, efl, erlang,
  377. ffmpeg, fio, gerbera, gnupg, leveldb, lrzip, ltrace, matio,
  378. mesa3d, mp4v2, prosody, qemu, qt5declarative, speexdsp,
  379. systemd, tremor, uboot-tools, unbound, wireshark
  380. Removed packages: wiringpi
  381. Issues resolved (http://bugs.uclibc.org):
  382. #12361: Init system (systemd) kills login on Raspberry Pi Zero
  383. #12686: recipe for target 'install_dev' failed (libcrypto.so..)
  384. 2020.05-rc2, released May 22nd 2020
  385. Fixes all over the tree.
  386. U-Boot: Support building with Python 3.x instead of Python
  387. 2.x. Since U-Boot 2020.01, various U-Boot build scripts use
  388. Python 3.x instead of Python 2.x, so add an option to pull in
  389. host-python3 rather than host-python. Also fix a number of
  390. defconfigs to use this new option.
  391. Updated/fixed packages: apparmor, binutils, bison, brltty,
  392. c-icap, cegui, checkpolicy, clamav, crda, cvs, docker-cli,
  393. docker-engine, domoticz, elf2flt, exfatprogs, fakeroot,
  394. ffmpeg, freerdp, gcc, glibc, gnuconfig, irrlicht, kmod,
  395. libexif, libpam-tacplus, libssh2, libv4l, libvncserver,
  396. localedef, lrzip, mariadb, matchbox, mbuffer, mesa3d,
  397. mesa3d-headers, meson, netsniff-ng, openldap, openocd,
  398. optee-os, p7zip, paho-mqtt-c, php, piglit, pigz,
  399. python-argon2-cffi, python-attrs, python-future,
  400. python-markdown, python-pycryptodomex, python-pyqt5, qt5base,
  401. rpi-firmware, rustc, squashfs, squid, stella, suricata,
  402. systemd, uacme, uclibc, util-linux, vboot-utils
  403. New packages: python3-pyelftools
  404. Removed packages: ezxml, mtdev2tuio, python-pycrypto
  405. Issues resolved (http://bugs.uclibc.org):
  406. #10551: PowerPC SPE and Musl
  407. #12256: package tar is outdated (1.29 is 3 years old)
  408. #12271: python-iptables runtime dependencies
  409. #12321: host-generic-package: PKG_DL_OPTS not used for host package
  410. #12391: CMake-based host package fails to include output/host/include
  411. #12431: ethernet no detected on nanopi neo 2
  412. #12521: RISCV RV32IA selected, RV64GC output
  413. #12586: avahi failure
  414. #12596: host-e2fsprogs: tune2fs incompatibility on older glibc..
  415. #12611: ntp hash is not matching with upstream 4.2.8p13
  416. #12626: PHP missing header files within 2020.02
  417. #12631: glibc support Power-PC SPE
  418. #12656: bison fails to relocate with relocate-sdk.sh
  419. #12661: cups problems in buildroot
  420. #12686: recipe for target 'install_dev' failed (libcrypto.so:..
  421. #12691: host-rust build fails
  422. #12761: Buildroot fails when building GCNano binaries for the STM..
  423. #12786: Systemd spawns two getty processes when the getty port..
  424. #12806: There are multiple issues in buildroot that faults cups..
  425. #12826: nodejs-12.16.1: error: 'uv_sleep' was not declared in..
  426. #12831: RPI-firmware package: DTB-overlay dependency
  427. #12836: libunwind: package does not show up in menuconfig for..
  428. #12841: util-linux/sfdisk 2.35.1 fails on sector-size header
  429. #12866: should we be disabling bash executable path caching?
  430. #12886: GMP built in wrong order (?)
  431. #12891: QEMU, libvirt-bin, qemu-kvm Package Support required
  432. #12901: GStreamer doesn't build on 2020-05 rc1 with GObject..
  433. #12906: qt PrefixPath is wrong on 2020.05-rc1
  434. #12921: nodejs-12.16.1: error: overriding 'virtual icu_65::..
  435. 2020.05-rc1, released May 7th 2020
  436. Addition of support for gobject-introspection: both the
  437. gobject-introspection package itself, but also introspection
  438. support was enabled in a number of other packages.
  439. Support for Qt 5.6 was dropped as its support was dropped
  440. upstream, only one version of Qt is supported at the moment:
  441. Qt 5.14.2.
  442. Addition of support for the apparmor Linux security module, by
  443. adding the necessary user-space packages.
  444. Addition of a qmake package infrastructure, now used by most
  445. Qt-related packages.
  446. The Luarocks package infrastructure has been extended to
  447. support build host packages.
  448. The package infrastructure was improved to allow each package
  449. to indicate the Linux kernel configuration options it needs.
  450. Addition of support for generating filesystem images using the
  451. EROFS filesystem.
  452. The logic that calculates the list of files installed by each
  453. package was reworked to be compatible with the top-level
  454. parallel build functionality.
  455. Addition of a package for a pre-compiled ARM32 bare-metal
  456. toolchain, which can be used to build ARM32 code in ARM64
  457. configurations, such as firmware/bootloader code.
  458. The Qemu defconfigs are now boot-tested in Qemu as part of the
  459. Gitlab continuous integration.
  460. Toolchain: gcc 9.x bumped to 9.3.0, gcc 8.x bumped to 8.4.0,
  461. gdb bumped to 8.3.1.
  462. New packages: apcupsd, apparmor, arm-gnu-a-toolchain, bearssl,
  463. belle-sip, belr, cage, chartjs, erofs-utils, exfatprogs,
  464. gobject-introspection, ibm-sw-tpm2, imx-seco, jbig2dec,
  465. libapparmor, libiberty, libfuse3, libtextstyle, libudfread,
  466. libuhttpd, libuwsc, lua-lyaml, matio, mbuffer, netdata,
  467. openfpgaloader, perl-i18n, perl-locale-maketext-lexicon,
  468. perl-lwp-protocol-https,
  469. perl-mojolicious-plugin-authorization,
  470. perl-mojolicious-plugin-cspheader,
  471. perl-mojolicious-plugin-i18n,
  472. perl-mojolicious-plugin-securityheader, perl-mozilla-ca,
  473. perl-path-class, pistache, pkcs11-helper, prelink-cross,
  474. python-argon2-cffi, python-canopen, python-cbor2,
  475. python-filelock, python-flatbuffers, python-greenlet,
  476. python-modbus-tk, python-pyalsa, python-pysftp, python-regex,
  477. python-snappy, rtty, tinyproxy, udev-gentoo-scripts, unbound,
  478. vuejs, wlroots.
  479. New defconfigs: freescale_imx6ullevk, freescale_imx8qmmek,
  480. nanopi_neo4, nanopi_r1, nitrogen8mm, nitrogen8mn, olpc_xo1,
  481. olpc_xo175, roc_rk3399_pc, stm32mp157a_dk1, zynq_qmtech
  482. Issues resolved (http://bugs.uclibc.org):
  483. #10386: Add an option to put all compiled executables that
  484. show up on target/ in staging/ as well
  485. #11866: iniramfs file system fails to boot using Grub on EFI x86_64
  486. #12666: Doesn't pick up a custom bash profile
  487. #12696: Uboot 2020.01 Problem loading Linux kernel on Nano PI NEO
  488. #12701: [patch] wpa_supplicant must depend on openssl
  489. #12711: host-localedef 2.30-20 fails to compile on fedora 32 (gcc 10.0.1)
  490. #12716: bio.h not found
  491. #12726: systemctl preset-all failed for ctrl-alt-del.target
  492. #12731: rtl8188eu not buildung for banana pi M1 (glib, systemd, 4.18.12)
  493. #12746: "sysdig" package description points to
  494. http://sysdig.org, which bounces to malware site
  495. #12751: OpenJdk package installation issues on target
  496. #12796: Update OpenSSL to Version 1.1.1g to patch CVE-2020-1967
  497. #12811: bootstrap stuck and no login prompt
  498. 2020.02.8, released November 16th, 2020
  499. Important / security related fixes.
  500. Updated/fixed packages: angularjs, argp-standalone, asterisk,
  501. bandwidthd, bitcoin, busybox, cryptsetup, darkhttpd, davfs2,
  502. docker-cli, docker-containerd, docker-engine,
  503. dovecot-pigeonhole, fastd, fbset, fbtft, freetype, gcc,
  504. ghostscript, gnuradio, grpc, gst1-plugins-bad, jsoncpp,
  505. keepalived, libass, libexif, libiqrf, libpam-tacplus, libraw,
  506. linux-backports, linux-firmware, lzlib, netsnmp, nginx,
  507. oniguruma, opencv3, openntpd, patchelf, php, postgresql,
  508. python-pyqt5, qt5base, rauc, redis, samba4, slirp, systemd,
  509. tcpdump, tmux, tor, webkitgtk, wireguard-linux-compat,
  510. wireshark, wpewebkit, xen, xorriso, zeromq, zxing-cpp
  511. Issues resolved (http://bugs.uclibc.org):
  512. #11931: Bugs in support/scripts/apply-patches.sh
  513. 2020.02.7, released October 12th, 2020
  514. Important / security related fixes.
  515. meson: Correct SDK cross-compilation.conf file when
  516. per-package builds were used to build SDK.
  517. systemd: Use /run rather than /var/run for PID files in units.
  518. Toolchain: use Secure-PLT rather than BSS-PLT for PowerPC 32.
  519. support/script/pycompile: Rework logic to ensure .pyc files
  520. contain absolute target paths, fixing code inspection at
  521. runtime when executed with cwd != '/'.
  522. support/scripts/setlocalversion: Correct Mercurial output to
  523. match behaviour with Git.
  524. support/scripts/apply-patches.sh: Use patch
  525. --no-backup-if-mismatch, so we no longer blindly have to
  526. remove *.orig files after patching, fixing issues with
  527. packages containing such files.
  528. Updated/fixed packages: bandwidthd, barebox, bash, bison,
  529. brotli, cifs-utils, cryptsetup, dhcpcd, dhcpdump, docker-cli,
  530. docker-engine, ecryptfs-utils, efl, fail2ban, freetype, gcc,
  531. gdb, ghostscript, gnutls, go, gst1-plugins-base,
  532. gst1-plugins-ugly, ipmitool, libhtp, libraw, libssh, libxml2,
  533. libxml-parser-perl, localedef, lua, memcached, mesa3d, meson,
  534. minidlna, nginx, nodejs, nss-pam-ldapd, openvmtools, php,
  535. postgresql, python, python-aenum, python-autobahn,
  536. python-engineio, python-fire, python-pymodbus, python-scapy,
  537. python-semver, python-sentry-sdk, python-socketio,
  538. python-texttable, python-tinyrpc, python-txtorcon, python3,
  539. qt5base, runc, samba4, strace, supertux, suricata, systemd,
  540. vlc, wayland-protocols, wireguard-linux-compat, wireshark,
  541. xserver_xorg-server, zeromq, zstd
  542. Issues resolved (http://bugs.uclibc.org):
  543. #12911: usb_modeswitch installation race condition
  544. #13251: cryptsetup does not work on branch 2020.02 following..
  545. 2020.02.6, released September 5th, 2020
  546. Important / security related fixes.
  547. Fix a 2020.02.5 build regression in busybox when systemd (and
  548. not less) are enabled because of missing infrastructure.
  549. Updated/fixed packages: alsa-utils, avahi, busybox, cups,
  550. docker-cli, graphite2, imagemagick, libeXosip2, mbedtls,
  551. nvidia-driver, paho-mqtt-c, python-django, systemd, uclibc,
  552. usb_modeswitch, wolfssl
  553. Issues resolved (http://bugs.uclibc.org):
  554. #12911: usb_modeswitch installation race condition
  555. 2020.02.5, released August 29th, 2020
  556. Important / security related fixes.
  557. Infrastructure: Ensure RPATH entries that may be needed for
  558. dlopen() are not dropped by patchelf.
  559. BR_VERSION_FULL/setlocalversion (used by make print-version
  560. and /etc/os-release): Properly handle local git tags
  561. Updated/fixed packages: apache, at91bootstrap3, bind, boost,
  562. busybox, capnproto, chrony, collectd, cpio, cryptsetup, cups,
  563. cvs, dbus, docker-engine, domoticz, dovecot,
  564. dovecot-pigeonhole, dropbear, efl, elixir, f2fs-tools, ffmpeg,
  565. gd, gdk-pixbuf, ghostscript, glibc, grub2, gst1-plugins-bad,
  566. hostapd, iputils, jasper, json-c, libcurl, libwebsockets,
  567. linux, live555, mesa3d, mosquitto, mpv, nodejs, opencv,
  568. opencv3, openjpeg, patchelf, perl, php, postgresql,
  569. python-django, python-gunicorn, python-matplotlib, ripgrep,
  570. rtl8188eu, rtl8821au, ruby, shadowsocks-libev, squid,
  571. tpm2-abrmd, tpm2-tools, trousers, uacme, webkitgtk, wireshark,
  572. wolfssl, wpa_supplicant, wpewebkit, xen, xlib_libX11,
  573. xserver_xorg-server
  574. Issues resolved (http://bugs.uclibc.org):
  575. #12876: nodejs fails to build when host-icu has been built before
  576. #13111: python-gunicorn: missing dependency on python-setuptools
  577. #13121: wpa_supplicant fails to build without libopenssl enabled
  578. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  579. #13156: package live555 new license
  580. 2020.02.4, released July 26th, 2020
  581. Important / security related fixes.
  582. Toolchain:
  583. - Make external toolchain version check also work for
  584. toolchains configured with --with-gcc-major-version-only
  585. - Do not handle SOURCE_DATE_EPOCH in toolchain wrapper if the
  586. compiler supports it, fixing an issue with precompiled
  587. headers
  588. - Ensure debug libs from external toolchains are not installed
  589. into target if debugging is disabled
  590. Download:
  591. - Correct reproducibility issue in handling of git submodules
  592. for older git versions.
  593. - Fix file locking over NFS
  594. fs: Ensure cpio archive element order is reproducible
  595. Br2-external: Fix error reporting for invalid br2-external trees
  596. Per-package:
  597. - Fix an issue with python3 sysconfig data not getting
  598. correctly expanded
  599. - Fix per-package building for packages using the qmake
  600. infrastructure
  601. Updated/fixed packages: a10disp, asterisk, bind, cdrkit,
  602. checkpolicy, clamav, dbus, docker-cli, docker-engine,
  603. dvb-apps, e2fsprogs, exim, exiv2, freerdp, gnutls, go, grub2,
  604. gssdp, gst1-plugins-good, gst1-plugins-ugly, gupnp,
  605. intel-microcode, iproute2, irrlicht, iwd, jq, kodi, libcamera,
  606. libconfuse, libcurl, libglib2, libhttpserver, libmicrohttpd,
  607. libopenssl, libvncserver, libxml2, libxmlrpc, lxc, mbedtls,
  608. mesa3d, meson, mongodb, mtools, mutt, nghttp2, ngircd, nodejs,
  609. ntp, open-plc-utils, open2300, openjdk-bin, openssh,
  610. oracle-mysql, paho-mqtt-c, pcre, php, poco, prosody, putty,
  611. python-twisted, python-urllib3, python-validators, python3,
  612. qt5xmlpatterns, redis, rpi-firmware, rtl8821au, samba4, sdl2,
  613. sqlite, squid, syslog-ng, systemd, tcpreplay, tinydtls,
  614. upmpdcli, upx, vlc, webkitgtk, wireguard-linux-compat,
  615. wireshark, wpebackend-fdo, wpewebkit, zstd
  616. Issues resolved (http://bugs.uclibc.org):
  617. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_..
  618. #12946: Grub: Decompressor is too big.
  619. #12986: Mtools: Error converting to codepage 850
  620. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  621. #13011: Incorrect selection of gcc version
  622. #13026: rpi-firmware: must not rename start files
  623. #13031: nodejs: RangeError at new ArrayBuffer()
  624. #13046: Optimize for fast -Ofast is not compliant
  625. 2020.02.3, released June 3rd, 2020
  626. Important / security related fixes.
  627. Fix various build issues of host packages on hosts using GCC
  628. 10.
  629. Updated/fixed packages: arm-trusted-firmware, audit, bind,
  630. binutils, bison, clamav, crda, dovecot, dtc, efl, elf2flt,
  631. erlang, fakeroot, ffmpeg, fmc, fmlib, freerdp, gcc, git,
  632. glib-networking, gnupg, leveldb, libexif, libssh2,
  633. libusb-compat, linux-headers, lrzip, ltrace, mariadb, mesa3d,
  634. mp4v2, openldap, openocd, perl, php, prosody,
  635. python-pycryptodomex, python-pyqt5, qemu, rpi-firmware, rustc,
  636. speexdsp, sysrepo, systemd, tremor, vboot-utils, wireshark,
  637. xen
  638. Removed packages: python-pycrypto
  639. Issues resolved (http://bugs.uclibc.org):
  640. #12361: Init system (systemd) kills login on Raspberry Pi Zero
  641. #12656: bison fails to relocate with relocate-sdk.sh
  642. #12671: leveldb won't detect that snappy is present (static..
  643. #12691: host-rust build fails
  644. #12831: RPI-firmware package: DTB-overlay dependency
  645. 2020.02.2, released May 12th, 2020
  646. Important / security related fixes.
  647. Musl: Disallow on PPC64 cores without AltiVec support
  648. (E.G. e5500).
  649. fs/cpio: Correctly handle booting with 'console='
  650. release: Ensure temporary .br2-external.* files are not
  651. included in the release tarball
  652. Defconfigs: Fix various mistyped config options, or config
  653. options where the dependencies were no longer met.
  654. Updated/fixed packages: apache, azure-iot-sdk-c, binutils,
  655. boinc, c-ares, cvs, docker-cli, docker-containerd,
  656. docker-engine, domoticz, e2fsprogs, efl, evtest, exim, ffmpeg,
  657. freerdp, gcc, gflags, glibc, gnuconfig, haproxy, imx-gpu-2d,
  658. irrlicht, jpeg kodi-pvr-vuplus, libarchive, libcoap,
  659. libfpm-extra, libglib2, libhtp, libid3tag, libinput, libmad,
  660. libopenssl, libsepol, libssh, libv4l, libvncserver, libwpe,
  661. localedef, mariadb, matchbox, mbedtls, mc, mesa3d-headers,
  662. meson, midori, msgpack, netsnmp, nginx, ogre, openjdk,
  663. openldap, openvpn, p7zip, paho-mqtt-c, php, polkit, python,
  664. python-attrs, python-crossbar, python-dpkt, python-flask,
  665. python-future, python-iptables, python-jedi, python-markdown2,
  666. python3, qemu, qpdf, qt5, samba4, squashfs, squid, strongswan,
  667. suricata, tzdata, util-linux, vlc, wget, webkitgtk,
  668. wireguard-linux-compat, wireshark, wpebackend-fdo, wpewebkit,
  669. zic
  670. Issues resolved (http://bugs.uclibc.org):
  671. #11866: initramfs file system fails to boot using Grub on EFI x86_64
  672. #12271: python-iptables runtime dependencies
  673. #12726: systemctl preset-all failed for ctrl-alt-del.target
  674. #12751: OpenJdk package installation issues on target
  675. #12796: Update OpenSSL to Version 1.1.1g to patch CVE-2020-1967
  676. #12811: bootstrap stuck and no login prompt
  677. #12841: util-linux/sfdisk 2.35.1 fails on sector-size header
  678. 2020.02.1, released April 10th, 2020
  679. Important / security related fixes.
  680. core: Also fixup /lib references in libtool .la files, similar
  681. to how it is done for /usr/*.
  682. Various fixes for builds with per-package target/host
  683. directories.
  684. toolchain: Fix kernel headers validation check for external
  685. toolchains. Fix make 4.3+ compatibility in external toolchain
  686. logic.
  687. fs/initramfs: fix show-info so it also shows the usual
  688. rootfs-related variables.
  689. Updated/fixed packages: arm-trusted-firmware, barebox-aux,
  690. bluez5_utils, bubblewrap, busybox, civetweb, cog, collectd,
  691. ffmpeg, gcc, gnutls, gssdp, gvfs, haproxy, hiredis, hostapd,
  692. kmscube, kodi-screensaver-rsxs, libical, libinput, libexif,
  693. libopenssl, libsndfile, linux, linux-tools, llvm, localedef,
  694. mcrypt, mesa3d, meson, monit, nftables, ntp, opencv3,
  695. oprofile, php, pinentry, polkit, pure-ftpd, python-pyyaml,
  696. qt5, quagga, radvd, rcw, redis, rocksdb, samba4, screen,
  697. sdbusplus, swupdate, sysdig, sysklogd, syslinux, syslog-ng,
  698. tor, tslib, uacme, util-linux, vala, vlc,
  699. wireguard-linux-compat, wireguard-tools, wireshark,
  700. wpa_supplicant, xserver_xorg-server
  701. Issues resolved (http://bugs.uclibc.org):
  702. #12711: host-localedef 2.30-20 fails to compile on fedora 32
  703. #12746: "sysdig" package description points to http://sysdig.org, ..
  704. 2020.02, released March 8th, 2020
  705. Various fixes.
  706. br2-external: Fix compatibility with make 4.3+
  707. Updated/fixed packages: bash, bcm2835, binutils, cups,
  708. erlang-p1-acme, fbgrab, gr-osmosdr, gst1-plugins-base,
  709. gst1-validate, gstreamer1, guile, jhead, libdrm, libevdev,
  710. libinput, libnss, libsndfile, libvncserver, linux-firmware,
  711. mesa3d, nodejs, openjdk-bin, openvmtools, optee-test, patch,
  712. php, piglit, pppd, python-django, qemu, qt5base, ruby,
  713. ser2net, swupdate, thrift, zziplib
  714. Removed packages: classpath, jamvm
  715. Issues resolved (http://bugs.uclibc.org):
  716. #12606: fbgrab location has changed
  717. 2020.02-rc3, released March 2nd, 2020
  718. Fixes all over the tree.
  719. Infrastructure: Rework file list handling to fix race
  720. conditions when building with per-package target and host
  721. directories and top-level parallel builds.
  722. Updated/fixed packages: aufs, binutils, blktrace, brltty,
  723. cairo, dnsmasq, docker-compose, elf2flt, exim, exiv2, git,
  724. kodi-inputstream-adaptive, libarchive, libcgroup, libgdiplus,
  725. libssh2, libvncserver, libvorbis, linknx, linux-firmware, lxc,
  726. lz4, mosquitto, openjpeg, openrc, poco, proftpd, pure-ftpd,
  727. python3, python-multidict, python-setuptools-scm-git-archive,
  728. qpdf, qt5tools, rdesktop, rocksdb, shellinabox, squid,
  729. suricata, swig, systemd, taglib, util-linux, wireshark, zsh
  730. Issues resolved (http://bugs.uclibc.org):
  731. #12571: ltp-testsuite : Build failure
  732. #12576: 2020.02-RC1: error while loading shared libraries: ...
  733. #12581: 2020.02-rc1 glibc failing to build on fedora 31
  734. 2020.02-rc2, released February 26th, 2020
  735. Fixes all over the tree.
  736. Toolchain: Ensure strong SSP can only be enabled if the
  737. (external) toolchain supports it.
  738. Fix a race condition related to creating the output/staging
  739. symlink on systems with coreutils < 8.27.
  740. Drop support for the (end of life) Qt 5.6 variant.
  741. Updated/fixed packages: at, armadillo, audiofile, bash,
  742. busybox, erlang, fail2ban, fluidsynth, ipsec-tools, jpeg-turbo,
  743. kvm-unit-tests, libftdi1, libinput, libsvgtiny, libtomcrypt,
  744. libupnpp, libxml2, linux-tools, luv, mbedtls, mesa3d, minicom,
  745. openvmtools, php, qt5, qt5webengine, qwt, radvd, rcw,
  746. sdbusplus, systemd, tpm2-tss, vorbis-tools
  747. Issues resolved (http://bugs.uclibc.org):
  748. #12581: 2020.02-rc1 glibc failing to build on fedora 31
  749. 2020.02-rc1, released February 18th, 2020
  750. Fixes all over the tree and new features.
  751. Add experimental support for building with a per-package
  752. target and host directory. This still has some rough edges,
  753. but brings a number of advantages:
  754. - Packages will only be able to access the explicitly listed
  755. dependencies and not any other packages that happen to be
  756. built before, ensuring correct dependency information in
  757. Buildroot.
  758. - Possibility for top-level parallel builds, speeding up
  759. builds on multicore machines.
  760. Core: Ensure package-file-lists data is correct after
  761. incremental builds as well.
  762. Architecture: Add support for ARC-HS38 with 64bit multiplier
  763. variant, allow building glibc for big endian ARC, handle 16KB
  764. MMU page size for ARC in toolchain wrapper.
  765. Toolchain: Add binutils 2.33.1, GCC 7.5.0, Arm 9.2-2019.12
  766. toolchains, ARC 2019.09 toolchain. Allow using custom kernel
  767. headers newer than what is known by Buildroot.
  768. pkg-stats: Support for CVE vulnerability reporting by
  769. comparing to NVD database.
  770. Reproducible builds: The go -trimpath option is now used to
  771. get rid of absolute build paths, __FILE__ and __BASE_FILE__
  772. defines are now handled in the toolchain wrapper.
  773. Systemd: Build host variant and use systemctl to automatically
  774. enable unit files rather than manually managing symlinks.
  775. Util-linux: Ensure that hwclock is built without GPLv3
  776. code. Notice that builds with hwclock has contained
  777. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  778. New defconfigs: Beelink GS1, Raspberrypi4 64bit
  779. New packages: alura, avro-c, bubblewrap, cctz, cereal,
  780. cpuburn-arm, elixir, erlang-base64url, erlang-idna,
  781. erlang-jose, erlang-p1-acme, erlang-p1-mqtree,
  782. erlang-p1-yconf, fluid-soundfont, fluidsynth, gcnano-binaries,
  783. gensio, glslsandbox-player, libargon2, libmodsecurity,
  784. libpam-nfc, libtelnet, lua-codegen, lua-livr, lua-livr-extra,
  785. lua-rotas, lua-silva, mfoc, network-manager-openvpn,
  786. nginx-modsecurity, perl-crypt-openssl-aes,
  787. perl-math-prime-util, pipewire, ptm2human, python-aenum,
  788. python-aiohttp-debugtoolbar, python-aiohttp-mako,
  789. python-aiologstash, python-aiosignal, python-aiozipkin,
  790. python-async-lru, python-avro, python-bunch, python-crontab,
  791. python-dnspython, python-entrypoints, python-esptool,
  792. python-frozenlist, python-future, python-gitdb, python-janus,
  793. python-lockfile, python-logstash, python-nested-dict,
  794. python-pbr, python-pyaes, python-pydantic, python-smmap2,
  795. python-sockjs, python-zc-lockfile, raspi-gpio, rocksdb,
  796. sdbusplus, spidermonkey, thermald, ti-sgx-libgbm, tinyssh,
  797. tio, umtprd, weston-imx, wireguard-linux-compat,
  798. wireguard-tools, xdg-dbus-proxy
  799. Removed packages: bluez_utils, celt051, erlang-p1-iconv, fis,
  800. gadgetfs-test, libplayer, gstreamer, gst-ffmpeg,
  801. gst-fsl-plugins, gst-omapfb, gst-plugins-bad,
  802. gst-plugins-base, gst-plugins-good, gst-plugins-ugly,
  803. perl-digest-md5, perl-mime-base64, perl-net-ping,
  804. python-scapy3k, wireguard
  805. Issues resolved (http://bugs.uclibc.org):
  806. #11906: the new version of mesa3d cannot support etnaviv when..
  807. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  808. #12121: PyQt5.QtSerialPort and other modules not being built
  809. #12256: package tar is outdated (1.29 is 3 years old
  810. #12286: Can't import gobject in python 3.8
  811. #12376: python-scapy3k is deprecated
  812. #12386: carriage return issue when "make menuconfig"
  813. #12441: qt5webengine build error: asm/errno.h: No such file or..
  814. #12446: Buildroot fails to finish installing packages
  815. #12456: qtvirtualkeyboard: No such file or directory
  816. #12461: libglib2 build files with deep directory structure
  817. #12481: minicom fails when output directory path contains "m4"
  818. #12501: libnss-3.49.1: ld error: multiple definition of `gcm_..
  819. #12526: host-nodejs 12.14.1: configure fail: AttributeError: ..
  820. #12536: Linux-Headers extracting failure
  821. #12546: Ninja 1.10 build Error
  822. 2019.11.3, released April 10th, 2020
  823. Important / security related fixes.
  824. core: Fix compatibility with make 4.3+. Also fixup /lib
  825. references in libtool .la files, similar to how it is done for
  826. /usr/*.
  827. toolchain: Fix kernel headers validation check for external
  828. toolchains.
  829. fs/initramfs: fix show-info so it also shows the usual
  830. rootfs-related variables.
  831. Updated/fixed packages: barebox-aux, bluez5_utils, busybox,
  832. civetweb, cog, collectd, ffmpeg, gcc, gnutls, gssdp, gvfs, haproxy,
  833. hiredis, hostapd, kmscube, libical, libopenssl, libsndfile,
  834. linux-tools, llvm, monit, ntp, php, pure-ftpd, radvd, redis,
  835. samba4, screen, sysdig, syslinux, syslog-ng, tor, uacme,
  836. util-linux, vala, vlc, wpa_supplicant, xserver_xorg-server
  837. Issues resolved (http://bugs.uclibc.org):
  838. #12746: "sysdig" package description points to http://sysdig.org, ..
  839. 2019.11.2, released March 16th, 2020
  840. Important / security related fixes.
  841. Core: Ensure package-file-lists data is correct after
  842. incremental builds as well.
  843. Fix a race condition related to creating the output/staging
  844. symlink on systems with coreutils < 8.27.
  845. Toolchain: ARC tools bumped to arc-2019.09.
  846. Br2-external: Fix patch handling when external linux-extension
  847. packages are used. Fix compatibility with make 4.3+
  848. Util-linux: Ensure that hwclock is built without GPLv3
  849. code. Notice that builds with hwclock has contained
  850. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  851. Updated/fixed packages: armadillo, at, bcm2835, binutils,
  852. blktrace, bluez-alsa, bootstrap, brltty, busybox, cairo,
  853. clamav, cog, cups, czmq, dnsmasq, docker-containerd, dovecot,
  854. dovecot-pigeonhole, e2fsprogs, elf2flt, eudev, exim, exiv2,
  855. fbgrab, gettext-tiny, glibc, go, grep, gst1-validate, guile,
  856. imagemagick, jhead, jpeg-turbo, kvm-unit-tests, lapack,
  857. libarchive, libcgroup, libdrm, libevent, libexif, libftdi1,
  858. libgdiplus, libjpeg, libsigrok, libsndfile, libssh2,
  859. libsvgtiny, libvncserver, libvorbis, libxml2, libxslt, linknx,
  860. lxc, lz4, mariadb, mbedtls, meson, mongoose, mosquitto, musl,
  861. ncurses, nodejs, ntfs-3g, ogre, opencv3, openjdk, openjpeg,
  862. openrc, openswan, openvmtools, optee-test, patch, php, piglet,
  863. postgresql, pppd, proftpd, pure-ftpd, python-django,
  864. python-pyqt5, python-setuptools-scm-git-archive, python3,
  865. qemu, qt5base, qt5tools, qt5virtualkeyboard, qt5webengine,
  866. qwt, rdesktop, ruby, runc, samba4, shellinabox,
  867. skeleton-init-openrc, smartmontools, spdlog, sqlcipher, squid,
  868. suricata, swig, swupdate, sysklogd, taglib, thrift,
  869. ti-cgt-pru, uclibc, util-linux, vorbis-tools, webkitgtk,
  870. wireshark, wpebackend-fdo, wpewebkit, xen,
  871. xserver_xorg-server, zeromq, zsh, zziplib
  872. Issues resolved (http://bugs.uclibc.org):
  873. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  874. #12331: meson issue
  875. #12456: qtvirtualkeyboard: No such file or directory
  876. #12461: libglib2 build files with deep directory structure
  877. #12481: minicom fails when output directory path contains "m4"
  878. #12606: fbgrab location has changed
  879. 2019.11.1, released January 12th, 2020
  880. Important / security related fixes.
  881. Infrastructure: kconfig: Fix reconfigure logic, python: Ensure
  882. correct compiler and linker flags are used for compiled code
  883. utils/scanpypi: Remind users to update DEVELOPERS
  884. Defconfigs: imx6-sabresd: Fix the Qt5 display names,
  885. imx8: Drop extra copy of U-Boot DTB
  886. Updated/fixed packages: acsccid, bitcoin, boost, busybox,
  887. cc-tool, cmocka, cpio, cups, dante, dialog, dillo, docker-cli,
  888. docker-containerd, docker-engine, easy-rsa, ebtables,
  889. ecryptfs-utils, efl, ffmpeg, gdb, git, glibc, gnupg2, go,
  890. gpsd, grpc, gst1-plugins-bad, iputils, jasper,
  891. kf5-kcoreaddons, leveldb, libarchive, libfribi, libgit2,
  892. libkrb5, libp11, librsvg, libssh, libtomcrypt, libuio, libv4l,
  893. lirc-tools, log4cplus, lrzip, lvm2, mali-t76x,
  894. matchbox-desktop, mender-grubenv, mmc-utils, mosquitto,
  895. nodejs, ntp, openipmi, opencv3, openpowerlink, openrc, pango,
  896. perl-sys-cpu, pimd, postgresql, pulseaudio, python-brotli,
  897. python-coherence, python-crc16, python-django, python-dpkt,
  898. python-gobject, python-pyasn-modules, python-pypcap,
  899. python-pyqt5, python-subprocess32, python3, qpdf,
  900. qt-webkit-kiosk, qt5virtualkeyboard, qt5webengine, quota,
  901. rabbitmq-c, rauc, rpcbind, rtl8821au, runc, rygel, samba4,
  902. sdl2, setserial, snort, spidev_test,
  903. sunxi-mali-mainline-driver, syslog-ng, sysrepo, tcllib, tftpd,
  904. usbmount, w_scan, wavpack, wsapi, wsapi-fcgi, wsapi-xavante,
  905. x265, xserver_xorg-server, ytree, zip
  906. Issues resolved (http://bugs.uclibc.org):
  907. #12121: PyQt5.QtSerialPort and other modules not being built
  908. #12286: Can't import gobject in python 3.8
  909. 2019.11, released December 1st, 2019
  910. Various fixes.
  911. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  912. <pkg>_DL_OPTS by default, just like it is done for a number of
  913. other package variables.
  914. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  915. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  916. the (rare) case where the .py files are needed at runtime
  917. rather than .pyc.
  918. Updated/fixed packages: am33x-cm3, bind, collectd, go, gob2,
  919. gst1-plugins-bad, haproxy, jasper, jpeg-turbo, libdrm,
  920. libftdi, libftdi1, libnss, libselinux, libstrophe, lzma,
  921. minicom, network-manager, nodejs, oniguruma, opencv3,
  922. openvmtools, perl-gdgraph, perl-gdtextutil, prosody,
  923. python-cchardet, systemd, tiff, wolfssl,
  924. Issues resolved (http://bugs.uclibc.org):
  925. #11416: check-uniq-files staging issue
  926. #12146: Oprofile runtime issue
  927. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  928. #12171: Python-opencv needs config.py and config-3.7.py to run..
  929. #12196: duma package
  930. #12211: host-nodejs 10.15.3 package fail to build
  931. #12316: tzdata fails to install with empty "default local time"
  932. #12326: network-manager build fails with missing glib error
  933. #12366: Gstreamer1 gst1-plugins-bad do not compile with RPI-Userland
  934. 2019.11-rc3, released November 24th, 2019
  935. Fixes all over the tree.
  936. Updated/fixed packages: asterisk, clamav, domoticz, faifa,
  937. gerbera, kmod, kvm-unit-tests, libupnp18, linux-serial-test,
  938. lsof, ltp-testsuite, lxc, mesa3d, mesa3d-headers, perl, php,
  939. postgresql, qemu, rauc, redis, rpcbind, spice, spice-protocol,
  940. systemd, tftpd, waylandpp, webkitgtk, zip
  941. 2019.11-rc2, released November 16th, 2019
  942. Fixes all over the tree.
  943. Toolchain: ARC tools bumped to arc-2019.09-rc1, ensure
  944. external toolchain kernel headers version check correctly stop
  945. the build on mismatch
  946. Meson: Fix generation of global cross-compilation.conf
  947. Download: Also use the package download method for extra
  948. downloads from the same site, so it does not get confused by
  949. URLs containing '+'
  950. Defconfigs: Fix boot issue for beaglebone
  951. Updated/fixed packages: bird, chrony, connman, dhcp, domoticz,
  952. dropwatch, dtc, elf2flt, gettext-tiny, glog, intel-microcode,
  953. ipsec-tools, jailhouse, kodi, libfribi, libmbim, libressl,
  954. libsigrokdecode, libsvgtiny, linux-serial-test, ltp-testsuite,
  955. lvm2, lxc, mariadb, mesa3d, minizip, ndisc6, neardal, ninja,
  956. ofono, openvmtools, oracle-mysql, qt5wayland, safeclib, socat,
  957. sudo, systemd, wpewebkit, xserver_xorg-server
  958. 2019.11-rc1, released November 5th, 2019
  959. Fixes all over the tree and new features.
  960. Dependencies: Gcc/g++ 4.8 or newer is now required on the
  961. build host.
  962. Ensure host has JSON::PP perl module installed if
  963. webkitgtk/wpewebkit packages are enabled as it is needed
  964. during their build process.
  965. Toolchain: Add support for the D programming language (GCC
  966. 9.x, Glibc).
  967. GCC 9.x updated to 9.2.0, Glibc updated to 2.30, Musl updated
  968. to 1.1.24, uClibc-ng updated to 1.0.32, ARC toolchain updated
  969. to arc-2019.09-eng002.
  970. Musl: Add a patch to add support for
  971. sched_{get,set}scheduler() and sched_{get,set}param() for
  972. compatibility.
  973. Generate check-headers program under BUILD_DIR rather than
  974. /tmp to fix issues with distributions mounting /tmp noexec.
  975. Also copy libssp.so for external toolchains if SSP
  976. to handle toolchains providing SSP support in libssp rather
  977. than in the C library
  978. New defconfigs: Beaglebone AI, FriendlyARM Nanopi NEO Plus2,
  979. Libre Computer "La Frite", QEMU Armv7-A with trustzone/OP-TEE,
  980. STM32MP157 Discovery Kit
  981. Arch: RISC-V: Default to a sensible floating point ABI based
  982. on the selected ISA extensions rather than always defaulting
  983. to ILP32/64
  984. Graph-size: Package sizes are now shown in human readable form
  985. (Kib/Mib/Gib) rather than always in Kib. Binary (KB/MB/GB)
  986. format can be selected using the --binary option. The cut-off
  987. limit for classifying packages as "other" is now configurable
  988. using the --size-limit option.
  989. Br2-external: Linux kernel extensions can now also be provided
  990. in an external tree by adding packages under
  991. linux/linux-ext-*.mk. See the manual for details.
  992. Fakeroot now works correctly under Microsoft Windows 10
  993. Services for Linux, which does not provide SYSV IPC support
  994. The check-uniq-files logic which would complain if multiple
  995. packages would touch the same files has been removed as it
  996. causes issues in certain situations (when packages are
  997. rebuilt) and the issue is no longer considered a problem for
  998. toplevel parallel builds as those will use a per-package
  999. staging/target directory.
  1000. With this removed, Python is no longer required for a basic
  1001. build (only for optional scripts).
  1002. support/scripts/genimage.sh will no longer make a copy of
  1003. TARGET_DIR, speeding up post-build/image scripts.
  1004. The runtime test logic now uses Python 3.x.
  1005. A 'v' prefix has been dropped from the <pkg>_SOURCE variable
  1006. for a number of packages to match the version numbers used by
  1007. https://release-monitoring.org
  1008. New packages: caps, collectl, dav1d, fstrcmp, ima-evm-utils,
  1009. jitterentropy-library, kodi-vfs-rar, kodi-vfs-sftp, libavl,
  1010. libhttpserver, libmspack, libnetconf2, libolm, libyang,
  1011. linux-serial-test, lrzip, mdevd, minimodem, musl-fts, netifrc,
  1012. ogre, openlayers, python-aioredis, python-asgiref,
  1013. python-backports-functools-lru-cache, python-bluezero,
  1014. python-brotli, python-channels, python-channels-redis,
  1015. python-colorlog, python-daphne, python-django-enumfields,
  1016. python-jaraco-functools, python-kiwisolver, python-msgfy,
  1017. python-rpi-ws281x, python-setuptools-scm-git-archive,
  1018. python-simplelogging, python-soupsieve, python-sqliteschema,
  1019. python-sqlparse, python-tqdm, python-webencodings, qt5webview,
  1020. restclient-cpp, ripgrep, snmpclitools, sunwait, sysrepo,
  1021. uacme, utf8proc, uvw, ytree
  1022. Removed packages: alljoyn, alljoyn-base, alljoyn-tcl-base,
  1023. devmem2, eventlog, kodi-audiodecoder-opus,
  1024. kodi-screensaver-planestate, kodi-visualisation-waveforhue,
  1025. python-pysnmp-apps, riscv-pk, ustr
  1026. Issues resolved (http://bugs.uclibc.org):
  1027. #9881: systemd-resolved not setting resolv.conf link
  1028. #10171: devmem2 w (word) is 8 bytes in x86 64 systems
  1029. #10586: musl gcc has ifunc enabled when musl doesn't support it
  1030. #10806: Allow nfs-utils to use ipv6
  1031. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  1032. #11411: check-uniq-files target issue
  1033. #11766: Console (getty) issues with systemd
  1034. #11781: mariadb build error
  1035. #12031: Build of cups-filters fails while linking, apparently due..
  1036. #12116: console prompt does not appear after login
  1037. #12141: eudev package is missing "render" and "kvm" groups
  1038. #12181: dropbear: norootlogin (-w) no longer works when PAM is enabled
  1039. #12186: Raspberry Pi Zero-W build fails on newer kernel versions
  1040. #12191: cmake BUILDDIR
  1041. #12241: Permission denied while running "make"
  1042. #12261: sudo versions prior to 1.8.28 are affected.
  1043. #12276: make clean/distclean does not remove BR2_DL_DIR and BR2_HOST_DIR
  1044. #12281: Custom configuration fails to build (based on raspberrypi3_..
  1045. 2019.08.3, released December 7th, 2019
  1046. Important / security related fixes.
  1047. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  1048. <pkg>_DL_OPTS by default, just like it is done for a number of
  1049. other package variables
  1050. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  1051. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  1052. the (rare) case where the .py files are needed at runtime
  1053. rather than .pyc.
  1054. Fix <pkg>-reconfigure handling for packages using the kconfig
  1055. infrastructure.
  1056. Toolchain: ensure external toolchain kernel headers version
  1057. check correctly stop the build on mismatch
  1058. Deconfigs: beaglebone: fix boot issue
  1059. Updated/fixed packages: am33x-cm3, asterisk, bind, chrony,
  1060. clamav, cmocka, collectd, connman, dhcp, dropwatch, faifa,
  1061. gettext-tiny, gob2, haproxy, intel-microcode, ipsec-tools,
  1062. jailhouse, jasper, jpeg-turbo, kodi, kvm-unit-tests, libftdi,
  1063. libftdi1, libnss, libressl, libstrophe, libsvgtiny, lvm2,
  1064. lzma, mariadb, minicom, mosquitto, neardal, ninja, nodejs,
  1065. oniguruma, openvmtools, oracle-mysql, perl-gdgraph,
  1066. perl-gdtextutil, php, postgresql, prosody, python-cchardet,
  1067. python-django, qt5wayland, rabbitmq, rauc, redis, rpcbind,
  1068. socat, spice, spice-protocol, tftpd, tiff, webkitgtk
  1069. New packages: libmspack
  1070. Issues resolved (http://bugs.uclibc.org):
  1071. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  1072. #12171: Python-opencv needs config.py and config-3.7.py to run..
  1073. #12211: host-nodejs 10.15.3 package fail to build
  1074. #12316: tzdata fails to install with empty "default local time"
  1075. 2019.08.2, released November 9th, 2019
  1076. Important / security related fixes.
  1077. Toolchain: Also copy libssp.so for external toolchains if SSP
  1078. to handle toolchains providing SSP support in libssp rather
  1079. than in the C library
  1080. Download: Also use the package download method for extra
  1081. downloads from the same site, so it does not get confused by
  1082. URLs containing '+'
  1083. Fakeroot now works correctly under Microsoft Windows 10
  1084. Services for Linux, which does not provide SYSV IPC support
  1085. utils/test-pkg: ensure to exit with an error upon failure
  1086. Updated/fixed packages: asterisk, azmq, binutils,
  1087. cups-filters, domoticz, dtc, duma, elf2flt, eudev, exfat,
  1088. exfat-utils, fakeroot, fdk-aac, file, freerdp, gcc, gd,
  1089. ghostscript, go, gpsd, grpc, gst1-plugins-base, gvfs, icu,
  1090. intel-microcode, kvm-unit-tests, libfribidi, libnspr, libnss,
  1091. libopenssl, libpcap, libpciaccess, librsvg, libseccomp,
  1092. libsigrok, libtorrent, libunwind, libva, linux-tools,
  1093. lua-sdl2, lxc, minizip, mjpegtools, mongoose, mono, nbd,
  1094. nfs-utils, php, piglit, python, python-autobahn,
  1095. python-pysnmp-apps, python-tornado, python3, qemu, qt5base,
  1096. ruby, safeclib, samba4, sdl_mixer, sox, sudo, suricata,
  1097. systemd, tcpdump, unscd, util-linux, vdr-plugin-vnsiserver,
  1098. vtun, wireshark, xvisor, yaffs2utils
  1099. Issues resolved (http://bugs.uclibc.org):
  1100. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  1101. #12261: sudo versions prior to 1.8.28 are affected
  1102. 2019.08.1, released October 3rd, 2019
  1103. Important / security related fixes.
  1104. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  1105. Use default console settings
  1106. Dependencies: Ensure host has JSON::PP perl module installed
  1107. if webkitgtk/wpewebkit packages are enabled as it is needed
  1108. during their build process.
  1109. Toolchain: Generate check-headers program under BUILD_DIR
  1110. rather than /tmp to fix issues with distributions mounting
  1111. /tmp noexec.
  1112. Updated/fixed packages: asterisk, augeas, axel, bind, bwm-ng,
  1113. cups, cups-filters, docker-cli, docker-engine, docker-proxy,
  1114. e2fsprogs, eudev, exim, expat, gcc, go, haveged, ifplugd, joe,
  1115. kf5-extra-cmake-modules, kf5-modemmanager-qt,
  1116. kf5-networkmanager-qt, libcamera, libcurl, libgcrypt,
  1117. libglib2, libgpg-error, libnspr, libnss, libopenssl,
  1118. logrotate, luksmeta, mariadb, mbedtls, mongodb, mosquitto,
  1119. ncurses, nfs-utils, nghttp2, nodejs, openvmtools, php,
  1120. protobuf, putty, qemu, samba4, snort, swupdate,
  1121. systemd-bootchart, thttpd, uclibc, unzip, util-linux,
  1122. wireshark
  1123. Issues resolved (http://bugs.uclibc.org):
  1124. #10806: Allow nfs-utils to use ipv6
  1125. #11781: mariadb build error
  1126. #12031: Build of cups-filters fails while linking, apparently due..
  1127. #12141: eudev package is missing "render" and "kvm" groups
  1128. #12241: Permission denied while running "make"
  1129. 2019.08, released September 1st, 2019
  1130. Various fixes.
  1131. Defconfigs: Removed nanopc t4, nanopi m4 and neo4, pine64
  1132. rockpro64 and raxda rock pi4 as they rely on a ARM32 toolchain
  1133. on the build host to build ATF. These defconfigs will be added
  1134. back once a package providing such toolchain is
  1135. available. Also dropped ts4800 defconfig as it does not build
  1136. with GCC >= 8.x.
  1137. Updated/fixed packages: libxcb, php, python-numpy, webkitgtk,
  1138. wpewebkit, xfont_font-util
  1139. Issues resolved (http://bugs.uclibc.org):
  1140. #12156: buildroot-2019.08-rc3 does not build for Pi Zero W
  1141. 2019.08-rc3, released August 28th, 2019
  1142. Fixes all over the tree.
  1143. Updated/fixed packages: clamav, dovecot, dovecot-pigeonhole,
  1144. gcc, intel-microcode, libmicrohttpd, libmodplug, mpg123,
  1145. nginx, openldap, python, qemu, samba4, squid, strace, vlc
  1146. Issues resolved (http://bugs.uclibc.org):
  1147. #11686: fbdev_drv.so: undefined symbol: shadowUpdatePackedWeak,..
  1148. 2019.08-rc2, released August 20th, 2019
  1149. Fixes all over the tree.
  1150. Compile fixes for a number of defconfigs.
  1151. Updated/fixed packages: apache, autofs, batctl, batman-adv,
  1152. bind, collectd, cwiid, dahdi-linux, dahdi-tools, daq,
  1153. dehydrated, dhcp, dtc, efl, enlightenment, evtest, giflib,
  1154. gnutls, go, gst-plugins-bad, gst-plugins-base,
  1155. gst1-plugins-bad, gst1-plugins-base, gst1-rtsp-server, gtkmm3,
  1156. gupnp, harfbuzz, imagemagick, lftp, libbsd, libcpprestsdk,
  1157. libdnet, libfm, libgit2, libgtk2, libgtk3, libpri, librsvg,
  1158. libss7, libssh2, libwpe, lua-cqueues, metacity, micropython,
  1159. mpd, mpg123, musl, mpv, openblas, openbox, opencv, pango,
  1160. pcmanfm, piglit, pigpio, pinentry, postgresql, qemu, qt5base,
  1161. qt5enginio, qt5multimedia, qt5serialbus, quagga, quazip,
  1162. rrdtool, rygel, samba4, stellarium, tcpreplay, ti-gfx, vte,
  1163. wampcc, wilink-bt-firmware, wireless-regdb, wpebackend-fdo,
  1164. xscreensaver
  1165. Removed packages: libamcodec, odroid-mali, odroid-scripts
  1166. Issues resolved (http://bugs.uclibc.org):
  1167. #9481: NetworkManager/Ping unable to resolve domains
  1168. #10566: php.mk is missing option --with-pgsql
  1169. #10861: Package batman_adv Makefile is missing include header direct..
  1170. #11641: linux kernel .config timestamp always out of date fixed with..
  1171. #11671: russian locale ru_RU:145: LC_TIME: syntax error
  1172. #11701: recuuring of usr and in bin shortcuts are created
  1173. #11741: pigpio does not build host-pigpio
  1174. #11876: automount using host mount/umount
  1175. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  1176. #11921: dahdi fails to build
  1177. #11936: libcpprestsdk should install to staging
  1178. #11946: wilink-bt-firmware: moved from github to http://git.ti.com/ti-bt
  1179. #11961: libpri build failure
  1180. #12086: dhcp shared libraries not installed to target
  1181. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  1182. #12106: daq: build fails if libdumbnet-dev is installed in the host
  1183. #12126: vc4 has neon as hard dependency
  1184. 2019.08-rc1, released August 9th, 2019
  1185. Fixes all over the tree and new features.
  1186. toolchain: ARC toolchain updated to 2019.03 (binutils 2.32.51
  1187. / GCC 8.3.1 / glibc 2.29), ARM AAarch64/ARM toolchains updated
  1188. to 2019.03. Add GCC 9.1.0, remove GCC 4.9 and 6.5, add GDB
  1189. 8.3, remove GDB 7.12 and 8.0.1, default to GDB 8.2, GCC
  1190. 8.3.0. Musl updated to 1.1.23, bringing support for RISC-V 64.
  1191. Architectures: Internal toolchain support for C-SKY, support
  1192. for ARC HS48 v3.1 and HS38 with Quad MAC & FPU, support for
  1193. ARM A76, A76/A55 big.LITTLE, emag, neoverse-N1, phecda and
  1194. tsv110.
  1195. Filesystems: Pass extra pax options to tar for binary
  1196. reproducibility. Build host-cpio for the --reproducible option
  1197. support when BR2_REPRODUCIBLE is enabled. Genimage updated to
  1198. version 11, bringing GPT support.
  1199. Br2-external: Add support for injecting additional options to
  1200. the list of preconfigured external toolchains and libjpeg and
  1201. openssl providers using files under provides/. See the manual
  1202. for details.
  1203. Ensure custom <pkg>_OVERRIDE_SRCDIR_RSYNC_EXCLUSIONS are
  1204. passed before the standard exclusions so they are not ignored
  1205. by rsync when using override-srcdir.
  1206. Gnuconfig updated to 2019-05-28, adding C-SKY support.
  1207. test-pkg: Correct long option handling and clean output dir
  1208. after a successful build to save disk space.
  1209. support/testing: Emulate a machine with 256MB RAM to fix
  1210. issues with certain tests running out of memory, use
  1211. virtio-rng to provide needed entrophy.
  1212. pkg-stats: support outputting in JSON format with --json for
  1213. easier post processing. The classic HTML output is still
  1214. available with --html. Parallelize access to
  1215. release-monitoring.org to speed up runtime.
  1216. Drop non-conventional version prefix/suffix/separators for
  1217. packages for better compatibility with release-monitoring.org
  1218. Packages:
  1219. Init systems: Add basic openrc support and
  1220. <pkg>_INSTALL_INIT_OPENRC variable in the infrastructure to
  1221. install openrc service scripts if enabled.
  1222. busybox: Build each applet as a separate binary when SELinux
  1223. is enabled for more finegrained policy control. Use daemon
  1224. mode for mdev rather than legacy hotplug.
  1225. linux: Workaround -Werror related build failure on powerpc,
  1226. by forcing CONFIG_PPC_DISABLE_WERROR on.
  1227. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  1228. partition is available before mounting.
  1229. New defconfigs: HiFive Unleashed, I.MX8MM EVK and Pico, Nanopi
  1230. m4 and neo4, Nanopc t4, Olimex A33 olinuxino, Pine64
  1231. Rockpro64, PowerPC mac99, QEMU C-SKY 610/807/810/860 virt,
  1232. Raspberry Pi 4, Raxda rock pi4, Solidrun Clearfog GT-8K
  1233. Removed defconfigs: Odroid C2
  1234. New packages: bitcoin, c-capnproto, fatcat, ifmetric, jack1,
  1235. jailhouse, libubootenv, luasyslog, mender-grubenv,
  1236. murata-cyw-fw, openrc, piglit, python-colorama, python-cycler,
  1237. python-hiredis, python-ifaddr, python-inflection,
  1238. python-iptables, python-matplotlib, python-periphery,
  1239. python-pycairo, python-redis, python-termcolor,
  1240. python-tinyrpc, python-txdbus, skeleton-init-openrc, spdlog,
  1241. sshguard, stellarium, zziplib
  1242. Removed packages: xapp_mkfontdir
  1243. Issues resolved (http://bugs.uclibc.org):
  1244. #11096: Upgrade from glibc 2.26 to 2.27 broke some locales...
  1245. #11271: utils/check-package fails with exception depending on..
  1246. #11991: [numpy] segfault when compiling for RPi3 64bits
  1247. #12016: Grub fails to boot bzImage after upgrade to 2019.05
  1248. #12046: Can’t login as root user after upgrading to buildroot..
  1249. #12051: package/dhcp installs libtool wrapper scripts on tar...
  1250. #12076: Patchelf can link against an incompatible libc++ ver...
  1251. 2019.05.3, Released October 3rd, 2019
  1252. Important / security related fixes.
  1253. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  1254. Use default console settings
  1255. Dependencies: Ensure host has JSON::PP perl module installed
  1256. if webkitgtk/wpewebkit packages are enabled as it is needed
  1257. during their build process.
  1258. Toolchain: Generate check-headers program under BUILD_DIR
  1259. rather than /tmp to fix issues with distributions mounting
  1260. /tmp noexec.
  1261. Updated/fixed packages: asterisk, augeas, bind, bwm-ng, cups,
  1262. cups-filters, docker-cli, docker-engine, docker-proxy,
  1263. e2fsprogs, eudev, exim, expat, gcc, go, haveged, ifplugd,
  1264. iptables, joe, kf5-extra-cmake-modules, kf5-modemmanager-qt,
  1265. kf5-networkmanager-qtlibcamera, libcurl, libgcrypt,
  1266. libgpg-error, libnftl, libnspr, libnss, libopenssl,
  1267. libtorrent-rasterbar, luksmeta, mariadb, mbedtls, mongodb,
  1268. mosquitto, ncurses, nfs-utils, nghttp2, nodejs, openvmtools,
  1269. php, protobuf, putty, qemu, samba4, swupdate,
  1270. systemd-bootchart, thttpd, uclibc, unzip, util-linux,
  1271. wireshark
  1272. Issues resolved (http://bugs.uclibc.org):
  1273. #10806: Allow nfs-utils to use ipv6
  1274. #11781: mariadb build error
  1275. #12031: Build of cups-filters fails while linking, apparently due..
  1276. #12141: eudev package is missing "render" and "kvm" groups
  1277. #12241: Permission denied while running "make"
  1278. 2019.05.2, Released September 3rd, 2019
  1279. Important / security related fixes.
  1280. Filesystems: Pass extra pax options to tar for binary
  1281. reproducibility.
  1282. Updated/fixed packages: apache, arm-trusted-firmware,
  1283. asterisk, atk, autofs, batctl, batman-adv, berkeleydb,
  1284. busybox, bzip2, clamav, cloop, cmake, collectd, connman-gtk,
  1285. dahdi-linux, dahdi-tools, daq, dehydrated, dhcp, dovecot,
  1286. dovecot-pigeonhole,, elfutils, evtest, exim, expect, giflib,
  1287. git, glib-networking, glibc, gnupg2, gnutls, go,
  1288. gst1-rtsp-server, gtkperf, gupnp-tools, gvfs, imagemagick,
  1289. imx-uuc, intel-microcode, json-glib, lftp, libbsd, libcurl,
  1290. libgit2, libgtk2, libgtk3, libmodplug, libnss, libpri,
  1291. libshout, libss7, libssh2, libvips, libxcb, linux-headers,
  1292. mdadm, mesa3d, metacity, mpg123, mosquitto, musl, nginx,
  1293. oniguruma, openblas, opencv3, openjdk, openjdk-bin, openldap,
  1294. openvmtools, pcmanfm, php, pigpio, postgresql, prboom,
  1295. proftpd, proj, python, python-django, python-idna,
  1296. python-numpy, python-urllib3, python3, qemu, qt5, qt5base,
  1297. qt5enginio, quagga, rygel, squid, subversion, tcpreplay,
  1298. unzip, vlc, vte, webkitgtk, wireless-regdb, xen,
  1299. xfont_font-util, xlib_libICE, xlib_libXfont, xlib_libXfont2,
  1300. yad, zeromq
  1301. Issues resolved (http://bugs.uclibc.org):
  1302. #11741: pigpio does not build host-pigpio
  1303. #11876: automount using host mount/umount
  1304. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  1305. #11921: dahdi fails to build
  1306. #11961: libpri build failure
  1307. #12086: (dhcpd-missing-libs) - dhcp shared libraries not installed to..
  1308. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  1309. #12106: daq: build fails if libdumbnet-dev is installed in the host
  1310. #12126: vc4 has neon as hard dependency
  1311. 2019.05.1, Released July 7th, 2019
  1312. Important / security related fixes.
  1313. arch: x86: Fix typo breaking 'core-avx2' variant
  1314. linux: Workaround -Werror related build failure on powerpc,
  1315. by forcing CONFIG_PPC_DISABLE_WERROR on.
  1316. support/testing: Emulate a machine with 256MB RAM to fix
  1317. issues with certain tests running out of memory.
  1318. test-pkg: Correct long option handling and clean output dir
  1319. after a successful build to save disk space.
  1320. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  1321. partition is available before mounting.
  1322. Updated/fixed packages: barebox, busybox, bzip2, davfs2,
  1323. dialog, docker-cli, docker-engine, exim, expat, faad2,
  1324. haveged, irssi, libcamera, libcdaudio, libcurl, libglib2,
  1325. libressl, libsecret, lmbench, meson, monit, php, postgresql,
  1326. psplash, python-django, qt5base, tvheadend, webkitgtk,
  1327. xserver_xorg-server, znc
  1328. 2019.05, released June 2nd, 2019
  1329. Various fixes.
  1330. Toolchain: Ensure pre-built Andes toolchains can only be
  1331. selected when x86 32bit support is available on the host.
  1332. Disallow PowerPC SPE ABI for GCC >= 8.x, as it is no longer
  1333. supported.
  1334. Infra: pkg-config: Use a dedicated timestamp file rather than
  1335. .config as that gets touched by linux-4.19+, causing repeated
  1336. builds.
  1337. Add C-SKY support to our config.sub (gnuconfig)
  1338. Updated/fixed packages: dosfstools, botan, brotli, dropbear,
  1339. flare-engine, gst1-plugins-bad, libhtp, libnss, libopenssl,
  1340. linuxptp, matchbox-panel, mender, mutt, netsurf,
  1341. network-manager, opencv3, openjdk, openmpi, php,
  1342. python-cython, qt5multimedia, qtwayland, qt5webkit-examples,
  1343. supertux, suricata, tpm2-totp, v4l2loopback, wireshark,
  1344. wpewebkit
  1345. 2019.05-rc3, released May 25th, 2019
  1346. Fixes all over the tree.
  1347. check-bin-arch: Ignore /usr/lib/grub, similar to how /lib/grub
  1348. is ignored.
  1349. check-package: Warn about utf-8 characters in .mk files
  1350. Linux: Default to 5.1.x series
  1351. Updated/fixed packages: assimp, atop, chocolate-doom, cjson,
  1352. ddrescue, dhcp, ffmpeg, gerbera, glibmm, gpsd, gst-ffmpeg,
  1353. intel-microcode, jasper, keepalived, kismet, libcpprestsdk,
  1354. libcurl, libssh2, libupnp18, luarocks, mono-gtksharp3, opus,
  1355. postgresql, pcsc-lite, python, tslib, webkitgtk,
  1356. wpebackend-fdo, wpewebkit
  1357. 2019.05-rc2, released May 15th, 2019
  1358. Fixes all over the tree.
  1359. Updated/fixed packages: bind, bullet, ca-certificates,
  1360. collectd, cracklib, dhcp, gdb, libinput, libtorrent-rasterbar,
  1361. linknx, lynx, mono, netsurf, optee-os, postgresql, qt5enginio,
  1362. qt5multimedia, rpm, samba4, sqlite, strace, uclibc, woff2
  1363. Issues resolved (http://bugs.uclibc.org):
  1364. #11841: grub-efi.cfg not used when building EFI disk image
  1365. 2019.05-rc1, Released May 8th, 2019
  1366. Fixes all over the tree and new features.
  1367. Architecture: Andes 32-bit (nds32) support added.
  1368. Only build host-lzip / host-xz when really needed by packages,
  1369. not just when not available on the build host.
  1370. Toolchain: Glibc bumped to 2.29, musl bumped to 1.1.22,
  1371. binutils 2.32 added, 2.28/2.29 removed, default changed to
  1372. 2.31.1.
  1373. fs: Set FAKEROOTDONTTRYCHOWN environment variable to not
  1374. forward {f,l,}chown calls to libc when running under fakeroot
  1375. to fix issues when building in restricted environments
  1376. (E.G. user namespace with bubblewrap).
  1377. Linux: Also build default make target to ensure extra files
  1378. like the gdb scripts enabled by CONFIG_GDB_SCRIPTS are also
  1379. built. Notice: This may mean that extra host utilities like
  1380. uboot-mkimage are needed.
  1381. Infrastructure: show-info and <pkg>-show-info make targets
  1382. added to output package metadata in JSON format for external
  1383. use.
  1384. pkg-generic: Only tweak .la files needing it to ensure they
  1385. are not included in subsequent package file lists.
  1386. test-pkg: Generate a basic package config if none is
  1387. specified.
  1388. Gettext-tiny package added as an lightweight replacement for
  1389. GNU gettext for situations where NLS support is not needed.
  1390. New defconfigs: Andes AE3XX, Freescale imx8mpico / imx8qxpmek
  1391. / T2080 QDS RDB, Licheepi zero, Orangepi R1
  1392. Removed defconfigs: Olimx A20 Olinuxino Lime legacy
  1393. New packages: bats-core, bayer2rgb-neon, brickd, cog, dacapo,
  1394. enet, gettext-tiny, gli, gst1-plugins-bayer2rgb-neon,
  1395. imx-sc-firmware, intel-mediadriver, intel-mediasdk, libcamera,
  1396. libhtp, libp11, libwpe, lua-binaryheap, lua-gd, lua-lunitx,
  1397. mender-artifact, most, oniguruma, openjdk, openjdk-bin,
  1398. opensbi, optee-benchmark, optee-client, optee-examples,
  1399. optee-os, optee-test, paho-mqtt-cpp, python-aioblescan,
  1400. python-aioconsole, python-aiohttp-cors, python-aiomonitor,
  1401. python-backcall, python-jedi, python-parso, python-pyjwt,
  1402. python-terminaltables, suricata, tpm2-totp, uftp,
  1403. wpebackend-fdo, wpewebkit
  1404. Removed packages: libump, lunit, sunxi-mali
  1405. Issues resolved (http://bugs.uclibc.org):
  1406. #11716: Typo on website, saying latest release is 2018.2.11
  1407. #11756: package/syslinux: MBR's don't fit because of binutils..
  1408. #11761: Building custom kernel 5.1-rc3 or later breaks on objtool
  1409. #11816: Only selected coreutils binaries are installed
  1410. 2019.02.11, released April 9th, 2020
  1411. Important / security related fixes.
  1412. core: Fix compatibility with make 4.3+. Also fixup /lib
  1413. references in libtool .la files, similar to how it is done for
  1414. /usr/*.
  1415. toolchain: Fix kernel headers validation check for external
  1416. toolchains.
  1417. Updated/fixed packages: barebox-aux, bluez5_utils, busybox,
  1418. civetweb, collectd, ffmpeg, gcc, gnutls, gvfs, haproxy,
  1419. hiredis, kmscube, libical, libopenssl, libsndfile,
  1420. linux-tools, ntp, php, pure-ftpd, screen, sysdig, tor,
  1421. util-linux, vala, vlc, xserver_xorg-server
  1422. Issues resolved (http://bugs.uclibc.org):
  1423. #12746: "sysdig" package description points to http://sysdig.org, ..
  1424. 2019.02.10, released March 16th, 2020
  1425. Important / security related fixes.
  1426. Core: Ensure package-file-lists data is correct after
  1427. incremental builds as well.
  1428. Fix a race condition related to creating the output/staging
  1429. symlink on systems with coreutils < 8.27.
  1430. Br2-external: Fix compatibility with make 4.3+
  1431. Util-linux: Ensure that hwclock is built without GPLv3
  1432. code. Notice that builds with hwclock has contained
  1433. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  1434. Updated/fixed packages: armadillo, at, binutils, blktrace,
  1435. bootstrap, busybox, cairo, cups, czmq, dnsmasq,
  1436. docker-containerd, dovecot, dovecot-pigeonhole, e2fsprogs,
  1437. eudev, exim, exiv2, fbgrab, grep, gst1-validate, guile,
  1438. imagemagick, jhead, kvm-unit-tests, lapack, libcgroup,
  1439. libftdi1, libjpeg, libsigrok, libsndfile, libssh2, libsvgtiny,
  1440. libvncserver, libvorbis, libxml2, libxslt, linux, lz4,
  1441. mariadb, mbedtls, meson, mfgtools, mongoose, ncurses, ntfs-3g,
  1442. opencv3, openjpeg, openswan, openvmtools, patch, php,
  1443. postgresql, pppd, proftpd, pure-ftpd, python-django,
  1444. python-pyqt5, python3, qemu, qt5base, qt5webengine, qwt,
  1445. rdesktop, ruby, runc, samba4, shellinabox, smartmontools,
  1446. sqlcipher, squid, swupdate, sysklogd, taglib, thrift,
  1447. ti-cgt-pru, uboot, util-linux, vorbis-tools, webkitgtk,
  1448. wireshark, xen, xserver_xorg-server, zeromq, zsh
  1449. Issues resolved (http://bugs.uclibc.org):
  1450. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  1451. #12331: meson issue
  1452. #12461: libglib2 build files with deep directory structure
  1453. #12606: fbgrab location has changed
  1454. 2019.02.9, released January 12th, 2020
  1455. Important / security related fixes.
  1456. pkg-python infrastructure: Ensure correct compiler and linker
  1457. flags are used for compiled code
  1458. utils/scanpypi: Remind users to update DEVELOPERS
  1459. Updated/fixed packages: busybox, cc-tool, cpio, cups, dante,
  1460. dillo, docker-cli, docker-containerd, docker-engine, easy-rsa,
  1461. ecryptfs-utils, efl, git, glibc, gnupg2, gst1-plugins-bad,
  1462. kf5-kcoreaddons, libarchive, libgit2, libkrb5, librsvg,
  1463. libssh, libtomcrypt, libuio, lirc-tools, lvm2,
  1464. matchbox-desktop, nodejs, ntp, opencv3, openpowerlink,
  1465. python-django, python-ecdsa, python-pyasn-modules,
  1466. python-pyqt5, python-subprocess32, python3, qpdf, runc, rygel,
  1467. samba4, sdl2, wavpack, xserver_xorg-server, zip
  1468. Issues resolved (http://bugs.uclibc.org):
  1469. #12121: PyQt5.QtSerialPort and other modules not being built
  1470. 2019.02.8, released December 7th, 2019
  1471. Important / security related fixes.
  1472. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  1473. <pkg>_DL_OPTS by default, just like it is done for a number of
  1474. other package variables
  1475. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  1476. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  1477. the (rare) case where the .py files are needed at runtime
  1478. rather than .pyc.
  1479. Fix <pkg>-reconfigure handling for packages using the kconfig
  1480. infrastructure.
  1481. Toolchain: ensure external toolchain kernel headers version
  1482. check correctly stop the build on mismatch
  1483. Deconfigs: beaglebone: fix boot issue
  1484. Updated/fixed packages: am33x-cm3, asterisk, bind, chrony,
  1485. clamav, collectd, connman, faifa, gob2, haproxy,
  1486. intel-microcode, ipsec-tools, jasper, jpeg-turbo, kodi,
  1487. kvm-unit-tests, libftdi, libftdi1, libnss, libstrophe,
  1488. libsvgtiny, lvm2, lzma, mariadb, minicom, neardal, nodejs,
  1489. opencv3, openvmtools, oracle-mysql, perl-gdgraph,
  1490. perl-gdtextutil, php, postgresql, prosody, python-django,
  1491. rabbitmq-c, rauc, redis, rpcbind, socat, spice,
  1492. spice-protocol, tftpd, tiff, webkitgtk
  1493. New packages: libmspack
  1494. Issues resolved (http://bugs.uclibc.org):
  1495. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  1496. #12171: Python-opencv needs config.py and config-3.7.py to run..
  1497. #12211: host-nodejs 10.15.3 package fail to build
  1498. #12316: tzdata fails to install with empty "default local time"
  1499. 2019.02.7, Released November 10th, 2019
  1500. Important / security related fixes.
  1501. support/testing: use a kernel with HW_RANDOM_VIRTIO to work
  1502. around issues with lack of entrophy
  1503. Toolchain: Also copy libssp.so for external toolchains if SSP
  1504. is enabled to handle toolchains providing SSP support in
  1505. libssp rather than in the C library
  1506. Download: Also use the package download method for extra
  1507. downloads from the same site, so it does not get confused by
  1508. URLs containing '+'
  1509. Fakeroot now works correctly under Microsoft Windows 10
  1510. Services for Linux, which does not provide SYSV IPC support
  1511. utils/test-pkg: ensure to exit with an error upon failure
  1512. Updated/fixed packages: asterisk, azmq, cups-filters,
  1513. domoticz, duma, elf2flt, eudev, exfat, exfat-utils, fakeroot,
  1514. file, freerdp, gd, ghostscript, go, gvfs, intel-microcode,
  1515. kvm-unit-tests, libarchive, libnspr, libnss, libopenssl,
  1516. libpcap, libpciaccess, librsvg, libseccomp, libsigrok,
  1517. libtorrent, libunwind, linux-tools, lua-sdl2, lxc, minizip,
  1518. mjpegtools, mongoose, php, python, python-pysnmp-apps,
  1519. python3, qemu, qt5base, ruby, safeclib, samba4, sdl_mixer,
  1520. sox, sudo, systemd, tcpdump, unscd, util-lkinux, vtun, xvisor,
  1521. yaffs2utils
  1522. Issues resolved (http://bugs.uclibc.org):
  1523. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  1524. #12261: sudo versions prior to 1.8.28 are affected
  1525. 2019.02.6, Released October 3rd, 2019
  1526. Important / security related fixes.
  1527. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  1528. Use default console settings
  1529. Dependencies: Ensure host has JSON::PP perl module installed
  1530. if webkitgtk/wpewebkit packages are enabled as it is needed
  1531. during their build process.
  1532. Toolchain: Generate check-headers program under BUILD_DIR
  1533. rather than /tmp to fix issues with distributions mounting
  1534. /tmp noexec.
  1535. Updated/fixed packages: asterisk, augeas, bind, bwm-ng, cups,
  1536. cups-filters, docker-cli, docker-engine, docker-proxy,
  1537. dropbear, e2fsprogs, eudev, exim, expat, gcc, go, ifplugd,
  1538. haveged, iptables, joe, kf5-extra-cmake-modules,
  1539. kf5-modemmanager-qt, kf5-networkmanager-qt, libcurl,
  1540. libgcrypt, libgpg-error, libnftl, libnspr, libnss, libopenssl,
  1541. luksmeta, mariadb, mbedtls, mongodb, mosquitto, ncurses,
  1542. nfs-utils, nghttp2, nodejs, openvmtools, php, protobuf, putty,
  1543. qemu, qt5base, samba4, swupdate, systemd-bootchart, thttpd,
  1544. uclibc, unzip, util-linux, wireshark
  1545. Issues resolved (http://bugs.uclibc.org):
  1546. #10806: Allow nfs-utils to use ipv6
  1547. #11781: mariadb build error
  1548. #12031: Build of cups-filters fails while linking, apparently due..
  1549. #12141: eudev package is missing "render" and "kvm" groups
  1550. #12181: dropbear: norootlogin (-w) no longer works when PAM is enabled
  1551. #12241: Permission denied while running "make"
  1552. 2019.02.5, Released September 2nd, 2019
  1553. Important / security related fixes.
  1554. Filesystems: Pass extra pax options to tar for binary
  1555. reproducibility.
  1556. Updated/fixed packages: apache, arm-trusted-firmware,
  1557. asterisk, atk, autofs, batctl, batman-adv, berkeleydb, brotli,
  1558. busybox, bzip2, clamav, cloop, cmake, collectd, connman-gtk,
  1559. cryptopp, dahdi-linux, dahdi-tools, daq, dehydrated, dovecot,
  1560. dovecot-pigeonhole,, elfutils, evtest, exim, expect, giflib,
  1561. git, glib-networking, glibc, gnupg2, gnutls, go,
  1562. gst1-rtsp-server, gtkperf, gupnp-tools, gvfs, imagemagick,
  1563. imx-uuc, intel-microcode, json-glib, lftp, libbsd, libcurl,
  1564. libgit2, libgtk3, libmodplug, libnss, libpri, libshout,
  1565. libss7, libssh2, libvips, libxcb, linux-headers, mdadm,
  1566. mesa3d, metacity, mpg123, mosquitto, musl, nginx, openblas,
  1567. opencv3, openldap, openvmtools, pcmanfm, php, pigpio,
  1568. postgresql, prboom, proftpd, proj, python, python-django,
  1569. python-idna, python-numpy, python-urllib3, python3, qemu, qt5,
  1570. qt5base, qt5enginio, quagga, rygel, squid, subversion,
  1571. tcpreplay, unzip, vlc, vte, webkitgtk, weston, wireless-regdb,
  1572. xen, xfont_font-util, xlib_libICE, xlib_libXfont,
  1573. xlib_libXfont2, yad, zeromq
  1574. Issues resolved (http://bugs.uclibc.org):
  1575. #11741: pigpio does not build host-pigpio
  1576. #11876: automount using host mount/umount
  1577. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  1578. #11921: dahdi fails to build
  1579. #11961: libpri build failure
  1580. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  1581. #12106: daq: build fails if libdumbnet-dev is installed in the host
  1582. #12126: vc4 has neon as hard dependency
  1583. 2019.02.4, Released July 10th, 2019
  1584. Important / security related fixes.
  1585. arch: x86: Fix typo breaking 'core-avx2' variant, add Westmere
  1586. variant.
  1587. linux: Workaround -Werror related build failure on powerpc,
  1588. by forcing CONFIG_PPC_DISABLE_WERROR on.
  1589. support/testing: Emulate a machine with 256MB RAM to fix
  1590. issues with certain tests running out of memory.
  1591. test-pkg: Correct long option handling and clean output dir
  1592. after a successful build to save disk space.
  1593. Ensure custom <pkg>_OVERRIDE_SRCDIR_RSYNC_EXCLUSIONS are
  1594. passed before the standard exclusions so they are not ignored
  1595. by rsync when using override-srcdir.
  1596. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  1597. partition is available before mounting.
  1598. Updated/fixed packages: barebox, bzip2, davfs2, dbus, dialog,
  1599. docker-cli, docker-engine, expat, faad2, ffmpeg, freeswitch,
  1600. gerbera, haveged, irssi, libcdadio, libgit2, libglib2,
  1601. libsecret, libvncserver, lmbench, logrotate, mariadb, meson,
  1602. mongoose, monit, mpd, openblas, php, postgresql, psplash,
  1603. python, python-django, python3, qt5base, samba4, taglib,
  1604. tvheadend, vlc, webkitgtk, xserver_xorg-server, znc
  1605. 2019.02.3, Released June 7th, 2019
  1606. Important / security related fixes.
  1607. Infra: pkg-config: Use a dedicated timestamp file rather than
  1608. .config as that gets touched by linux-4.19+, causing repeated
  1609. builds.
  1610. check-bin-arch: Also ignore /usr/lib/grub to support merged
  1611. /usr setups, similar to how /lib/grub is ignored.
  1612. gnuconfig/config.sub: Add C-SKY architecture support.
  1613. Updated/fixed packages: assimp, atftp, atop, botan, busybox,
  1614. ca-certificates, chocolate-doom, cjson, coreutils, cracklib,
  1615. ddrescue, dhcp, docker-cli, docker-containerd, docker-engine,
  1616. dosfstools, dovecot, dovecot-pigeonhole, dropbear, exim,
  1617. ffmpeg, flare-engine, gcc, gdb, gerbera, glibmm, go, gpsd,
  1618. gst-ffmpeg, gst1-plugins-bad, gst1-plugins-base, imagemagick,
  1619. intel-microcode, jasper, kf5-kcoreaddons, kismet, libcurl,
  1620. libglib2, libnss, libopenssl, libsigrok, libssh2, libupnp18,
  1621. linuxptp, luajit, lynx, matchbox-panel, mender,
  1622. netcat-openbsd, netsurf, nfs-utils, opus, orc, owfs,
  1623. pcsc-lite, php, popt, postgresql, python, python-cython,
  1624. python-django, python-ply, qt5enginio, rpm, runc, samba4,
  1625. sqlite, subversion, supertux, systemd, tslib, uclibc,
  1626. v4l2loopback, webkitgtk, woff2
  1627. Issues resolved (http://bugs.uclibc.org):
  1628. #11816: Only selected coreutils binaries are installed
  1629. #11841: grub-efi.cfg not used when building EFI disk image
  1630. #11911: systemd v240 memory leak in systemd-journald
  1631. 2019.02.2, Released April 29th, 2019
  1632. Important / security related fixes.
  1633. Only build host-lzip / host-xz when really needed by packages,
  1634. not just when not available on the build host.
  1635. fs: Set FAKEROOTDONTTRYCHOWN environment variable to not
  1636. forward {f,l,}chown calls to libc when running under fakeroot
  1637. to fix issues when building in restricted environments
  1638. (E.G. user namespace with bubblewrap).
  1639. Linux: Also build default make target to ensure extra files
  1640. like the gdb scripts enabled by CONFIG_GDB_SCRIPTS are also
  1641. built. Notice: This may mean that extra host utilities like
  1642. uboot-mkimage are needed.
  1643. Defconfigs: ASUS tinker and Amarula vyasa rk3822: Support
  1644. larger kernel images, Atmel SAM5D27, SAM5D2,3,4 xplained:
  1645. Increase rootfs size to fit utilities, Raspberry Pi 64bit:
  1646. Include overlays in sdcard image
  1647. Updated/fixed packages: android-tools, apache, bind, binutils,
  1648. busybox, civetweb, cjson, copas, davfs2, docker-cli,
  1649. docker-containerd, docker-engine, dovecot, dovecot-pigeonhole,
  1650. freerdp, gerbera, ghostscript, git, gnutls, go, gst-omx,
  1651. gst1-plugins-base, gst1-plugins-ugly, haproxy, hostapd,
  1652. ipsec-tools, libfreefare, libfuse, libkrb5, libpng, libxml2,
  1653. libxslt, linknx, linux, linux-firmware, linux-tools, live555,
  1654. lldp, lrzsz, lynx, madplay, make, minicom, mongodb, msmtp,
  1655. musl, mutt, neon, netsnmp, numactl, opus, perl, php,
  1656. postgresql, pure-ftpd, python-urllib3, python3, qt5base,
  1657. rapidxml, rpm, rsyslog, ruby, runc, samba4, sane-backends,
  1658. softether, stunnel, sysklogd, syslinux, syslog-ng,
  1659. systemd-bootchart, thttpd, thrift, tiff, tor, tpm2-tools,
  1660. tpm2-tss, webkitgtk, yaffs2utils, wget, wpa_supplicant, wsapi,
  1661. xapp_xfd, xapp_xload, xlib_libXpm, xserver_xorg-server, xz,
  1662. znc
  1663. Issues resolved (http://bugs.uclibc.org):
  1664. #11756: package/syslinux: MBR's don't fit because of binutils..
  1665. #11761: Building custom kernel 5.1-rc3 or later breaks on objtool
  1666. 2019.02.1, Released March 29th, 2019
  1667. Important / security related fixes.
  1668. pkg-generic: Only tweak .la files needing it to ensure they
  1669. are not included in subsequent package file lists.
  1670. test-pkg: Generate a basic package config if none is
  1671. specified.
  1672. Updated/fixed packages: asterisk, avahi, bash, beecrypt,
  1673. binutils, busybox, clamav, cups, efl, eigen, fetchmail, file,
  1674. flashrom, fltk, gerbera, git, glibc, gnuradio, go,
  1675. gst-plugins-bad, intel-gmmlib, jq, kexec, kf5-modemmanager-qt,
  1676. leveldb, libcurl, libdrm, libftdi1, libglib2, libiio, libpcap,
  1677. libseccomp, libssh2, log4cplus, lvm2, mariadb, mender,
  1678. mongodb, mosquitto, musl, nodejs, ntp, openjpeg, owfs, php,
  1679. pure-ftpd, putty, python-aiojobs, qt5webkit, rdesktop, samba4,
  1680. sunxi-tools, supertux, swupdate, tpm2-abrmd, tpm2-tss,
  1681. wavemon, wireshark, vsftpd, xapp_xdm, xen,
  1682. xdriver_xf86-video-fbdev, xlib_libXdmcp
  1683. Issues resolved (http://bugs.uclibc.org):
  1684. #11716: Typo on website, saying latest release is 2018.2.11
  1685. 2019.02, released March 4th, 2019
  1686. Minor fixes.
  1687. Libressl support added for Qt 5.6 as a replacement for
  1688. openssl, as 5.6 is not compatible with openssl 1.1.x.
  1689. Updated/fixed packages: cutelyst, devmem2, gqrx,
  1690. gst-plugins-bad, libraw, libsoxr, qt5base, runc, systemd, tor
  1691. 2019.02-rc3, released March 1st, 2019
  1692. Fixes all over the tree.
  1693. Openssl support dropped from Qt 5.6, as it isn't compatible
  1694. with openssl 1.1.x.
  1695. Toolchain: GCC 8.x updated to 8.3.0, fixing a number of
  1696. issues.
  1697. Dependencies: Require CMake 3.8 or newer to fix compilation
  1698. issue with certain packages. If not available, host-cmake will
  1699. instead be built.
  1700. Printvars: Fix performance regression since 2018.02
  1701. Scanypi: Correctly handle underscores in python package names.
  1702. Updated/fixed packages: botan, clamav, cryptopp, i2pd,
  1703. ibrcommon, iproute2, libcpprestsdk, libssh, lua-curl,
  1704. luaexpat, qt5base, runc, stress-ng, syslinux, systemd,
  1705. upmpdcli, zbar
  1706. Issues resolved (http://bugs.uclibc.org):
  1707. #9966: util-linux-2.30/.stamp_built' failed
  1708. #11696: possible typo in board/pc/post-build.sh
  1709. 2019.02-rc2, released February 23th, 2019
  1710. Fixes all over the tree.
  1711. Removed zynq_zybo defconfig, as it hasn't seen any update
  1712. since it was added in 2016, and uses a U-Boot version not
  1713. compatible with openssl-1.1.x.
  1714. Linux: Ignore user supplied downloadable hashes, as no hash
  1715. checksums are available for those.
  1716. Updated/fixed packages: bind, cryptopp, docker-containerd,
  1717. dtc, efivar, gdb, imagemagick, ipmiutil, libcpprestsdk,
  1718. libcurl, libgpiod, libid3tag, libv4l, log4cplus, luvi,
  1719. madplay, mender, mosquitto, poco, postgresql, proftpd,
  1720. pulseaudio, python-django, qemu, qt5base, qwt, rabbitmq-c,
  1721. reaver, safeclip, stress-ng, swupdate, syslog-ng, systemd,
  1722. tor, unzip, xenomai
  1723. Issues resolved (http://bugs.uclibc.org):
  1724. #11501: compile sdl2 with enable wayland
  1725. #11681: .. unable to initialize decompress status for section..
  1726. 2019.02-rc1, released February 13th, 2019
  1727. Fixes all over the tree and new features.
  1728. Dependencies:
  1729. Require Python >= 2.7 as it is needed for E.G. building
  1730. libglib2.
  1731. Ensure GNU gzip is used for reproducible tarballs (instead of
  1732. pigz)
  1733. Infrastucture:
  1734. Ensure the PLATFORM and OS environment variables are not set,
  1735. as they cause build issues for some packages.
  1736. The package list infrastructure now correctly handles packages
  1737. installing files with old mtime.
  1738. Add a config option to force all optional host utilities to be
  1739. built, even if suitable versions are available on the build
  1740. machine.
  1741. graph-build-time: Also show time spent downloading
  1742. Download: fixes for SSH/SCP support
  1743. Ensure user provided permissions override permissions from
  1744. packages.
  1745. SDK: Fix handling of relative symlinks (targets starting with
  1746. '.' or '..')
  1747. BR2_SYSTEM_DEFAULT_PATH setting to customize the default path
  1748. for processes.
  1749. The custom skeleton logic will now populate the needed /bin,
  1750. /lib, /sbin directories/symlinks if not present. Merged /usr
  1751. can now be used with a custom skeleton.
  1752. Rootfs overlays can now override symbolic links from
  1753. packages. This was disabled to ensure the correct symbolic
  1754. links are present when merged /usr is used. Instead validate
  1755. that the rootfs overlays do not include invalid /bin, /sbin
  1756. and /lib entries.
  1757. The waf infrastructure now support the <pkg>_SUBDIR variable,
  1758. similar to the other package types.
  1759. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  1760. Various improvements to the meson infrastructure.
  1761. Luarocks: A Buildroot addon has been added to automate
  1762. creating a Buildroot package from luarocks, similar to
  1763. scancpan and scanpypi.
  1764. scanpypi: protect against zip-slip vulnerability in zip/tar
  1765. handling
  1766. check-package: fix Python 3 support
  1767. get-developers: Fix behaviour when called from elsewhere than
  1768. the toplevel directory.
  1769. pkg-stats: Show latest upstream version of each package, based
  1770. on data from release-monitoring.org
  1771. kconfig: Fix for make linux-menuconfig / uboot-menuconfig from
  1772. a clean tree when ccache is enabled.
  1773. Default to sha256 password encoding, drop md5 support.
  1774. Architecture:
  1775. Support for RISC-V 32bit architecture, ARM A55, 75 and Saphira
  1776. variants, MIPS support for mips32r3, mips64r3 and Marvell
  1777. Octeon II/III variants.
  1778. Toolchain:
  1779. ARC toolchain 2018.09, ARM 8.2-2018.11, Codescape IMG/MTI MIPS
  1780. 2018.09-02, MUSL 1.1.21, GCC 6.5.0 / 7.4.0, GDB 8.2.1
  1781. Packages:
  1782. openssl: Bump to 1.1.1x series, bringing TLSv1.3 support and
  1783. long term support.
  1784. fftw: Split into fftw-{single,double,long-double,quad}
  1785. packages for the different data precision options.
  1786. libcurl: Now has explicit TLS backend selection options.
  1787. linux: Support building device tree blobs with the -@ option
  1788. for device tree overlays.
  1789. weston: The weston-imx i.MX variant is now used when
  1790. imx-gpu-viv is enabled
  1791. pkgconf: Update to 1.5.3, which brings support for
  1792. --define-prefix (used by GStreamer)
  1793. Add host-python3-setuptools package to handle host python
  1794. packages needing python3 with setuptools support.
  1795. New defconfigs: Aarch64 EFI, Orangepi one plus, Orangepi lite
  1796. 2, QEMU RISC-V 32bit virt, Rock64
  1797. New packages: brcm-patchram-plus, clinfo, cunit, docker-cli,
  1798. erlang-p1-eimp, exempi, fail2ban, fftw-double,
  1799. fftw-double-long, fftw-quad, fftw-single, gerbera, grpc,
  1800. gst1-shark, intel-gmmlib, iwd, kf5-kcoreaddons, libeastl,
  1801. libpackagekite, libtorrent-rasterbar, lua-std-debug,
  1802. lua-std-normalize, mini-snmpd, netsurf, pamtester, pcm-tools,
  1803. python-aiodns, python-aiohttp, python-aiohttp-jinja2,
  1804. python-aiohttp-remotes, python-aiohttp-security,
  1805. python-aiohttp-session, python-aiohttpd-sse, python-aiojobs,
  1806. python-cchardet, python-pycares, python-sentry-sdk,
  1807. python-wtforms, python3-setuptools, rcw, rtc-tools, shim,
  1808. utp_com, vmtouch, websocketpp
  1809. Removed packages: fftw, lua 5.2.x, luacrypto, perl-time-hires,
  1810. python-pyqt, qt, qtuio, tn5250
  1811. Issues resolved (http://bugs.uclibc.org):
  1812. #10851: Patch to handle numpad Enter key properly
  1813. #11066: x11r7 X11 S40xorg leads to a black screen on QEMU x86..
  1814. #11126: Bash Shell Programming using Buildroot
  1815. #11426: pps-tools bash dependency
  1816. #11476: stdio2.h error invalid use of __builtin_va_arg_pack
  1817. #11536: dt-utils building fails with glibc 2.28
  1818. #11546: open-vm-tools with glibc 2.28
  1819. #11566: Fix init script
  1820. #11576: Unable to start apache with event MPM on raspberry pi 3
  1821. #11591: [pkgconf 1.5.3] xserver OpenGL support is missing
  1822. #11606: libjpeg has no Config.in
  1823. #11616: 2018.02.09 fails to build libzlib with full RELRO..
  1824. #11656: Custom device tree and u-boot boot.scr not integrated..
  1825. #11666: Touchscreen with (Py)Qt5 should use tslib instead of evdev
  1826. 2018.11.4, Released March 28th, 2019
  1827. Important / security related fixes.
  1828. Updated/fixed packages: avahi, beecrypt, binutils, botan,
  1829. busybox, clamav, cups, devmem2, efl, fetchmail, file, fltk,
  1830. gcc, gdb, git, go, gst-plugins-bad, iproute2, jq,
  1831. kf5-modemmanager-qt, leveldb, libopenssl, libraw, libseccomp,
  1832. libsoxr, libssh2, mariadb, mosquitto, nodejs, ntp, openjpeg,
  1833. perl, php, putty, qt5webkit, rdesktop, runc, samba4, swupdate,
  1834. systemd, tor, vsftpd, wireshark, xapp_xdm, xen, xlib_libXdmcp
  1835. 2018.11.3, Released February 23th, 2019
  1836. Important / security related fixes.
  1837. Ensure the PLATFORM and OS environment variables are not set,
  1838. as they cause build issues for some packages.
  1839. The package list infrastructure now correctly handles packages
  1840. installing files with old mtime.
  1841. Linux: Skip hash checks for user supplied downloadable
  1842. patches, as no hash checksums are available for those.
  1843. scanpypi: protect against zip-slip vulnerability in zip/tar
  1844. handling
  1845. Download: fixes for SSH/SCP support
  1846. SDK: Fix handling of relative symlinks (targets starting with
  1847. '.' or '..')
  1848. Updated/fixed packages: bind, dhcpcd, docker-compose,
  1849. docker-containerd, docker-engine, dovecot, dovecot-pigeonhole,
  1850. dtc, efivar, ghostscript, gnuradio, imagemagick, jpeg-turbo,
  1851. libarchive, libb64, libcurl, libgeotiff, libgpiod, libid3tag,
  1852. libupnp18, log4cplus, madplay, meson, mosquitto, openssh, php,
  1853. poco, postgresql, proftpd, pulseaudio, python, python-django,
  1854. python3, qt5base, reaver, runc, sg3_utils, sqlcipher,
  1855. swupdate, systemd, unzip, webkitgtk, xenomai
  1856. 2018.11.2, Released January 30th, 2019
  1857. Important / security related fixes.
  1858. Defconfigs: Fixes for imx6slevk, imx7dsabresd, imx8mqevk, Lego
  1859. EV3, QEMU AArch64-virt
  1860. Download: Fix scp download handling
  1861. check-package: fix Python 3 support
  1862. get-developers: Fix behaviour when called from elsewhere than
  1863. the toplevel directory.
  1864. kconfig: Fix for make linux-menuconfig / uboot-menuconfig from
  1865. a clean tree when ccache is enabled.
  1866. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  1867. Updated/fixed packages: acpica, apache, apr, avrdude, cargo,
  1868. cc-tool, dash, dhcpdump, dmalloc, docker-containerd, efivar,
  1869. fwts, glibc, gnuchess, gnupg2, go, leveldb, libarchive,
  1870. libassuan, libftdi1, libgpg-error, libhttpparser, libkcapi,
  1871. libmad, libsndfile, libsquish, liburiparser, libwebsock,
  1872. libxml2, lighttpd, llvm, lm-sensors, lua-msgpack-native, lxc,
  1873. mariadb, mbedtls, meson, mosquitto, netatalk, nodejs, odhcp6c,
  1874. openresolv, openssh, pango, patchelf, php, python-django,
  1875. python-numpy, python-pyyaml, rauc, rp-pppoe, s6-networking,
  1876. samba4, sdl_sound, shairport-sync, sqlite, subversion,
  1877. sunxi-cedarx, swupdate, systemd, tcpreplay, tekui, tmp2-abrmd,
  1878. tpm2-tools, tpm2-tss, udisks, unixodbc, usb_modeswitch,
  1879. webkitgtk, wireshark, wolfssl, xapp_rgb, xenomai, xerces
  1880. Issues resolved (http://bugs.uclibc.org):
  1881. #11576: Unable to start apache with event MPM on raspberry pi 3
  1882. 2018.11.1, Released December 20th, 2018
  1883. Important / security related fixes.
  1884. defconfigs: Fixes for bananapi m2 ultra, ci20
  1885. Download wrapper: Fix for urlencode handling
  1886. Updated/fixed packages: asterisk, docker-compose,
  1887. docker-engine, dt-utils, gnutls, go, grub, libbsd, libcurl,
  1888. libpgpme, libiscsi, liblo, libmpd, libopenssl, liboping,
  1889. libpam-tacplus, libpjsip, linux-firmware, liquid-dsp,
  1890. lua-cqueue, luvi, lxc, lynx, nginx, nodejs, openzwave, php,
  1891. pps-tools, proftpd, prosody, sdl2_net, squashfs, swupdate,
  1892. uclibc, vtu, webkitgtk, wine, xen
  1893. New packages: docker-cli
  1894. Issues resolved (http://bugs.uclibc.org):
  1895. #11426: pps-tools bash dependency
  1896. #11536: dt-utils building fails with glibc 2.28
  1897. 2018.11, Released December 1st, 2018
  1898. Minor fixes.
  1899. Updated/fixed packages: c-ares, quagga, squid
  1900. 2018.11-rc3, released November 30th, 2018
  1901. Fixes all over the tree.
  1902. Defconfigs: Fixes for Armadeus APF27, imx6sabre, Olimex A20
  1903. olinuxino lime legacy, Orangepi zero plus 2, PC, Riotboard.
  1904. graph-depends: Fix for package names starting with a non-alpha
  1905. character.
  1906. Updated/fixed packages: alsa-utils, botan, dante, domoticz,
  1907. dtc, freetype, gauche, gcc, gdb, ghostscript, glibc,
  1908. imx-usb-loader, libbsd, libid3tag, libkrb5, libmicrohttpd,
  1909. libopenssl, libsoxr, linux, motion, msgpack, mtd,
  1910. perl-net-ssleay, php, popt, python-numpy, qt5declarative,
  1911. samba4, shadowsocks-libev, stress-ng, systemd, usb_modeswitch,
  1912. webkitgtk, valgrind, weston, xfsprogs
  1913. 2018.11-rc2, released November 21th, 2018
  1914. Fixes all over the tree.
  1915. fs: Drop intermediate tarball from the filesystem handling to
  1916. fix an issue with xattrs handling related to fakeroot. Ensure
  1917. tarball target includes xattrs.
  1918. download: Fix confusion in git submodule handling if dl/ is a
  1919. symlink.
  1920. genrandconfig: Fix missing newline in BR2_WGET handling,
  1921. causing the following line to be ignored. This would affect
  1922. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  1923. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  1924. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  1925. show-build-order: Also include the dependencies of
  1926. rootfs-common.
  1927. Fix a number of build issues in packages for the recently
  1928. merged RISC-V architecture support.
  1929. Updated/fixed packages: dt-utils, easydbus, elfutils,
  1930. flare-engine, flatcc, glibc, gstreamer, gstreamer1, imx-uuc,
  1931. libassuan, libcorrect, libiscsi, libkrb5, libmicrohttpd,
  1932. libnftnl, libnspr, libnss, libsemanage, libsigsegv, libv4l,
  1933. ltp-testsuite, luv, luvi, make, ncmpc, netplug, openocd,
  1934. prosody, qemu, rpm, sconeserver, shadowsocks-libev,
  1935. supertuxcart, syslinux, systemd, trace-cmd, uclibc,
  1936. uclibc-ng-test, vtun, webkitgtk, weston, wireshark, xen,
  1937. xlib_libfontenc
  1938. Issues resolved (http://bugs.uclibc.org):
  1939. #11086: download/git submodule breaks on symlinked dl folder
  1940. #11216: Capabilities not applied to filesystem
  1941. 2018.11-rc1, released November 9th, 2018
  1942. Fixes all over the tree and new features.
  1943. Architecture: RISC-V support (64bit) added.
  1944. Toolchain: Glibc bumped to 2.28. Fortran support for external
  1945. toolchains. ARM (Linaro) toolchains updated to 8.2-2018.08.
  1946. Hardening flags (RELRO) are now handled by the toolchain
  1947. wrapper instead of explicitly through CFLAGS/LDFLAGS, fixing a
  1948. number of issues.
  1949. Filesystems: Support for creating btrfs and f2fs filesystems
  1950. added.
  1951. Add a number of patches to fix build errors for host utilities
  1952. on modern distributions using glibc-2.28.
  1953. mkusers: Ensure existing group members are preserved when a
  1954. group is reprocessed.
  1955. printvars: Fix issue with exceeding shell command line length
  1956. limits for certain setups.
  1957. Workaround added for incompatibility issues between host-dtc
  1958. and older U-Boot and Linux kernel versions.
  1959. Detect and reject build paths containing '@', as this confuses
  1960. a number of packages, including GCC.
  1961. utils/diffconfig: Make it work for (non-Buildroot) config
  1962. files not using the BR2_ prefix.
  1963. New defconfigs: Amarula a64-relic, Bananapi m2 ultra, Embest
  1964. riotboard, Hardkernel Odroid XU-4, QEMU riscv64-virt.
  1965. olimex_a20_olinuxion_lime_mali is renamed to _legacy.
  1966. OpenCL infrastructure support added, similar to how OpenGL is
  1967. handled.
  1968. Linux-headers: Support for kernel headers from a custom
  1969. tarball / git repo added.
  1970. New packages: bird, bluez5_utils-headers, btrfs-progs,
  1971. checksec, davici, duktape, ell, haproxy, libclc, libcorrect,
  1972. libopencl, libopenresolv, nss-myhostname,
  1973. perl-apache-logformat-compiler, perl-appconfig,
  1974. perl-astro-suntime, perl-class-inspector, perl-class-load,
  1975. perl-class-method-modifiers, perl-class-std,
  1976. perl-class-std-fast, perl-cookie-baker, perl-data-dump,
  1977. perl-data-optlist, perl-data-uuid, perl-data-manip,
  1978. perl-dbd-mysql, perl-dbi, perl-devel-globaldestruction,
  1979. perl-devel-stacktrace, perl-devel-stacktrace-ashtml,
  1980. perl-device-serialport, perl-dist-checkconflicts,
  1981. perl-exporter-tiny, perl-file-sharedir, perl-file-slurp,
  1982. perl-filesys-notify-simple, perl-hash-multivalue,
  1983. perl-http-entity-parser, perl-http-headers-fast,
  1984. perl-http-multipartparser, perl-io-interface,
  1985. perl-io-socket-multicast, perl-json-maybexs, perl-mime-tools,
  1986. perl-module-implementation, perl-module-runtime, perl-moo,
  1987. perl-number-bytes-human, perl-package-stash, perl-params-util,
  1988. perl-plack, perl-posix-strftime-compiler, perl-role-tiny,
  1989. perl-streams-buffered, perl-sub-exporter-progressive,
  1990. perl-sub-install, perl-sub-quote, perl-sys-cpu,
  1991. perl-sys-meminfo, perl-sys-mmap, perl-time-parsedate,
  1992. perl-type-tiny, perl-www-form-urlencoded, perl-x10, pigpio,
  1993. python-async-timeout, python-falcon, python-fire,
  1994. python-mimeparse, python-multidict, python-passlib,
  1995. python-pigpio, python-pip, python-ply, python-py,
  1996. python-pyasn1, python-pyasn1-modules, python-pycryptodomex,
  1997. python-pyhamcrest, python-pysmi, python-scapy, python-semver,
  1998. python-serial-asyncio, python-typing, python-uvloop,
  1999. pythonwrapt, python-yarl, python-zeroconf, riscv-pk, sedutil,
  2000. spandsp, tini, waffle, xapian
  2001. Removed packages: bootutils, dsp-tools, expedite, gst-dsp,
  2002. xloader
  2003. Issues resolved (http://bugs.uclibc.org):
  2004. #11116: Buildroot should set PYTHON_EGG_CACHE instead of writing ..
  2005. #11156: In python3 module 'socket' has no attribute 'AF_BLUETOOTH'
  2006. #11166: Erlang bad argument on valid uint64 when crosscompiled on..
  2007. #11206: zlib: fails to build with Linaro toolchain, BR2_RELRO_FULL..
  2008. #11241: ACPID shouldn't depend on BR2_x86_64 || BR2_i386
  2009. #11251: Util scanpypi failes when package change - to _ in tar file
  2010. #11266: qt5base-5.11.1 does not compile with musl, complains about..
  2011. #11286: python-rpi-gpio only should depend on BR2_arm || BR2_aarch64
  2012. #11321: Latest master fails to build readline with RELRO FULL
  2013. #11326: sysvinit fails to build in latest GIT master
  2014. #11331: Internal application no longer builds with latest GIT master
  2015. #11336: nfs-utils fails to build in latest GIT master
  2016. #11351: build root-2018-08, linaro aarch64 compile error
  2017. #11376: mdmon binary missing
  2018. #11391: Valgind availability on ARM
  2019. #11396: uboot environment image checksum invalid if target is big endian
  2020. #11421: GCC error message for ARM Cortex-A9/ARM.V7
  2021. #11451: Can't find libmpfr.so.4 when using external toolchain on ubuntu..
  2022. #11481: Docs: Is external.desc required?
  2023. 2018.08.4, Released December 20th, 2018
  2024. Important / security related fixes.
  2025. Defconfigs: Fixes for ci20, orangepi zero plus 2
  2026. Download wrapper: Fix for urlencode handling
  2027. Updated/fixed packages: c-ares, dante, docker-compose,
  2028. domoticz, freetype, ghostscript, gnutls, libcurl, libgpgme,
  2029. libid3tag, libiscsi, libmpd, libopenssl, liboping, libpjsip,
  2030. linux-firmware, liquid-dsp, luvi, lynx, msgpack, nginx,
  2031. nodejs, php, popt, pps-tools, prosody, python-numpy,
  2032. python-requests, samba4, sdl2_net, squashfs, swupdate,
  2033. systemd, uclibc, vte, webkitgtk, wine, xfsprogs
  2034. Issues resolved (http://bugs.uclibc.org):
  2035. #11426: pps-tools bash dependency
  2036. 2018.08.3, Released November 26th, 2018
  2037. Important / security related fixes.
  2038. fs: Drop intermediate tarball from the filesystem handling to
  2039. fix an issue with xattrs handling related to fakeroot. Ensure
  2040. tarball target includes xattrs.
  2041. download: Fix confusion in git submodule handling if dl/ is a
  2042. symlink.
  2043. toolchain: Only allow enabling stack protection on
  2044. architectures with control flow integrity (CFI) support. Only
  2045. allow FORTIFY_SOURCE support on gcc >= 6.
  2046. genrandconfig: Fix missing newline in BR2_WGET handling,
  2047. causing the following line to be ignored. This would affect
  2048. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  2049. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  2050. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  2051. show-build-order: Also include the dependencies of
  2052. rootfs-common.
  2053. Defconfigs: Fixes for Armadeus APF27, imx6sabre, Olimex A20
  2054. olinuxino lime legacy, Orangepi zero plus 2.
  2055. graph-depends: Fix for package names starting with a non-alpha
  2056. character.
  2057. Updated/fixed packages: attr, audit, bind, brotli, busybox,
  2058. dtc, easydbus, elfutils, flare-engine, flatcc, gauche, gcc,
  2059. giflib, gpsd, lcdproc, libcurl, libiscsi, libkcapi, libnfs,
  2060. libnspr, libnss, libsemanage, liburiparser, lighttpd,
  2061. lua-curl, mariadb, mmc, mosquitto, mysql, ncmpc, neardal,
  2062. netplug, network-manager, nfs-utils, nginx, openocd, openswan,
  2063. p11-kit, postgresql, prosody, qemu, qt, rpm, ruby, samba4,
  2064. squid, supertuxkart, systemd, tar, trace-cmd, traceroute,
  2065. twolame, uclibc, usb_modeswitch, vtun, webkitgtk, weston,
  2066. xdriver_xf86-video-geode, xlib_libfontenc, xserver_xorg-server
  2067. Issues resolved (http://bugs.uclibc.org):
  2068. #11086: download/git submodule breaks on symlinked dl folder
  2069. #11481: Docs: Is external.desc required?
  2070. 2018.08.2, Released October 25th, 2018
  2071. Important / security related fixes.
  2072. Workaround added for incompatibility issues between host-dtc
  2073. and older U-Boot and Linux kernel versions.
  2074. Detect and reject build paths containing '@', as this confuses
  2075. a number of packages, including GCC.
  2076. utils/get-developers: Add -e option for use with git
  2077. send-email.
  2078. utils/diffconfig: Make it work for (non-Buildroot) config
  2079. files not using the BR2_ prefix.
  2080. u-boot: Fix for environment image handling on big endian
  2081. systems.
  2082. Updated/fixed packages: binutils, ca-certificates,
  2083. cups-filters, dtc, erlang, file, freetype, gcc, git, gvfs,
  2084. jasper, leveldb, libarchive, libssh, live555, ljlinenoise,
  2085. mariadb, mongoose, netsnmp, nmap, nodejs, ntp, open-plc-utils,
  2086. poco, psmisc, ptpd2, python-enum34, qemu, qt, qt5base,
  2087. setools, spice, spice-protocol, tinc, ustr, wireshark,
  2088. Issues resolved (http://bugs.uclibc.org):
  2089. #11396: uboot environment image checksum invalid if target is big endian
  2090. 2018.08.1, Released October 7th, 2018
  2091. Important / security related fixes.
  2092. Add a number of patches to fix build errors for host utilities
  2093. on modern distributions using glibc-2.28.
  2094. mkusers: Ensure existing group members are preserved when a
  2095. group is reprocessed.
  2096. printvars: Fix issue with exceeding shell command line length
  2097. limits for certain setups.
  2098. Updated/fixed packages: acpid, android-tools, apache,
  2099. arp-scan, bandwidthd, bind, brltty, clamav, connman, cppcms,
  2100. domoticz, dtc, fio, gcc, gdb, ghostscript, gnupg, httpping,
  2101. igmpproxy, imlib2, ipsec-tools, libesmtp, libnfs, libxslt,
  2102. links, lua, mosquitto, nilfs-utils, ocrad, parted, php,
  2103. python-django, screen, shairport-sync, strongswan,
  2104. vboot-utils, webkitgtk, wireguard, x265 xen, xlib_libXdmcp,
  2105. xlib_libXfont, xlib_libXft, xlib_libxshmfence,
  2106. xutil_makedepend, zeromq
  2107. 2018.08, Released September 6th, 2018
  2108. Minor fixes.
  2109. Known issues:
  2110. - Glibc 2.28 on the build host breaks compilation of a number
  2111. of host packages. 2018.08 contains fixes for some of these
  2112. packages, but not all. Consider building on hosts (or in
  2113. containers) using older Glibc versions.
  2114. - host-dtc 1.4.7 breaks compilation of older U-Boot and Linux
  2115. kernel configurations using FDT/DTC. Consider updating the
  2116. Linux kernel to >= 4.17 and U-Boot to >= 2018.07 or
  2117. backporting commit 9130ba8846 (scripts/dtc: Update to
  2118. upstream version v1.4.6-9-gaadd0b65c987) for the Linux
  2119. kernel / commit db405d1980 for U-Boot.
  2120. Alternatively revert commit 7b929ddcf0 (dtc: bump version to
  2121. 1.4.7) and ensure your build host does not have the libfdt
  2122. development headers installed.
  2123. Updated/fixed packages: busybox, chipmunk, cutelyst,
  2124. domoticz, gcc, imagemagick, lcms2, libcurl, mediastreamer,
  2125. moarvm, php, qt, qt5virtualkeyboard, qt5webengine, screen,
  2126. sdl2, squashfs, uboot, xen
  2127. Issues resolved (http://bugs.uclibc.org):
  2128. #11261: ccache using wrong cached objects
  2129. #11276: Understanding the patch for kernel-4.9 and other..
  2130. 2018.08-rc3, Released August 31th, 2018
  2131. Fixes all over the tree.
  2132. linux: additional improvements to the flex / bison dependency
  2133. handling, use system provided variant if available. Ensure
  2134. toolchain is available when configuring for 4.18+ support.
  2135. Download: Fix handling of primary sites using file://
  2136. Toolchain: Correct external toolchain musl detection for
  2137. static toolchains.
  2138. Updated/fixed packages: aircrack-ng, bison, brltty, busybox,
  2139. cutelyst, dropbear, gr-osmosdr, i2c-tools, json-c, libconfuse,
  2140. libkcapi, libsoup, libssh, liburiparser, mbedtls, mender,
  2141. mesa3d, minicom, mjpegtools, mutt, openpowerlink, openssh,
  2142. oracle-mysql, php, postgresql, pv, qt5base, qt5quickcontrols,
  2143. rauc, shairport-sync, systemd, xlib_libX11, zeromq,
  2144. Issues resolved (http://bugs.uclibc.org):
  2145. #11091: BR2_PRIMARY_SITE doesn't work (wget is selected...
  2146. #11141: WF111 package no longer available
  2147. #11211: Internal compiler error: Killed (program cc1plus)..
  2148. #11236: util-linux fails to build on Travis CI when python..
  2149. #11246: Glibc 2.28 - fails to build host-bison and host-m4
  2150. #11256: Add python-falcon and python-mimeparse packages
  2151. 2018.08-rc2, Released August 20th, 2018
  2152. Fixes all over the tree.
  2153. pkg-kconfig: Support dependencies needed to run the
  2154. configurator, E.G. recent Linux kernel versions needing flex
  2155. and bison.
  2156. Defconfigs: ARM Juno: Bump ATF to fix a build
  2157. issue. Raspberrypi2: Bump rootfs size. Snps_archs38_vdk:
  2158. Correct /etc/inittab. Technologic ts7680: Correct genimage
  2159. configuration. Orange PI PC / Zero, Sheevaplug: Bump U-boot to
  2160. 2018.07 to fix build issue. Ensure host-openssl is pulled in
  2161. for kernel builds where needed.
  2162. Updated/fixed packages: aircrack-ng, bind, boost,
  2163. boot-wrapper-aarch64, bzip2, busybox, chrony, cryptsetup,
  2164. dahdi-tools, dbus, domoticz, eigen, ipsec-tools, libarchive,
  2165. libfuse, libgit2, libopenssl, libselinux, lighttpd, lvm2, m4,
  2166. makedevs, mariadb, mesa3d-headers, mono, ncmpc, ncurses,
  2167. nodejs, php, python-django, python-pyqt5, qt5base,
  2168. qt5serialbus, ruby, samba4, uboot-tools, uclibc, vlc,
  2169. waylandpp, wireless_tools, wireshark, wpa_supplicant, mtd,
  2170. xdriver_xf86-video-ati, xserver_xorg-server
  2171. Issues resolved (http://bugs.uclibc.org):
  2172. #10781: cryptsetup luksOpen container_file container causes..
  2173. #10996: bogus musl ARM toolchain
  2174. #11191: xattr and check-package issue
  2175. 2018.08-rc1, Released August 5th, 2018
  2176. Toolchain:
  2177. - add support for gcc 8.x, switch to gcc 7.x as the default
  2178. version
  2179. - add support for gdb 8.1, switch to gdb 8.0 as the default
  2180. and remove gdb 7.10/7.11
  2181. - add support for binutils 2.31
  2182. - NIOSII CodeSourcery toolchain updated
  2183. - Linaro AArch64 BE toolchain added, and other Linaro
  2184. toolchains updated
  2185. - Synopsys ARC pre-built toolchain updated
  2186. Architecture: add support for ARM Cortex-M7
  2187. Major updates:
  2188. - systemd bumped to 239
  2189. - Qt5 bumped to 5.11.1
  2190. - Rust bumped to 1.27
  2191. - GStreamer stack bumped to 1.14.2
  2192. - X.org server bumped to 1.20, and all X.org proto packages
  2193. replaced by the single xorgproto package
  2194. - i.MX6 support packages bumped to 6.2.4
  2195. - i.MX Vivante graphics version bumped to 6.2.4.p1.2,
  2196. adding support for Wayland and i.MX8MQ platforms
  2197. Linux: bumped to 4.17 by default.
  2198. Infrastructure: new package infrastructure added for packages
  2199. using the Meson build system
  2200. New packages: at-spi2-atk, at-spi2-core, capnproto, cmocka,
  2201. corkscrew, cutelyst, davfs2, flatcc, libidn2, libgit2,
  2202. libopusenc, mender, nghttp2, perl-convert-asn1, perl-crypt-blowfish,
  2203. perl-crypt-cbc, perl-digest-md5, perl-mime-base64-urlsafe,
  2204. perl-mojolicious-plugin-authentication, perl-net-ping,
  2205. perl-net-snmp, perl-net-ssh2, perl-net-telnet, pigz,
  2206. python-reentry, python-request-id, python-validators,
  2207. python-webob, shadowsocks-libev, speexdsp, xorgproto, wampcc
  2208. New defconfigs: NXP i.MX7D SDB, Boundary Devices Nitrogen 8M,
  2209. Olimex A10 OLinuxino, ZynqMP ZCU106
  2210. Removed packages: all xproto_* have been removed and replaced
  2211. by xorgproto
  2212. Issues resolved (http://bugs.uclibc.org):
  2213. #9411: MUSL build with RT Error relocating /lib/libgcc_s.so.1:
  2214. __cpu_indicator_init: symbol not found
  2215. #9921: lockfile module within python-daemon not available
  2216. #10341: gdb install of py files when using buildroot toolchain
  2217. includes build path
  2218. #10661: /etc/init.d/S29netplug starts multiple instances of netplugd
  2219. #10751: Missing dependency in pulseaudio package
  2220. #10811: kodi-17.6-Krypton does not compile for freescale_* devices
  2221. #10856: openblas on qemu_x86_64_defconfig fails with
  2222. "sgemm_kernel.o: No such file or directory"
  2223. #11056: Compiling a file that uses libdrm headers fails with:
  2224. fatal error: drm.h: No such file or directory
  2225. #11061: support/download: git version=master broken
  2226. #11071: Building postgresql package on Debian 9.4 x64 for armel target fails
  2227. #11076: Docker containerd installed to incorrect path
  2228. #11101: host-patchelf Endian Issue with relative RPATH
  2229. #11111: raspberry pi 3 b+: missing BSP for 64-bit kernel
  2230. #11121: statfs call corrupts memory struct statfs too small
  2231. #11181: Switching toolchain does not work
  2232. 2018.05.3, Released October 6th, 2018
  2233. Important / security related fixes.
  2234. Add a number of patches to fix build errors for host utilities
  2235. on modern distributions using glibc-2.28.
  2236. mkusers: Ensure existing group members are preserved when a
  2237. group is reprocessed.
  2238. printvars: Fix issue with exceeding shell command line length
  2239. limits for certain setups.
  2240. Updated/fixed packages: acpid, android-tools, apache,
  2241. arp-scan, bandwidthd, bind, bison, brltty, chipmunk, connman,
  2242. cppcms, fio, gcc, ghostscript, gnupg, httping, igmpproxy,
  2243. imagemagick, imlib2, ipsec-tools, lcm2, libcurl, libesmtp,
  2244. libnfs, libssh, libxslt, links, mediastreamer, minicom,
  2245. moarvm, nilfs-utils, ocrad, parted, php, postgresql, pv,
  2246. python-django, qt, qt5quickcontrols, qt5webengine, screen,
  2247. sdl2, shairport-sync, squashfs, strongswan, vboot-utils,
  2248. webkitgtk, wireguard, x265, xen, xlib_libXfont, xlib_libXft,
  2249. xlib_libxshmfence, zeromq
  2250. 2018.05.2, Released August 28th, 2018
  2251. Important / security related fixes.
  2252. Defconfigs: Raspberrypi2: Bump rootfs size, T7680: Fix
  2253. genimage.cfg issue, ARM Juno: Bump ATF to v1.3 to fix build
  2254. issue.
  2255. Updated/fixed packages: acl, attr, apache, bind,
  2256. boot-wrapper-aarch64, brltty, bzip2, chrony, crda, cryptsetup,
  2257. dahdi-tools, dmidecode, dropbear, eigen, ffmpeg, gawk, gcc,
  2258. ghostscript, gnutls, imx-gpu-viv, ipsec-tools, libarchive,
  2259. libfuse, libglib2, libopenssl, libselinux, libsoup, lighttpd,
  2260. linuxptp, lttng-modules, lttng-tools, lua-flu, lvm2, m4,
  2261. makedevs, mariadb, mbedtls, mesa3d-heders, mtd, ncurses,
  2262. nodejs, openssh, php, python-django, rauc, ruby, samba4,
  2263. stress-ng, ti-utils, uboot-tools, uclibc, vim, waylandpp,
  2264. wireless_tools, wireless-regdb, wireshark, wpa_supplicant,
  2265. xorriso, znc
  2266. Issues resolved (http://bugs.uclibc.org):
  2267. #10781: cryptsetup luksOpen container_file container causes..
  2268. #10986: Installing package attr when already supplied by..
  2269. #11191: xattr and check-package issue
  2270. 2018.05.1, Released July 20th, 2018
  2271. Important / security related fixes.
  2272. U-Boot: Ensure host version of ncurses is picked up and not
  2273. host-ncurses built by buildroot, as that otherwise causes
  2274. widechar/non-widechar conflicts and corrupted menuconfig
  2275. menus.
  2276. Linux: Enable CONFIG_PERF_EVENTS when perf is enabled.
  2277. Toolchain: ARC tools updated to arc-2018.03.
  2278. pkg-stats: Fix python 3.x compatibility.
  2279. dl-wrapper: Fix support for URIs containing '+', fix
  2280. no-check-hash for inferred site method.
  2281. Defconfigs: Raspberrypi3: Bump rootfs size, Minnowboard-max:
  2282. Support ethernet on Turbot variant.
  2283. Updated/fixed packages: audit, bind, btrfs-progs, cifs-utils,
  2284. clamav, collectd, coreutils, docker-containerd, dos2unix,
  2285. edid-decode, file, gcc, gdb, gnupg, gnupg2, heimdal, hidapi,
  2286. imagemagick, libcurl, libgcrypt, libglib2, liblogging,
  2287. libostree, libressl, libsoup, libv4l, libvncserver, libvorbis,
  2288. libwebsockets, libxslt, lm-sensors, mariadb, mpg123, ncurses,
  2289. network-manager, nodejs, patchelf, perl, php-amqp, pinentry,
  2290. pixiewps, qpdf, qt53d, qt5base, qt5charts, qt5script, redis,
  2291. systemd, triggerhappy, uboot, wireguard, wireless-regdb,
  2292. wireshark
  2293. 2018.05, Released June 1st, 2018
  2294. Minor fixes.
  2295. Download: Work around for hanging connections for packages
  2296. from CVS, by adding a 10 minute max timeout.
  2297. Updated/fixed packages: binutils, clang, dash, expect, git,
  2298. glibc, jpeg-turbo, libjpeg, log4cplus, openvmtools, xen,
  2299. Issues resolved (http://bugs.uclibc.org):
  2300. #11051: runtime issue on STM32 with usage of binutils 2.29.x
  2301. 2018.05-rc3, Released May 28th, 2018
  2302. Fixes all over the tree.
  2303. Toolchain: ARC tools updated to arc-2018.03-rc2.
  2304. Fs: Ensure hard links in TARGET_DIR are correctly copied for
  2305. filesystem input. With the recent changes to the file system
  2306. generation logic, hard links were "expanded" in file system
  2307. images leading to bloated rootfs images for setups with hard
  2308. links.
  2309. Infrastructure: Error out for packages using the 'local'
  2310. method but forgetting to specify <pkg>_SITE.
  2311. Build rpcgen for the host when needed to support distributions
  2312. no longer shipping rpcgen with glibc (E.G. recent Fedora).
  2313. Updated/fixed packages: autofs, bash-completion, binutils,
  2314. busybox, cjson, elf2flt, libcoap, libcurl, libtirpc, lrzsz,
  2315. poppler, procps-ng, qt-webkit-kiosk, quota, samba4, xfsprogs
  2316. Issues resolved (http://bugs.uclibc.org):
  2317. #11031: ld-elf2flt: host/bin/ld.real': execvp: No such file..
  2318. #11036: C compiler cannot create executables
  2319. #11046: Git package binaries are ~180MB (compared to ~20MB in..
  2320. 2018.05-rc2, Released May 22nd, 2018
  2321. Fixes all over the tree.
  2322. Dependencies: Check that the current working directory (.)
  2323. isn't listed in PATH as that causes various build issues.
  2324. Manual: Clarify that git branch names may not be used as
  2325. version identifiers. This has never been supported, but was
  2326. kind of working (with some limitations) before the git
  2327. download rework - Now it does not work at all.
  2328. Linux: Ensure host version of ncurses is picked up and not
  2329. host-ncurses built by buildroot, as that otherwise causes
  2330. widechar/non-widechar conflicts and corrupted menuconfig
  2331. menus.
  2332. Packages: Renamed a number of package options not prefixed
  2333. with BR2_PACKAGE_<pkg> for consstency.
  2334. Download infrastructure: Fix file:// protocol handling after
  2335. download rework.
  2336. Updated/fixed packages: acl, apr-util, asterisk, attr,
  2337. bluez5_utils, cifs-utils, clamav, clang, cups-filters,
  2338. dahdi-linux, exim, faketime, gdb, go, gst1-plugins-bad,
  2339. imx-mkimage, ipsec-tools, jamvm, janus-gateway,
  2340. jquery-ui-themes, libcap, libcurl, libftdi, libkcapi, libkrb5,
  2341. libmediaart, libmodbus, libmodplug, libmpd,
  2342. libnetfilter_cthelper, libnetfilter_cttimeout, libnfc,
  2343. libnfnetlink, libnss, liboauth, libogg, libosip2,
  2344. libpam-radius-auth, libpcap, libpciaccess, llvm, log4cplus,
  2345. ltrace, lynx, mbedtls, modem-manager, nfs-utils,
  2346. python-cython, python-websockets, qt5cinex, qt5wayland, rauc,
  2347. snort, strace, ti-sgx-km, transmission, wavpack, wget, woff2,
  2348. xen, zmqpp, znc, zstd
  2349. Issues resolved (http://bugs.uclibc.org):
  2350. #10986: Installing package attr when already supplied by...
  2351. #11011: BUildroot for Raspberry Pi 2
  2352. #11016: Wrong compiler used for external user host packages
  2353. 2018.05-rc1, Released May 9th, 2018
  2354. Toolchain: glibc bumped to 2.27, musl bumped to 1.1.19,
  2355. uClibc-ng 1.0.30, Linux kernel headers bumped to 4.16.x.
  2356. Architecture: support for the Blackfin architecture has been
  2357. removed, as it was removed from Linux upstream, poorly
  2358. maintained in binutils/gdb, and abandoned by Analog Devices.
  2359. Numerous packages updated to have hashes for their license
  2360. files.
  2361. Systemd can now be built with uClibc toolchains.
  2362. Linux: addition of BR2_LINUX_KERNEL_NEEDS_HOST_LIBELF and
  2363. BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL to support building Linux
  2364. kernel configurations that need libelf on the host or openssl
  2365. on the host.
  2366. Coding style:
  2367. - all Python scripts are now verified with flake8
  2368. - check-package extended to check all Config.in and .mk files
  2369. in tree, not only the ones in package/
  2370. Infrastructure:
  2371. - The download infrastructure has seen a major overhaul, with
  2372. the main visible new feature being Git caching: a package
  2373. fetched from Git no longer needs to be re-cloned entirely
  2374. everytime its version is changed. Anoter visible change is
  2375. that the download folder now has subfolders per package. See
  2376. http://lists.busybox.net/pipermail/buildroot/2018-April/217923.html
  2377. for more details about those changes.
  2378. - The logic that generates the root filesystem images has been
  2379. reworked, with the main goal of allowing several filesystem
  2380. images to be produced in parallel, also a requirement for
  2381. top-level parallel build. Now, a .tar filesystem image is
  2382. always created, and re-extracted in a private directory to
  2383. create each format-specific filesystem image.
  2384. - A new package infrastructure was introduced for Go-based
  2385. packages: golang-package.
  2386. - Dependencies on extraction tools are now handled as proper
  2387. per-package dependencies, using
  2388. <pkg>_EXTRACT_DEPENDENCIES. Beyond a cleanup, this is also a
  2389. preparation step for top-level parallel build support.
  2390. - When a file being downloaded is part of a package with a
  2391. .hash file, but there is no hash listed for this file, the
  2392. file is now preserved in the download directory rather than
  2393. removed. This helps when updating a package, as it gives the
  2394. ability to easily calculate the hash of the file.
  2395. - Addition of '<pkg>-show-recursive-depends' and
  2396. '<pkg>-show-recursive-rdepends' make targets, to
  2397. respectively display the recursive list of dependencies and
  2398. the recursive list of reverse dependencies of a given
  2399. package.
  2400. - The /etc/shells file is now automatically generated with the
  2401. list of shell programs installed on the system.
  2402. - Addition of -Ofast optimization level as an available
  2403. option.
  2404. Major updates: Go updated to 1.10, Erlang bumped to 20.3, Qt5
  2405. bumped to 5.10.1.
  2406. New packages: 18xx-ti-utils, abootimg, bluez-alsa, brotli,
  2407. chipmunk, clang, docker-compose, docker-proxy, flare-engine,
  2408. flare-game, gst1-interpipe, gstreamer1-editing-services,
  2409. hackrf, i2pd, imx-alsa-plugins, imx-mkimage, libcdio-paranoia,
  2410. libkrb5, llvm, pixiewps, python-backports-ssl-match-hostname,
  2411. python-cached-property, python-cython, python-docker,
  2412. python-dockerpty, python-docker-pycreds,
  2413. python-flask-sqlalchemy, python-functools32, python-influxdb,
  2414. python-json-models, python-libusb1, python-networkx,
  2415. python-psycopg2, python-pymodbus, python-sqlalchemy,
  2416. python-subprocess32, python-texttable,
  2417. python-websocket-client, python-yieldfrom, quotatool, reaver,
  2418. snort, sunxi-mali-mainline, sunxi-mali-mainline-driver, tk,
  2419. tpm2-abrmd, tpm2-tools, tpm2-tss, udftools, vte, woff2.
  2420. New defconfigs: ARC HS Development Kit, Arcturus ucls1012a,
  2421. Freescale i.MX6UL EVK (with vendor kernel), Freescale i.MX6
  2422. SoloLite EVK (with vendor kernel), Freescale i.MX31 3Stack,
  2423. Freescale i.MX8Q EVK Freescale p1025twr, Freescale t1040d4rdb,
  2424. Qemu PPC64 E5500, SolidRun ClearFog Base, Tinker RK3288, Vyasa
  2425. RK3288,
  2426. Removed packages: iqvlinux, kodi-adsp-*, mplayer
  2427. Removed defconfigs: ci40, firefly_rk3288,
  2428. freescale_p1010rdb_pa, freescale_mpc8315erdb, riotboard,
  2429. teliv_evk_pro3
  2430. Issues resolved (http://bugs.uclibc.org):
  2431. #10151: toolchain eclipse register : fails with a custom
  2432. BR2_HOST_DIR
  2433. #10511: Packages get downloaded uncompressed with wget
  2434. #10531: QtWebengine doesn't build if the host hasn't a 32 bits
  2435. C++ compiler working
  2436. #10846: error in compiling gnutls
  2437. #10886: openssl-1.0.2n fails to build
  2438. #10896: /bin/sh not in /etc/shells
  2439. #10961: Grub2 fails to build for x86_64 when BR2_SSP_ALL is
  2440. enabled
  2441. 2018.02.12, Released March 29th, 2019
  2442. Important / security related fixes.
  2443. Updated/fixed packages: avahi, beecrypt, busybox, clamav,
  2444. cups, devmem2, fetchmail, file, fltk, gcc, gdb, git, jq,
  2445. leveldb, libopenssl, libraw, libseccomp, libssh2,
  2446. libunistring, mariadb, mosquitto, nodejs, ntp, openjpeg, perl,
  2447. php, putty, qt5webkit, rdesktop, systemd, wireshark, vsftpd,
  2448. xapp_xdm, xlib_libXdmcp
  2449. 2018.02.11, Released February 23th, 2019
  2450. Important / security related fixes.
  2451. Ensure the PLATFORM and OS environment variables are not set,
  2452. as they cause build issues for some packages.
  2453. The package list infrastructure now correctly handles packages
  2454. installing files with old mtime.
  2455. Linux: Skip hash checks for user supplied downloadable
  2456. patches, as no hash checksums are available for those.
  2457. scanpypi: protect against zip-slip vulnerability in zip/tar
  2458. handling
  2459. Updated/fixed packages: bind, dhcpcd, dovecot, ghostscript,
  2460. gnuradio, imagemagick, jpeg-turbo, libarchive, libb64,
  2461. libcurl, libid3tag, madplay, mosquitto, openssh, php,
  2462. postgresql, proftpd, python, python-django, python3, qt5base,
  2463. sqlcipher, swupdate, systemd, unzip, webkitgtk
  2464. 2018.02.10, Released January 31th, 2019
  2465. Important / security related fixes.
  2466. Defconfigs: Fixes for Lego EV3, QEMU AArch64-virt
  2467. check-package: fix Python 3 support
  2468. get-developers: Fix behaviour when called from elsewhere than
  2469. the toplevel directory.
  2470. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  2471. Updated/fixed packages: acpica, apache, apr, asterisk,
  2472. avrdude, cargo, cc-tool, dash, dhcpdump, dmalloc, gnuchess,
  2473. gnupg2, leveldb, libarchive, libassuan, libftdi1,
  2474. libgpg-error, libhttpparser, libmad, libsndfile, libsquish,
  2475. liburiparser, libwebsock, libxml2, lighttpd, lm-sensors,
  2476. lua-msgpack-native, mbedtls, mosquitto, netatalk, nodejs,
  2477. openssh, pango, patchelf, php, python-django, python-pyyaml,
  2478. rauc, rp-pppoe, s6-networking, samba4, sdl_sound,
  2479. shairport-sync, sqlite, subversion, sunxi-cedarx, tcpreplay,
  2480. tekui, usb_modeswitch, webkitgtk, wireshark, wolfssl,
  2481. xapp_rgb, xenomai, xerces
  2482. Issues resolved (http://bugs.uclibc.org):
  2483. #11576: Unable to start apache with event MPM on raspberry pi 3
  2484. 2018.02.9, Released December 20th, 2018
  2485. Important / security related fixes.
  2486. defconfigs: Fixes for ci20
  2487. Updated/fixed packages: c-ares, dante, freetype, ghostscript,
  2488. glibc, gnutls, go, libcurl, libgpgme, libid3tag, libiscsi,
  2489. libmpd, libopenssl, libpjsip, linux, liquid-dsp, luvi, lynx,
  2490. msgpack, nginx, nodejs, php, popt, pps-tools, python-numpy,
  2491. python-requests, samba4, sdl2_net, squashfs, swupdate, uclibc,
  2492. wine, webkitgtk, xfsprogs
  2493. Issues resolved (http://bugs.uclibc.org):
  2494. #11426: pps-tools bash dependency
  2495. 2018.02.8, Released November 26th, 2018
  2496. Important / security related fixes.
  2497. fs: Drop intermediate tarball from the filesystem handling to
  2498. fix an issue with xattrs handling related to fakeroot. Ensure
  2499. tarball target includes xattrs.
  2500. download: Fix confusion in git submodule handling if dl/ is a
  2501. symlink.
  2502. toolchain: Only allow enabling stack protection on
  2503. architectures with control flow integrity (CFI) support. Only
  2504. allow FORTIFY_SOURCE support on gcc >= 6.
  2505. genrandconfig: Fix missing newline in BR2_WGET handling,
  2506. causing the following line to be ignored. This would affect
  2507. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  2508. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  2509. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  2510. show-build-order: Also include the dependencies of
  2511. rootfs-common.
  2512. Defconfigs: Fixes for Armadeus APF27, imx6sabre.
  2513. graph-depends: Fix for package names starting with a non-alpha
  2514. character.
  2515. Updated/fixed packages: attr, audit, bind, brotli, easydbus,
  2516. elfutils, gauche, gcc, giflib, gpsd, lcdproc, libcurl,
  2517. libiscsi, libnfs, libnspr, libnss, libkcapi, libsemanage,
  2518. liburiparser, lighttpd, linux, lua-curl, mariadb, mmc-utils,
  2519. mosquitto, mysql, neardal, netplug, network-manager,
  2520. nfs-utils, nginx, openocd, openswan, p11-kit, postgresql,
  2521. prosody, qemu, qt, rpm, ruby, samba4, squid, supertuxkart,
  2522. systemd, tar, trace-cmd, traceroute, twolame, uclibc,
  2523. usb_modeswitch, vtun, webkitgtk, xdriver_xf86-video-geode,
  2524. xlib_libfontenc, xproto_inputproto, xserver_xorg-server
  2525. Issues resolved (http://bugs.uclibc.org):
  2526. #11086: download/git submodule breaks on symlinked dl folder
  2527. #11251: Util scanpypi failes when package change - to _ in..
  2528. #11476: stdio2.h error invalid use of __builtin_va_arg_pack
  2529. #11481: Docs: Is external.desc required?
  2530. 2018.02.7, Released October 25th, 2018
  2531. Important / security related fixes.
  2532. Detect and reject build paths containing '@', as this confuses
  2533. a number of packages, including GCC.
  2534. utils/get-developers: Add -e option for use with git
  2535. send-email.
  2536. utils/diffconfig: Make it work for (non-Buildroot) config
  2537. files not using the BR2_ prefix.
  2538. u-boot: Fix for environment image handling on big endian
  2539. systems.
  2540. Updated/fixed packages: binutils, ca-certificates,
  2541. cups-filters, erlang, file, freetype, gcc, git, gvfs, leveldb,
  2542. libarchive, libcurl, libssh, live555, ljlinenoise, mariadb,
  2543. mongoose, netsnmp, nmap, nodejs, ntp, open-plc-utils, poco,
  2544. psmisc, ptpd2, python-enum34, qemu, qt, qt5base, setools,
  2545. spice, spice-protocol, tinc, ustr, wireshark
  2546. Issues resolved (http://bugs.uclibc.org):
  2547. #11396: uboot environment image checksum invalid if target is big endian
  2548. 2018.02.6, Released October 7th, 2018
  2549. Important / security related fixes.
  2550. Add a number of patches to fix build errors for host utilities
  2551. on modern distributions using glibc-2.28.
  2552. mkusers: Ensure existing group members are preserved when a
  2553. group is reprocessed.
  2554. printvars: Fix issue with exceeding shell command line length
  2555. limits for certain setups.
  2556. Updated/fixes packages: acpid, android-tools, apache,
  2557. arp-scan, bandwidthd, bind, bison, clamav, connman, cppcms,
  2558. cramfs, fio, gcc, ghostscript, glibc, gnupg, httping,
  2559. igmpproxy, imagemagick, imlib2, ipsec-tools, lcms2, libcurl,
  2560. libesmtp, libnfs, libssh, libxslt, links, linuxptp,
  2561. mediastreamer, minicom, moarvm, nilfs-utils, ocrad, parted,
  2562. php, pv, python-django, qt, qt5quickcontrols, qt5webengine,
  2563. screen, sdl2, shairport-sync, squashfs, strongswan,
  2564. vboot-utils, webkitgtk, wireguard, x265, xen, xlib_libXfont,
  2565. xlib_libXft
  2566. New packages: brotli, woff2
  2567. 2018.02.5, Released August 29th, 2018
  2568. Important / security related fixes.
  2569. Defconfigs: Raspberrypi2: Bump rootfs size, T7680: Fix
  2570. genimage.cfg issue, ARM Juno: Bump ATF to v1.3 to fix build
  2571. issue.
  2572. Updated/fixed packages: acl, apache, attr, bind,
  2573. boot-wrapper-aarch64, brltty, bzip2, chrony, crda, cryptsetup,
  2574. dahdi-tools, dmidecode, dropbear, eigen, erlang, ffmpeg, gawk,
  2575. gcc, ghostscript, gnutls, ipsec-tools, libarchive, libfuse,
  2576. libopenssl, libselinux, libsoup, lighttpd, linuxptp,
  2577. lttng-modules, lttng-tools, lua-flu, lvm2, m4, makedevs,
  2578. mariadb, mbedtls, mesa3d-headers, mtd, ncurses, nodejs,
  2579. openssh, php, postgresql, python-django, qt5xmlpatterns, ruby,
  2580. samba4, shairport-sync, stress-ng, ti-utils, uboot-tools, vim,
  2581. waylandpp, wireless_tools, wireshark, wpa_supplicant, xorriso,
  2582. znc
  2583. Issues resolved (http://bugs.uclibc.org):
  2584. #10781: cryptsetup luksOpen container_file container causes..
  2585. #10986: Installing package attr when already supplied by..
  2586. #11191: xattr and check-package issue
  2587. 2018.02.4, Released July 21th, 2018
  2588. Important / security related fixes.
  2589. U-Boot: Ensure host version of ncurses is picked up and not
  2590. host-ncurses built by buildroot, as that otherwise causes
  2591. widechar/non-widechar conflicts and corrupted menuconfig
  2592. menus.
  2593. Linux: Enable CONFIG_PERF_EVENTS when perf is enabled.
  2594. Defconfigs: Raspberrypi3: Bump rootfs size, Minnowboard-max:
  2595. Support ethernet on Turbot variant.
  2596. Updated/fixed packages: bind, clamav, collectd, dos2unix,
  2597. edid-decode, gcc, gdb, heimdal, hidapi, imx-gpu-viv, libcurl,
  2598. libglib2, liblogging, libostree, libsoup, libv4l, lm-sensors,
  2599. ncurses, network-manager, patchelf, pinentry, procps-ng, qpdf,
  2600. qt5, qt53d, qt5base, qt5charts, qt5script, qt5serialport,
  2601. systemd, wireguard, wireless-regdb
  2602. Issues resolved (http://bugs.uclibc.org):
  2603. #11101: host-patchelf Endian Issue with relative RPATH
  2604. 2018.02.3, Released June 18th, 2018
  2605. Important / security related fixes.
  2606. Various fixes for building on modern distributions (GCC 8.x,
  2607. no rpcgen utility).
  2608. ARM: Default to binutils 2.28 and warn about newer binutils
  2609. versions, which are known to cause boot failures for Linux
  2610. kernels built in thumb mode.
  2611. Busybox/mdev: Fix module autoloading.
  2612. Busybox/sysvinit: inittab: Add /dev/{stdin,stdout,stderr}
  2613. symlinks, call swapon -a to activate any configured swap
  2614. devices.
  2615. Dependencies: Check that PATH does not contain current working
  2616. directory, which triggers a number of build failures.
  2617. Infrastructure: Error out for packages erroneously using the
  2618. 'local' site method but not defining a _SITE.
  2619. Linux: Fix cuImage.<dtb> / simpleImage.<dtb> handling. Ensure
  2620. kconfig uses ncurses from the host to fix a ncurses/ncursesw
  2621. mixup, causing menuconfig display corruption.
  2622. Toolchain: Workarounds for fix-rpath issues with binutils and
  2623. elf2flt.
  2624. Util-linux: Fix blocking on getrandom() issue with recent
  2625. kernels.
  2626. Remove broken freescale_imx31_3stack,
  2627. freescale_imx6sololiteevk and freescale_imx6ulevk defconfigs.
  2628. Updated/fixed packages: apr-util, asterisk, attr, audit,
  2629. autofs, binutils, busybox, cifs-utils, cups-filters, dash,
  2630. ebtables, exim, expect, f2fs-tools, faketime, file, gdb, git,
  2631. glibc, gnupg, gnupg2, gst1-plugins-bad, imagemagick, jamvm,
  2632. jpeg-turbo, libcap, libcoap, libcurl, libgcrypt, libjpeg,
  2633. libnss, libressl, libtirpc, libvncserver, libvorbis, libxslt,
  2634. log4cplus, lrzsz, ltrace, lynx, mariadb, mbedtls, mpg123,
  2635. nasm, netplug, network-manager, nfs-utils, nodejs,
  2636. openvmtools, patch, perl, php-amqp, poppler, procps-ng,
  2637. python, python-websockets, quota, redis, samba4, sysvinit,
  2638. transmission, triggerhappy, util-linux, wavpack, wget,
  2639. wireshark, xen, zmqpp
  2640. Issues resolved (http://bugs.uclibc.org):
  2641. #10986: Installing package attr when already supplied by busybox..
  2642. #11031: ld-elf2flt: host/bin/ld.real': execvp: No such file or..
  2643. 2018.02.2, Released May 4th, 2018
  2644. Important / security related fixes.
  2645. Tweak package size/file instrumentation to better handle
  2646. package rebuilds.
  2647. Revert /etc/shells creation when bash is enabled.
  2648. Exclude /lib/firmware from the rpath fixup logic, as it may
  2649. contain non-native ELF files.
  2650. Scanpypi: Support the new PyPi infrastructure.
  2651. Handle GCC 8.x on the host.
  2652. Ensure timestamp of /usr is updated to support the systemd
  2653. ConditionNeedsUpdate option.
  2654. Updated/fixed packages: bluez5_utils, flann, gdb, gnupg2,
  2655. grub2, libcec, libcgi, libglib2, libgpg-error, libgpgme,
  2656. libtomcrypt, mbedtls, mkpasswd, php, python, python-requests,
  2657. python-watchdog, qt53d, qt5websockets, sdl2, sdl2_image,
  2658. syslog-ng, systemd, tcl, tcllib, uclibc, usb_modeswitch,
  2659. wireguard, wmctrl
  2660. Issues resolved (http://bugs.uclibc.org):
  2661. #10896: /bin/sh not in /etc/shells
  2662. #10961: Grub2 fails to build for x86_64 when BR2_SSP_ALL is enabled
  2663. 2018.02.1, Released April 9th, 2018
  2664. Important / security related fixes.
  2665. Removed unmaintained defconfigs: Creator Ci40, Firefly rk3288,
  2666. Freescale mpc8315erdb / p1010rdb_pa, Riotboard, Teliv EVK
  2667. Pro3.
  2668. Infrastructure: Speed up instrumentation for package size by
  2669. comparing timestamps instead of md5 checksums, as doing
  2670. checksums could lead to up to 25% longer build time for big
  2671. configurations.
  2672. Rename the internal <pkg>_BASE_NAME variable to <pkg>_NASENAME
  2673. to avoid name clashes with packages ending on '-base'.
  2674. Add a better fix for build issues for autotools based packages
  2675. checking for C++ support on toolchains without C++ support.
  2676. Build host-tar if tar is older than 1.27 on the build machine
  2677. to work around reproducibility issues with git archives
  2678. containing long paths.
  2679. check-unique-files: Fix for filenames not representable in the
  2680. users' locale.
  2681. Check-bin-arch: Add support for per-package ignore paths
  2682. (<pkg>_BIN_ARCH_EXCLUDE).
  2683. Toolchain: Fix SSP support detection for external toolchains.
  2684. linux: Add _NEEDS_HOST_OPENSSL / LIBELF options to ensure
  2685. these dependencies are available for Linux configurations
  2686. needed these dependencies, similar to how it is done for
  2687. U-Boot.
  2688. Support custom (not in tree) device tree files in addition to
  2689. in-tree ones.
  2690. U-Boot / uboot-tools: Fix header conflict with libfdt-devel
  2691. installed on host.
  2692. Updated/fixed packages: apache, busybox, c-ares, cmake,
  2693. docker-engine, enlightenment, eudev, fbgrab, freescale-imx,
  2694. gtest, imagemagick, intel-microcode, irssi, jimtcl, kmod,
  2695. kodi, ktap, libcoap, libcurl, libfcgi, libhttpparser,
  2696. libminiupnpc, libopenssl, libpjsip, libss7, libssh2, libupnp
  2697. libupnpp, libuv, libvorbis, memcached, motion, musl, nodejs,
  2698. ntp, openblas, opencv3, openocd, opus-tools, patch, php,
  2699. pkgconf, postgresql, powerpc-utils, python-jsonschema,
  2700. python-webpy, qemu, qt5bsae, qt5script, qt5webkit, rapidjson,
  2701. rauc, sam-ba, samba4, sngrep, systemd, tremor, uboot-tools,
  2702. uclibc-ng-test, upmpdcli, wireshark, xerces, xterm, zstd
  2703. New packages: docker-proxy, python-functools32
  2704. Issues resolved (http://bugs.uclibc.org):
  2705. #10766: upmpdcli: Segmentation fault
  2706. #10776: ktap fails to build
  2707. #10846: error in compiling gnutls
  2708. #10856: openblas on qemu_x86_64_defconfig fails with "sgemm_..
  2709. 2018.02, Released March 4th, 2018
  2710. Fixes all over the tree.
  2711. Issues with systemd with a readonly rootfs and DBus fixed.
  2712. Instructure:
  2713. - check-uniq-files: fix Python 2.6 compatibility.
  2714. - dependencies.sh: check for external argparse module for
  2715. Python 2.6.
  2716. - Add infrastructure to detect and use a UTF-8 locale on the
  2717. host, needed by systemd.
  2718. Update/fixed packages: clamav, dash, dhcp, dovecot, efl,
  2719. ffmpeg, libv4l, mono, mosquitto, php, postgresql, qt,
  2720. scanpypi, sdl2, systemd, tor, tvheadend, uboot, wavpack
  2721. Issues resolved (http://bugs.uclibc.org):
  2722. #10831: qemu_x86_64_defconfig build fails on linux-headers..
  2723. 2018.02-rc3, Released February 27th, 2018
  2724. Fixes all over the tree.
  2725. check-bin-arch: skip /lib/modules to allow 32-bit userland
  2726. with 64bit kernel.
  2727. dependencies: Blacklist tar 1.30+ and build our own host-tar
  2728. if needed as tar 1.30+ changed the --numeric-owner output for
  2729. long path names. Build host-tar before other host-dependencies
  2730. as they need it to extract their source tarballs.
  2731. Update/fixed packages: asterisk, azmq, bluez5_utils, domoticz,
  2732. e2fsprogs, erlang, exim, glibc, gpsd, jq, libglib2, libvorbis,
  2733. mariadb, mbedtls, mesa3d, mesa3d-headers, mpv, patch, pcre2,
  2734. php, qt5, qt5multimedia, qt5wayland, qt5webengine, qt5webkit,
  2735. systemd, quagga, rustc, uboot, wireguard, zic, zlib-ng
  2736. Issues resolved (http://bugs.uclibc.org):
  2737. #10726: Current libglib2.mk creates broken libglib2 binary...
  2738. #10786: Linux fails to build unless make linux-menuconfig...
  2739. #10796: Cannot generate cpio image without selecting CON...
  2740. 2018.02-rc2, Released February 15th, 2018
  2741. Fixes all over the tree.
  2742. Dependencies: Ensure C++ support is available like for C
  2743. support for packages needing 32bit host support.
  2744. utils/genrandconfig: Check host dependencies for config.
  2745. Updated/fixed packages: busybox, dnsmasq, dropbear, ffmpeg,
  2746. glibc, keepalived, libcpprestsdk, libgpiod, libmaxminddb,
  2747. librsvg, libtasn1, libv4l, libxml2, lightning, ltp-testsuite,
  2748. mesa3d, mesa3d-demos, mesa3d-headers, nftables, open-lldp,
  2749. php, postgresql, python-crossbar, qt5, qt53d, qt5enginio,
  2750. qt5tools, qt5webengine, qt5webkit, rsync, rust-bin, rustc,
  2751. systemd
  2752. Issues resolved (http://bugs.uclibc.org):
  2753. #9781: ti-sgx-km build on kernel >4.1
  2754. #10141: Squashfs extended attribute failures
  2755. 2018.02-rc1, Released February 5th, 2018
  2756. The global source-check and per-package <pkg>-source-check
  2757. targets have been removed.
  2758. Architecture: Add x86 Silvermont variant. Add several new ARM
  2759. variants, rework MIPS NaN logic. Support mainline binutils/gcc
  2760. for ARC.
  2761. Toolchains: Linaro toolchains upgraded to 2017.11 release, ARC
  2762. external toolchains upgraded to arc-2017.09. Libatomic is now
  2763. also copied for external musl based toolchains.
  2764. Add binutils 2.30.x and switch to binutils 2.29.x by default.
  2765. Added hardening options to build with RELRO and FORTITY.
  2766. New defconfigs: Bananapi M64, FriendlyARM Nanopi A64 & NEO2,
  2767. imx6slevk, imx6sx-sdb, imx6ulevk, Olimex A64-OLinuXino,
  2768. Orangepi lite / pc plus / pc / prime / win / win plus / zero
  2769. plus2, Pine64, Solidrun MacchiatoBin. Sopine.
  2770. Add utils/diffconfig, a simple utility for comparing
  2771. configuration files - Adapted from the version in the
  2772. Linux kernel.
  2773. Infrastructure: Check that the same file is not touched by
  2774. multiple packages, as a preparation for toplevel parallel
  2775. builds.
  2776. Hashes for the license files for a large number of packages
  2777. have been added, ensuring that license changes will not be
  2778. missed when packages are bumped.
  2779. Fix build issue for autotools based packages checking for C++
  2780. support on toolchains without C++ support and on a distro
  2781. lacking /lib/cpp (E.G. Arch Linux).
  2782. Support for the meson build system.
  2783. Pie charts generated by 'graph-build' or 'graph-size' are now
  2784. sorted according to the size of each piece.
  2785. System: Only show getty options when busybox init or sysvinit
  2786. are used.
  2787. ARM-trusted-firmware: Support ATF bundled in U-Boot as
  2788. well as U-Boot bundled in ATF.
  2789. Zlib is now a virtual package, provided by either libzlib or
  2790. zlib-ng, similar to openssl.
  2791. Support for the Rust programming language.
  2792. New packages: aoetools, armbian-firmware, binaries-marvell,
  2793. brltty, cargo, cargo-bin, cups-filters, curlpp, daq,
  2794. flatbuffers, gconf, glorytun, gstreamer1-mm, imx-m4fwloader,
  2795. imx-gpu-g2d, json-for-modern-cpp, libcpprestsdk, libgta,
  2796. libostree, libupnp18, luadbi, luadbi-sqlite3, lua-utf8, lynx,
  2797. meson, mv-ddr-marvell, nilfs-utils, opentracing-cpp,
  2798. open-lldp, pimd, proj, python-flask-cors,
  2799. python-jaraco-classes, python-more-itertools, python-oauthlib,
  2800. python-raven, python-remi, python-requests-oauthlib,
  2801. python-schedule, python-secretstorage, python-see,
  2802. python-tabledata, python-txtorcon, python-xlib, qt5charts,
  2803. rtl8189fs, rtl8723bu, rust, rustc, rust-bin, rygel, safeclib,
  2804. solatus, tcf-agent, traceroute, waylandpp, wolfssl,
  2805. zisofs-tools, zlib-ng
  2806. Removed packages: eeprog
  2807. 2017.11.2, Released January 21st, 2018
  2808. Important / security related fixes.
  2809. External toolchain: libatomic is now also copied for musl
  2810. based toolchains.
  2811. nconfig: Fix for ncurses/ncursesw linking issue causing crashes.
  2812. System: Only show getty options when busybox init or sysvinit
  2813. are used.
  2814. Infrastructure: Fix build issue for autotools based packages
  2815. checking for C++ support on toolchains without C++ support and
  2816. on a distro lacking /lib/cpp (E.G. Arch Linux).
  2817. Pie charts generated by 'graph-build' or 'graph-size' are now
  2818. sorted according to the size of each piece.
  2819. Updated/fixed packages: asterisk, avahi, bind, busybox,
  2820. coreutils, eeprog, intel-microcode, iputils, irssi, kmsxx,
  2821. libiio, linux-firmware, lz4, mariadb, matchbox-lib, mcookie,
  2822. ntp, php, pound, rpcbind, tar, ti-cgt-pru, webkitgtk, xen,
  2823. xlib_libXpm
  2824. Issues resolved (http://bugs.buildroot.org):
  2825. #9996: lz4 package does not install lz4 binaries in target
  2826. #10176: Rsyslog's S01logging is deleted by Busybox.mk from...
  2827. #10216: package/x11r7/mcookie/mcookie.c:207: bad size ?
  2828. #10301: systemd/getty unused options
  2829. #10331: kmsxx, host installation fails with BR2_SHARED_...
  2830. #10556: Building ntp package with SSL library libressl...
  2831. #10641: avahi-autoipd not starting when using systemd-tmpfiles
  2832. 2017.11.1, Released December 31th, 2017
  2833. Important / security related fixes.
  2834. Updated/fixed packages: asterisk, checkpolicy, dhcp, flann,
  2835. gdb, glibc, heimdal, kodi-pvr-mediaportal-tvserver,
  2836. kodi-pvr-stalker, libcue, libopenssl, libpqxx, libsoxr,
  2837. linknx, linux-tools, lldpd, ltp-testsuite, mariadb, mfgtools,
  2838. nodejs, nut, pulseaudio, python-cffi, qemu, rsync, tor, uboot,
  2839. uboot-tools, vlc, webkitgtk, weston, wireguard, wireshark,
  2840. xenomai, xfsprogs
  2841. 2017.11, Released November 30, 2017
  2842. Fixes all over the tree.
  2843. Toolchain: Use github mirror for Glibc.
  2844. Defconfigs: Correct boot.cmd for bananapi-m1.
  2845. Makefiles: Workaround include order issues for certain make
  2846. versions by explicitly sorting the result of wildcard where it
  2847. matters.
  2848. Download: Ensure subversion runs in non-interactive mode.
  2849. Updated/fixed packages: asterisk, boost, chrony, dovecot,
  2850. dvb-apps, exim, feh, freerdp, fwup, google-breakpad, jose,
  2851. kvm-unit-test, lftp, libcurl, libevent, libfastjson, libpjsip,
  2852. libupnp, linphone, localedef, lttng-tools, mp4v2, mtools,
  2853. ndisc6, oracle-mysql, parted, pdbg, qt, qt5connectivity,
  2854. qt5declarative, qt5webkit, rauc, runc, samba4, shairport-sync,
  2855. systemd-bootchart, webkitgtk, wireguard, xlib_libXcursor,
  2856. xlib_libXfont, xlib_libXfont2,
  2857. Issues resolved (http://bugs.buildroot.org):
  2858. 10501: host-localedef fails to compile on Ubuntu 17.10
  2859. 10506: Changed kernel image type (e.g. zImage to uImage)...
  2860. 2017.11-rc2, Released November 13th, 2017
  2861. Fixes all over the tree.
  2862. Updated/fixed packages: collectd, ffmpeg, freerdp,
  2863. go-bootstrap, imagemagick, jimtcl, libpjsip, libplist, libuv,
  2864. mesa3d, nodejs, ntp, openjpeg, postgresql, python-numpy, ruby,
  2865. snmp++, usb_modeswitch, util-linux, vboot-utils, webkitgtk,
  2866. wireshark, wpa_supplicant, xapp_xdriinfo
  2867. Issues resolved (http://bugs.buildroot.org):
  2868. #10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  2869. #10491: Cannot output security warning when compiled with buildroot..
  2870. 2017.11-rc1, Released November 6th, 2017
  2871. Fixes all over the tree and new features.
  2872. Openssl is now a virtual package, which may be provided by
  2873. OpenSSL (now renamed to libopenssl) or LibreSSL.
  2874. libssh2: there is now an explicit choice of the backend to use
  2875. (mbedtls, gnutls or openssl). Previously, the choice was implicit
  2876. based on the TLS library that was selected. Now, it is possible to
  2877. choose the backend, which is important if several TLS libraries are
  2878. selected.
  2879. netsnmp: all MIB files are now installed, making the target filesystem a
  2880. bit bigger than before. To remove unneeded MIBS, you should use a
  2881. post-build script.
  2882. Toolchain: Linaro toolchains updated to 2017.08, ARC toolchain
  2883. updated to 2017.09, Glibc updated to 2.26, Glibc support for
  2884. ARCv2. The toolchain wrapper now handles SOURCE_DATE_EPOCH for
  2885. older (pre-gcc7.x) toolchains for BR2_REPRODUCIBLE.
  2886. New defconfigs: Atmel SAM45D27, Bananapi M1 and M2 Plus,
  2887. Engicam i.CoreM6 Qt5 configuration, i.MX6 sabreauto (mainline
  2888. kernel/u-boot), i.MX6Q sabresd Qt5 configuration, i.MX7d-pico,
  2889. QEMU ppc64le, Raspberry pi3 Qt5 webengine configuration,
  2890. Technologic TS-7680.
  2891. New packages: asterisk, azmq, bcg729, boinc, dahdi-linux,
  2892. dahdi-tools, freeswitch-mod-bcg729, fscryptctl, libb64,
  2893. libpri, libss7, lua-basexx, lua-compat53, lua-cqueues,
  2894. lua-curl, lua-datafile, lua-fifo, lua-httpd,
  2895. lua-lpeg-patterns, lua-markdown, lua-sailor, lua-value,
  2896. luksmeta, minetest, minetest-game, pdmenu, prosody,
  2897. python-aiocoap, python-automat, python-ibmiotf,
  2898. python-iso8601, python-m2r, python-simplesqlite,
  2899. python-websockets, python-xmltodict, qt5wayland, qt5webengine,
  2900. restorecond, selinux-python, semodule-utils, uhubctl,
  2901. wireguard, wsapi-fcgi, wsapi-xavante
  2902. Removed packages: aiccu, rfkill, sepolgen
  2903. Issues resolved (http://bugs.buildroot.org):
  2904. #10281: lsblk does not compile for util-linux
  2905. #10336: lttng compilation fails : linking error
  2906. #10351: glibc missing in rootfs
  2907. #10356: nfs-utils missing header
  2908. #10361: python3 python-config script generates invalid includes
  2909. #10366: dropbear download url has changed
  2910. #10391: WiringPi retrieves wrong (old) version
  2911. #10406: Beaglebone black: Buggy SGX driver version, swapped...
  2912. #10426: uboot-tools' fw_setenv does not update the redundant...
  2913. #10451: libpcap 1.8.x and 1.7x does not compile on PPC
  2914. 2017.08.2, Released November 28th, 2017
  2915. Important / security related fixes.
  2916. Qt: 5.6 version updated to 5.6.3.
  2917. Reproducible: Do not override SOURCE_DATE_EPOCH if already set
  2918. in the environment.
  2919. Makefiles: Workaround include order issues for certain make
  2920. versions by explicitly sorting the result of wildcard where it
  2921. matters.
  2922. Updated/fixed packages: apr, apr-util, arqp-standalone,
  2923. azure-iot-sdk-c, collectd, dvb-apps, ffmpeg, go-bootstrap,
  2924. google-breakpad, gstreamer, imagemagick, irssi, jimtcl,
  2925. kvm-unit-test, libcurl, libfastjson, libglib2, libidn,
  2926. libpjsip, libplist, localedef, lttng-tools, luajit, mesa3d,
  2927. moarvm, mp4v2, openssh, openssl, oracle-mysql, postgresql,
  2928. python3, python-pyqt5, qt, qt5base, qt5canvas3d,
  2929. qt5connectivity, qt5declarative, qt5engineio,
  2930. qt5graphicaleffects, qt5imageformats, qt5location,
  2931. qt5multimedia, qt5quickcontrols, qt5quickcontrols2, qt5script,
  2932. qt5sensors, qt5serialbus, qt5serialport, qt5svg, qt5tools,
  2933. qt5webchannel, qt5webkit, qt5websockets, qt5x11extras,
  2934. qt5xmlpatterns, quagga, redis, ruby, samba4, sdl2, snmppp,
  2935. swupdate, ti-gfx, uboot-tools, usb_modeswitch, vboot-utils,
  2936. webkitgtk, wget, wireshark, xapp_xdriinfo.
  2937. Issues resolved (http://bugs.buildroot.org):
  2938. 10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  2939. 10361: python3 python-config script generates invalid includes
  2940. 10501: host-localedef fails to compile on Ubuntu 17.10
  2941. 2017.08.1, Released October 23rd, 2017
  2942. Important / security related fixes.
  2943. Webkitgtk bumped to the 2.18.x series, fixing a large number
  2944. of security issues.
  2945. Defconfigs: galileo: fix ext4 related kernel config, bump
  2946. kernel for gcc 6.x compatibility, enable wchar support for
  2947. grub2. wandboard: correct rootfs offset
  2948. support: Ensure gzip compression level 6 is used for git
  2949. tarballs. check-bin-arch: Correctly handle (ignore) symbolic
  2950. links. check-rpath: Also handle PIE binaries
  2951. External toolchain: Correctly handle glibc Buildroot
  2952. toolchains built with merged /usr
  2953. musl: fix ARMv4 build with binutils 2.27.51+, fix for
  2954. CVE-2017-15650
  2955. Updated/fixed packages: apache, augeas, bind, bluez5_utils,
  2956. busybox, bzip2, cmake, dnsmasq, ejabberd, gcc, git, go, ffmpeg, file,
  2957. flashrom, gd, gdk-pixbug, gnupg2, hostapd, ifupdown-scripts,
  2958. imagemagick, iucode-tool, kernel-module-imx-gpu-viv, lame,
  2959. libarchive, libcurl, libffi, libidn, libmbim, libnspr, libnss,
  2960. libressl, librsync, libsoup, libxml2, libzip, mbedtls, musl,
  2961. netplug, nginx, openvpn, pkgconf, poppler, proxychains-ng,
  2962. qemu, qt, rpi-userland, syslog, ruby, samba4, softether,
  2963. sqlite, strongswan, subversion, supertuxkart, supervisor, tcpdump,
  2964. tor, unrar, urq, vboot-utils, webkitgtk, wpa_supplicant, xen,
  2965. xmlstarlet, xlib_libXfont, xlib_libXfont2,
  2966. xserver_xorg-server, zsh
  2967. 2017.08, Released September 1st, 2017
  2968. Minor fixes.
  2969. Toolchain: Don't allow internal toolchain builds for MIPS
  2970. M6201/P6600, as support for these are not yet in mainline GCC.
  2971. Updated/fixed packages: bcusdk, connman, dialog, dnsmasq,
  2972. gnupg, grub2, iostat, iucode-tool, libgcrypt, libkcapi,
  2973. libphidget, libv4l, linux-tools, mediastreamer, minidlna,
  2974. nss-pam-ldapd, nvidia-driver, qt-webkit-kiosk, rpcbind, squid,
  2975. transmission, vde2, vim
  2976. Updated/fixed defconfigs:
  2977. Removed packages: simicfs.
  2978. Issues resolved (http://bugs.buildroot.org):
  2979. #10261: Grub2 fails to build for x86_64
  2980. 2017.08-rc3, Released August 23rd, 2017
  2981. Fixes all over the tree.
  2982. Updated/fixed packages: alsa-lib, alsa-utils, cc-tool,
  2983. dbus-cpp, e2fsprogs, elf2flt, faad2, fakeroot, gcc, git, gpsd,
  2984. gst1-validate, kvmtool, libconfuse, libepoxy, librsync,
  2985. libspatialindex, libunwind, linux, linux-headers, lua,
  2986. mariadb, mesa3d, mtd, openocd, python3, syslinux, sysvinit,
  2987. whois, xen, zmqpp.
  2988. Updated/fixed defconfigs: ci20, socrates_cyclone5,
  2989. toradex_apalis_imx6.
  2990. Removed defconfig: Armadeus APF9328.
  2991. skeleton-* packages introduced in -rc1 have been renamed to
  2992. skeleton-init-* instead.
  2993. Issues resolved (http://bugs.buildroot.org):
  2994. #10141: Squashfs extended attribute failures
  2995. 2017.08-rc2, Released August 11th, 2017
  2996. Fixes all over the tree.
  2997. Updated/fixed packages: bind, dbus, erlang-p1-xml, faad2,
  2998. ficl, gcc, gdb, glibc, jack2, libcurl, linux, linux-headers,
  2999. lua, mutt, nvme, qt5base, skeleton-common, snappy, stella,
  3000. swupdate, uclibc, valgrind, webkitgtk.
  3001. Updated/fixed defconfigs: beaglebone_qt5, minnowboard_max,
  3002. nanopi_m1{, _plus}, olimex_a20_olinuxino_lime, qemu_sparc,
  3003. qemu_sparc64.
  3004. The cmake-package infrastructure for host packages has been
  3005. fixed to not incorrectly detect target packages through
  3006. pkg-config.
  3007. Issues resolved (http://bugs.buildroot.org):
  3008. #9926: systemd-resolved.service: Failed at step NAMESPACE (systemd 233)
  3009. #10021: libqeglfs-viv-integration.so file is missing for qt5 on armv7
  3010. #10026: lua-5.3.4: fix lua linker error in swupdate
  3011. #10146: package/skeleton-common fix recursive variable
  3012. #10156: glibc compilation fails for X86 32bits (i386)
  3013. #10201: toolchain-wrapper.c:192: (error) Memory leak:
  3014. #10221: Buildroot Support
  3015. 2017.08-rc1, Released August 2nd, 2017
  3016. Infrastructure:
  3017. - The skeleton package has been split into multiple packages:
  3018. skeleton-sysv (when Busybox or SysV init are used),
  3019. skeleton-systemd (when systemd is used), skeleton-none (when
  3020. no init system is used) and skeleton-custom (when a custom
  3021. skeleton is used). Those packages, except skeleton-custom,
  3022. share common logic and data in a new package called
  3023. skeleton-common. The skeleton package becomes a virtual
  3024. package. This change allows to generate a filesystem that is
  3025. compliant with systemd expectations.
  3026. - Support for using a read-only filesystem with systemd has
  3027. been fixed.
  3028. - Major revamp of the gettext handling, with user-visible
  3029. effect:
  3030. - prior to this revamp, when BR2_ENABLE_LOCALE=y, each
  3031. package could decide to enable or not NLS support. When
  3032. BR2_ENABLE_LOCALE was disabled, NLS support was forced off
  3033. by passing --disable-nls to packages.
  3034. - after this revamp, a new BR2_SYSTEM_ENABLE_NLS option
  3035. controls whether NLS support should be enabled or not in
  3036. packages. This option defaults to disabled, which means
  3037. that now, NLS support is by default disabled in all
  3038. packages.
  3039. Therefore, if you need NLS support in packages, you must now
  3040. explicitly enable the BR2_SYSTEM_ENABLE_NLS option.
  3041. - The host directory no longer has a usr/ component. This
  3042. makes it much more natural to use that directory as an
  3043. externally used toolchain. For compatibility with existing
  3044. scripts, a usr -> . link is still added.
  3045. - Hashes are now checked on tarballs by Buildroot when a
  3046. package is sourced from a Git repository.
  3047. - Patches are no longer being downloaded from Github, since
  3048. auto-generated patches could change over time, and break
  3049. hashes. All patches that were downloaded from Github are now
  3050. stored in their respective package directories.
  3051. - Hash files in packages can now contain hashes for the
  3052. license files contained in the package source code. This
  3053. allows to detect changes in such license files.
  3054. - Binaries in $(TARGET_DIR) are now cleaned up from invalid
  3055. RPATHs at the end of the build.
  3056. - A new "make sdk" target prepares $(HOST_DIR) to be
  3057. relocatable: turns RPATHs in host binaries into relocatable
  3058. ones, removes bogus RPATHs from staging binaries/libraries,
  3059. and provides a relocate-sdk script that can be executed to
  3060. relocate the SDK after installation.
  3061. - Addition of utils/genrandconfig which generates a random
  3062. configuration based on a set of pre-defined toolchain
  3063. configurations (support/config-fragments/autobuild/) and a
  3064. random selection of packages. It is now used by the
  3065. autobuilders to generate the random configurations.
  3066. Filesystems:
  3067. - ext2/3/4 filesystems are now generated using mkfs.ext from
  3068. e2fsprogs instead of using genext2fs.
  3069. Architecture:
  3070. - Addition of support for ARM big.LITTLE variants
  3071. - Improved MIPS support, with options to select NaN encoding
  3072. and FP32 mode.
  3073. Toolchain:
  3074. - Switch to gcc 6.x as the default gcc version, add support
  3075. for gcc 7.x, remove support for gcc 4.8
  3076. - Switch to binutils 2.28 as the default binutils version, add
  3077. support for binutils 2.29, remove support for binutils 2.26
  3078. - Support added for gdb 8.0
  3079. - uClibc-ng bumped to 1.0.26
  3080. - CodeSourcery toolchains for x86 and SuperH have been
  3081. removed, they were using a too old glibc version
  3082. (2.17). External toolchains with glibc 2.17 or earlier are
  3083. no longer supported.
  3084. - The version selection in the glibc package has been
  3085. removed. Like musl and uClibc-ng, we now use the latest
  3086. glibc version.
  3087. - Improved support for Xtensa toolchain overlays, which can
  3088. now be downloaded.
  3089. Tools:
  3090. - Numerous improvements to the runtime test infrastructure
  3091. - Tests are now executed by Gitlab CI on a regular basis
  3092. - Tools that are directly useful to the user have been moved
  3093. from support/scripts/ to utils/: brmake, check-package,
  3094. get-developers, scancpan, scanpipy, size-stats-compare,
  3095. test-pkg.
  3096. New defconfigs: A13 Olinuxino, Engicam platforms (i.CoreM6
  3097. Solo/Dual/DualLite/Quad, RQS SOM, GEAM6UL SOM, Is.IoT MX6UL
  3098. SOM), Nano Pi M1 (Plus), OrangePi Zero and Plus.
  3099. New packages: azure-iot-sdk-c, cracklib, dt-utils, easy-rsa,
  3100. erlang-jiffy, erlang-p1-oauth2, erlang-p1-xmpp,
  3101. ifupdown-scripts, irrlicht, kodi-inputstream-adaptive,
  3102. kodi-inputstream-rtmp, kvazaar, let-me-create, libloki,
  3103. libpwquality, libressl, libspatialindex, libva-utils,
  3104. linuxconsoletools, linuxptp, luaossl, lua-sdl2, lua-stdlib,
  3105. lsscsi, paxtest, pcre2, pixz, python-asn1crypto,
  3106. python-backports-shutil-get-terminal-size, python-bcrypt,
  3107. python-cheroot, python-h2, python-hpack, python-hyperframe,
  3108. python-hyperlink, python-ipython-genutils, python-pathlib2,
  3109. python-pickleshare, python-priority, python-portend,
  3110. python-scandir, python-systemd, python-tempora,
  3111. python-traitlets, python-typepy, qt5virtualkeyboard,
  3112. ratpoison, rauc, refpolicy, rhash, sdl2_mixer, sdl2_net,
  3113. xr819-xradio, zstd
  3114. Removed packages: cloog, input-tools, mke2img
  3115. Issues resolved (http://bugs.buildroot.org):
  3116. #7892: systemd-journald is broken
  3117. #9341: avahi-utils does not compile with uClibc + libglib2
  3118. #9441: Link BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY to
  3119. BR2_ENABLE_DEBUG
  3120. #9746: ext4 image generated by Buildroot is not working
  3121. properly with U-Boot
  3122. #9886: Build fails with "unexpected EOF while looking for
  3123. matching `"'" if PATH contains a newline
  3124. #9891: parted 3.1 => 3.2?
  3125. #9911: qt5 does not build on sparc
  3126. #9916: qt5 does not build on
  3127. arm-buildroot-linux-uclibcgnueabihf for ARMv8 cores
  3128. #9936: Host QEMU does not build with SDL support because of
  3129. pkg-config
  3130. #9941: nodejs option disappears for arm
  3131. #9951: SCANCPAN failure
  3132. #9966: util-linux-2.30/.stamp_built' failed
  3133. #9976: License file for package 'rtl8821au' incorrect
  3134. #9991: SGX Error implicit declaration of function
  3135. ‘dmac_map_area’
  3136. #10011: wget does not work from Buildroot
  3137. #10036: Buildroot builds Raspbian Jessie headless image
  3138. presenting incorrect prompt
  3139. #10051: make: *** No rule to make target
  3140. 'raspberrpi3_defconfig'. Stop reported with Buildroot
  3141. v2017.05.1
  3142. #10056: No .config file was produced in /buildroot folder
  3143. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer
  3144. failure
  3145. #10071: fakeroot: replace hard-coded paths in post install
  3146. #10076: Makefile:4113: recipe for target 'all-gcc' failed
  3147. #10091: gcc7.1 does not build with graphite support due to old
  3148. isl
  3149. #10121: webkit without the multimedia option causes build
  3150. error
  3151. 2017.05.2, Released July 27th, 2017
  3152. Important / security related fixes.
  3153. Webkitgtk bumped to the 2.16.x series, fixing a large number
  3154. of security issues.
  3155. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  3156. which default to PIE mode.
  3157. Updated/fixed packages: aespipe, apache, bind, binutils,
  3158. busybox, ccache, collectd, dieharder, efibootmgr, efivar,
  3159. expat, ffmpeg, gcc, heimdal, iproute2, irssi, libglib2,
  3160. libmemcached, libosip2, libtirpc, libxml-parser-perl,
  3161. linux-fusion, linux-zigbee, mpg123, orc, pcre, php, protobuf,
  3162. pulseaudio, python-setproctitle, qt5base, rpi-firmware,
  3163. samba4, syslinux, systemd, spice, tcpdump, tiff, uboot-tools,
  3164. webkitgtk, x265, xserver_xorg-server, xvisor
  3165. Issues resolved (http://bugs.buildroot.org):
  3166. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  3167. 2017.05.1, Released July 4th, 2017
  3168. Important / security related fixes.
  3169. Update support/scripts/scancpan to use METACPAN v1 API as v0
  3170. has been shutdown.
  3171. Update support/scripts/mkusers to handle setups where
  3172. /etc/shadow is a symlink.
  3173. External toolchain: Don't create musl dynamic loader symlink
  3174. for static builds.
  3175. Setlocalversion: Correct detection of mercurial revisions for
  3176. non-tagged versions.
  3177. Defconfigs: at91sam9x5ek_mmc: workaround boot rom issue.
  3178. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  3179. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, glmark2,
  3180. gnutls, gst1-plugins-bad, imagemagick, imx-uuc, intltool,
  3181. iperf, ipsec-tools, irssi, kmod, libcurl, libgcrypt, libmad,
  3182. libnl, lugaro, mosquitto, mpg123, ncurses, nodejs, ntp,
  3183. openssh, openvpn, pngquant, python-simplegeneric, qt5base,
  3184. qt5multimedia, rtl8821au, socat, spice, systemd, tor, trinity,
  3185. tslib, vlc, x264, xen, xlib_libxshmfenc, xserver_xorg-server
  3186. Issues resolved (http://bugs.buildroot.org):
  3187. #9976: License file for package 'rtl8821au' incorrect
  3188. 2017.05, Released May 31st, 2017
  3189. Minor fixes.
  3190. External toolchain: musl dynamic linker symlink for mips-sf
  3191. corrected.
  3192. Updated/fixed packages: agentpp, bash, exim, hans, madplay,
  3193. qpid-proton, rtl8188eu, snmppp, stm32flash, strongswan, sudo,
  3194. xen
  3195. Issues resolved (http://bugs.buildroot.org):
  3196. #9906: genimage: Disk full
  3197. 2017.05-rc3, Released May 30th, 2017
  3198. Fixes all over the tree.
  3199. ARC toolchain bumped to 2017.03
  3200. Runtime testing improvements and cleanups.
  3201. Updated/fixed packages: acpica, armadillo, audiofile, c-icap,
  3202. cppcms, dhcp, docker-engine, dropbear, elfutils, erlang,
  3203. fbgrab, ffmpeg, flashrom, ftop, gnutls, google-breakpad,
  3204. keepalived, kodi, libcdio, libepoxy, libev, libminiupnpc,
  3205. libqmi, libtasn1, libv4l, mariadb, mono, mosh, mosquitto,
  3206. mxml, ntp, opencv, openpowerlink, oracle-mysql, popt,
  3207. pulseview, python-enum34, rabbitmq-c, redis, samba4, stella,
  3208. xen
  3209. Removed packages: firejail, ola
  3210. Issues resolved (http://bugs.buildroot.org):
  3211. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  3212. #9876: aarch64 support with gcc 4.8 toolchain
  3213. #9896: host-gcc-initial error downloading because incorrect URL
  3214. 2017.05-rc2, Released May 17th, 2017
  3215. Fixes all over the tree.
  3216. ARC toolchain bumped to 2017.03-rc2
  3217. Updated/fixed packages: bluez_utils, boost, clamav, daemon,
  3218. efibootmgr, efl, espeak, expedite, faketime, ffmpeg, fxload,
  3219. git, gpsd, kvm-unit-tests, libcdio, libv4l, lua, mke2img,
  3220. mpir, mpv, odroid-scripts, openblas, opencv3, openvpn, php,
  3221. postgresql, protobuf, qt5declarative, qwt, radvd, rpcbind,
  3222. rtmpdump, strongswan, sudo, ltp-testsuite, uclibc-ng-test,
  3223. vlc, x11vnc, xfsprogs
  3224. Issues resolved (http://bugs.buildroot.org):
  3225. #9796: source-check broken for Git downloads
  3226. #9866: BASE_DIR usage
  3227. 2017.05-rc1, Released May 8th, 2017
  3228. Fixes all over the tree and new features.
  3229. Infrastructure:
  3230. - Installed binaries are now checked for correct architecture
  3231. to catch natively built binaries or binaries built for other
  3232. architecture variants.
  3233. - Luarocks infrastructure improvements to extraction handling,
  3234. support for upstream name != Buildroot package name.
  3235. - 'make printvars' output format has changed to make it easier
  3236. to use in scripts. It now has options to quote the variables
  3237. and to show the expanded/unexpanded values.
  3238. - Automatic ext2 rootfs size calculation has been removed. The
  3239. logic was not working working reliable in all setups as it
  3240. depends on the host filesystem behaviour, so instead now the
  3241. size has to be specified explicitly (defaults to 60MB).
  3242. - The git download infrastructure now ensures that GNU format
  3243. tar files are created.
  3244. - Fixed a variable clashing issue in the mkusers script with
  3245. internal bash variables.
  3246. - Fakeroot now links against libacl to fix issues on
  3247. distributions using acls.
  3248. - Correct permissions for /dev/pts/ptmx when systemd is used
  3249. with recent glibc versions.
  3250. - br2-external: Improve error reporting.
  3251. - A wrapper script for genimage has been added in
  3252. support/scripts/genimage.sh for easy use of genimage from
  3253. post-image scripts.
  3254. - A script to check for common style issues in new packages
  3255. before submitting has been added in support/scripts/check-package
  3256. - Defconfigs are now tested by gitlab-CI instead of Travis:
  3257. https://gitlab.com/buildroot.org/buildroot
  3258. - Infrastructure for runtime testing has been added to
  3259. support/testing
  3260. Toolchain:
  3261. - External linaro toolchains updated to 2017.02, ARC toolchain
  3262. updated to 2017.03-rc1, NIOSII CodeSourcery to 2017.05
  3263. - A number of fixes and improvements to the external toolchain
  3264. handling, including C library detection, multilib and ld.so
  3265. handling
  3266. - Glibc 2.25 and uClibc-ng 1.0.24 added, wordexp support enabled
  3267. for uClibc-ng
  3268. - Binutils 2.28 added and default changed to 2.27
  3269. Architectures:
  3270. - Support for the C-SKY architecture has been added.
  3271. License handling:
  3272. - The package license markings for legal info now uses the
  3273. SPDX short identifiers for the license string where possible.
  3274. - License info has been improved / added for a number of packages.
  3275. Misc:
  3276. - Cmake 3.7.x installed on the host is no longer ignored as a
  3277. workaround for the RPATH issues has been implemented.
  3278. - Docker-engine can now be built statically on an otherwise
  3279. dynamic linked build for docker-in-docker setups.
  3280. - U-Boot now supports out-of-tree device trees, similar to
  3281. Linux
  3282. - Nodejs 0.10.x support (and with it, support for <ARMv6) has
  3283. been removed as this is now EOL upstream.
  3284. New defconfigs: AT91sam9x5ek dev/mmc/mmc-dev, banana pro,
  3285. Nationalchip gx6605s, MIPS creator ci40, nexbox a95x, 64bit
  3286. defconfig for raspberry pi 3, stm32f429-disc1.
  3287. The raspberry pi zero-w and rpi3 compute module are now also
  3288. supported by the rpi0 / rpi3 defconfigs, beaglebone green is
  3289. supported by the beaglebone defconfig.
  3290. Removed defconfig: minnowboard, via imx6 vab820, altera
  3291. socdk/sockit
  3292. New packages: arp-scan, atest, augeas, bluez-tools, daemon,
  3293. dc3dd, dieharder, execline, fmt, ghostscript, gqrx,
  3294. gst1-vaapi, jo, keepalived, kmscube, kodi-jsonschemabuilder,
  3295. kodi-skin-confluence, kodi-texturepacker, lensfun, leptonica,
  3296. libbson, libcsv, libgphoto2, libkcapi, libmaxminddb,
  3297. libmediaart, libnpth, libscrypt, lua-bit32, lua-resty-http,
  3298. lugaru, memtool, mpir, nanomsg, physfs, phytool, pngquant,
  3299. python-decorator, python-simplegeneric,
  3300. python-sortedcontainers, rpi-bt-firmware, rpi-wifi-firmware,
  3301. s6, s6-dns, s6-linux-init, s6-linux-utils, s6-networking,
  3302. s6-portable-utils, s6-rc, supertux, tesseract-ocr,
  3303. uccp420wlan, wilink-bt-firmware
  3304. Broken packages: ola
  3305. Removed packages: cosmo, kodi-visualisation-fountain,
  3306. polarssl, portmap, xdriver_xf86-video-glide,
  3307. xdriver_xf86-video-v4l, xdriver_xf86-video-wsfb
  3308. Issues resolved (http://bugs.buildroot.org):
  3309. #8831: image generation fails on host ZFS due to "no free space"
  3310. #9436: e2fsprogs remove busybox applets even of unselected e2fs..
  3311. #9456: mkusers script bash errors
  3312. #9496: mke2img fails during build on ntfs-3g host partition
  3313. #9531: NPM fails to build embedded modules
  3314. #9596: KODI: --enable-lirc needs "HAVE_LIRC" compiler definition..
  3315. #9691: Wrong cryptsetup package include files location
  3316. #9696: Wrong cryptsetup package include files location
  3317. #9706: Can't download newer revisions of package from PyPI
  3318. #9711: Recent libCEC version bump seems to break kodi package
  3319. #9716: exit, shutdown, reboot from kodi
  3320. #9721: version 2017.02: no acceptable m4 could be found in $PATH
  3321. #9726: Raspberry Pi version B - Problems with UART speed in..
  3322. #9751: expat legal info - manifest.csv: GPLv2 Source site: MIT..
  3323. #9756: glibc fails to build on buildroot-sh4*-buildroot-linux-gnu
  3324. #9766: support/scripts/pkgutil.py conflicts with the pkgutil.py..
  3325. #9776: libubox build failed
  3326. #9791: Python searches for packages in the user site directory
  3327. #9806: libseccomp is not available when BR2_arm=y
  3328. #9826: post-build scritp - symlinks created in post-build script..
  3329. #9836: triggerhappy: systemd unit broken
  3330. #9846: musl libc not installed correctly in target folder
  3331. #9856: build libubox failed on ubuntu 17.04 64bit
  3332. 2017.02.11, Released April 11th, 2018
  3333. Important / security related fixes.
  3334. dependencies: Blacklist tar 1.30+ and build our own host-tar
  3335. if needed as tar 1.30+ changed the --numeric-owner output for
  3336. long path names. Build host-tar before other host-dependencies
  3337. as they need it to extract their source tarballs.
  3338. Updated/fixed packages: apache, busybox, clamav, dhcp,
  3339. dnsmasq, dovecot, exim, imagemagick, irssi, jq, libcurl,
  3340. libpjsip, librsvg, libtasn1, libvorbis, libxml2, lz4, mariadb,
  3341. mbedtls, mosquitto, ntp, openblas, opencv3, openssl, patch,
  3342. postgresql, python-webpy, qt53d, qt5tools, quagga, rsync,
  3343. samba4, sngrep, tremor, wavpack, wireshark, xerces, xterm
  3344. Issues resolved (http://bugs.uclibc.org):
  3345. #10856: openblas on qemu_x86_64_defconfig fails with "sgemm_..
  3346. 2017.02.10, Released January 31st, 2018
  3347. Important / security related fixes.
  3348. nconfig: Fix for ncurses/ncursesw linking issue causing crashes.
  3349. System: Only show getty options when busybox init or sysvinit
  3350. are used.
  3351. Infrastructure: Fix build issue for autotools based packages
  3352. checking for C++ support on toolchains without C++ support and
  3353. on a distro lacking /lib/cpp (E.G. Arch Linux).
  3354. Updated/fixed packages: avahi, berkeleydb, bind, busybox,
  3355. ccache, clamav, coreutils, dovecot, eeprog, eudev, fis,
  3356. intel-microcode, iputils, irssi, kmsxx, libcurl, liberation,
  3357. libiio, lz4, mariadb, matchbox-lib, mcookie, openocd, php,
  3358. pound, rpcbind, squid, tar, ti-cgt-pru, transmission,
  3359. util-linux, webkitgtk, wireshark, xen
  3360. Issues resolved (http://bugs.buildroot.org):
  3361. #9996: lz4 package does not install lz4 binaries in target
  3362. #10176: Rsyslog's S01logging is deleted by Busybox.mk from...
  3363. #10216: package/x11r7/mcookie/mcookie.c:207: bad size ?
  3364. #10301: systemd/getty unused options
  3365. #10331: kmsxx, host installation fails with BR2_SHARED_...
  3366. #10536: Finding non-relative paths in the ccache
  3367. #10641: avahi-autoipd not starting when using systemd-tmpfiles
  3368. 2017.02.9, Released January 1st, 2018
  3369. Important / security related fixes.
  3370. Fix divide by zero issue in size-stats script.
  3371. Fix makefile include ordering issue with certain make versions
  3372. in the external toolchain handling.
  3373. Updated/fixed packages: dhcp, exim, flann, gdb, heimdal,
  3374. libcue, libcurl, libevent, libpqxx, libsoxr, linphone, lldpd,
  3375. mariadb, mfgtools, mtools, nodejs, nut, openssl, rsync,
  3376. samba4, tor, vlc, webkitgtk, wireshark, xfsprogs,
  3377. xlib_libXcursor, xlib_libXfont, xlib_libXfont2
  3378. 2017.02.8, Released November 27th, 2017
  3379. Important / security related fixes.
  3380. Qt: 5.6 version updated to 5.6.3.
  3381. Reproducible: Do not override SOURCE_DATE_EPOCH if already set
  3382. in the environment.
  3383. Updated/fixed packages: apr, apr-util, arqp-standalone,
  3384. collectd, dvb-apps, ffmpeg, google-breakpad, gstreamer,
  3385. imagemagick, libfastjson, libglib2, libpjsip, libplist,
  3386. localedef, luajit, mesa3d, openssh, openssl, postgresql,
  3387. python3, python-pyqt5, qt5base, qt5canvas3d, qt5connectivity,
  3388. qt5declarative, qt5engineio, qt5graphicaleffects,
  3389. qt5imageformats, qt5location, qt5multimedia, qt5quickcontrols,
  3390. qt5quickcontrols2, qt5script, qt5sensors, qt5serialbus,
  3391. qt5serialport, qt5svg, qt5tools, qt5webchannel, qt5webkit,
  3392. qt5websockets, qt5x11extras, qt5xmlpatterns, quagga, ruby,
  3393. samba4, snmppp, ti-gfx, vboot-utils, webkitgtk, wireshark,
  3394. xapp_xdriinfo.
  3395. Issues resolved (http://bugs.buildroot.org):
  3396. 10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  3397. 10361: python3 python-config script generates invalid includes
  3398. 10501: host-localedef fails to compile on Ubuntu 17.10
  3399. 2017.02.7, Released October 28th, 2017
  3400. Important / security related fixes.
  3401. Webkitgtk bumped to the 2.18.x series, fixing a large number
  3402. of security issues.
  3403. Defconfigs: wandboard: Correct rootfs offset
  3404. Toolchain: Linaro toolchains updated to 2017.08 release,
  3405. fixing a number of issues. Musl: fix for CVE-2017-15650.
  3406. Updated/fixed packages: busybox, bzip2, dnsmasq, git, go,
  3407. hostapd, irssi, iucode-tool, lame, libcurl, libffi, libnspr,
  3408. libnss, nodejs, openssh, openvpn, qemu, qt, redis, sdl2,
  3409. webkitgtk, wget, wpa_supplicant, xen, xlib_libXfont,
  3410. xlib_libXfont2, xserver_xorg-server
  3411. 2017.02.6, Released September 24th, 2017
  3412. Important / security related fixes.
  3413. Cmake: Ensure correct pkg-config is used when building host
  3414. packages
  3415. fs/iso9660: Ensure files from earlier builds are not included.
  3416. Updated/fixed packages: apache, bcusdk, bind, binutils,
  3417. bluez5_utils, botan, cmake, connman, dbus, dialog, e2fsprogs,
  3418. faad2, fakeroot, ffmpeg, file, flashrom, gcc, gd, gdb,
  3419. gdk-pixbuf, git, gnupg, gpsd, grub2, gst1-plugins-bad,
  3420. imagemagick, iostat, iucode-tool, jack2, libarchive, libcurl,
  3421. libgcrypt, libidn, libphidget, librsync, librsvg, libsoup,
  3422. libxml2, linux-tools, lua, mariadb, mbedtls, mediastreamer,
  3423. minidlna, netplug, nss-pam-ldapd, nvidia-driver, openjpeg,
  3424. postgresql, proxychains-ng, python-libconfig,
  3425. python-service-identity, qt, rpcbind, ruby, samba4, squashfs,
  3426. squid, strongswan, subversion, supervisor, sysvinit, tcpdump,
  3427. tor, transmission, unrar, valgrind, vim, webkitgtk, whois,
  3428. xen, zmqpp
  3429. Issues resolved (http://bugs.buildroot.org):
  3430. #10141: Squashfs extended attribute failures
  3431. #10261: Grub2 fails to build for x86_64
  3432. #10276: BR2_PACKAGE_LINUX_TOOLS_GPIO fails for MIPS with...
  3433. 2017.02.5, Released July 27th, 2017
  3434. Important / security related fixes.
  3435. Webkitgtk bumped to the 2.16.x series, fixing a large number
  3436. of security issues.
  3437. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  3438. which default to PIE mode.
  3439. Updated/fixed packages: aespipe, apache, bind, binutils,
  3440. busybox, ccache, collectd, efibootmgr, efivar, expat, ffmpeg,
  3441. gcc, heimdal, iproute2, irssi, libglib2, libmemcached,
  3442. libosip2, libtirpc, libxml-parser-perl, linux-fusion,
  3443. linux-zigbee, mpg123, nodejs, orc, pcre, php, pulseaudio,
  3444. python-setproctitle, qt5base, rpi-firmware, samba4, syslinux,
  3445. systemd, spice, tcpdump, tiff, webkitgtk, x265, xen,
  3446. xserver_xorg-server, xvisor
  3447. Issues resolved (http://bugs.buildroot.org):
  3448. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  3449. 2017.02.4, Released July 4th, 2017
  3450. Important / security related fixes.
  3451. Update support/scripts/scancpan to use METACPAN v1 API as v0
  3452. has been shutdown.
  3453. Update support/scripts/mkusers to handle setups where
  3454. /etc/shadow is a symlink.
  3455. External toolchain: Don't create musl dynamic loader symlink
  3456. for static builds.
  3457. Setlocalversion: Correct detection of mercurial revisions for
  3458. non-tagged versions.
  3459. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  3460. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, gnutls,
  3461. gst1-plugins-bad, imagemagick, imx-uuc, intltool, iperf,
  3462. ipsec-tools, irssi, libgcrypt, libmad, libnl, mosquitto,
  3463. mpg123, ncurses, nodejs, ntp, openssh, openvpn, qt5base,
  3464. qt5multimedia, rtl8821au, socat, spice, systemd, tor, tslib,
  3465. vlc, x264, xserver_xorg-server
  3466. Issues resolved (http://bugs.buildroot.org):
  3467. #9976: License file for package 'rtl8821au' incorrect
  3468. 2017.02.3, Released June 2nd, 2017
  3469. Important / security related fixes.
  3470. Download: <pkg>-source-check fixed for packages from git.
  3471. External toolchain: musl dynamic linker symlink for mips-sf
  3472. corrected.
  3473. Updated/fixed packages: armadillo, audiofile, bash,
  3474. bluez_utils, cppcms, dbus, dhcp, dropbear, efibootmgr, efl,
  3475. elfutils, faketime, fbgrab, flashrom, ftop, gdb, git,
  3476. google-breakpad, gpsd, hans, kvm-unit-tests, kyua, libev,
  3477. libmicrohttpd, libminiupnpc, libtasn1, libubox, ltp-testsuite,
  3478. lua, madplay, mariadb, mono, mosquitto, mxml, ntp,
  3479. nvidia-driver, openblas, openvpn, oracle-mysql, picocom, popt,
  3480. postgresql, pulseview, qt5base, qwt, rabbitmq-c, redis,
  3481. rpcbind, rtmpdump, samba4, strongswan, sudo, vlc
  3482. Issues resolved (http://bugs.buildroot.org):
  3483. #9796: source-check broken for Git downloads
  3484. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  3485. 2017.02.2, Released May 1st, 2017
  3486. Important / security related fixes.
  3487. Use HTTPS for the Codesourcery external toolchains as the HTTP
  3488. URLs no longer work.
  3489. Updated/fixed packages: bind, busybox, dovecot, freetype,
  3490. ghostscript, glibc, granite, hiredis, icu, imagemagick,
  3491. gst-plugins-base, gst1-plugins-base, libcroco, libcurl, libnl,
  3492. libnspr, libnss, libsamplerate, libsndfile, libunwind,
  3493. minicom, mplayer, mpv, nodejs, python-django, python-pyyaml,
  3494. python-web2py, samba4, syslinux, systemd, tiff, trinity,
  3495. uboot, wireshark, xen
  3496. Issues resolved (http://bugs.buildroot.org):
  3497. #9791: Python searches for packages in the user site directory
  3498. 2017.02.1, Released April 4th, 2017
  3499. Important / security related fixes.
  3500. Fix a variable clashing issue in the mkusers script with
  3501. internal bash variables.
  3502. Improve external toolchain version detection.
  3503. Correct permissions for /dev/pts/ptmx when systemd is used
  3504. with recent glibc versions.
  3505. Fix python module name clash for graph-depends.
  3506. Fakeroot now links against libacl to fix issues on
  3507. distributions using acls.
  3508. Ensure that the git download infrastructure creates GNU format
  3509. tar files.
  3510. br2-external: Improve error reporting.
  3511. Updated/fixed packages: acl, apr, audiofile, busybox, cairo,
  3512. dbus-cpp, dbus-glib, dbus-triggerd, domoticz, elfutils,
  3513. fakeroot, filemq, fmc, gdb, git, gnutls, gst-ffmpeg,
  3514. gst1-plygins-bad, harfbuzz, htop, imagemagick, jasper, libcec,
  3515. libiio, libplatform, librsvg, libselinux, libsidplay2, libsoc,
  3516. libwebsockets, libxkbcommon, linux-firmware, logrotate,
  3517. lpt-testsuite, lttng-libust, mariadb, mbedtls, memcached,
  3518. mesa3d, mpd, mplayer, nbd, ncftp, ntp, openssh, opentyrian,
  3519. pcre, perl-gd, python, qt5base, rpi-userland, rpm, samba4,
  3520. skalibs, slang, sngrep, squashfs, syslog-ng, taglib,
  3521. tcpreplay, tor, upmpdcli, wget, wireshark,
  3522. xdriver_xf86-video-vmware, xlib_libXv, zmqpp
  3523. Issues resolved (http://bugs.buildroot.org):
  3524. #9456: mkusers script bash errors
  3525. 2017.02, Released February 28th, 2017
  3526. Minor fixes, mainly fixing autobuilder issues.
  3527. Don't use cmake 3.7.x from the build host as it is also
  3528. affected by the RPATH handling issues, and instead build our
  3529. own if needed.
  3530. Updated/fixed packages: assimp, classpath, genimage, mplayer,
  3531. mpv, openocd, python-libconfig, qt5base, qt5quickcontrols,
  3532. vlc, xterm
  3533. 2017.02-rc3, Released February 26th, 2017
  3534. Fixes all over the tree.
  3535. Cmake reverted to version 3.6.3 to workaround regressions
  3536. related to RPATH handling.
  3537. Updated/fixed packages: bctoolbox, berkeleydb, binutils,
  3538. btrfs-progs, classpath, directfb, glibc, gstreamer1,
  3539. gst1-plugins-{base,good,bad,ugly}, gst1-libav,
  3540. gst1-rtsp-server, gst1-validate, gst-omx, htop, libcurl,
  3541. libepoxy, libimxvpuapi, libpcap, libuv, ncurses, openssh,
  3542. oracle-mysql, poco, python, qt5base, qt5webkit, sslh, synergy,
  3543. trousers, uclibc-ng-test, util-linux, vlc, xfsprogs
  3544. Issues resolved (http://bugs.buildroot.org):
  3545. #9251: Shared C++ libraries for Microblaze results in Segmentation...
  3546. #9456: mkusers script bash errors
  3547. #9506: Collectd 5.7.0 fails to build with libcrypt
  3548. #9581: VagrantFile provisioning step fails due to issue with grub-pc
  3549. #9586: usbmount: usbmount slows down the system... to a state of...
  3550. #9616: CMake host packages cannot provide CONF_ENV
  3551. #9641: Need raptor package installed in staging
  3552. #9671: stunnel build error
  3553. 2017.02-rc2, Released February 20th, 2017
  3554. Fixes all over the tree.
  3555. Support for SOURCE_DATE_EPOCH in the toolchain wrapper for
  3556. older gcc versions for reproducible builds has been
  3557. (temporarily) reverted because of licensing compatiblity
  3558. concerns.
  3559. Defconfigs: SD card generation fix for the Udoo Neo board
  3560. Infrastructure to handle .lz compressed tarballs added, and
  3561. affected packages updated to use it.
  3562. Updated/fixed packages: bctoolbox, bind, canelloni,
  3563. cbootimage, ccache, classpath, cups, dbus, ddrescue, directfb,
  3564. ed, erlang, gcc, gdb, glmark2, gstreamer, gstreamer1, hiredis,
  3565. kmod, kmsxx, lcdapi, libasplib, libgpiod, libnss, libraw,
  3566. libv4l, mesa3d-headers, mosquitto, mpd, mpv, musl, ntfs-3g,
  3567. ocrad, openswan, postgresql, qt5base, qt5quickcontrols, redis,
  3568. riemann-c-client, samba4, sunxi-mali, tcping, trousers,
  3569. uclibc, util-linux, vim, wavpack, wget, wiringpi, xfsprogs,
  3570. xserver_xorg-server
  3571. Issues resolved (http://bugs.buildroot.org):
  3572. #8941: Valgrind fails to build with stack protection turned on
  3573. #9291: perl: SysV message queues not configured, even if available
  3574. #9651: libxcb-1.12 built Error
  3575. #9656: util-linux: schedutils doesn't build on target w/o enabl...
  3576. #9666: qt5quickcontrols install fails
  3577. 2017.02-rc1, Released February 11th, 2017
  3578. Fixes all over the tree and new features.
  3579. Infrastructure:
  3580. - numerous improvements to support reproducible builds
  3581. - new waf-package package infrastructure to support packages
  3582. that use the Waf build system. 6 packages converted to
  3583. this infrastructure.
  3584. - add option <pkg>_PREFER_INSTALLER to the perl package
  3585. infrastructure
  3586. Architecture:
  3587. - add support for the OpenRISC CPU architecture
  3588. - merge description of the ARM and ARM64 options, and add
  3589. support for selecting a specific ARM64 core
  3590. Toolchain:
  3591. - major rework of the external toolchain support. It is now
  3592. split into several packages, one per external toolchain,
  3593. and a common infrastructure.
  3594. - important fix for musl to prevent a conflict between musl
  3595. and kernel headers (fixes the build of numerous packages
  3596. with musl)
  3597. - uClibc-ng bumped to 1.0.22, and therefore enable uClibc
  3598. for ARM64, mips32r6 and mips64r6
  3599. - add gdb 7.12.1, and switch to gdb 7.11 as the default
  3600. - Linaro toolchains updated to 2016.11, ARC toolchain
  3601. components updated to arc-2016.09, MIPS Codescape
  3602. toolchains bumped to 2016.05-06, CodeSourcery AMD64 and
  3603. NIOS2 toolchains bumped
  3604. - remove Analog Devices toolchain for the Blackfin
  3605. architecture, remove pre-built musl toolchains from
  3606. musl.codu.org
  3607. New defconfigs: Freescale i.MX23EVK, Qemu OpenRISC emulation,
  3608. Qemu NIOS2 emulation, Grinn chiliBoard, Freescale i.MX6Q
  3609. SabreSD, BeagleBoard X15, OrangePi One, ARC HS38 HAPS
  3610. New packages: angular-websocket, aubio, bctoolbox, darkhttpd,
  3611. ddrescue, easydbus, fakedate, git-crypt, hiredis, ifenslave,
  3612. jsmn, libgpiod, libgsm, linux-syscall-support, mariadb, mimic,
  3613. nginx-dav-ext, nmon, opkg-utils, policycoreutils,
  3614. pru-software-support, python-arrow, python-attrs,
  3615. python-babel, python-bitstring, python-chardet,
  3616. python-constantly, python-flask-babel, python-gunicorn,
  3617. python-incremental, python-jsonschema, python-logbook,
  3618. python-markdown2, python-mbstrdecoder, python-mutagen,
  3619. python-pathpy, python-pudb, python-pyqrcode,
  3620. python-pytablereader, python-setuptools-scm, python-sh,
  3621. python-toml, python-vcversioner, python-whoosh,
  3622. raspberrypi-usbboot, riemann-c-client, rtl8723bs, skalibs,
  3623. sslh, sngrep, ti-cgt-pru, uclibc-ng-test, udpxy, uhttpd,
  3624. upower, ustream-ssl, waf, xlib_libXfont2
  3625. Removed packages: perl-db-file, snowball-hdmiservice,
  3626. snowball-init
  3627. Tooling: addition of a test-pkg script to help contributors
  3628. build test their package.
  3629. Issues resolved (http://bugs.buildroot.org):
  3630. #8946: Valgrind fails to build with stack protection turned on
  3631. #9461: odroidc2 - toolchain Linaro AArch64 2016.11 compile error
  3632. #9466: VIM_REMOVE_DOCS removes rgb.txt
  3633. #9486: xorg-server 1.19 fails to compile for glibc with systemd init (x86_64)
  3634. #9501: eudev fails to build with older kernel headers
  3635. #9526: Embedded NPM fails to start with "no such file or directory" error
  3636. #9541: Platform drivers autoloading from info in device tree does not work
  3637. #9546: seems BR2_PACKAGE_RPI_FIRMWARE_INSTALL_DTB_OVERLAYS do nothing
  3638. #9551: Coreutils fails to build target src/src_libsinglebin_pinky_a-pinky.o
  3639. #9566: [kmod] Compilation fails with uclibc
  3640. #9571: buildroot fails while building opencv for arm64 platform
  3641. #9576: External tree with BR 2016.11 does not work anymore
  3642. #9606: xorg-server cannot build for ARM target
  3643. 2016.11.3, Released March 9th, 2017
  3644. Important / security related fixes.
  3645. Updated/fixed packages: bind, dbus, gnutls, imagemagick,
  3646. lcms2, libcurl, ntfs-3g, ntp, openssl, php, quagga, redis,
  3647. squid, stunnel, tcpdump, vim, wavpack, wireshark, xlib_libXpm
  3648. 2016.11.2, Released January 25th, 2017
  3649. Important / security related fixes.
  3650. A fix for BR2_EXTERNAL trees referenced using relative paths,
  3651. which broke in 2016.11.
  3652. Updated/fixed packages: bind, docker-engine, gd, gnutls, go,
  3653. imagemagick, irssi, libpng, libvncserver, musl, opus, php,
  3654. php-imagick, rabbitmq-server, runc, wireshark,
  3655. Issues resolved (http://bugs.buildroot.org):
  3656. #9576: External tree with BR 2016.11 does not work anymore
  3657. 2016.11.1, Released December 29th, 2016
  3658. Important / security related fixes.
  3659. Updated/fixed packages: apache, cryptopp, docker-engine,
  3660. dovecot, exim, gdk-pixbuf, libcurl, libupnp, links, monit,
  3661. nodejs, openssh, php, python, python-bottle, samba4, squid,
  3662. uboot, vim, wireshark, xorg-server uboot
  3663. Issues resolved (http://bugs.buildroot.org):
  3664. #9466: VIM_REMOVE_DOCS removes rgb.txt
  3665. 2016.11, Released November 30th, 2016
  3666. Minor fixes.
  3667. Updated/fixed packages: bzip2, gcc, jasper, sane-backends,
  3668. uboot, uclibc
  3669. Issues resolved (http://bugs.buildroot.org):
  3670. #9451: packages/postgresql/postgresql.mk contains wrong POST...
  3671. 2016.11-rc3, Released November 28th, 2016
  3672. Fixes all over the tree, including a number of security fixes.
  3673. The move from fakeroot to pseudo unfortunately brought a
  3674. number of issues. The SELinux issue described in #9386 which
  3675. triggered the move to pseudo has been investigated further and
  3676. a workaround implemented and the pseudo changes reverted.
  3677. Linux kernel: update default to 4.8.11.
  3678. Defconfigs: Updates/fixes for imx28ek, mx6udoo, imx6ulpico,
  3679. olimex a20 olinuxino lime mali, roseapplepi, synopsis aarch64
  3680. vdk, axs101, axs103 and hs38 smd vdk.
  3681. Updated/fixed packages: autossh, chrony, dosfstools,
  3682. dtv-scan-tables, e2fsprogs, gcc, gdb, gnuchess, gnuradio,
  3683. gpsd, gst1-plugins-bad, gst1-plugins-good, imagemagick,
  3684. kvm-unit-tests, libfribi, libuv, mesa3d, mpfr, mplayer, mpv,
  3685. ntp, ola, olsr, openblas, openjpeg, openssh, postgresql,
  3686. ptpd2python3, qemu, qextserialport, qt5base, quagga, xqwt,
  3687. taskd, tiff, tremor, trousers, udisks, uclibc, wireshark,
  3688. xapp_xload, xenomai, xmlstarlet
  3689. Issues resolved (http://bugs.buildroot.org):
  3690. #9386: ubinize fails with or without custom config
  3691. #9431: A misspelling
  3692. #9446: make raspberrypi3_defconfig compilation failure
  3693. 2016.11-rc2, Released November 13th, 2016
  3694. Fixes all over the tree.
  3695. Architecture: add support for MIPS XBurst cores; remove MIPS
  3696. support for M5100 cores.
  3697. Updated/fixed packages: mesa3d, lttng-babeltrace, tinyalsa, pseudo,
  3698. czmq, libxml2, makedevs, binutils, kvm-unit-tests, libnss, privoxy,
  3699. qemu, ser2net, net-tools, ffmpeg, assimp, libmpeg2, ccache, mpv,
  3700. libxslt, python, python3, php, valgrind, guile, domoticz, efl,
  3701. jasper, kvmtool, go, wget, sane-backends, weston, tinymembench,
  3702. strace, openjpeg, lcms2, quota.
  3703. Linux kernel: update default to 4.8.7.
  3704. CMake support: fix cmake wrapper to properly pass NDEBUG flag.
  3705. Filesystems: use a wrapper to pseudo, to better mimick the behaviour
  3706. of fakeroot; makedevs no longer breaks of the destination already
  3707. exists and is of the correct type/major/minor.
  3708. Defconfigs: a few legacy and broken defconfigs have been removed
  3709. because they now fail to build: kb9202_defconfig, mini2440_defconfig,
  3710. freescale_p2020ds, qmx6, calao*, atmel_sama5d4ek. Other defconfigs
  3711. have been updated: nanopi-neo, olimex_a20_olinuxino_lime_mali,
  3712. armadeus_apf51, armadeus_apf28, freescale_imx31_3stack, ci20,
  3713. olimex_a20_olinuxino_lime2, atmel_at91sam9260eknf,
  3714. atmel_at91sam9rlek, atmel_at91sam9g20dfc, atmel_at91sam9g45m10ek,
  3715. atmel_sama5d3xek.
  3716. 2016.11-rc1, Released November 3rd, 2016
  3717. Fixes all over the tree and new features.
  3718. It is now possible to specify multiple BR2_EXTERNAL
  3719. directories. The required files in a BR2_EXTERNAL directory
  3720. have changed to accomodate this feature. Refer to the
  3721. documentation for details of how to update them. External
  3722. trees now have a name and a description. Also, it is possible
  3723. to override a defconfig in the external tree.
  3724. The default skeleton now uses UID 65534 for the "nobody"
  3725. user instead of UID 99, like most distros do. See
  3726. https://lwn.net/Articles/695478/ for a complete discussion.
  3727. Programs and configuration files that explicitly refer to UID
  3728. 99 will have to be updated.
  3729. When the build environment already has a suitable cmake version
  3730. (3.1 or later), that one will be used instead of building
  3731. host-cmake. This can speed up the build significantly.
  3732. The ExtUtils::MakeMaker perl module is now required in the
  3733. build environment.
  3734. An additional check is done during the build that files are
  3735. not installed in the output directory within the output
  3736. directory. This happens e.g. when the target directory is
  3737. contained both in --prefix and in DESTDIR. The build will
  3738. terminate with an error message that specifies which package
  3739. and which file caused the failure.
  3740. The concept of "deprecated packages" and the BR2_DEPRECATED
  3741. option have been removed. Instead, packages are removed
  3742. immediately. Packages are only removed when they don't work
  3743. for some reason. If you still need a removed package and
  3744. you have a solution for the problem(s) that caused the
  3745. removal, please contribute it.
  3746. Architecture: support for sh64 removed, improved support for
  3747. MIPS core selection.
  3748. Toolchain: support for musl powerpc64le, mips64 and mipsr6
  3749. toolchains, ARC toolchain components updates, gcc 6.x series
  3750. bumped to 6.2.0, default binutils version switched to 2.26,
  3751. default gcc version switched to gcc 5.x, Linaro toolchains
  3752. updated, uclibc-ng bumped to 1.0.19. GCC is now always built
  3753. with TLS support. Checking of unsafe compiler options (that
  3754. point to host directories) has been extended with -isystem,
  3755. -idirafter and -iquote.
  3756. Package infrastructure: new variable $(PKG)_DL_OPTS, addition
  3757. of <pkg>-show-rdepends to list reverse dependencies, and
  3758. <pkg>-graph-rdepends to graph reverse dependencies. Linux tools
  3759. are now in a separate linux-tools package instead of in the
  3760. kernel build. Fakeroot has been replaced by pseudo.
  3761. CMake support: the toolchainfile.cmake file now provides a
  3762. definition of the CMAKE_BUILD_TYPE variable. The
  3763. toolchainfile.cmake also no longer forces the compiler/linker
  3764. flags defined by Buildroot.
  3765. New defconfigs: WaRP7, Solidrun's MX6 Cubox/Hummingboard,
  3766. TS-4900, Grinn's liteBoard, Udoo MX6Q/DL, Qemu ARM noMMU,
  3767. BeagleBone Qt5 demo, Digilent Zybo, FriendlyARM Nanopi NEO.
  3768. New packages: arm-trusted-firmware, amd-catalyst, atop, aufs,
  3769. aufs-util, fwts, gst1-rtsp-server, libglob, libite, mfgtools,
  3770. mksh, motion, paho-mqtt-c, php-amqp, pseudo, python-couchdb,
  3771. python-crcmod, python-cssutils, python-docutils,
  3772. python-futures, python-mwclient, python-mwscrape,
  3773. python-mwscrape2slob, python-pyelftools, python-pyicu,
  3774. python-pylru, python-pyqt5, python-requests-toolbelt,
  3775. python-simpleaudio, python-slob, rabbitmq-server, shapelib,
  3776. vdr, vdr-plugin-vnsiserver, vexpress-firmware, xvisor, iio and
  3777. gpio linux tools.
  3778. Removed packages: binutils 2.24, fakeroot, gcc 4.7, ipkg,
  3779. kodi-addon-xvdr, libgail, sstrip, torsmo, webkit, webkitgtk24,
  3780. wvdial, wvstreams.
  3781. Documentation: the list of packages that was present in the
  3782. Buildroot manual has been removed.
  3783. Legal info: the "licenses.txt" file that concatenates all
  3784. license texts is no longer generated - it was not considered
  3785. useful. The manifest.csv contains an empty cell instead of
  3786. "not saved" when no license file is available.
  3787. Other: addition of a DEVELOPERS file listing developers taking
  3788. care of packages or architectures.
  3789. Issues resolved (http://bugs.buildroot.org):
  3790. #7802: host-python build hangs compiling getbuildinfo.o
  3791. #8206: mplayer uses host xorg development files
  3792. #8516: mkcubiecard.sh uses outdated sfdisk switch -D
  3793. #8536: Building sudo with PAM results in unusable sudo
  3794. #8646: check-host-rpath script returns false positives when rpath
  3795. contains symlink
  3796. #8696: xdriver_xf86-input-mouse install header files in target
  3797. directory
  3798. #8811: rp-pppoe - generated scripts commands use HOST pathnames,
  3799. not necessarily TARGET
  3800. #8846: Orphaned/missing toolchain borks eclipse plugin
  3801. #8856: python tornado runtime wasn't met on buildroot 2016.02
  3802. #8901: gcc failes to build if fortran is enabled
  3803. #8916: LDFLAGS pass to openssh
  3804. #8941: "ls" of an NFSv4 share only works when pumped through strace
  3805. #8946: Valgrind fails to build with stack protection turned on
  3806. #9021: Kodi - Broken: Illegal instruction (core dumped)
  3807. #9096: rootfs.ubi not created
  3808. #9111: glibc 2.23: libmvec.so not copied
  3809. #9176: minnowboard : USB not mounted
  3810. #9196: raspberry pi 3 default build seem broken
  3811. #9201: Permission denied make: *** [core-dependencies] Error 126 in
  3812. Buildroot-2015.08.1
  3813. #9216: log4cpp package build fails to build within install
  3814. #9221: Kodi needs "Python .py and .pyc support" otherwise it crashes when
  3815. pressing buttons.
  3816. #9229: Firefly boot fails with: "failed to find part:boot"
  3817. #9256: [Config file] New device: Odroid-U2/U3
  3818. #9296: Buildroot Fails on applying patches
  3819. #9301: U-boot fails to build with default zynq_zed_defconfig configuration
  3820. #9316: U-boot fails to build if libssl-dev is not installed
  3821. #9321: Vanilla libcrypt++ v5.6.3 doesn't allow to work Nvidia Tegra's
  3822. flash utility (tegrarcm)
  3823. #9326: Odroid-C2 build results in non-bootable image
  3824. #9336: Improve iconv support for external toolchain based builds
  3825. #9356: gdb package
  3826. #9366: no link rootfs.ext4 -> rootfs.ext2
  3827. #9371: openssl: download failes with "Only allow downloads from primary
  3828. download site" + local server
  3829. #9381: check-host-rpath issues
  3830. #9386: ubinize fails with or without custom config
  3831. 2016.08, Released September 1st, 2016
  3832. Minor fixes.
  3833. Toolchain: ARC tools updated to arc-2016.09-eng010.
  3834. Updated/fixed packages: libshout, luajit, mpd, mplayer
  3835. Issues resolved (http://bugs.buildroot.org):
  3836. #7520: CodeSourcery toolchain ARM: C++11 std::exception_ptr..
  3837. #8341: Getting EGL Error: Could not create the egl surface:..
  3838. #9121: gst1-imx for i.MX6 compile failed, cannot find PXP, ..
  3839. 2016.08-rc3, Released August 29th, 2016
  3840. Fixes all over the tree.
  3841. Toolchain: C++ support for the internal blackfin toolchain
  3842. re-enabled.
  3843. Architecture: Default to bf532 CPU variant for blackfin,
  3844. Fix flat one memory region support for m68k and disable flat
  3845. seperate data support because of compatibility issues.
  3846. Defconfigs: Minnowboard and Raspberrypi: Fix errors with
  3847. post-build scripts when systemd is used.
  3848. Zynq microzed/zc706/zed: Fix u-booot configuration.
  3849. netbsd-queue package extended and renamed to
  3850. musl-compat-headers. With this, a number of musl compatibility
  3851. patches are no longer needed.
  3852. Updated/fixed packages: aircrack-ng, android-tools, babeld,
  3853. bcusdk, binutils, boa, busybox, connman, cpupower,
  3854. docker-engine, domoticz, elf2flt, ffmpeg, fwup, gcc,
  3855. glib-networking, gnupg, hplip, igd2-for-linux, imagemagick,
  3856. imx-uuc, iputils, jack2, kismet, kmsxx, libaio, libamcodec,
  3857. libconfuse, libffi, libfreeimage, libgcrypt, libgpg-error,
  3858. libiio, libraw, libsepol, libserialport, libxmlrpc, linknx,
  3859. linux-pam, lirc-tools, lldpd, logrotate, lshw, musl, ncurses,
  3860. neon, nettle, norm, ntfs-3g, openblas, openmpi, openswan,
  3861. pinentry, pixman, protobuf, python-meld3, qlibc, qt, qt5base,
  3862. quagga, rpcbind, rt-tests, runc, sane-backends, sconeserver,
  3863. squeezelite, stella, tftpd, tinycbor, tinydtls, trace-cmd,
  3864. trousers, tstools, uboot-tools, uclibc, ulogd, ustr, vlc,
  3865. webkitgtk, wireshark, xdriver_xf86-video-intel
  3866. Issues resolved (http://bugs.buildroot.org):
  3867. #9101: Error on support/download/git with system git older than 1.8.4
  3868. #9181: Compiling linux kernel fails if BR2_LINUX_KERNEL_TOOL_CPU..
  3869. 2016.08-rc2, Released August 17th, 2016
  3870. Fixes all over the tree.
  3871. Toolchain: disable broken C++ support for internal blackfin
  3872. toolchains, ARC toolchain bumped to arc-2016.09-eng008 (GCC 6)
  3873. to fix various issues.
  3874. System: Zoneinfo is available for the musl C library as well.
  3875. Updated/fixed packages: am33x-cm3, axel, barebox, bdwgc,
  3876. blktrace, cairo, dante, enlightenment, fbterm, ffmpeg, flex,
  3877. fontconfig, gcc, gmp, gnuplot, gnuradio, gst1-imx, hidapi,
  3878. inotify_tools, iproute2, kmsxx, lftp, libaio, libcofi,
  3879. libical, libpjsip, libsidplay2, libunwindow, libxml2,
  3880. linux-zigbee, lttng-libust, mpv, mtd, ncdu, netplug, ntp,
  3881. openblas, openipmi, owfs, php, poco, procps, qt, quota,
  3882. sg3_utils, spidev_test, systemd-bootchart, thrift,
  3883. uboot-tools, uclibc, webrtc-audio-processing, wayland, weston,
  3884. xdriver_xf86-video-savage, xserver_xorg-server, xen
  3885. Issues resolved (http://bugs.buildroot.org):
  3886. #9136: make graph-size fails with "ValueError: too many values to..
  3887. #9151: qt: fix build with ALSA >= 1.1.x
  3888. #9156: qt: Fix missing runtime Qt3Support dependency
  3889. #9161: modsetting patch not applied to xserver 1.18.4
  3890. #9166: Missing overlays directory in VFAT image for raspberry pi 3
  3891. 2016.08-rc1, Released August 6th, 2016
  3892. Fixes all over the tree and new features.
  3893. Toolchain: Fortran support added. eglibc support removed, musl
  3894. support no longer experimental. Blackfin and Microblaze
  3895. support for internal uClibc-ng toolchain, m68k/coldfire
  3896. improvements. The check for unsafe (build host) directories
  3897. access (/usr/include and /usr/lib) is now enabled by default.
  3898. Unused locales are now purged by default to save space (and
  3899. the default list of locales shrunk). The option to control
  3900. this has now moved from the toolchain menu to system
  3901. configuration.
  3902. Legal info improvements: sources are now hardlinked instead of
  3903. copied if possible to save space. Patches and extra downloads
  3904. are also saved.
  3905. An experimental configuration knob (BR2_REPRODUCIBLE) has been
  3906. added to make the builds more reproducible (E.G. less
  3907. differences in the binary output between builds of the same
  3908. configuration). This is still work in progress.
  3909. An option to execute a custom script inside the fakeroot
  3910. environment used to the generate the filesystem (E.G. to tweak
  3911. permissions or similar) has been added.
  3912. Git support now supports git submodules if
  3913. <pkg>_GIT_SUBMODULES is enabled.
  3914. Hash files for integritry validation have been added for all
  3915. packages.
  3916. Scanpypi utility to help creating packages from the Python
  3917. package index (pypi) has been added.
  3918. The makedevs utility now has support for adding file
  3919. capabilities using extended attributes.
  3920. New defconfigs: Arcturus uCP1020, Atmel sama5d{2,3,4} xplained
  3921. development configs, Blackfin GDB simulator, Linksprite
  3922. pcDuino, Minnow Board Max graphical demo, NXP i.MX25 PDK,
  3923. i.MX51 EVK, i.MX6UL Pico, i.MX7 sabresd, QEMU MIPS32r6{,el} and
  3924. MIPS64r6{,el} malta, Roseapple Pi, Samsung Snow chromebook,
  3925. Toradex Apalis i.MX6 COM, TS-4800, x86-64 PC BIOS and EFI
  3926. demos. A number of defconfigs have been updated and extended
  3927. to generate SD card images. Synopsys HS38 VDK defconfig removed.
  3928. New packages: 4th, acpica, acpitool, alljoyn, alljoyn-base,
  3929. alljoyn-tcl, alljoyn-tcl-base, argparse, babeld, batman-adv,
  3930. circus, dante, docker-containerd, docker-engine, domoticz,
  3931. efibootmgr, efivar, ficl, fwup, gsettings-desktop-schemas,
  3932. gtksourceview, gupnp-dlna, gupnp-tools, igd2-for-linux,
  3933. jemalloc, kmsxx, lapack, lft, libaacs, libamcodec, libbdplus,
  3934. libcoap, libdvdcss, libebur128, libfastjson, libminiupnpc,
  3935. libnatpmp, libpqxx, libuio, libvdpau, log4cpp, minissdpd,
  3936. mxsldr, nginx-nasxi, nginx-upload, ninja, nodm, odroid-mali,
  3937. odroid-scripts, omxplayer, openblas, openmpi, openzwave,
  3938. p7zip, pdbg, python-argh, python-dataproperty,
  3939. python-dateutil, python-dialog3, python-dicttoxml,
  3940. python-dominate, python-engineio, python-flask-jsonrpc,
  3941. python-flask-login, python-humanize, python-pathtools,
  3942. python-pathvalidate, python-pillow, python-prompt-toolkit,
  3943. python-pytablewriter, python-pytz, python-scapy3k,
  3944. python-sdnotify, python-socketio, python-tomako,
  3945. python-ubjson, python-u-msgpack, python-watchdog,
  3946. python-wcwidth, python-xlrd, python-xlsxwriter,
  3947. python-xlutils, python-xlwt, rs485conf, runc, sdl2_gfx,
  3948. sdl2_image, sdl2_ttf, shellinabox, sphinxbase, stella,
  3949. supertuxkart, systemd-bootchart, tekui, terminology, tinycbor,
  3950. tinydtls, ti-sgx-demos, ti-sgx-km, ti-sgx-um, tunctl, wavemon,
  3951. wiringpi, xen
  3952. Deprecated packages: ipkg, sstrip
  3953. Removed packages: sunxi-mali-prop
  3954. Issues resolved (http://bugs.buildroot.org):
  3955. #8931: segment fault when compile argp-help.c using aarch64-bu...
  3956. #8966: eglfs error. buildroot don't compile the library libeglfs.so
  3957. #8971: build for beaglebone fails
  3958. #8986: qt5imageformats fails to build on AArch64
  3959. #8991: grub2 fails to compile
  3960. #9001: Nodejs option not available
  3961. #9006: gcc with c++ support v4 and v5 fail to compile on fedora 24
  3962. #9016: arceb-buildroot-linux-uclibc ld uses incorrect default format
  3963. #9066: 8139TOO - faulty behaviour
  3964. #9086: Syntax Error (missing ")" in boot/uboot/uboot.mk on line 203)
  3965. #9091: U-Boot fails to boot with large ramdisk
  3966. 2016.05, Released May 31st, 2016
  3967. Minor fixes.
  3968. External toolchain: Fix for symlink handling when copying
  3969. links to target.
  3970. Updated/fixed packages: gcc, grantlee, gst-ffmpeg,
  3971. ipsec-tools, iptraf-ng, libcurl, libdrm, libsigsegv, ltris,
  3972. lttng-babeltrace, mbedtls, mesa3d, moarvm, mplayer, mtools,
  3973. net-tools, openpowerlink, pulseview, rpm, tinyalsa,
  3974. xdriver_xf86-video-fbturbo, xserver_xorg-server
  3975. 2016.05-rc3, Released May 26th, 2016
  3976. Fixes all over the tree.
  3977. Tweaks for SSP handling for external toolchains.
  3978. Updated/fixed packages: aircrack-ng, bluez5_utils, connman,
  3979. cups, erlang-p1-stringprep, expat, ffmpeg, flann, flannel, go,
  3980. gst1-libav, hidapi, hplip, iptraf-ng, jamvm, kodi,
  3981. kodi-screensaver-matrixtrails, libcurl, libepoxy, libgpgme,
  3982. libsemanage, libxslt, liquid-dsp, ltris, lxc, mesa3d, midori,
  3983. mpg123, mtr, openpgm, openpowerlink, oprofile, php,
  3984. postgresql, putty, python-service-identity, python-treq,
  3985. qlibc, qt5serialbus, ruby, stress-ng, strongswan, time, tinc,
  3986. ustr, valgrind, webkitgtk, libxml2, xorriso,
  3987. xserver_xorg-server
  3988. Issues resolved (http://bugs.uclibc.org):
  3989. #8936: Aircrack-ng - Alot of missing dependencies
  3990. 2016.05-rc2, Released May 17th, 2016
  3991. Fixes all over the tree.
  3992. Rootfs overlay handling now refuses to overwrite
  3993. /{usr,bin,sbin,lib} symlinks from BR2_ROOTFS_MERGED_USR option
  3994. even if these directories are present in the overlay.
  3995. External toolchain: Unbreak user provided libraries deployment
  3996. (BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS) handling after refactoring.
  3997. QEMU coldfire: Fix for signal handling kernel issue, enable
  3998. networking support.
  3999. Updated/fixed packages: android-tools, assimp, boost, gcc,
  4000. glibc, glmark2, gmrender-resurrect, go, go-bootstrap, iputils,
  4001. jack2, kodi-screensaver-asterwave, kodi-screensaver-rsxs,
  4002. kodi-visualisation-shadertoy, libarchive, libinput, libpjsip,
  4003. mali-t76x, mtr, nginx, opencv, openvpn, python-coherence,
  4004. qt5multimeda, quagga, samba4, sg3-utils, stress-ng, turbolua
  4005. 2016.05-rc1, Released May 10th, 2016
  4006. Fixes all over the tree and new features.
  4007. Architectures: new ARM variants: Cortex A17 and M4, improved
  4008. nonmmu (cortex-M) support, m68k has been re-enabled with
  4009. support for ColdFire. For x86, support for the i386 variant
  4010. has been dropped.
  4011. Toolchain: Add GCC 6 support, remove GCC 4.5, mark GCC 4.7 as
  4012. deprecated. Go programming language support, Add Binutils 2.26
  4013. support. Old Sourcery PowerPC external toolchains removed,
  4014. Sourcery MIPS 2016.06-8, AMD64 2015.11-139, NiosII 2015.11-130
  4015. added, Linaro ARM/ARMeb/Aarch64 toolchains updated.
  4016. New defconfigs: Firefly RK3288, Boundary Devices i.MX7 Nitrogen7,
  4017. STM32F429 and STM32F469 Discovery boards, Hardkernel ODROID-C2,
  4018. Raspberry Pi Zero and Raspberry Pi 3. Some Qemu defconfigs were
  4019. added for m68k, eXtensa-nommu and ColdFire.
  4020. Linux: use zImage by default on ARM, subversion repository
  4021. support (for u-boot as well).
  4022. New packages: aer-inject, android-tools, cannelloni,
  4023. cbootimage, cgroupfs-mount, connman-gtk, crudini, dt,
  4024. gmrender-resurrect, flannel, font-awesome, freeswitch, go,
  4025. go-bootstrap, gr-osmosdr, granite, i7z, imx-uuc,
  4026. kodi-adsp-basic, kodi-adsp-freesurround,
  4027. kodi-audiodecoder-opus, kodi-pvr-hdhomerun,
  4028. kodi-screensaver-asterwave, kodi-screensaver-cpblobs,
  4029. kodi-screensaver-matrixtrails, kodi-screensaver-planestate,
  4030. kodi-screensaver-rsxs, kodi-visualisation-fishbmc,
  4031. kodi-visualisation-fountain, kodi-visualisation-goom, libgee,
  4032. libimxvpuapi, libpjsip, libtomcrypt, libtommath, libusbgx,
  4033. lksctp-tools, mali-t76x, mkpimage, mpv, msr-tools, nload,
  4034. norm, nvme, owfs, pound, privoxy, procrank_linux, putty,
  4035. python-autobahn, python-characteristic, python-crossbar,
  4036. python-cryptography, python-iniparse, python-iowait,
  4037. python-lmdb, python-pexpect, python-ptyprocess,
  4038. python-pyasn-modules, python-pygments, python-pymysql,
  4039. python-pynacl, python-pyopenssl, python-pysocks,
  4040. python-pytrie, python-rpi-gpio, python-service-identity,
  4041. python-setproctitle, python-shutilwhich, python-treq,
  4042. python-txaio, python-ujson, python-wsaccel, qt5canvas3d,
  4043. qt5location, qt5quickcontrols2, qt5serialbus, qt5tools,
  4044. raptor, scrub, taskd, tegrarcm, turbolua, valijson,
  4045. wayland-protocols, webkitgtk, wilc1000-firmware, wpan-tools,
  4046. xdriver_xf86-video-amdgpu
  4047. Removed packages: foomatic-filters, python-m2crypto,
  4048. qt5quick1, qt5webkit-examples, samba, xdriver_xf86-input-void
  4049. Issues resolved (http://bugs.buildroot.org):
  4050. #6830: Qt5: no fonts are installed
  4051. #7562: musl buildroot-toolchain and BR2_MIPS_SOFT_FLOAT break
  4052. #7580: Invalid filesystem in Pandaboard defconfig
  4053. #8346: wf111 package removes all kernel module dependencies
  4054. #8436: xserver_xorg-server Segmentation fault
  4055. #8736: IPV6 forced on in busybox
  4056. #8746: At startup system stops with 'cannot set terminal proces..
  4057. #8751: make fail [fio does not build on sh]
  4058. #8766: Compiling host-gcc-final-4.9.3 broken on i386
  4059. #8771: make savedefconfig modifies sources
  4060. #8781: Unable to build uboot for imx28evk
  4061. #8786: gdb fails to build with xz and expat support at the same
  4062. #8801: Compilation of Buildroot 2016.2 for Raspberry Pi with...
  4063. #8806: Buildroot 2016.2 for Raspberry Pi requires that ext4...
  4064. #8836: Can't select Vim in menuconfig
  4065. #8851: Make sure fio can compile with libaio support if it...
  4066. #8861: With buildroot 2016.02 trying to build for corei7-avx
  4067. fails while trying to build host-binutils
  4068. #8866: Making an USB flash bootable with extlinux build with
  4069. buildroot does not work
  4070. 2016.02, Released March 1st, 2016
  4071. Minor fixes, mostly security related.
  4072. Circular dependency issue with same-as-kernel linux-headers
  4073. option fixed.
  4074. Updated/fixed packages: bluez5_utils, heirloom-mailx,
  4075. imx-gpu-viv, kodi-pvr-argustv, kodi-pvr-mediaportal-tvserver,
  4076. kodi-pvr-nextpvr, libfcgi, openssl, pifmrds, powerpc-utils,
  4077. python-m2crypto, slang, sox, squid, tn5250, xerces, zsh
  4078. 2016.02-rc3, Released February 27th, 2016
  4079. Fixes all over the tree.
  4080. Defconfigs: Ensure EABIhf is correctly enabled for ARM cores
  4081. where VFP is optional (but present on the specific hw). Fix
  4082. ARM variant selection for freescale_imx31_3stack_defconfig.
  4083. Ensure tarballs of downloaded git trees do not contain a
  4084. timestamp.
  4085. Clarify license of patches in COPYING.
  4086. Updated/fixed package: avahi, binutils, cairo, can-festival,
  4087. chrony, cifs-utils, dnsmasq, dvdauthor, e2fsprogs, efl,
  4088. erlang-rebar, eudev, fbterm, gawk, gnupg2, gnuradio, gpm,
  4089. gst1-plugins-good, hostapd, imagemagick, iproute2, iputils,
  4090. jack2, kexec, kismet, lftp, libarchive, libeXosip2, libfm,
  4091. libglib2, libsoil, libssh, libssh2, libuci, links, lshw, lxc,
  4092. mediastreamer, mono, mraa, mutt, nfs-utils, numactl, ofono,
  4093. omniorb, openipmi, openobex, patch, pax-utils, perf,
  4094. pulseaudio, pure-ftp, qhull, qt, quagga, quota, sdl_sound,
  4095. shairport-sync, spice, sysklogd, syslog-ng, trace-cmd,
  4096. trousers, tvheadend, util-linux, vim, webkitgtk24, wireshark,
  4097. wpa_supplicant, xerces, zsh
  4098. Issues resolved (http://bugs.uclibc.org):
  4099. #8651: libMonoPosixHelper.so wrong link reference in buildroot..
  4100. 2016.02-rc2, Released February 18th, 2016
  4101. Fixes all over the tree.
  4102. Toolchain: PR19405 backport to binutils 2.25.1 to fix NIOS ld
  4103. crash, backport of Xtensa .init/.fini literals handling.
  4104. glibc security patches for CVE-2014-8121, CVE-2015-1781
  4105. and CVE-2015-7547.
  4106. Defconfigs for Acmesystems Arietta g25 added.
  4107. Updated/fixed packages: binutils, boost, chrony, dovecot,
  4108. e2fsprogs, fio, gdb, glibc, graphite2, icu, kbd, libbsd,
  4109. libcue, libgcrypt, libraw, links, mc, mosquitto, nodejs,
  4110. postgresql, pptp-linux, pulseaudio, samba4, spice, squid,
  4111. sysklogd, systemd, tiff, uclibc, ulogd, util-linux, valgrind.
  4112. Issues resolved (http://bugs.uclibc.org):
  4113. #8576: Building embedded Linux for Atmel SAMA5D4_Xplained...
  4114. #8606: Problem compiling on Arch Linux
  4115. #8681: kbd 2.0.3 does not build on rpi
  4116. 2016.02-rc1, Released February 10th, 2016
  4117. Fixes all over the tree and new features.
  4118. Toolchain: Support for GCC 5.3.x. ARC toolchain updated to
  4119. arc-2015.12. Support for legacy uClibc dropped, default to
  4120. uClibc-ng instead. Added sys/queue.h implementation for MUSL
  4121. for compatibility. Updated versions of Code sourcery and
  4122. Linaro toolchains. MIPS Codescape toolchains added. Version
  4123. selection for preconfigured external toolchains removed.
  4124. New Defconfigs: ARM Juno r0/r1 development boards, Freescale
  4125. i.MX6UL Evaluation Kit, Intel Galileo Gen 2, Orange Pi PC.
  4126. A number of defconfigs have been extended to generate complete
  4127. system images using genimage.
  4128. Linux: Automatically patch timeconst.pl for <3.9 kernels,
  4129. which isn't compatible with modern perl versions, breaking the
  4130. build when building on recent (Fedora 23, Debian
  4131. Testing/Unstable, ..) distributions.
  4132. Makedevs utility now accepts textual (non-numerical) user and
  4133. group names.
  4134. Vagrant file to easily setup a working development environment
  4135. in a VM has been added.
  4136. Size-stats-compare script to compare rootfs sizes between
  4137. builds has been added.
  4138. Infozip package renamed to zip. EFL packages restructured.
  4139. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  4140. angularjs, apache, apr, argp-standalone, armadillo, arptables,
  4141. at, atk, audiofile, aumix, autoconf-archive, avahi, bash, bc,
  4142. bcache-tools, bdwgc, beecrypt, bind, binutils, bluez5_utils,
  4143. bluez_utils, bonnie, boost, busybox, cairo, cdrkit, chrony,
  4144. clamav, cmake, collectd, connman, coreutils, cppcms, crda,
  4145. cryptodev-linux, cryptsetup, cups, cwiid, cxxtest, dbus,
  4146. dbus-cpp, dbus-glib, debianutils, dhcp, dhcpcd, dhrystone,
  4147. dillo, directfb, directfb-examples, dmraid, dnsmasq, doom-wad,
  4148. dovecot, dovecot-pigeonhole, dropbear, dtv-scan-tables,
  4149. dvb-apps, dvbsnoop, ecryptfs-utils, eigen, ejabberd,
  4150. elementary, elfutils, enlightenment, erlang, espeak, eudev,
  4151. eventlog, exfat, exfat-utils, exiv2, expedite, faifa,
  4152. fakeroot, fastd, fbgrab, fetchmail, ffmpeg, findutils, fio,
  4153. firmware-imx, flann, flashrom, flite, flot, fmlib, freerdp,
  4154. freescale-imx, freetype, gauche, gawk, gcc, gcc-final, gcr,
  4155. gdb, gdk-pixbuf, geoip, gesftpserver, gettext, giflib, git,
  4156. glibc, glibmm, glog, gmp, gnupg, gnupg2, gnutls, gob2, gpsd,
  4157. gptfdisk, grep, gst1-libav, gst1-plugins-{bad,base,good,ugly},
  4158. gst-ffmpeg, gst-plugins-{bad,base,good,ugly}, gstreamer,
  4159. gstreamer1, guile, gvfs, gzip, harfbuzz, haserl, hiawatha,
  4160. hostapd, hplip, icu, ifupdown, imagemagick, imx-gpu-viv,
  4161. imx-kobs, imx-lib, input-tools, intel-microcode, iperf3,
  4162. ipmitool, iproute2, iprutils, ipsec-tools, ipset, iptables,
  4163. iputils, irda-utils, irssi, iucode-tool, jack2, janus-gateway,
  4164. jpeg-turbo, jquery-datetimepicker, jquery-keyboard,
  4165. jquery-sparkline, jquery-ui, jquery-ui-themes,
  4166. jquery-validation, json-c, kbd, kernel-module-imx-gpu-viv,
  4167. keyutils, kmod, knock, kodi, lcdproc, lcms2, leafnode2,
  4168. leafpad, libass, libatomic_ops, libbroadvoice, libbsd,
  4169. libcap-ng, libcdaudio, libcue, libcurl, libdrm, libecore,
  4170. libedbus, libedit, libedje, libeet, libefreet, libeina,
  4171. libeio, libelementary, libembryo, libepoxy, libethumb, libev,
  4172. libevas, libevas-generic-loaders, libevdev, libevent, libffi,
  4173. libfm, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  4174. libftdi, libfuse, libgail, libglew, libglib2, libgtk2,
  4175. libgtk3, libgudev, libhttpparser, libidn, libinput, libiscsi,
  4176. libjpeg, liblinear, libmbim, libmicrohttpd, libndp, libnspr,
  4177. libnss, liboauth, liboping, libpciaccess, libplist, libpng,
  4178. libraw, libraw1394, librsvg, libseccomp, libsecret,
  4179. libserialport, libsigc, libsigrok, libsigrokdecode,
  4180. libsndfile, libsoc, libsodium, libsoup, libssh2, libsvg,
  4181. libsvg-cairo, libtasn1, libtirpc, libtorrent, libungif,
  4182. libunwind, libupnpp, liburcu, libuv, libv4l, libva,
  4183. libva-intel-driver, libvips, libvncserver, libxml2, libxmlpp,
  4184. lightning, lighttpd, linknx, linux-firmware, linux-fusion,
  4185. linux-headers, liquid-dsp, lirc-tools, live555, lm-sensors,
  4186. lockdev, lshw, ltp-testsuite, ltrace, lttng-babeltrace,
  4187. lttng-libust, lttng-modules, lttng-tools, lua, luabitop,
  4188. luarocks, luv, lvm2, lxc, makedevs, mc, memcached, memtest86,
  4189. mesa3d, mesa3d-demos, mesa3d-headers, micropython,
  4190. micropython-lib, minicom, minidlna, mjpg-streamer, mke2img,
  4191. moarvm, modem-manager, mongoose, mongrel2, monkey, mono,
  4192. monolite, mosh, mosquitto, mpd, mplayer, msgpack, mtdev2tuio,
  4193. musepack, musl, mysql, nano, nasm, nbd, neard, netatalk,
  4194. netsnmp, nettle, net-tools, network-manager, nfs-utils, nginx,
  4195. nmap, nodejs, ntfs-3g, ntp, numactl, nut, nvidia-driver,
  4196. odhcp6c, ofono, ola, olsr, omniorb, opencv, opencv3, openipmi,
  4197. openldap, openntpd, openobex, openocd, openpgm,
  4198. open-plc-utils, openpowerlink, openssh, openssl, openswan,
  4199. openvpn, opkg, oprofile, opus, opusfile, p11-kit, package,
  4200. pango, pax-utils, pciutils, pcmanfm, perl, perl-db-file,
  4201. perl-io-socket-ssl, perl-libwww-perl, perl-net-dns, perl-uri,
  4202. perl-xml-libxml, php, php-ssh2, picocom, pinentry, pixman,
  4203. polarssl, popt, portaudio, pppd, procps-ng, proftpd, protobuf,
  4204. psmisc, ptpd2, pulseaudio, pulseview, pv, python, python3,
  4205. python-alsaaudio, python-can, python-cffi, python-cherrypy,
  4206. python-httplib2, python-jinja2, python-lxml, python-m2crypto,
  4207. python-mako, python-msgpack, python-psutil, python-pyasn,
  4208. python-pycparser, python-pydal, python-pyftpdlib,
  4209. python-pyroute2, python-pyxml, python-pyzmq, python-requests,
  4210. python-serial, python-setuptools, python-six, python-spidev,
  4211. python-tornado, python-twisted, python-web2py, python-webpy,
  4212. python-werkzeug, python-zope-interface, qemu, qhull, qpdf, qt,
  4213. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  4214. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  4215. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  4216. qt5serialport, qt5svg, qt5webchannel, qt5webkit,
  4217. qt5webkit-examples, qt5websockets, qt5x11extras,
  4218. qt5xmlpatterns, qt-webkit-kiosk, racehound, radvd, read-edid,
  4219. readline, redis, rpcbind, rpi-firmware, rpi-userland, rrdtool,
  4220. rsync, rsyslog, rtai, rtorrent, rt-tests, rubix, ruby, samba4,
  4221. sconeserver, setools, shairport-sync, sigrok-cli, skeleton,
  4222. smack, snowball-init, socat, sp-oops-extract, sqlite,
  4223. squashfs, squeezelite, squid, sredird, sshfs,
  4224. start-stop-daemon, strace, strongswan, stunnel, subversion,
  4225. sunxi-tools, swig, sysdig, syslog-ng, sysstat, systemd,
  4226. sysvinit, taglib, tcl, tcpreplay, thrift, ti-gfx, tinyalsa,
  4227. tor, torsmo, trace-cmd, transmission, tremor, triggerhappy,
  4228. trinity, tvheadend, tzdata, uboot-tools, uclibc, udisks,
  4229. udpcast, unionfs, upmpdcli, usb_modeswitch,
  4230. usb_modeswitch_data, ustr, util-linux, vala, valgrind,
  4231. vboot-utils, vde2, vlc, vnstat, webkit, webkitgtk24, weston,
  4232. wget, whetstone, whois, wine, wipe, wireless-regdb, wireshark,
  4233. wpa_supplicant, w_scan, x11r7, xapp_xbacklight, xapp_xcompmgr,
  4234. xapp_xinput, xapp_xkbcomp, xdriver_xf86-input-evdev,
  4235. xdriver_xf86-input-libinput, xdriver_xf86-input-synaptics,
  4236. xdriver_xf86-video-ati, xdriver_xf86-video-fbturbo,
  4237. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  4238. xfont_encodings, xfont_font-adobe-100dpi,
  4239. xfont_font-adobe-75dpi, xfont_font-adobe-utopia-100dpi,
  4240. xfont_font-adobe-utopia-75dpi, xfont_font-adobe-utopia-type1,
  4241. xfont_font-alias, xfont_font-arabic-misc,
  4242. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  4243. xfont_font-bh-lucidatypewriter-100dpi,
  4244. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  4245. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  4246. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  4247. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  4248. xfont_font-daewoo-misc, xfont_font-dec-misc,
  4249. xfont_font-ibm-type1, xfont_font-isas-misc,
  4250. xfont_font-jis-misc, xfont_font-micro-misc,
  4251. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  4252. xfont_font-misc-meltho, xfont_font-misc-misc,
  4253. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  4254. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  4255. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  4256. xfont_font-xfree86-type1, xfsprogs, xkeyboard-config, xl2tp,
  4257. xlib_libfontenc, xlib_libXi, xmlstarlet, xscreensaver,
  4258. xserver_xorg-server, xtables-addons, xvkbd, xz, yad, yasm,
  4259. ympd, zeromq, zic, znc, zsh,
  4260. New packages: acsccid, assimp, atkmm, autofs, bcm2835,
  4261. cairomm, cantarell, chocolate-doom, comix-cursors, cxxtest,
  4262. edid-decode, emlog, gcr, gtkmm3, hidapi, jquery-sidebar,
  4263. kernel-module-imx-gpu-viv, libasplib, libcroco, libdvbpsi,
  4264. libfreeglut, libgdiplus, libglfw, libhdhomerun, libnet,
  4265. libsoil, lldpd, luvi, mbedtls, minizip, miraclecast, mongodb,
  4266. mraa, netbsd-queue, netsniff-ng, nss-pam-ldapd,
  4267. obsidian-cursors, openal, openbox, pangomm,
  4268. python-backports-abc, python-beautifulsoup4, python-cbor,
  4269. python-click, python-cssselect, python-ecdsa, python-html5lib,
  4270. python-idna, python-ipaddress, python-mistune, python-netaddr,
  4271. python-paho-mqtt, python-paramiko, python-pyparted,
  4272. python-pysmb, python-pyudev, python-singledispatch,
  4273. python-smbus-cffi, python-urllib3, qt53d, rabbitmq-c, rfkill,
  4274. sbc, spi-tools, tpm-tools, trousers, ubus, unrar, unscd,
  4275. unzip, v4l2grab, xdriver_xf86-video-nouveau, xdotool, zbar
  4276. Removed packages: libungif, python-pyxml,
  4277. Issues resolved (http://bugs.uclibc.org):
  4278. #7886: gettext: link failure with locally-installed libxml2
  4279. #7892: systemd-journald is broken
  4280. #8066: nodejs crashes when built with gcc 4.9
  4281. #8296: nodejs 0.12.7 - npm crashes (seg core dump)
  4282. #8501: gunzip fails to uncompress files
  4283. #8541: fail to build host-fakeroot-1.20.2
  4284. #8546: build instructions for raspberry pi don't work
  4285. #8571: strace for ARC compile error
  4286. #8581: pciutils.mk PCIUTILS_MAKE_OPTS typo
  4287. #8616: Fail to build for raspberrypi_defconfig with big endian
  4288. #8621: sqlite package, properly enable readline
  4289. 2015.11, Released November 30th, 2015
  4290. Minor fixes.
  4291. Merged/seperate /usr handling is now also performed for
  4292. staging so cross-gdb / gdbserver can find the libraries.
  4293. Updated/fixed packages: autossh, conntrack-tools, dcron,
  4294. espeak, gcc, glmark2, gpsd, gstreamer1, libglib2, libsigsegv,
  4295. libsoc, libv4l, minidlna, mongrel2, opencv, polarssl,
  4296. rpi-userland, rubix, skeleton, tovid, uemacs, valgrind, yad,
  4297. zmqpp
  4298. Issues resolved (http://bugs.uclibc.org):
  4299. #8441: Invalid directory for X11 fonts in target (RPi2)
  4300. #8491: libglib2 2.46.1 not Building for armv5 on 2015.11-rc3
  4301. 2015.11-rc3, Released November 26th, 2015
  4302. Fixes all over the tree.
  4303. We have a new modern website!
  4304. Updated/fixed packages: apitrace, audiofile, autossh, bullet,
  4305. c-ares, collectd, conntrack-tools, cryptodev-linux, dropbear,
  4306. fastd, gmp, gpsd, gst-plugins-bad, gst-plugins-base,
  4307. gst-plugins-good, gst-plugins-ugly, gstreamer, gstreamer1,
  4308. guile, iodine, iproute2, jimtcl, kompexsqlite, libethumb,
  4309. libfreeimage, libgsasl, libgtk3, libxml2, localedef,
  4310. lttng-tools, macchanger, mongrel2, mpd, openntpd, openssl,
  4311. oprofile, pcre, qt5base, quagga, rpi-userland, sconeserver,
  4312. sdl, spidev_test, sqlite, strongswan, ustr, xapp_sessreg,
  4313. yajl, zmqpp
  4314. Issues resolved (http://bugs.uclibc.org):
  4315. #6872: gpsd: disabled on microblaze
  4316. #8321: invalid opcode error with minidlna and ffmpeg
  4317. #8336: Default systemd configuration fails to boot correctly in 2015-08
  4318. #8446: rpi-userland failed to build with glibc 2.22
  4319. 2015.11-rc2, Released November 19th, 2015
  4320. Fixes all over the tree.
  4321. LD_LIBRARY_PATH is no longer used to ensure host binaries find
  4322. their libraries, fixing issues on recent Fedora.
  4323. Toolchain fixes for powerpc e5500 / e6500. Fix for an issue
  4324. with ${TARGET}-cc after the move to use a toolchain wrapper
  4325. for the internal toolchain.
  4326. Appy-patches.sh now correctly applies all files listed in
  4327. series files.
  4328. Fixes for merged /usr handling when a custom skeleton is used.
  4329. Updated/fixed packages: axfsutils, boost, busybox, dhcp,
  4330. directfb, dropbear, ebtables, fastd, ffmpeg, gauche, gcc,
  4331. gettext, gst1-plugins-bad, hostapd, ibrdtnd, libcurl,
  4332. libecore, libgudev, libnss, libpng, libserial, libssh2,
  4333. libuecc, libxml2, linux-headers, liquid-dsp, ltris,
  4334. lua-periphery, minidlna, mongrel2, mpd, mpg123, mplayer,
  4335. mysql, opencv, opencv3, package, perl-file-util, php-ssh2,
  4336. polarssl, pulseaudio, python-protobuf, qemu, qt5base, ranger,
  4337. ruby, skeleton, slang, squeezelite, strongswan, tovid, uclibc,
  4338. ushare, wine, wpa_supplicant, x265,
  4339. xdriver_xf86-video-siliconmotion, zxing-cpp
  4340. Issues resolved (http://bugs.uclibc.org):
  4341. #4790: Running udhcpc on a system with NFS root kills NFS
  4342. #8456: Building host-pkgconf on Fedora 23 fails due to..
  4343. 2015.11-rc1, Released November, 7th 2015
  4344. Fixes all over the tree and new features.
  4345. Architectures:
  4346. - Support for sparc64 added (internal toolchain with glibc
  4347. only).
  4348. - Support for mips32r6 and mips64r6 added.
  4349. - Support for Intel Quark X1000 CPU.
  4350. - Switch to EABIhf by default on ARM when a VFP is available.
  4351. Toolchains:
  4352. - glibc 2.22, gdb 7.10, use gdb 7.9 by default, musl 1.1.12,
  4353. uclibc-ng 1.0.8, host-gdb enabled on AArch64.
  4354. - The toolchain wrapper which was used only for external
  4355. toolchains is now also used for Buildroot internal
  4356. toolchains. This allowed to fix the ccache support, prepare
  4357. the way for top-level parallel build support and remove gcc
  4358. patches used to detect header/library path poisoning.
  4359. - Remove Analog Devices Blackfin toolchain 2012R2.
  4360. - Fix several Xtensa build failures by switching from
  4361. text-section-literals to auto-litpools.
  4362. - Enable MIPS64 support in uClibc-ng, use uClibc on ARC
  4363. rather than a specific fork.
  4364. - Linaro toolchains for ARM, ARMeb and AArch64 updated to
  4365. 2015.08. 2014.09 version is kept since 2015.08 only runs on
  4366. x86_64 hosts.
  4367. Bootloaders:
  4368. - Fix ARM64 support in U-Boot.
  4369. Defconfigs:
  4370. - Added: ARC HS38 VDK virtual boards, Avnet Microzed, Boundary
  4371. Devices Nitrogen SoloX, Freescale i.MX6 SoloX Sabre SD,
  4372. OLinuxino A20 Lime2, Qemu Sparc64, Qemu SuperH 4 big endian,
  4373. Synopsys AArch64 VDK virtual platform.
  4374. - Updated: calao_qil_a9260, calao_usb_a9g20_lpw, ci20,
  4375. cubieboad, freescale_imx6_*, imx53loco, imx6_vab820,
  4376. mpc8315erdb, qmx6, p1010rdb, qemu, raspberrypi,
  4377. raspberrypi2, riotboard, snps_axs10*, wandboard.
  4378. - Removed: at91rm9200df, at91sam9260dfc, at91sam9263ek,
  4379. calao_snowball_defconfig, gnublin, integrator926_defconfig.
  4380. Infrastructure:
  4381. - Support for fetching from Mercurial tags fixed.
  4382. - Introduce LINUX_NEEDS_MODULES, which allows to enforce
  4383. module support to be enabled in the kernel when a package
  4384. builds out-of-tree kernel modules (through the
  4385. pkg-kernel-module infrastructure or on its own).
  4386. - Improve the perl package infrastructure to automatically add
  4387. the dependency to the perl interpreter to target perl module
  4388. packages.
  4389. - Remove trailing slashes in <pkg>_SITE and addition of a
  4390. check to ensure such trailing slashes are no longer added.
  4391. - Extend the legal infrastructure to allow packages to declare
  4392. their actual source code. This is useful for packages for
  4393. which <pkg>_SOURCE points to pre-built binaries (as is the
  4394. case for external toolchains). The new <pkg>_ACTUAL_SOURCE
  4395. variable allows to point to the source code in such cases.
  4396. - Improved ccache support, thanks to the usage of a toolchain
  4397. wrapper for internal toolchain. Now a single cache directory
  4398. can be shared between different Buildroot builds.
  4399. - Addition of a 'graph-size' make targets, which generates a
  4400. PDF graph of per-package size of the root filesystem.
  4401. - Addition of <pkg>_EXCLUDES so that packages can request
  4402. certain parts of the source code tarball to not be
  4403. extracted. This feature is currently used by gcc and
  4404. toolchain-external.
  4405. - Packages can now use the <pkg>_PKGDIR variable, provided by
  4406. the package infrastructure, to reference their package
  4407. directory, instead of explicitly using package/<pkg>/.
  4408. Filesystems:
  4409. - Add high lz4 compression to squashfs.
  4410. - Simplification of shell profile files in the default
  4411. skeleton.
  4412. - Remove ftp user and /home/ftp from the skeleton, and let ftp
  4413. server packages create these when needed.
  4414. - Add support for /bin, /sbin and /lib to be symlinks to their
  4415. corresponding directories in /usr. This is enforced for
  4416. systemd configurations, and optional for other
  4417. configurations.
  4418. - Support for AXFS filesystem image generation added.
  4419. - New options to add extra space/inodes to ext2/3/4 images.
  4420. Updated/fixed packages:
  4421. adwaita-icon-theme, apache, apitrace, atk, audit, avahi,
  4422. barebox, bash, batctl, bind, binutils, bluez_utils, boost,
  4423. bridge-utils, cairo, ccache, chrony, clapack, cloog, cmake,
  4424. collectd, connman, conntrack-tools, coreutils, cpio,
  4425. cryptsetup, dbus, dbus-cpp, devmem2, dhcp, dhcpcd, dhcpdump,
  4426. dhrystone, dillo, directfb, directfb-examples, dmraid,
  4427. dos2unix, dovecot, dovecot-pigeonhole, drbd-utils, dropbear,
  4428. dropwatch, dtc, e2fsprogs, ebtables, efl, eigen, ejabberd,
  4429. elf2flt, elfutils, erlang, ethtool, eudev, evemu, exfat,
  4430. exfat-utils, expat, faifa, fbterm, fdk-aac, feh, ffmpeg, file,
  4431. flashrom, fping, freerdp, freescale-imx, freetype, gdk-pixbuf,
  4432. genimage, gettext, git, glib-networking, glmark2, gnupg2,
  4433. gnuradio, gnutls, gpsd, grep, grub2, gst1-imx, gst1-libav,
  4434. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  4435. gst1-plugins-ugly, gst1-validate, gst-fsl-plugins,
  4436. gst-plugins-bad, gstreamer1, guile, gvfs, harfbuzz, haveged,
  4437. hostapd, icu, imagemagick, impiutil, imx-gpu-viv, imx-vpu,
  4438. inadyn, intltool, iostat, iperf3, ipmiutil, iproute2,
  4439. iptables, iw, jpeg-turbo, jq, jsoncpp, kexec-lite, kmod, kodi,
  4440. kodi-audioencoder-flac, kodi-pvr-argustv, kodi-pvr-filmon,
  4441. kodi-pvr-hts, kodi-pvr-mythtv, kodi-pvr-pctv,
  4442. kodi-pvr-stalker, kodi-pvr-vbox,
  4443. kodi-visualisation-waveforhue, less, lftp, libbluray,
  4444. libcgroup, libconfuse, libcurl, libdcadec, libdrm, libevdev,
  4445. libffi, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  4446. libgcrypt, libglew, libglib2, libgtk3, libidn, liblinear,
  4447. liblockfile, libmicrohttpd, libnetfilter_conntrack, libnfs,
  4448. libnftnl, libnl, libnspr, libnss, libpcap, libpfm4, libpng,
  4449. libselinux, libserial, libsoup, libsoxr, libstrophe, libtasn1,
  4450. libtirpc, libtorrent, libupnpp, liburcu, libusb-compat, libuv,
  4451. libv4l, libva, libva-intel-driver, libxcb, lighttpd, links,
  4452. linux, linux-firmware, linux-fusion, linux-headers,
  4453. lirc-tools, localedef, lpeg, lsof, ltp-testsuite,
  4454. lttng-libust, lttng-tools, lua-periphery, luaposix, lvm2, lxc,
  4455. lz4, mdadm, mesa3d, mesa3d-headers, minicom, minidlna, moarvm,
  4456. modem-manager, mosquitto, mpd, mpdecimal, mpg123, mplayer,
  4457. mrouted, msmtp, mtd, mutt, nettle, network-manager, nfs-utils,
  4458. nftables, nginx, nodejs, noip, ntp, ofono, opencv3, openpgm,
  4459. openssl, openswan, openvpn, pango, parted, perl, perl-cross,
  4460. perl-crypt-openssl-random, perl-http-message,
  4461. perl-io-socket-ssl, perl-module-build, perl-mojolicious,
  4462. perl-netaddr-ip, perl-net-dns, perl-net-http, perl-net-ssleay,
  4463. perl-uri, perl-xml-libxml, php, picocom, pixman, pkgconf,
  4464. poco, polarssl, portaudio, portmap, postgresql, proftpd,
  4465. protobuf, protobuf-c, pulseaudio, python-configshell-fb,
  4466. python-networkmanager, python-numpy, python-pyparsing,
  4467. python-pypcap, python-rtslib-fb, python-spidev, python-urwid,
  4468. python-web2py, qemu, qt5base, redis, rngtools, rng-tools,
  4469. rpi-firmware, rpi-userland, rtmpdump, rtorrent, ruby, samba,
  4470. samba4, sane-backends, sconeserver, sdl, sed, setools,
  4471. shairport-sync, shared-mime-info, sland, smartmontools,
  4472. softether, spice-protocol, sqlcipher, sqlite, squid,
  4473. strongswan, stunnel, subversion, sudo, sunxi-tools,
  4474. supervisor, systemd, tar, targetcli-fb, tcpdump, tiff, tor,
  4475. tvheadend, tzdata, uboot-tools, udisks, unionfs, upmpdcli,
  4476. util-linux, vala, valgrind, vim, vlc, vorbis-tools, vsftpd,
  4477. vtun, wavpack, webkitgtk24, weston, whois, wireless-regdb,
  4478. wireshark, wpa_supplicant, xdriver_xf86-input-vmmouse,
  4479. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  4480. xdriver_xf86-video-sis, xlib_libXi, xorg-server,
  4481. xtables-addons, xterm, xz, zic, znc, zsh
  4482. New packages:
  4483. axfsutils, bitstream, check, dvblast, eventlog, fastd, gauche,
  4484. gmock, graphite2, gssdp, gupnp, gupnp-av, ibrcommon, ibrdtn,
  4485. ibrdtnd, ibrdtn-tools, imx-kobs, iqvlinux, irssi,
  4486. kompexsqlite, libbroadvoice, libcddb, libcodec2, libcrossguid,
  4487. libg7221, libhttpparser, libilbc, libldns, libmng,
  4488. libopenh264, libpam-radius-auth, libpam-tacplus, libsilk,
  4489. libsoundtouch, libssh, libuecc, libyuv, liquid-dsp, luv,
  4490. micropython, micropython-libs, python-pyratemp,
  4491. python-pyroute2, python-ranger, rapidxml, scrypt, sdl2,
  4492. sp-oops-extract, squeezelite, stress-ng, swupdate, syslog-ng,
  4493. x265, xdriver_xf86-video-fbturbo, xxhash, yad, zxing-cpp
  4494. Removed packages:
  4495. blackbox (was deprecated), divine (merged in directfb),
  4496. kobs-ng (replaced by imx-kobs), mediactl (merged in libv4l),
  4497. sawman (merged in directfb), schifra (marked broken since a
  4498. long time), texinfo (host variant only, no longer used), zxing
  4499. (replaced by zxing-cpp),
  4500. Issues resolved (http://bugs.uclibc.org):
  4501. #4099: cut utility from GNU coreutils works incorrect
  4502. #7772: libxml-parser-perl build failure: missing dependency
  4503. ExtUtils/MakeMaker
  4504. #7931: Default configuration for Cubieboard v1 is outdated
  4505. #8116: 2015.05-rc2 raspberrypi2_defconfig network interface
  4506. not coming up
  4507. #8246: X.org DRI2 build issue
  4508. #8256: pointing to /usr/bin/objcopy old version (x86) instead
  4509. of the generated one
  4510. #8266: mplayer build issue
  4511. #8281: pyrexc fails to run when path is too long
  4512. #8316: lttng-tools and lttng-babeltrace executables contain
  4513. bad RPATH pointing to host machine
  4514. #8331: kexec wants shutdown in /sbin, but systemd installs it
  4515. in /usr/sbin
  4516. #8361: Buildroot 2015.08.1 skeleton inittab overwritten by
  4517. busybox's version
  4518. #8366: libevent does not build
  4519. #8386: build failed with external toolchain
  4520. #8391: Node.js 0.12.7 fails to build on raspberry_pi defconfig
  4521. #8396: CCACHE initialization
  4522. #8401: gpsd 3.15 NMEA support
  4523. #8416: cups depends on BR2_DEPRECATED_SINCE_2015_05
  4524. #8421: util-linux installs systemd files in output/target/home/
  4525. 2015.08, Released August 31st, 2015
  4526. Minor fixes.
  4527. OpenCV 3.x package renamed to opencv3. OpenCV 2.4.x
  4528. reintroduced as opencv.
  4529. Updated/fixed packages: bootutils, canfestival, cppcms,
  4530. curlftpfs, dhcpdump, dropbear, erlang-p1-tls, exfat, gnuradio,
  4531. ipkg, libgudev, libmbim, libwebsock, linux-pam, lm-sensors,
  4532. ltrace, midori, network-manager, openssh, perl-file-listing,
  4533. perl-http-cookies, perl-http-daemon, perl-http-negotiate,
  4534. perl-www-robotrules, python-can, qt5base, qt5multimedia,
  4535. setools, sysvinit, tinyalsa, tn5250, tvheadend, uboot, vlc,
  4536. x264, xserver_xorg-server, zyre
  4537. 2015.08-rc2, Released August, 24th 2015
  4538. Fixes all over the tree.
  4539. Toolchain: fix gcc build on NIOS-II.
  4540. Infrastructure: add <fs>_POST_GEN_HOOKS mechanism to fix
  4541. hybrid ISO image generation.
  4542. Architectures: add arm1136j-s variant.
  4543. Updated/fixed packages: apitrace, audit, bcusdk, bdwgc,
  4544. beecrypt, boost, bwm-ng, cdrkit, c-icap, cifs-utils, clapack,
  4545. c-periphery, cpio, cramfs, czmq, dawgdic, dnsmasq, dosfstools,
  4546. dropbear, elfutils, empty, eudev, fan-ctrl, filemq, gnutls,
  4547. guile, haveged, imlib2, libcec, libepoxy, libev, libgpgme,
  4548. libiio, libnetfilter_queue, libnfnetlink, libpfm4, libpthsem,
  4549. librtas, libselinux, libsigsegv, libsodium, libv4l, lightning,
  4550. linux, lirc-tools, lrzsz, mono, mosh, mpd, msmtp, nbd,
  4551. netatalk, nodejs, ola, opencv, oprofile, php, poco,
  4552. postgresql, powertop, protobuf, protobuf-c, qt5base,
  4553. qt5quickcontrols, rapidjson, rng-tools, squid, sysdig,
  4554. sysstat, tftpd, tinc, tz, util-linux, webkitgtk24, weston,
  4555. wireshark, wvstreams, xdriver_xf86-input-synaptics, zyre.
  4556. Issues resolved (http://bugs.uclibc.org):
  4557. #8276: package/dropbear: symlink resolution incorrect
  4558. #8286: Error with buildroot
  4559. #8301: ldconfig parameter in Makefile
  4560. 2015.08-rc1, Released August, 5th 2015
  4561. Fixes all over the tree and new features.
  4562. Architectures:
  4563. - Refactor how the availability of an MMU is described.
  4564. - Minimal support for Cortex-M3
  4565. - Minimal support for AArch64 big-endian
  4566. Toolchains:
  4567. - Add CodeSourcery MIPS 2015.05, remove MIPS 2013.11
  4568. - Use uClibc-ng as the default uClibc version, instead of the
  4569. official uClibc, which hasn't done any release since 3+
  4570. years
  4571. - eglibc is now marked as deprecated
  4572. - GCC: gcc 4.9.x is now the default and was updated to 4.9.3,
  4573. support for gcc 5.x added.
  4574. - Binutils: use Binutils 2.24 as the default, 2.25.x series
  4575. bumped to 2.25.1, remove old Binutils 2.22.
  4576. - Update ARC toolchain components to 2015.06
  4577. - Add support for Fortran when building gcc
  4578. Bootloaders:
  4579. - Support for using the kconfig configuration system in
  4580. U-Boot
  4581. New Defconfigs:
  4582. - VIA VAB-820/AMOS-820
  4583. - OLimex OLinuxino A20 Lime
  4584. - Many new defconfigs for Atmel evaluation boards:
  4585. at91sam9rlek, at91sam9x5ek, sama5d3xek, sama5d4ek, sama5d4
  4586. Xplained Ultra, sama5d3 Xplained.
  4587. - ACME Systems Aria G25
  4588. - WarPboard
  4589. - Altera Cyclone 5 Development Board
  4590. - Xilinx zc706
  4591. - ARC AXS101 and AXS103 Software Development Platforms
  4592. - Significant updates to Raspberry Pi / Raspberry Pi 2
  4593. Infrastructure:
  4594. - Buildroot takes better care now of generating predictable
  4595. permissions in the target filesystem. However, existing
  4596. permissions on a custom skeleton or rootfs overlay will no
  4597. longer be preserved. Therefore, it is necessary to add a
  4598. permission table (BR2_ROOTFS_DEVICE_TABLE) to set the
  4599. required permissions.
  4600. - Add support for kconfig fragments.
  4601. - No longer pass --{enable,disable}-debug to autotools
  4602. packages depending on the value of
  4603. BR2_ENABLE_DEBUG. BR2_ENABLE_DEBUG now only controls
  4604. whether we build with -g or not.
  4605. - Support for extracting archives in .lzma in the generic
  4606. package infrastructure.
  4607. - Remove random-seed file from the default skeleton, since
  4608. seeding the entropy pool with a known seed makes more harm
  4609. than good.
  4610. - In the CVS download helper, add support to use a date as
  4611. the version.
  4612. - Add support for a per-package <pkg>_STRIP_COMPONENTS
  4613. variable, which packages can use to specify how many path
  4614. components should be stripped when extracting the tarball.
  4615. - Addition of a 'kernel-module' package infrastructure, which
  4616. simplifies the packaging of external kernel modules. Many
  4617. existing packages are converted to use it.
  4618. - Allow bootloaders to be implemented in $(BR2_EXTERNAL)
  4619. - Remove /etc/securetty from the default skeleton.
  4620. - Migration of sysV initscripts from the default skeleton to
  4621. a package called 'initscripts', installed only when Busbox
  4622. init or sysvinit are used.
  4623. - Migration of the skeleton logic to a proper 'skeleton'
  4624. package.
  4625. - Addition of a 'linux-tools' infrastructure in the 'linux'
  4626. package, to support building user-space tools bundled
  4627. within the Linux kernel sources, such as perf and cpupower.
  4628. - Usage of backticks instead of make $(shell ...) to execute
  4629. shell commands. This allows to delay the evaluation of such
  4630. commands when actually needed, and not when expanding the
  4631. variables. It is useful to make 'make printvars' less
  4632. noisy, and as a preparation to support top-level parallel
  4633. build.
  4634. - Libtool .la files are not mungled for all package types,
  4635. instead of being handled only for packages using the
  4636. autotools-package infrastructure.
  4637. - Add mechanism to allow packages to express a dependency on
  4638. gcc versions. This is needed for packages that use C++11 or
  4639. C11 support for example.
  4640. Important package updates:
  4641. - Complete rework of the matchbox packaging
  4642. - Lots of fixes in packages for compatibility with musl and
  4643. gcc 5.
  4644. - Hash files added to a large number of packages.
  4645. - Update a significant number of packages to use a new
  4646. hosting, after the announcement of Google Code and
  4647. Gitorious closing.
  4648. - Major packages needed for SELinux support have been merged,
  4649. but the support is not complete yet.
  4650. - Significant update of OpenCV to version 3.0, and addition
  4651. of lots of eatures.
  4652. - Significant update of all packages supporting the GPU and
  4653. VPU of i.MX ARM processors.
  4654. - Addition of systemd support in a significant number of
  4655. packages.
  4656. - Qt5 updated to 5.5.0
  4657. - Use modular X.org server by default instead of KDrive
  4658. Filesystems:
  4659. - Complete overhaul of the iso9660 support. Now allows to use
  4660. directly IS9660 as the root filesystem format and not only
  4661. an initrd, and supports Grub 2 and isolinux in addition to
  4662. Grub.
  4663. Updated packages: a10disp, agentpp, apache, at91bootstrap3,
  4664. audit, barebox, bc, bind, bmon, boost, btrfs-progs,
  4665. ca-certificates, can-utils, ccache, cloog, collectd, connman,
  4666. coreutils, c-periphery, cryptsetup, dado, dbus, dejavu,
  4667. dhcpcd, dnsmasq, dosfstools, dovecot, dovecot-pigeonhole,
  4668. e2fsprogs, ejabberd, erlang-p1-cache-tab, erlang-p1-sip,
  4669. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  4670. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml, ethtool,
  4671. eudev, evtest, exim, expect, explorercanvas, feh, ffmpeg,
  4672. file, flashrom, freescale-imx, freetype, gawk, gcc, gdb,
  4673. gettext, git, glib-networking, gnupg2, gnutls, gpsd, gptfdisk,
  4674. gpu-viv-bin-mx6q, gst-fsl-plugins, harfbuzz, hdparm, heimdal,
  4675. i2c-tools, imagemagick, imx-vpu, iproute2, ipset, isl, iw,
  4676. kodi, kodi-addon-xvdr, kodi-audioencoder-flac,
  4677. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  4678. kodi-audioencoder-wav, lftp, libass, libassuan, libcec,
  4679. libconfi, libcurl, libdrm, libevdev, libfreefare, libfslcodec,
  4680. libfslparser, libfslvpuwrap, libfuse, libglib2, libgpgme,
  4681. libgtk2, libgtk3, libical, libidn, libiio, libinput, libiscsi,
  4682. libllcp, libmicrohttpd, libnfc, libnss, libpcap, libpciaccess,
  4683. libpng, libserialport, libsigrok, libsoc, libtirpc, libubox,
  4684. libunistring, libupnp, libuv, libv4l, libva,
  4685. libva-intel-driver, libXrandr, lighttpd, linenoise, linux,
  4686. linux-firmware, linux-headers, live555, ltrace, lua,
  4687. lua-csnappy, lua-ev, luajit, lua-messagepack, luaperiphery,
  4688. lvm2, lxc, lzo, mesa3d, mesa3d-headers, midori, mmc-utils,
  4689. modem-manager, mono, mosquitto, mpd, mpd-mpc, mpfr, mpg123,
  4690. mtd, musl, nano, netperf, network-manager, nfs-utils, nginx,
  4691. nodejs, ntp, ola, opencv, openldap, openssh, openssl,
  4692. openswan, openvmtools, openvpn, opkg, orbit, orc, pcmanfm,
  4693. perl-cross, perl-encode-locale, perl-io-socket-ssl,
  4694. perl-mojolicious, perl-net-ssleay, perl-path-tiny, perl-uri,
  4695. perl-xml-libxml, php, pinentry, polarssl, postgresql,
  4696. pulseview, pure-ftpd, python, python-dpkt, python-lxml,
  4697. python-networkmanager, python-pyinotify, python-pypcap,
  4698. python-tornado, qextserialport, qt, qt5, rapidjson, redis,
  4699. rpcbind, rpi-firmware, rpi-userland, samba4, shairport-sync,
  4700. snmpp, sqlite, squid, strongswan, stunnel, sudo, sunxi-boards,
  4701. sunxi-mali, sysdig, sysstat, systemd, tcpdump, tiff, tmux,
  4702. tor, txheadend, tzdata, uboot, uclibc, ulogd, upmpdcli,
  4703. usb_modeswitch, usb_modeswitch_data, vala, vsftpd, wayland,
  4704. weston, whois, wireless-regdb, wireshark, x264, xapp_xvinfo,
  4705. xdriver_xf86-input-libinput, xdriver_xf86-input-vmmouse,
  4706. xdriver_xf86-video-cirrus, xdriver_xf86-video-geode,
  4707. xdriver_xf86-video-imx-viv, xdriver_xf86-video-mach64,
  4708. xdriver_xf86-video-neomagic, xdriver_xf86-video-r128,
  4709. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  4710. xdriver_xf86-video-vesa, xkeyboard-config, xlib_libfontenc,
  4711. xlib_libFS, xlib_libXaw, xlib_libxkbfile, xlib_libXrender,
  4712. xlib_libXt, xproto_kbproto, xproto_xproto, xproto_xrandrproto,
  4713. xscreensaver, xserver_xorg-server, xtables-addons, yaml-cpp,
  4714. zic.
  4715. New packages: angularjs, atf, audit, c-icap, c-icap-modules,
  4716. cpio, dawgdic, faketime, fcgiwrap, gflags, glog, initscripts,
  4717. jquery-datetimepicker, kodi-audioencoder-modplug,
  4718. kodi-audioencoder-nosefar, kodi-audioencoder-sidplay,
  4719. kodi-audioencoder-snesapu, kodi-audioencoder-stsound,
  4720. kodi-audioencoder-timidity, kodi-audioencoder-vgmstream,
  4721. kodi-platform, kodi-pvr-argustv, kodi-pvr-dvblink,
  4722. kodi-pvr-dvbviewer, kodi-pvr-filmon, kodi-pvr-hts,
  4723. kodi-pvr-iptvsimple, kodi-pvr-mediaportal-tvserver,
  4724. kodi-pvr-mythtv, kodi-pvr-nextpvr, kodi-pvr-njoy,
  4725. kodi-pvr-pctv, kodi-pvr-stalker, kodi-pvr-vbox,
  4726. kodi-pvr-vdr-vnsi, kodi-pvr-vuplus, kodi-pvr-wmc,
  4727. kodi-screensaver-asteroids, kodi-screensaver-biogenesis,
  4728. kodi-screensaver-crystalmorph, kodi-screensaver-greynetic,
  4729. kodi-screensaver-pingpong, kodi-screensaver-pyro,
  4730. kodi-screensaver-stars, kodi-visualisation-shadertoy,
  4731. kodi-visualisation-spectrum, kodi-visualisation-waveforhue,
  4732. kodi-visualisation-waveform, kvmtool, kyua, libfm,
  4733. libfm-extra, libplatform, librtas, libsodium, libsquish,
  4734. libucl, libump, linux-backports, lua-iconv, lutok, menu-cache,
  4735. moarvm, monkey, mono-gtksharp3, mosh, openipmi, python-can,
  4736. python-pycli, python-pydal, python-pyyaml, python-web2py,
  4737. qpid-proton, qt5webchannel, quazip, racehound, rtl8188eu,
  4738. rtl8821au, sepolgen, setools, skeleton, stm32flash,
  4739. webkitgtk24, xdriver_xf86-video-qxl, zynq-boot-bin.
  4740. Deprecated packages: webkitgtk, libgail, eglibc support in
  4741. glibc package.
  4742. Issues resolved (http://bugs.uclibc.org):
  4743. #4291: Segmentation fault with all binaries that use threads
  4744. when compiled with gcc 4.6
  4745. #6944: building toolchain for sh4 fails
  4746. #7592: Buildroot GCC: -lto requires plugin support in ranlib
  4747. #7628: Python SSL does not get built for Raspberry Pi
  4748. #7682: Missing dependencies for NFS
  4749. #7742: dhcp lacks important features when BR2_ENABLE_DEBUG
  4750. #7754: make: *** [/..../buildroot-2014.11/output/build/host-gcc-initial-4.8.3/.stamp_built] Error 2
  4751. #7946: libglib2-2.42.2 fails to build for sparc-buildroot-linux-gnu
  4752. #7956: glibc 2.20 and 2.21 fail to build for sh64-buildroot-linux-gnu
  4753. #7971: python-flask, python-werkzeug. No module named zlib
  4754. #7981: Target file system skeleton permissions hazard
  4755. #8006: rpcdebug in nfs-utils built for the host
  4756. #8036: alsa-lib headers problem that prevents to compile alsa
  4757. dependent projects
  4758. #8081: systemd init system: /tmp is not mode 1777
  4759. #8121: php opcache extension doesn't get installed
  4760. #8151: x86-64 make fails with ncurses 5.9
  4761. #8156: pkg-kconfig infra broken for *-update-{config, defconfig}
  4762. #8161: default /bin/sh symlink to busybox is full path and not relative
  4763. #8171: glamor missing
  4764. #8191: Request update support for the cubieboard series
  4765. #8201: Important security upgrades for node.js
  4766. 2015.05, Released May 31st, 2015
  4767. Minor fixes.
  4768. Updated/fixed packages: conntrack-tools, directfb, fio, flite,
  4769. gptfdisk, ipmiutil, iproute2, janus-gateway, keyutils, knock,
  4770. libelementary, libgcrypt, libgsasl, libjpeg, libstrophe,
  4771. lttng-libust, nbd, ncurses, nmap, php, postgresql, python,
  4772. python3, sconeserver, udpcast, upmpdcli
  4773. 2015.05-rc3, Released May 22nd, 2015
  4774. Several fixes, mainly related to static linking.
  4775. Updated/fixed packages: acl, alsa-utils, apr, armadillo, attr,
  4776. autoconf-archive, binutils, boost, czmq, dhcpcd, duma,
  4777. enlightenment, exim, fbterm, freerdp, gcc, gdk-pixbuf,
  4778. google-breakpad, gpsd, heirloom-mailx, hwloc, ipmiutil,
  4779. iproute2, jack2, jasper, kmod, lcdproc, leafnode2, libcap-ng,
  4780. libftdi1, libmatroska, libmemcached, libmodbus, libnftnl,
  4781. libsigrok, libupnpp, libuv, libxml-parser-perl, linux,
  4782. linux-headers, lirc-tools, lua-periphery, lxc, mongoose, mono,
  4783. mpg123, mosquitto, neardal, newt, ntp, ola, openldap, opencv,
  4784. php, postgresql, protobuf, pulseaudio, python-pyqt, qemu, qt,
  4785. qt5base, rpi-userland, rsyslog, snmppp, sqlite, tiff,
  4786. tinyxml2, uboot-tools, unionfs, ux5000-firmware, usbredir,
  4787. ushare, vpnc, vsftpd, wavpack, wireless_tools, wsapi,
  4788. wvstreams, xmlstarlet, zeromq, zmqpp
  4789. New packages: c-periphery
  4790. Issues resolved (http://bugs.uclibc.org):
  4791. #8106: mkfs.jffs2 uses the --pagesize parameter incorrectly
  4792. #8111: 2015.05.rc2 LIBFOO_CONF_OPTS not working
  4793. #8126: exim lacks plaintext and cram-md5 auth
  4794. 2015.05-rc2, Released May 11th, 2015
  4795. Minor fixes.
  4796. Toolchain: PR56780 backport to GCC 4.8.4 to fix GDB linking
  4797. issues. Context functions enabled for uClibc snapshot /
  4798. uClibc-NG.
  4799. Architectures: Endian handling symbol for Xtensa, binutils
  4800. fixes.
  4801. Infrastructure: Fix for kernel module stripping when
  4802. localversion contains spaces.
  4803. Updated/fixed packages: at, autoconf-archive, binutils,
  4804. cc-tool, cryptsetup, dstat, expedite, freerdp, giflib,
  4805. gnuchess, guile, ipmiutil, iproute2, mono, monolite, neard,
  4806. ola, poppler, postgresql, python-qt, qt, sqlite, valgrind,
  4807. xlib_libXfont
  4808. Issues resolved (http://bugs.uclibc.org):
  4809. #8086: Cannot select systemd as init with Linaro 2014.09...
  4810. 2015.05-rc1, Released May 4th, 2015
  4811. Fixes all over the tree and new features.
  4812. Architectures: Removed AVR32 support, deprecate SH64, added
  4813. support for steamroller, corei7-avx and core-avx2 x86
  4814. variants.
  4815. Toolchains: IPv6 and Largefile support now enforced for
  4816. uClibc. Corresponding Kconfig symbols removed.
  4817. External CodeSourcery AMD64 2014.05, MUSL-cross 1.1.6 added,
  4818. CS sh2, Xilinx microblaze v2/14.3 removed. Distro-class
  4819. external toolchains are now detected and blacklisted.
  4820. Internal toolchain support for Nios2 added, Blackfin
  4821. removed. Aarch64 and sh musl support. uClibc-ng support added.
  4822. Libatomic is now handled for internal and external
  4823. toolchains. Link time optimization (LTO) support.
  4824. New Defconfigs: Freescale i.MX28 EVK, i.MX31 PDK and SABRE
  4825. Auto, Raspberry Pi 2, RIoTboard,
  4826. Infrastructure: Hashes for a large number of packages have
  4827. been added. Missing hashes now stop the build unless
  4828. explicitly disabled.
  4829. Spaces and colons (:) are now supported in package
  4830. versions. Dependencies can now be listed for the patch step
  4831. (<PKG>_PATCH_DEPENDENCIES). Kconfig and Linux kernel
  4832. extensions infrastructure has been added.
  4833. Makedevs now has a recursive (r) option.
  4834. The variable containing the list of packages to build has been
  4835. renamed from TARGETS to PACKAGES.
  4836. Make external-deps / legal-info / source / source-check have
  4837. been reimplemented using the package infrastructure, so their
  4838. output/behaviour may differ from earlier (some packages were
  4839. not included in the past).
  4840. The old insecure DES password encoding is no longer supported.
  4841. U-Boot patch option now support direct references to patch
  4842. files and URLs in addition to directories of patches. The
  4843. i.MX28 SD format (u-boot.sd) is now supported.
  4844. Updated/fixed packages: agentpp, aircrack-ng, alsa-lib,
  4845. alsa-utils, apr-util, apr, atk, autossh, avahi, avrdude,
  4846. bcusdk, bdwgc, bind, binutils, bmon, boost, botan,
  4847. btrfs-progs, busybox, ca-certificates, cairo, can-utils,
  4848. canfestival, ccache, chrony, civetweb, clamav, cmake,
  4849. collectd, connman, copas, crda, cryptodev-linux, cryptsetup,
  4850. cups, czmq, dbus-cpp, dbus-glib, dbus-python, dbus, dfu-util,
  4851. dhcp, dhcpcd, dialog, dillo, dmraid, dnsmasq, dos2unix,
  4852. dosfstools, dovecot-pigeonhole, dovecot, dropbear, dropwatch,
  4853. dtv-scan-tables, dvdauthor, e2fsprogs, ecryptfs-utils,
  4854. libevas, elfutils, enscript, erlang, espeak, eudev, evemu,
  4855. exfat-utils, exim, f2fs-tools, feh, ffmpeg, fftw, flickcurl,
  4856. fltk, fluxbox, fmlib, fmtools, freeradius-client, freerdp,
  4857. gamin, gawk, gcc-final, gcc, gd, gdb, gengetopt, geoip, git,
  4858. glib-networking, gnu-efi, gnuchess, gnutls, gpsd, gptfdisk,
  4859. gpu-viv-bin-mx6q, gst-plugin-bad, gstreamer, gstreamer1,
  4860. gtest, gvfs, harfbuzz, haserl, haveged, hiawatha,
  4861. hicolor-icon-theme, hostapd, hplip, httping, i2c-tools, icu,
  4862. ifplugd, imagemagick, imlib2, iozone, iproute2, iptables,
  4863. iputils, irqbalance, iw, jack2, jhead, jimtcl, json-c, kexec,
  4864. kismet, kmod, kodi-audioencoder-flac,
  4865. kodi-audioencoder-vorbis, kodi-pvr-addons, kodi, ktap, lcms2,
  4866. libass, libatomic_ops, libbluray, libcap, libcgroup, libcurl,
  4867. libdrm, libdvbsi, libebml, libecore, libedit, liberation,
  4868. libev, libevas, libevdev, libftdi, libgcrypt, libglib2,
  4869. libgpgme, libgtk2, libgtk3, libiconv, libidn, libiio,
  4870. libinput, libiscsi, libksba, liblinear, libmatroska,
  4871. libmicrohttpd, libmodbus, libmpdclient, libnice, libnl,
  4872. libnspr, libnss, libpcap, libpciaccess, libphidget, libplayer,
  4873. libpthsem, libqmi, librsvg, libseccomp, libsigrok, libsoup,
  4874. libsrtp, libssh2, libtasn1, libtool, libunistring, liburcu,
  4875. libusb, libuv, libva-intel-driver, libva, libvncserver,
  4876. libvorbis, libvpx, libwebsockets, libxml2, libzip, lightning,
  4877. lighttpd, linknx, linphone, linux-firmware, linux-headers,
  4878. linux-pam, live555, ljsyscall, lmbench, lockdev, logrotate,
  4879. lpc3250loader, lpeg, lsof, lttng-libust, lttng-modules,
  4880. lttng-tools, lua, luacrypto, luafilesystem, luajit, luaposix,
  4881. luarocks, lvm2, lxc, make,
  4882. matchbox-{common,desktop,fakekey,keyboard,lib,startup-monitor,vm},
  4883. matchbox, mcelog, memcached, memstat, memtest86, mesa3d,
  4884. minidlna, mjpegtools, mjpg-streamer, modem-manager, mongoose,
  4885. monit, mono, monolite, mp4v2, mpc, mpd, mpdecimal, mpg123,
  4886. mplayer, musl, nano, nbd, ncftp, ncmpc, ncurses, ne10, neard,
  4887. neardal, net-tools, netatalk, netsnmp, network-manager, nginx,
  4888. nodejs, ntfs-3g, ntp, numactl, odhcp6c, ofono, open2300,
  4889. opencv, openldap, openntpd, openocd, openssh, openssl,
  4890. openswan, opentyrian, openvmtools, openvpn, oprofile, p11-kit,
  4891. pango, patch, patchelf, pciutils, pcre, perf, perl-gdgraph,
  4892. perl-io-socket-ssl, perl-json-tiny, perl-module-build,
  4893. perl-mojolicious, perl-net-ssleay, perl-path-tiny,
  4894. perl-xml-libxml, perl, phidgetwebservice, php-gnupg, php,
  4895. pkgconf, polarssl, poppler, popt, postgresql, powerpc-utils,
  4896. pppd, prboom, procps-ng, proftpd, psplash, ptpd2,
  4897. python-{cheetah,coherence,django,markdown,netifaces,pam,six},
  4898. python-tornado, python-twisted, python-zope-interface, python,
  4899. python3, qemu, qt, qt5, qt5base, qt5multimedia,
  4900. qt5xmlpatterns, qt5cinex, quagga, qwt, radvd, readline,
  4901. rng-tools, rpcbind, rpi-firmware, rpi-userland, rsync,
  4902. rsyslog, rtai, rtmpdump, ruby, sam-ba, samba, samba4,
  4903. sane-backends, sconeserver, shairport-sync, sigrok-cli, slang,
  4904. smcroute, snmppp, socat, socketcand, sofia-sip, sox,
  4905. spawn-fcgi, speex, sqlcipher, sqlite, squid, strace,
  4906. strongswan, stunnel, sudo, sunxi-boards, swig, sysstat,
  4907. systemd, tcpdump, tftpd, thrift, thttpd, ti-gfx, ti-utils,
  4908. tiff, tinyalsa, tn5250, transmission, trinity, tslib,
  4909. tvheadend, tzdata, uboot-tools, uclibc, ulogd, usb_modeswitch,
  4910. usbutils, ustr, util-linux, vala, valgrind, vlc, wayland,
  4911. webp, weston, wget, which, whois, wireless-regdb,
  4912. wireless_tools, wireshark, wpa_supplicant, wvstreams,
  4913. xapp_{bdftopcf,bitmap,fonttosfnt,fslsfonts},
  4914. xapp_{fstobdf,iceauth,mkfontscale,oclock,rgb,sessreg,setxkbmap},
  4915. xapp_{showfont,smproxy,twm,x11perf,xcalc,xclipboard,xcmsdb},
  4916. xapp_{xdbedizzy,xditview,xdpyinfo,xdriinfo,xedit,xev,xeyes},
  4917. xapp_{xf86dga,xfsinfo,xgamma,xgc,xhost,xinit,xinput,xkbcomp},
  4918. xapp_{xkbevd,xkbprint,xlsatoms,xlsfonts,xmag,xman,xmh,xmodmap},
  4919. xapp_xmore, xcb-util-image, xcb-util-keysyms,
  4920. xdata_xcursor-themes,
  4921. xdriver_xf86-input-{evdev,keyboard,synaptics,void},
  4922. xdriver_xf86-video-{ati,cirrus,geode,mach64,mga,neomagic},
  4923. xdriver_xf86-video-{r128,savage,siliconmotion,sis,tdfx},
  4924. xdriver_xf86-video-{trident,vmware,voodoo}, xenomai,
  4925. xfont_font-util, xkeyboard-config,
  4926. xlib_lib{ICE,X11,Xdmcp,Xfont,Xpm,XvMC},
  4927. xlib_lib{Xxf86vm,xshmfence,xtrans}, xproto_randrproto,
  4928. xproto_xproto, xserver_xorg-server, x11vnc, x264, xerces,
  4929. xorriso, xterm, xz, yaml-cpp, zeromq, zic, zmqpp
  4930. New packages: apache, autoconf-archive, batctl,
  4931. bitstream-vera, bullet, cc-tool, doxygen, drbd-utils,
  4932. dvdrw-tools, gnuradio, gst1-imx, hans, hwloc, ijs,
  4933. imx-usb-loader, inconsolata, iodine, iotop, ipmiutil, jsoncpp,
  4934. leveldb, libdcadec, libdri2, libfreeimage, libftdi1,
  4935. libsidplay2, lirc-tools, lua-periphery, mc, mesa3d-headers,
  4936. mosquitto, nvidia-driver, nvidia-tegra23{,-binaries,-codecs},
  4937. openjpeg, opusfile, perl-crypt-openssl-{random,rsa},
  4938. perl-db-file, perl-digest-{hmac,sha1},
  4939. perl-encode-{detect,locale}, perl-file-{listing,util},
  4940. perl-html-{parser,tagset}, perl-http-cookies,
  4941. perl-http-{daemon,date,message,negotiate}, perl-io-html,
  4942. perl-libwww-perl, perl-lwp-mediatypes, perl-mail-dkim,
  4943. perl-mailtools, perl-mime-base64, perl-net-{dns,http},
  4944. perl-netaddr-ip, perl-time-hires, perl-timedate, perl-uri,
  4945. perl-www-robotrules, powertop, pulseview,
  4946. python-{cherrypy,lxml,mako,pyqt,pyxml,sip,spidev,ws4py}, qpdf,
  4947. qt-webkit-kiosk, sl, softether, sysdig, tinyxml2, tor, tovid,
  4948. unixodbc, wf111, wine, libepoxy, xapp_xcompmgr,
  4949. xapp_xfindproxy, xcb-util-cursor, xcb-util-renderutil,
  4950. xdriver_xf86-input-libinput, xdriver_xf86-video-imx{,-viv},
  4951. xproto_xproxymanagementprotocol
  4952. Removed packages: gtk2-theme-hicolor
  4953. Deprecated packages: samba
  4954. Issues resolved (http://bugs.uclibc.org):
  4955. #7478: Multiple chosen python modules are not built due to...
  4956. #7508: Use of BR2_EXTERNAL and dependencies to existing packages
  4957. #7676: Package procps-ng installs binaries to nonsensical folder
  4958. #7724: Startx is not installed in the target
  4959. #7760: botan: wrong prefix in botan-1.10.pc
  4960. #7826: Building of cdparanoia
  4961. #7844: Lua with hard-float on MIPS by buildroot doesn't work
  4962. #7874: X.org configure error
  4963. #7941: glibc-2.20 fails to build for sparc-buildroot-linux-gnu
  4964. #7951: gcc 4.9.2 fails to build for sparc-buildroot-linux-gnu
  4965. #7961: Qt5 fails to build for xtensa-buildroot-linux-uclibc
  4966. #7976: mkuser script fails with: user already exists with...
  4967. #8011: When building only busybox and strace, strace fails...
  4968. #8016: collectd fails to build, network.c:171:19: error:...
  4969. #8041: error on building libcurl7.42.0
  4970. 2015.02, Released March 1st, 2015
  4971. Minor fixes.
  4972. Updated/fixed packages: civetweb, ding-libs,
  4973. directfb-examples, glibc, gnupg, gnupg2, gpm,
  4974. gst-plugins-good, gst1-plugins-good, freetype, libao, libevas,
  4975. libevent, libfribidi, libgcrypt, libgtk2, libshout, libsrtp,
  4976. libtheora, libupnpp, libxmlrpc, linux, make, opus, pinentry,
  4977. rpi-firmware, shared-mime-info, vlc, vorbis-tools,
  4978. xcb-util-keysyms
  4979. Removed packages: libgc
  4980. 2015.02-rc3, Released February 24th, 2015
  4981. Minor fixes.
  4982. Cmake and rebar (erlang) infrastructure fixes.
  4983. Updated/fixed packages: bind, btrfs-progs, busybox, e2fsprogs,
  4984. evtest, ffmpeg, fltk, gnutls, i2c-tools, imagemagick, libxcb,
  4985. make, mjpg-streamer, netsnmp, opentyrian, php, polarssl,
  4986. qt5base, samba, samba4, sudo, util-linux, xserver_xorg-server
  4987. 2015.02-rc2, Released February 15th, 2015
  4988. Minor fixes.
  4989. raspberrypi: fix kernel sha1 for DT variant.
  4990. Updated/fixed packages: dbus, dvdauthor, git, libsemanage,
  4991. libsepol, libssh2, mplayer, ntp, openvmtools, python3,
  4992. qt5base, qt5connectivity, xserver_xorg-server
  4993. 2015.02-rc1, Released February 8th, 2015
  4994. Fixes all over the tree and new features.
  4995. Static/shared library handling reworked. This is now a
  4996. tristate (shared only / shared and static / static
  4997. only). Default is now shared only to speed up the
  4998. build. BR2_PREFER_STATIC_LIB is now called BR2_STATIC_LIBS.
  4999. The toolchain (internal and external) will now warn when an
  5000. unsafe library or header path is used (such as /usr/include or
  5001. /usr/lib). If BR2_COMPILER_PARANOID_UNSAFE_PATH is enabled
  5002. under build options this instead becomes an error.
  5003. A installation path issue with the internal musl toolchain
  5004. support has been fixed so it is now possible to reuse it as an
  5005. external toolchain.
  5006. Architectures: Freescale E5500 and E6500 PowerPC support
  5007. added, deprecated MIPS 1/2/3/4 support removed.
  5008. New defconfigs: Freescale p2020ds, MIPS creator CI20,
  5009. Raspberrypi with DT, UDOO Quad.
  5010. 'make <foo>_defconfig' now saves the path to the defconfig in
  5011. the .config, so a 'make savedefconfig' automatically updates
  5012. it.
  5013. Infrastructure for packages using the Erland rebar tool has
  5014. been added.
  5015. Hashes for a large number of packages have been added. Hashes
  5016. are now checked for both target and host packages.
  5017. The system menu now has an option to automatically configure a
  5018. network interface through DHCP at bootup.
  5019. The default filesystem skeleton now uses a separate tmpfs for
  5020. /run instead of a symlink to /tmp/ for security reasons / to
  5021. protect against conflicts with user generated temporary files.
  5022. BR2_EXTERNAL is now exported to post-build and post-image
  5023. scripts.
  5024. New packages: bdwgc, benejson, blktrace, bootstrap, cgic,
  5025. ding-libs, dvdauthor, ejabberd, erlang-goldrush, erlang-lager,
  5026. erlang-p1-cache-tab, erlang-p1-iconv, erlang-p1-sip,
  5027. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  5028. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml,
  5029. erlang-p1-zlib, exiv2, freeradius-client, gengetopt, glmark2,
  5030. gpu-amd-bin-mx51, guile, host-qemu, ifupdown, iperf3,
  5031. janus-gateway, kodi, kodi-audioencoder-flac,
  5032. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  5033. kodi-audioencoder-wav, libcli, libiio, liblinear, libnice,
  5034. libselinux, libsemanage, libserialport, libsigro,
  5035. libsigrokdecode, libsrtp, liburiparser, libvips, libwebsock,
  5036. libz160, libzip, lightning, mcelog, memtest86, mjpegtools,
  5037. mjpg-streamer, mke2img, mpd-mpc, netsurf-buildsystem, odhcp6c,
  5038. openldap, python-alsaaudio, python-certifi, python-cheetah,
  5039. python-coherence, python-django, python-docopt, python-enum,
  5040. python-enum34, python-flask, python-gobject, python-httplib2,
  5041. python-ipaddr, python-itsdangerous, python-jinja,
  5042. python-markdown, python-markupsafe, python-networkmanager,
  5043. python-pam, python-psutil, python-pyftpdlib, python-pyinotify,
  5044. python-pysendfile, python-pyxb, python-requests, python-six,
  5045. python-twisted, python-webpy, python-werkzeug,
  5046. python-zope-interface, qt5cinex, sigrok-cli, sofia-sip,
  5047. start-stop-daemon, szip, triggerhappy, ustr, vnstat, xorriso,
  5048. xtables-addons
  5049. Removed packages (target): bison, distcc, gob2, m4
  5050. Issues resolved (http://bugs.uclibc.org):
  5051. #7556: make interactive CLI optional for nftables
  5052. #7730: Error while connecting Qt Cretaor to device
  5053. #7766: logrotate default gzip path is usually wrong
  5054. #7790: Invalid ext4 image generated by Buildroot
  5055. 2014.11, Released December 1st, 2014
  5056. Minor fixes.
  5057. Infrastructure: LD_LIBRARY_PATH handling tweak to ensure
  5058. current working directory isn't searched.
  5059. Updated/fixed packages: gd, gdb, libwebsockets, luajit, mono,
  5060. parted, shairport-sync, util-linux, xapp_bdftopcf,
  5061. xserver_xorg-server
  5062. 2014.11-rc3, Released November 28th, 2014
  5063. Fixes all over the tree.
  5064. System: File permissions of /etc/random-seed made more
  5065. restrictive.
  5066. Toolchain: Various fixes related to locale handling, a fix for
  5067. building the toolchain wrapper on MIPS.
  5068. Updated/fixed packages: bind, binutils. botan, btrfsprogs,
  5069. clamav, czmq, dhcp, dillo, dovecot, erlang, flac, gd, glibc,
  5070. gptfdisk, gst1-validate, heirloom-mailx, lame, libksba,
  5071. libllcp, libnspr, libpng, libshairplay, libtirpc, linux,
  5072. linux-headers, mpdecimal, mpg123, network-manager, nfstables,
  5073. nfs-utils, openssl, pcituils, qt, radvd, rtai, sqlcipher,
  5074. sstrip, tcpdump, uclibc, uemacs, ushare, wayland, weston,
  5075. xl2tp, xserver_xorg-server
  5076. Issues resolved (http://bugs.uclibc.org):
  5077. #7670: Fails to build mpc-1.0.2 on latest Cygwin
  5078. 2014.11-rc2, Released November 21st, 2014
  5079. Fixes all over the tree.
  5080. Inittab tweaks for shutdown handling (busybox and sysvinit).
  5081. Updated/fixed packages: aircrack-ng, botan, canfestival,
  5082. clamav, coreutils, czmq, dbus, dovecot, duma, e2fsprogs,
  5083. erlang, gcc, iputils, libcap, libgcrypt, libmemcached,
  5084. libssh2, libunwind, libv4l, linux-headers, mesa3d-demos, mutt,
  5085. mysql, ndisc6, nodejs, omniorb, perl-cross, php,
  5086. python-tornado, python3, qemu, qt5base, qt5webkit, rpm,
  5087. rt-tests, ruby, schifra, sdl_sound, shairport-sync, sysvinit,
  5088. tstools, tzdata, wireshark, x264
  5089. Issues resolved (http://bugs.uclibc.org):
  5090. #7646: strftime on datetime not works on python3
  5091. 2014.11-rc1, Released November 12th, 2014
  5092. Fixes all over the tree and new features.
  5093. Toolchains: Use -mcpu / -march instead of -mtune. Support
  5094. additional ARC and sparc variants. Updated Code sourcery
  5095. and Linaro external toolchains.
  5096. Defconfigs: Freescale iMX6DL SabreSD, Minnowboard MAX, QEMU
  5097. powerpc64 pseries added and a number of updates to the
  5098. existing configurations.
  5099. Infrastructure: Buildroot is now less noisy when built with
  5100. the silent option (make -s).
  5101. A number of package infrastructure variables have been renamed
  5102. from *_OPT to *_OPTS for constency. Buildroot will complain if
  5103. the old names are used to assist in updating out of tree
  5104. packages.
  5105. Fixes for host systems where bash isn't located in /bin, and
  5106. older systems not supporting mktemp --tmpdir.
  5107. Various cleanups of users/groups in the default skeleton.
  5108. There is now an option to choose what shell /bin/sh points to.
  5109. Documentation: Various updates to the user manual. The
  5110. asciidoc documentation handling has now been extended so it
  5111. can be used by (BR2_EXTERNAL) packages.
  5112. Updated/fixed packages: acl, acpid, agentpp, aircrack-ng,
  5113. alsa-lib, alsamixergui, alsa-utils, apitrace, apr, apr-util,
  5114. argus, arptables, at, atftp, atk, attr, audiofile, aumix,
  5115. automake, autossh, avahi, avrdude, axel, bandwidthd, bash,
  5116. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  5117. bluez_utils, bmon, boost, bootutils, bridge-utils,
  5118. btrfs-progs, busybox, bwm-ng, bzip2, ca-certificates, cairo,
  5119. ccache, ccid, ccrypt, cdrkit, cegui06, celt051, chrony,
  5120. cifs-utils, civetweb, cjson, clapack, classpath, cloog, cmake,
  5121. collectd, connman, copas, coreutils, coxpcall, cppcms, cppdb,
  5122. cppzmq, cramfs, crda, cryptsetup, ctorrent, cups, cvs, cwiid,
  5123. czmq, dash, dbus, dbus-cpp, dbus-glib, dbus-python, dejavu,
  5124. dhcp, dhcpcd, dhcpdump, dialog, dillo, directfb, distcc,
  5125. dmalloc, dmidecode, dmraid, dnsmasq, doc-asciidoc.mk,
  5126. dosfstools, dropbear, dropwatch, dstat, dtach, dtc, dvbsnoop,
  5127. e2fsprogs, ecryptfs-utils, ed, efl, eigen, elf2flt, elfutils,
  5128. enlightenment, enscript, erlang, espeak, ethtool, eudev,
  5129. evemu, evtest, exfat, exfat-utils, exim, expat, expect,
  5130. explorercanvas, faifa, fakeroot, fan-ctrl, fbdump,
  5131. fb-test-app, fetchmail, ffmpeg, file, filemq, findutils, flac,
  5132. flann, flickcurl, flite, fltk, fluxbox, fmc, fmlib,
  5133. fontconfig, foomatic-filters, freerdp, freescale-imx,
  5134. freetype, ftop, fxload, gamin, gcc, gd, gdb, gdk-pixbuf,
  5135. genimage, genpart, genromfs, geoip, gettext, giblib, git,
  5136. glibc, glib-networking, gmp, gmpc, gnu-efi, gnupg, gnupg2,
  5137. gnuplot, gnutls, google-breakpad, gpm, gpsd, gptfdisk,
  5138. gpu-viv-bin-mx6q, grantlee, grep, gsl, gst1-libav,
  5139. gst1-plugins-{bad,base,good,ugly}, gst-ffmpeg,
  5140. gst-fsl-plugins, gst-omx, gst-plugins-{bad,base,good,ugly},
  5141. gst-plugin-x170, gstreamer, gstreamer1, gtest, gtk2-engines,
  5142. gutenprint, gvfs, harfbuzz, haserl, haveged, hdparm, heimdal,
  5143. heirloom-mailx, hiawatha, hostapd, hplip, htop, httping,
  5144. hwdata, i2c-tools, icu, ifplugd, igh-ethercat, imagemagick,
  5145. imlib2, imx-lib, imx-vpu, inadyn, inotify-tools, input-tools,
  5146. intltool, iperf, iproute2, iprutils, ipsec-tools, ipset,
  5147. iptables, iputils, iw, jamvm, jansson, jasper, jimtcl, joe,
  5148. jpeg-turbo, jq, jquery-keyboard, jquery-mobile, jquery-ui,
  5149. jquery-ui-themes, jquery-validation, jsmin, json-c,
  5150. json-javascript, kbd, kexec, kexec-lite, keyutils, kismet,
  5151. kmod, knock, ktap, lame, lbase64, lbreakout2, lcdproc, lcms2,
  5152. lesstif, lftp, libaio, libao, libarchive, libargtable2,
  5153. libass, libassuan, libatasmart, libbluray, libbsd, libcap,
  5154. libcap-ng, libcdio, libcec, libcgicc, libcgroup, libcofi,
  5155. libconfig, libconfuse, libcurl, libdaemon, libdnet, libdrm,
  5156. libdvdnav, libecore, libedbus, libedit, libedje, libeet,
  5157. libelementary, libelf, libenca, libethumb, libevas,
  5158. libevas-generic-loaders, libevent, libexif, libeXosip2,
  5159. libffi, libftdi, libfuse, libgail, libgcrypt, libgeotiff,
  5160. libglade, libglib2, libgpgme, libgtk2, libhid, libidn,
  5161. libinput, libiscsi, libjson, libksba, liblockfile,
  5162. liblog4c-localtime, liblogging, libmad, libmatroska, libmbim,
  5163. libmemcached, libmicrohttpd, libmpdclient, libmpeg2, libndp,
  5164. libnfc, libnfs, libnftnl, libnl, libnspr, libnss, liboauth,
  5165. libogg, liboping, libosip2, libpcap, libpciaccess, libpfm4,
  5166. libplayer, libplist, libpng, libpthsem, libqmi, libqrencode,
  5167. libraw, libreplaygain, libroxml, librsvg, librtlsdr,
  5168. libsamplerate, libseccomp, libsecret, libshairplay, libsoc,
  5169. libsoup, libsoxr, libssh2, libstrophe, libsvg, libsvg-cairo,
  5170. libtasn1, libtheora, libtirpc, libtorrent, libubox, libuci,
  5171. libungif, liburcu, libusb, libuv, libv4l, libva,
  5172. libva-intel-driver, libvncserver, libvorbis, libvpx,
  5173. libwebsockets, libxcb, libxml2, libxml-parser-perl, libxmlrpc,
  5174. libxslt, lighttpd, linenoise, linknx, links, linphone,
  5175. linux-firmware, linux-fusion, linux-headers, linux-pam,
  5176. linux-zigbee, lite, live555, ljlinenoise, lmbench, lm-sensors,
  5177. localedef, lockdev, lockfile-progs, log4cxx, lpty, lrandom,
  5178. lrzsz, lshw, lsof, lsqlite3, ltp-testsuite, ltrace, ltris,
  5179. lttng-babeltrace, lttng-libust, lttng-modules, lttng-tools,
  5180. lua, luabitop, lua-coat, lua-coatpersistent, lua-csnappy,
  5181. lua-ev, luajit, luajson, lualogging, lua-messagepack,
  5182. lua-msgpack-native, luaposix, luarocks, luasec, luasocket,
  5183. luasql-sqlite3, lua-testmore, lunit, lvm2, lxc, lz4, lzlib,
  5184. lzma, m4, madplay, make, makedevs, Makefile.in,
  5185. matchbox-common, matchbox-desktop, matchbox-fakekey,
  5186. matchbox-keyboard, matchbox-lib, matchbox-panel,
  5187. matchbox-startup-monitor, matchbox-wm, mcrypt, mdadm,
  5188. media-ctl, mediastreamer, memcached, memstat, memtester,
  5189. mesa3d, metacity, midori, mii-diag, minidlna, mmc-utils,
  5190. modem-manager, mongoose, mongrel2, monit, mpc, mpd, mpdecimal,
  5191. mpfr, mpg123, mplayer, mrouted, msmtp, mtd, mtools, mtr,
  5192. musepack, musl, mutt, mxml, mysql, nano, nanocom, nbd, ncftp,
  5193. ncurses, ndisc6, ne10, neard, neon, netatalk, netperf,
  5194. netsnmp, nettle, net-tools, network-manager, newt, nfs-utils,
  5195. ngrep, nmap, nodejs, nss-mdns, ntfs-3g, ntp, numactl, nut,
  5196. nuttcp, ofono, ola, omap-u-boot-utils, omniorb,
  5197. on2-8170-modules, opencore-amr, opencv, openntpd, openobex,
  5198. openocd, openpowerlink, openssh, openssl, openswan,
  5199. opentyrian, opentyrian-data, openvpn, opkg, oprofile, opus,
  5200. opus-tools, orbit, orc, ortp, p11-kit, pango, parted,
  5201. pciutils, pcmanfm, pcre, pcsc-lite, perf, perl, perl-gd,
  5202. perl-gdgraph, perl-io-socket-ssl, perl-json-tiny,
  5203. perl-module-build, perl-mojolicious, perl-net-ssleay,
  5204. perl-path-tiny, perl-xml-libxml, perl-xml-parser, php,
  5205. php-geoip, php-gnupg, php-imagick, php-memcached, php-ssh2,
  5206. php-yaml, php-zmq, picocom, pifmrds, pinentry, pixman,
  5207. pkg-autotools.mk, pkg-cmake.mk, pkg-download.mk,
  5208. pkg-generic.mk, pkg-kconfig.mk, pkg-luarocks.mk, pkg-perl.mk,
  5209. pkg-python.mk, pkg-utils.mk, poco, polarssl, polkit, poppler,
  5210. popt, portaudio, portmap, postgresql, powerpc-utils, pppd,
  5211. pptp-linux, prboom, procps-ng, proftpd, protobuf, protobuf-c,
  5212. psmisc, ptpd2, pulseaudio, pv, pwgen, python, python3,
  5213. python-dialog, python-ipy, python-keyring, python-mad,
  5214. python-netifaces, python-numpy, python-protobuf, python-pyasn,
  5215. python-pyparsing, python-pyro, python-pyusb, python-serial,
  5216. python-setuptools, qdecoder, qemu, qextserialport, qjson, qt,
  5217. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  5218. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  5219. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  5220. qt5serialport, qt5svg, qt5webkit, qt5webkit-examples,
  5221. qt5websockets, qt5x11extras, qt5xmlpatterns, qtuio, quagga,
  5222. quota, qwt, radvd, rapidjson, rdesktop, redis, rings, rpcbind,
  5223. rpi-firmware, rpi-userland, rpm, rp-pppoe, rrdtool,
  5224. rsh-redone, rsync, rsyslog, rtai, rtmpdump, rt-tests, rubix,
  5225. ruby, samba, sam-ba, samba4, sane-backends, schifra,
  5226. sconeserver, scons, screen, sdl, sdl_gfx, sdl_image,
  5227. sdl_mixer, sdl_net, sdl_sound, sdl_ttf, sed, ser2net,
  5228. setserial, sg3_utils, shared-mime-info, simicsfs, sispmctl,
  5229. slang, slirp, smcroute, smstools3, snmppp,
  5230. snowball-hdmiservice, socat, socketcand, sox, spawn-fcgi,
  5231. speex, spice, spice-protocol, sqlcipher, sqlite, squashfs,
  5232. squid, sredird, startup-notification, strace, stress,
  5233. strongswan, stunnel, subversion, sudo, sunxi-boards,
  5234. sunxi-cedarx, swig, sylpheed, synergy, sysklogd, sysstat,
  5235. systemd, sysvinit, taglib, tar, tcl, tcllib, tcpdump,
  5236. tcpreplay, texinfo, tftpd, thrift, thttpd, tiff, ti-utils,
  5237. tn5250, torsmo, trace-cmd, transmission, tslib, tstools,
  5238. tvheadend, twolame, tz, uboot-tools, uclibc, udisks, ulogd,
  5239. upmpdcli, upx, urg, usb_modeswitch, usbmount, usbredir,
  5240. usbutils, util-linux, valgrind, vde2, vim, vlc, vo-aacenc,
  5241. vorbis-tools, vpnc, vsftpd, vtun, wayland, webkit, webp,
  5242. webrtc-audio-processing, weston, wget, whois, wireless-regdb,
  5243. wireshark, wpa_supplicant, wvstreams, x11r7, x11vnc,
  5244. xapp_xcalc, xapp_xdm, xapp_xdpyinfo, xapp_xf86dga, xapp_xfs,
  5245. xapp_xinit, xapp_xkbevd, xapp_xmh, xapp_xrandr, xapp_xsm,
  5246. xbmc, xbmc-pvr-addons, xcb-proto, xcursor-transparent-theme,
  5247. xdriver_xf86-input-mouse, xdriver_xf86-video-{ast,intel},
  5248. xdriver_xf86-video-vmware, xenomai, xerces,
  5249. xfont_font-adobe-{100,75}dpi,
  5250. xfont_font-adobe-utopia-{100dpi,75dpi,type1},
  5251. xfont_font-alias, xfont_font-arabic-misc,
  5252. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  5253. xfont_font-bh-lucidatypewriter-100dpi,
  5254. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  5255. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  5256. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  5257. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  5258. xfont_font-daewoo-misc, xfont_font-dec-misc,
  5259. xfont_font-ibm-type1, xfont_font-isas-misc,
  5260. xfont_font-jis-misc, xfont_font-micro-misc,
  5261. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  5262. xfont_font-misc-meltho, xfont_font-misc-misc,
  5263. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  5264. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  5265. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  5266. xfont_font-xfree86-type1, xfsprogs, xinetd, xkeyboard-config,
  5267. xlib_libdmx, xlib_libFS, xlib_libpciaccess, xlib_libSM,
  5268. xlib_libX11, xlib_libXaw, xlib_libXext, xlib_libXfont,
  5269. xlib_libXi, xlib_libXinerama, xlib_libXrandr, xlib_libXrender,
  5270. xlib_libXres, xlib_libXScrnSaver, xlib_libXt, xlib_libXv,
  5271. xlib_libXvMC, xlib_libXxf86dga, xlib_libXxf86vm, xmlstarlet,
  5272. xproto_xcmiscproto, xproto_xextproto, xscreensaver,
  5273. xserver_xorg-server, xterm, xz, zeromq, zlib, zlog, zmqpp,
  5274. znc, zsh, zxing
  5275. New packages: adwaita-icon-theme, am335x-pru-package,
  5276. bcache-tools, biosdevname, botan, canfestival, clamav,
  5277. cppunit, dos2unix, dovecot, dovecot-pigeonhole, getent, glm,
  5278. gst1-validate, hicolor-icon-theme, ipmitool, leafnode2,
  5279. libdvbcsa, libgtk3, libphidget, libshout, libunistring,
  5280. libupnpp, mesa3d-demos, modplugtools, mono, monolite, mp4v2,
  5281. netcat-openbsd, nginx, odhcploc, openvmtools,
  5282. phidgetwebservice, pps-tools, pure-ftpd,
  5283. python-configshell-fb, python-rtslib-fb, python-urwid, qlibc,
  5284. qt5location, shairport-sync, spidev_test, targetcli-fb,
  5285. tinyalsa, trinity, x264, yaml-cpp, ympd
  5286. Removed packages: libelf
  5287. Issues resolved (http://bugs.uclibc.org):
  5288. #261: New package: wxWidgets
  5289. #325: New package: ratpoison
  5290. #405: New package: OpenVZ tools
  5291. #1309: New package: rdiff-backup
  5292. #3427: New package: nginx
  5293. #3655: New package: libav
  5294. #3991: New Package: open-vm-tools (Vmware Tools)
  5295. #6878: dmraid: disabled on ARC
  5296. #6950: Full unicode support in ncurses
  5297. #7010: jamvm builds and runs fine under mips (be)
  5298. #7088: elfutils on Blackfin doesn't build
  5299. #7142: ecryptfs needs getent to run
  5300. #7280: CMake toolchain file uses the FORCE attribute on CMAKE_CXX_FLAGS
  5301. #7346: [2014.08rc3] vim-8ae50e3ef8bf.tar.gz can not be downloaded, ...
  5302. #7352: [2014.08-rc3] diffutils-3.3 failed on building
  5303. #7358: rpi-userland: linking with bcm_host doesn't give vc_dispmanx_*
  5304. #7364: monit builds a static application, even though BR2_PREFER_...
  5305. #7370: ngrep - requires --with-pcap-includes fully defined to find...
  5306. #7442: rootfs remount does not work as expected with sysvinit
  5307. #7448: Having export MACHINE="something" breaks glibc build on IMX6...
  5308. #7568: musl buildroot-toolchain does not put libgcc_s.so.1 into place
  5309. #7574: quota-4.01 fails to build statically
  5310. 2014.08, Released September 1st, 2014
  5311. Minor manual fixes/additions.
  5312. Updated/fixed packages: btrfs-progs, cmake, cppcms, exim,
  5313. lftp, libdaemon, libev, libgpgme, libiqrf, libnl, libplist,
  5314. libroxml, libwebsockets, mesa3d, mpd, mtdev2tuio, musepack,
  5315. perl-gd, php-geoip, php-gnupg, php-imagick, php-memcached,
  5316. php-ssh2, php-yaml, php-zmq, polarssl, ruby, systemd, taglib,
  5317. uboot-tools, upmpdcli, webkit, xapp_xfs, xapp_luit,
  5318. xscreensaver, yajl
  5319. Issues resolved (http://bugs.uclibc.org):
  5320. #7346: vim-8ae50e3ef8bf.tar.gz can not be downloaded, 404 not found
  5321. 2014.08-rc3, Released August 26th, 2014
  5322. Minor fixes.
  5323. User manual update / restructuring.
  5324. Updated/fixed packages: cairo, ecryptfs-utils, gettext,
  5325. gstreamer, gstreamer1, gutenprint, icu, imagemagick, jack2,
  5326. lbreakout2, libevas-generic-loaders, libftdi, libinput,
  5327. libtorrent, ltris, msgpack, ntp, php, procps-ng, pulseaudio,
  5328. thrift, tvheadend, usb_modeswitch, xmlstarlet,
  5329. Issues resolved (http://bugs.uclibc.org):
  5330. #7136: ecryptfs-utils needs gettext to run when glibc/eglibc...
  5331. #7322: libgomp dependency issue with imagemagick
  5332. #7328: Git dl of versions in x/y broken
  5333. 2014.08-rc2, Released August 18th, 2014
  5334. Fixes all over the tree.
  5335. User manual restructured / reworked.
  5336. Toolchain: Fix for C++ exceptions / pthread_exit() on
  5337. uClibc/glibc, C++-11 features with uClibc.
  5338. Updated/fixed packages: bandwidthd, bluez5_utils, empty,
  5339. espeak, fbv, ffmpeg, gd, gnupg2, gst1-plugin-good, iftop,
  5340. infozip, libcuefile, libeml, libnftl, localedef, ltrace,
  5341. matchbox, mpd, network-manager, nftables, ngrep, nut, openssl,
  5342. oprofile, perl, perl-net-ssleay, postgresql, pppd, procps-ng,
  5343. qt, subversion, synergy, systemd, tar, tftpd, webkit,
  5344. xapp_rstart, xbmc, xbmc-pvr-addons
  5345. Issues resolved (http://bugs.uclibc.org):
  5346. #7124: Use BR toolchain externally results a non-bootable...
  5347. #7208: Glibc C++ aplications crash if they use exceptions
  5348. #7250: Cannot build with -std=c++11
  5349. #7262: Generating locale en_US.UTF-8 fails on 64bit fedora..
  5350. #7286: systemd 215 doesn't build
  5351. 2014.08-rc1, Released August 8th, 2014
  5352. Fixes all over the tree and new features.
  5353. Architecture: Powerpc64 BE/LE added, AVR32 deprecated.
  5354. Improved altivec / SPE /atomic instructions
  5355. handling. Additional PowerPC CPU variants added.
  5356. Defconfigs: Atmel SAMA5D3, Congatec QMX6, Lego ev3, TS-5x00,
  5357. qemu-system-xtensa, qemu-aarch64-virt added. A number of
  5358. tweaks to existing ones. lpc32xx defconfigs removed.
  5359. Toolchain: Microblaze support for internal musl toolchain.
  5360. Default to GCC 4.8 for internal toolchain, remove deprecated
  5361. 4.3 and 4.6 versions.
  5362. External CodeSourcery / Linaro toolchain updates, option to
  5363. copy gconv libraries for external toolchains.
  5364. Infrastructure: graph-depends: misc fixes, transitive
  5365. dependencies are not drawn by default. Download handling is
  5366. now done using helper scripts. Integrity of downloads can now
  5367. be verified using sha* hashes. Subversion download now uses
  5368. peg revisions for robustness.
  5369. Legal-info: License info of local or overridden packages are
  5370. saved as well. Toolchain packages are also taken into account.
  5371. autotools: Static linking with libtool / v1.5 improvements.
  5372. Gettextize support, similar to autoreconf.
  5373. kconfig package infrastructure added.
  5374. Misc: Version selection for busybox dropped.
  5375. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  5376. alsamixergui, argus, armadillo, at, atftp, atk, avahi,
  5377. avrdude, axel, b43-firmware, b43-fwcutter, bandwidthd, bc,
  5378. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  5379. bmon, boa, bonnie, bootutils, bsdiff, btrfs-progs, bustle,
  5380. busybox, bwm-ng, bzip2, ca-certificates, cairo, can-utils,
  5381. ccache, ccrypt, chrony, cifs-utils, classpath, cloog, cmake,
  5382. collectd, connman, coreutils, cosmo, cppcms, cramfs, crda,
  5383. cryptodev-linux, cryptodev, ctorrent, cvs, dbus-cpp,
  5384. dbus-glib, dbus-python, dbus, dcron, dejavu, devmem2,
  5385. dfu-util, dhcp, dhcpcd, dhcpdump, dhrystone, dialog, dillo,
  5386. distcc, dmidecode, dmraid, dnsmasq, doom-wad, dropbear,
  5387. dropwatch, dsp-tools, dtv-scan-tables, dvb-apps, e2fsprogs,
  5388. e2tools, eeprog, eigen, elf2flt, elftosb, enlightenment,
  5389. enscript, espeak, ethtool, eudev, evemu, exim, expedite,
  5390. explorercanvas, ezxml, faifa, fan-ctrl, fconfig, feh,
  5391. fetchmail, ffmpeg, fftw, file, fio, fis, flann, flashrom,
  5392. flex, flot, fltk, fontconfig, freerdp, freescale-imx,
  5393. freetype, ftop, gcc, gd, gdb, genimage, genromfs, gettext,
  5394. giblib, glib-networking, glibc, gmp, gnupg, gnutls, gpm, gpsd,
  5395. gptfdisk, gpu-viv-bin-imx6q, gqview, grantlee, gst-ffmpeg,
  5396. gst-fsl-plugins, gst1-libav, gst1-plugins-bad,
  5397. gst1-plugins-ugly, gtk2-engines, gtk2-theme-hicolor, gtkperf,
  5398. gvfs, haserl, hdparm, hostapd, httping, i2c-tools, icu,
  5399. imagemagick, imx-lib, inadyn, inotify-tools, input-tools,
  5400. ipkg, iproute2, iputils, irda-utils, iw, jack2, jpeg, jquery,
  5401. jquery-keyboard, jquery-mobile, jquery-validation, jsmin, kbd,
  5402. kexec, kmod, knock, latencytop, lcdapi, leafpad, lesstif,
  5403. lftp, libaio, libarchive, libargtable2, libart, libatasmart,
  5404. libatomic_ops, libbsd, libcap-ng, libcec, libcgicc, libcgroup,
  5405. libconfuse, libcurl, libdrm, libdvdnav, libdvdread,
  5406. libeXosip2, libedit, liberation, libesmtp, libev, libevas,
  5407. libevdev, libevent, libfcgi, libffi, libfreefare, libfslcodec,
  5408. libfslparser, libfslvpuwrap, libgail, libgcrypt, libglade,
  5409. libglib2, libgpgme, libgtk2, libhid, libical, libiconv,
  5410. libiqrf, libjpeg, liblog4c-localtime, libmbus, libmicrohttpd,
  5411. libmms, libndp, libnftnl, libnl, libnspr, libnss, liboauth,
  5412. libpcap, libpng, libpthsem, libqmi, libraw, libraw1394,
  5413. librsvg, libsoc, libsoup, libsvgtiny, libsysfs, libtasn1,
  5414. libtirpc, libtorrent, libusb, libv4l, libwebsockets, libxcb,
  5415. libxml2, libyaml, links, linux-firmware, linux-fusion,
  5416. linux-headers, linux-pam, lite, live555, lm-sensors,
  5417. lockfile-progs, lpc3250loader, lshw, lsof, lsuio, ltrace,
  5418. ltris, lua-messagepack, luainterpreter, luajit, luaposix,
  5419. luarocks, lvm2, lxc, lz4, lzo, make, makedevs, mdadm,
  5420. mediastreamer, mesa3d, metacity, minidlna, mkpasswd,
  5421. modem-manager, mongoose, mpd, mpg123, msgpack, mtd, mtools,
  5422. mtr, musepack, musl, mysql, nano, nasm, nbd, ncurses, ndisc6,
  5423. netatalk, netplug, network-manager, nftables, ngircd, nodejs,
  5424. nss-mdns, ntp, nut, olsr, open2300, opencv, openntpd, openocd,
  5425. openpgm, openpowerlink, openssh, openssl, openswan, openvpn,
  5426. opkg, oprofile, opus-tools, orc, p910nd, pango, parted,
  5427. pax-utils, pcmanfm, perf, perl, perl-module-build, php,
  5428. pixman, pkgconf, poco, polarssl, popt, portmap, postgresql,
  5429. prboom, protobuf-c, proxychains-ng, psmisc, psplash, ptpd2,
  5430. python,
  5431. python-{bottle,dpkt,id3,mad,msgpack,nfc,pygame,pyzmq,simplejson},
  5432. python3, qhull, qt, qt5base, qt5connectivity, qt5declarative,
  5433. qt5graphicaleffects, qt5multimedia, qt5quickcontrols,
  5434. qt5sensors, qt5svg, qt5webkit, quagga, quota, radvd, rdesktop,
  5435. read-edid, rpcbind, rpi-firmware, rpi-userland, rpm,
  5436. rsh-redone, rsync, rt-tests, rtmpdump, rtorrent, rubix, ruby,
  5437. samba, samba4, sane-backends, sawman, sconeserver, setserial,
  5438. sg3_utils, shared-mime-info, smartmontools, smcroute, snappy,
  5439. socketcand, spawn-fcgi, sqlite, squashfs, squid, sredird,
  5440. startup-notification, statserial, strongswan, stunnel,
  5441. sunxi-mali, supervisor, synergy, sysklogd, sysprof, sysstat,
  5442. systemd, tcpdump, tcpreplay, texinfo, thrift, thttpd, ti-gfx,
  5443. ti-utils, tinyhttpd, torsmo, trace-cmd, transmission, tslib,
  5444. tstools, tvheadend, tzdata, uboot-tools, uclibc, udev,
  5445. udpcast, usb_modeswitch, usbmount, util-linux, valgrind, vim,
  5446. vlc, w_scan, wayland, webrtc-audio-processing, weston, wget,
  5447. wireless-regdb, wireless_tools, wireshark, wpa_supplicant,
  5448. xapp_{twm,xconsole,xcursorgen,xedit,xfs,xinit,xrandr},
  5449. xdriver_xf86-video-intel, xlib_lib{FS,ICE,Xext,Xfont,Xft,Xi},
  5450. xproto_fontsproto, xproto_inputproto, xserver_xorg-server,
  5451. x11vnc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons, xterm, xvkbd,
  5452. xz
  5453. New packages: flickcurl, fmc, fmlib, geoip, gnupg2,
  5454. google-breakpad, imx-vpu, isl, kexec-lite, libglew, libglu,
  5455. libinput, libksba, libmemcached, libmpdclient, librtlsdr,
  5456. libuv, libva, libva-intel-driver, linux-zigbee, memcached,
  5457. mpdecimal, ncmpc, opencore-amr, patchelf, perl-datetime-tiny,
  5458. perl-gd, perl-gdgraph, perl-gdtextutil, perl-io-socket-ssl,
  5459. perl-json-tiny, perl-mojolicious, perl-net-ssleay,
  5460. perl-path-tiny, perl-try-tiny, perl-xml-libxml,
  5461. perl-xml-namespacesupport, perl-xml-sax, perl-xml-sax-base,
  5462. php-geoip, php-memcached, pifmrds, pinentry, powerpc-utils,
  5463. procps-ng, pwgen, python-cffi, python-daemon, python-flup,
  5464. python-ipython, python-numpy, qt5enginio, qt5webkit-examples,
  5465. qt5websockets, simicsfs, sispmctl, sox, sshpass, tclap,
  5466. twolame, upmpdcli, whois, xlib_libxshmfence, xproto_dri3proto
  5467. Removed packages: procps
  5468. Issues resolved (http://bugs.uclibc.org):
  5469. #5750: Doing a Buildroot build from /usr doesn't work
  5470. #5900: config flags to the Xenomai build system
  5471. #6230: Cannot compile gcc without threads (uClibc-based)
  5472. #6626: procps Unknown HZ value! (XX) Assume 100
  5473. #7118: Package "thrift" requires atomic operations
  5474. #7154: Local uClibc config file gets overwritten using ...
  5475. #7160: host-xz not built
  5476. #7166: hostapd: segfault when using RT5370
  5477. #7172: Name collision of rpath token expansion and internal..
  5478. #7178: NTPd package cannot sync time without a proper ntp.conf
  5479. #7184: supervisord depends on libxml2 implicitly
  5480. #7196: Unable to build on UBUNTU13.10
  5481. #7268: python 2.7 compilation issue on a Debian/Ubuntu ...
  5482. 2014.05, Released May 31st, 2014
  5483. Minor fixes.
  5484. Minor manual fixes. U-Boot now defaults to spl/u-boot-spl.bin
  5485. for the spl file.
  5486. Updated/fixed packages: exim, glibc, gnutls, libfribidi,
  5487. qt5base, qt5webkit, sysklogd, thrift, u-boot
  5488. 2014.05-rc3, Released May 28th, 2014
  5489. Minor fixes.
  5490. Updated/fixed packages: acl, attr, connman, dosfstools,
  5491. dropbear, dvb-apps, exim, flite, gdb, httping, hwdata,
  5492. lesstif, libnss, libv4l, lttng-babeltrace, midori, monit,
  5493. mplayer, php, python2, rdesktop, rpi-userland, ruby, samba,
  5494. samba4, slang, xbmc
  5495. Issues resolved (http://bugs.uclibc.org):
  5496. #7100: license info for package 'acl' missing
  5497. #7106: license info for package 'attr' missing
  5498. #7112: license info for package 'hwdata'
  5499. 2014.05-rc2, Released May 21st, 2014
  5500. Fixes all over the tree.
  5501. Stripping using sstrip has been deprecated.
  5502. BR2_EXTERNAL can now also be used to implement custom
  5503. filesystem types.
  5504. The newly added BR2_GRAPH_DEPTH variable to limit the depth of
  5505. the generated dependency graph has been renamed to
  5506. BR2_GRAPH_DEPS_OPTS, so additional options can be supported in
  5507. the future.
  5508. The virtual package infrastructure will now error out early
  5509. if multiple packages providing the same virtual package has
  5510. been enabled (E.G. opengl). This change requires that the
  5511. packages explicitly declare what virtual package(s) they
  5512. provide.
  5513. Updated/fixed packages: acpid, armadillo, avahi, bellagio,
  5514. btrfs-progs, cairo, clapack, directfb, duma, ecryptfs-utils,
  5515. elfutils, eudev, fbgrab, fio, flann, fluxbox, gdb, gpm,
  5516. gpu-viv-bin-mx6q, gst1-plugins-good, gst-plugins-good,
  5517. imagemagick, iprutils, ipsec-tools, jack2, libdvdnav,
  5518. libdvdread, libnss, libunwind, linux-headers, lsof, lua,
  5519. luajit, matchbox-keyboard, mesa3d, mpd, mplayer, mtr, mysql,
  5520. netsnmp, nodejs, openpowerlink, openvpn, pciutils,
  5521. php-imagick, postgresql, pulseaudio, qt5quick1, rpi-userland,
  5522. rsyslog, samba, samba4, sane-backends, sunxi-mali, systemd,
  5523. ti-gfx, tstools, udev, webkit, wpa_supplicant, xbmc,
  5524. xlib_libXpm, xserver_xorg-server, zyre
  5525. Issues resolved (http://bugs.uclibc.org):
  5526. #5396: Boot hangs when starting samba if BR2_ENABLE_LOCALE...
  5527. #7016: Git issues in resulting buildroot tar
  5528. #7094: pciutils doesn't build on Blackfin
  5529. 2014.05-rc1, Released May 13th, 2014
  5530. Fixes all over the tree and new features.
  5531. Architectures: Support for MIPS o32 ABI on MIPS-64 targets has
  5532. been removed. Building o32 ELF files for MIPS64 is an exotic
  5533. configuration that nobody should be using. If o32 is required,
  5534. then is better if it's built for MIPS 32-bit cores so only
  5535. 32-bit instructions will be used leading to a more efficient
  5536. o32 usage.
  5537. Support for the ARM A12 variant and Intel corei7.
  5538. Configs: Minnowboard and Altera SoCkit added, QEMU updates.
  5539. Bootloaders: Grub2 and gummiboot support, syslinux support
  5540. extended.
  5541. Toolchains: GCC 4.9. Glibc 2.19. Support for the musl C
  5542. library for internal and external toolchains. 4.8-R3 support
  5543. for ARC, Internal toolchain support for Aarch64 and
  5544. Microblaze. Environment variable to control debug output of
  5545. toolchain wrapper renamed to BR2_DEBUG_WRAPPER to match the
  5546. other variables. Toolchain tuple vendor name can now be
  5547. customized. Updated external Linaro ARM/Aarch64
  5548. toolchains. Added external Linaro ARMEB toolchain.
  5549. A GDB gdbinit file is now generated for external toolchains to
  5550. automatically set the correct sysroot.
  5551. Kconfig handling for minimum kernel headers version required
  5552. for packages. Now packages needing specific kernel header
  5553. features can specify these requirements in Kconfig.
  5554. Infrastructure: Support for (but disabled as it leads to
  5555. unreproducible builds) toplevel parallel builds. See the
  5556. comment at the top of Makefile for details about how to enable
  5557. it and what the problems are if you want to test it.
  5558. Python package infrastructure extended to support Python 3.x
  5559. Perl and virtual package infrastructure support added.
  5560. PRE_*_HOOKS support for all build steps.
  5561. Updated/fixed packages: acpid, agentpp, aiccu, apr, avahi,
  5562. barebox, bash, beecrypt, bellagio, binutils, boost,
  5563. boot-wrapper-aarch64, bustle, busybox, ca-certificates, cairo,
  5564. ccache, ccid, cgilua, chrony, cifs-utils, civetweb, cmake,
  5565. collectd, connman, coreutils, coxpcall, cppcms, cppzmq, crda,
  5566. cryptodev, cryptsetup, cups, czmq, dbus, dhcpdump, directfb,
  5567. dmalloc, dmraid, dnsmasq, dosfstools, dsp-tools, dtc,
  5568. dvb-apps, ebtables, ecryptfs-utils, eigen, erlang, ethtool,
  5569. evemu, evtest, f2fs-tools, fdk-aac, feh, ffmpeg, file, filemq,
  5570. flac, flot, fmtools, fping, freetype, fswebcam, gcc, gd, gdb,
  5571. gettext, giblib, git, glibc, glibmm, glib-networking, gmp,
  5572. gnutls, gpm, gpsd, gpu-viv-bin-mx6q, grep, gst1-libav,
  5573. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  5574. gst1-plugins-ugly, gst-ffmpeg, gst-fsl-plugins, gst-omx,
  5575. gst-plugins-good, gstreamer1, gvfs, harfbuzz, haveged,
  5576. hostapd, htop, httping, ifplugd, iftop, igmpproxy,
  5577. imagemagick, imlib2, imx-lib, infozip, intltool, iproute2,
  5578. ipsec-tools, ipset, jansson, jpeg, jpeg-turbo, jquery,
  5579. jquery-keyboard, jquery-ui, jquery-ui-themes, json-glib,
  5580. json-javascript, kexec, kmod, lame, lbase64, lbreakout2,
  5581. lcdproc, lftp, libao, libatasmart, libatomic_ops, libcap,
  5582. libcdio, libcec, libcgicc, libcgroup, libcurl, libdrm,
  5583. libdvdnav, libdvdread, libegl, libeio, libenca, libesmtp,
  5584. libevas, libevdev, libfribidi, libfslcodec, libfslparser,
  5585. libfslvpuwrap, libgail, libgles, libglib2, libgtk2, libhid,
  5586. libjpeg, libmbim, libmicrohttpd, libmodplug, libnftnl,
  5587. libnspr, libogg, libopenmax, libopenvg, libpcap, libplayer,
  5588. libpng, libpthread-stubs, librsvg, libsigsegv, libsocketcan,
  5589. libsoup, libtasn1, libtool, libtpl, libunwind, liburcu,
  5590. libusb, libwebsockets, libxcb, libxml2, libxmlpp, libyaml,
  5591. lighttpd, linphone, linux-firmware, linux-headers, ljsyscall,
  5592. lmbench, lsof, ltp-testsuite, ltris, lttng-babeltrace,
  5593. lttng-libust, lttng-modules, lttng-tools, lua, lua-cjson,
  5594. luacrypto, lua-ev, luaexpat, luaexpatutils, luafilesystem,
  5595. luainterpreter, luajit, lua-msgpack-native, luaposix,
  5596. luarocks, luasec, luasocket, luasql-sqlite3, lvm2, macchanger,
  5597. memstat, mesa3d, metacity, minidlna, mmc-utils,
  5598. mobile-broadband-provider-info, modem-manager, mongrel2,
  5599. monit, mpd, mplayer, msmtp, mtd, mtools, mutt, mysql, nasm,
  5600. ncurses, ne10, netatalk, netsnmp, nettle, network-manager,
  5601. newt, nfs-utils, nmap, nodejs, ntfs-3g, ntp, nut, ofono, ola,
  5602. olsr, omniorb, opencv, opengl, openpgm, openssh, openssl,
  5603. openswan, openvpn, orbit, orc, p11-kit, pango, parted,
  5604. pciutils, pcre, pcsc-lite, perf, perl, perl-xml-parser, php,
  5605. picocom, pixman, pkgconf, poppler, popt, portmap, powervr,
  5606. pppd, pptp-linux, proftpd, protobuf, protobuf-c, ptpd2,
  5607. pulseaudio, python, python3, python-bottle, python-m2crypto,
  5608. python-netifaces, python-pyasn, python-pycrypto,
  5609. python-pygame, python-pysnmp, python-pysnmp-apps,
  5610. python-pysnmp-mibs, python-serial, python-setuptools,
  5611. qextserialport, qt, qt5, qt5base, qt5connectivity,
  5612. qt5declarative, qt5graphicaleffects, qt5imageformats,
  5613. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  5614. qt5sensors, qt5serialport, qt5svg, qt5webkit, qt5x11extras,
  5615. qt5xmlpatterns, qtuio, qwt, radvd, readline, rings,
  5616. rpi-firmware, rpi-userland, rsh-redone, rsync, rsyslog, rtai,
  5617. rtmpdump, rt-tests, ruby, samba, sconeserver, scons, sdl,
  5618. sdl_image, sdl_mixer, sg3_utils, slang, smstools3, snmppp,
  5619. socat, speex, sqlcipher, sqlite, squashfs, squid, strongswan,
  5620. stunnel, sunxi-boards, sunxi-mali, sunxi-tools, sylpheed,
  5621. syslinux, sysstat, systemd, taglib, tcl, tcllib, tcpreplay,
  5622. tidsp-binaries, ti-gfx, tmux, tvheadend, tzdata, uboot,
  5623. uboot-tools, uclibc, udev, udisks, ulogd, usb_modeswitch,
  5624. usb_modeswitch_data, usbmount, util-linux, valgrind, vlc,
  5625. webkit, weston, wget, wireshark, wpa_supplicant, wsapi,
  5626. w_scan, xapp_appres, xapp_bdftopcf, xapp_beforelight,
  5627. xapp_bitmap, xapp_editres, xapp_fslsfonts, xapp_fstobdf,
  5628. xapp_iceauth, xapp_ico, xapp_mkfontscale, xapp_rgb,
  5629. xapp_rstart, xapp_sessreg, xapp_showfont, xapp_twm,
  5630. xapp_viewres, xapp_xauth, xapp_xbacklight, xapp_xcalc,
  5631. xapp_xclock, xapp_xditview, xapp_xdpyinfo, xapp_xdriinfo,
  5632. xapp_xev, xapp_xfd, xapp_xfontsel, xapp_xfs, xapp_xfsinfo,
  5633. xapp_xgc, xapp_xhost, xapp_xinit, xapp_xkbutils, xapp_xkill,
  5634. xapp_xload, xapp_xlsclients, xapp_xlsfonts, xapp_xmag,
  5635. xapp_xman, xapp_xmessage, xapp_xmodmap, xapp_xprop,
  5636. xapp_xrandr, xapp_xrdb, xapp_xrefresh, xapp_xset,
  5637. xapp_xsetroot, xapp_xsm, xapp_xstdcmap, xapp_xvidtune,
  5638. xapp_xvinfo, xapp_xwd, xapp_xwininfo, xcb-util-wm,
  5639. xdriver_xf86-input-evdev, xdriver_xf86-input-joystick,
  5640. xdriver_xf86-input-keyboard, xdriver_xf86-input-mouse,
  5641. xdriver_xf86-input-synaptics, xdriver_xf86-input-vmmouse,
  5642. xdriver_xf86-video-ark, xdriver_xf86-video-ast,
  5643. xdriver_xf86-video-ati, xdriver_xf86-video-cirrus,
  5644. xdriver_xf86-video-dummy, xdriver_xf86-video-fbdev,
  5645. xdriver_xf86-video-geode, xdriver_xf86-video-glide,
  5646. xdriver_xf86-video-glint, xdriver_xf86-video-i128,
  5647. xdriver_xf86-video-intel, xdriver_xf86-video-mach64,
  5648. xdriver_xf86-video-mga, xdriver_xf86-video-neomagic,
  5649. xdriver_xf86-video-newport, xdriver_xf86-video-nv,
  5650. xdriver_xf86-video-openchrome, xdriver_xf86-video-r128,
  5651. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  5652. xdriver_xf86-video-sis, xdriver_xf86-video-tdfx,
  5653. xdriver_xf86-video-tga, xdriver_xf86-video-trident,
  5654. xdriver_xf86-video-vesa, xdriver_xf86-video-vmware,
  5655. xdriver_xf86-video-voodoo, xenomai, xerces, xl2tp, xlib_libFS,
  5656. xlib_xtrans, xproto_xproto, xserver_xorg-server,
  5657. xutil_util-macros, zeromq, zic, zmqpp, zyre
  5658. New packages: armadillo, btrfs-progs, clapack, cosmo, dado,
  5659. dbus-triggerd, dtv-scan-tables, e2tools, eudev, exim, expect,
  5660. fetchmail, flann, flite, gnu-efi, grub2, gummiboot, heimdal,
  5661. iprutils, iptraf-ng, jack2, jquery-mobile, libee, libestr,
  5662. libgc, libgl, liblogging, libndp, libsoxr, libstrophe,
  5663. libubox, libuci, libxmlrpc, ljlinenoise, lpeg, lpty, lrandom,
  5664. lsqlite3, lua-coat, lua-coatpersistent, lua-csnappy, luajson,
  5665. lualogging, lua-messagepack, lua-testmore, lunit, lzip, lzlib,
  5666. musl, nftables, opentyrian, opentyrian-data,
  5667. perl-module-build, php-gnupg, php-imagick, php-ssh2, php-yaml,
  5668. php-zmq, postgresql, python-libconfig, python-pypcap,
  5669. python-pyrex, qdecoder, qhull, samba4, smack, tz, tzdump, ucl,
  5670. upx, vo-aacenc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons,
  5671. yaffs2utils, zlog, znc
  5672. Removed packages: crosstool-ng, python-distutilscross, vala
  5673. Issues resolved (http://bugs.uclibc.org):
  5674. #6842: Checking external toolchain for eabihf
  5675. #6956: Packaging libsoxr
  5676. #6986: Make legal-info fails on uboot versions before 2014.01
  5677. #6992: Incorrect installation rights on external kernel module..
  5678. 2014.02, Released February 27th, 2014
  5679. Minor fixes.
  5680. Updated/fixed packages: cegui06, cppdb, e2fsprogs, gcc, gdb,
  5681. gst1-plugins-bad, gstreamer, gstreamer1, haserl, imagemagick,
  5682. libpng, libxml2, lua, luajit, luarock, ncftp, openswan,
  5683. pcsc-lite, qt5connectivity, ramsmp, strongswan, vlc
  5684. Issues resolved (http://bugs.uclibc.org):
  5685. #6938: mkuser script generates wrong password for new user in..
  5686. 2014.02-rc3, Released February 25th, 2014
  5687. Minor fixes.
  5688. Updated/fixed packages: aiccu, ala-lib, alsa-utils, binutils,
  5689. cairo, coreutils, dhcpcd, distcc, efl, evas, iputils, gdb,
  5690. gpsd, gst-fsl-plugins, icu, libcec, libcgi, libplayer,
  5691. libsecret, libsepol, libsigsegv, libtool, libv4l,
  5692. linux-headers, matchbox-lib, mpg123, ncftp, opencv, pcmanfm,
  5693. pixman, pv, qt, rt-tests, sawman, sconeserver, sdl, thrift,
  5694. tvheadend, util-linux, webkit, xscreensaver
  5695. Issues resolved (http://bugs.uclibc.org):
  5696. #4706: Removing .stamp_target_installed does not trigger...
  5697. #5030: busybox built fails if we use an override src dir...
  5698. #5420: Dbus and /var/run management
  5699. #5768: Not able to build ALSA-Lib for static build
  5700. #5774: Not able to build ALSA-Utils for static build
  5701. #6542: external python modules fail to compile to pyc if...
  5702. #6764: Support for kernel signed modules
  5703. #6794: Busybox compiled from buildroot hangs on pass from...
  5704. 2014.02-rc2, Released February 20th, 2014
  5705. Fixes all over the tree. Static linking / nommu fixes and
  5706. annotations for several packages.
  5707. Updated/fixed packages: boost, busybox, collectd, coreutils,
  5708. dropbear, elfutils, feh, gcc, gst1-libav, imagemagick, iozone,
  5709. jimtcl, kexec, libvncserver, lvm2, lxc, mplayer, netsnmp, nut,
  5710. opencv, python, python3, qtuio, systemd, thrift, transmission,
  5711. uclibc, vlc, webkit
  5712. Issues resolved (http://bugs.uclibc.org):
  5713. #5450: AT91SAM9260 Bootstrap compilation problem
  5714. #5582: libiconv 1.14 failed to build
  5715. #5624: When building directfb, BR2_TARGET_LDFLAGS not used by..
  5716. #5852: [2012.11] usb_modeswitch should depends of "BR2_PACK..
  5717. #6218: binutils-2.23.2/gas fails with undefined reference to..
  5718. #6236: binutils-2.23.2/bfd fails with undefined reference to..
  5719. #6470: If the build directory is a child of /usr, the build..
  5720. #6776: systemd error: static declaration of 'execvpe' follows..
  5721. #6818: toolchainfile.cmake has absolut path references
  5722. 2014.02-rc1, Released February 11th, 2014
  5723. Fixes all over the tree and new features.
  5724. Support for external packages/defconfigs (BR2_EXTERNAL). See
  5725. user manual for details.
  5726. Cleanup of environment variable names for consistency. The
  5727. download directory location override (BUILDROOT_DL_DIR) is now
  5728. called BR2_DL_DIR. Likewise the name of the current .config is
  5729. renamed from BUILDROOT_CONFIG to BR2_CONFIG. Please update
  5730. your post build scripts if you use this! BUILD_DIR is now also
  5731. exported to the post build/image scripts.
  5732. Toolchain: GCC 4.8 fix for ARM stack corruption, reverted
  5733. uClibc pread/pwrite backport as they cause issues on certain
  5734. architectures, new Linaro and Sourcery Codebench toolchains.
  5735. x86: Support for AMD Jaguar cores, SSE4.x, SH: SH2/SH3/SH3EB
  5736. variants removed, Microblaze: Internal toolchain support
  5737. Legal infrastructure: Info is now split between host and
  5738. target packages, large number of license annotations.
  5739. Lua: selection between lua 5.1 / 5.2, luarocks support
  5740. Python: package infrastructure, many new packages.
  5741. Defconfigs: Armadeus APF51 + Zedboard added, apf27, apf28,
  5742. beaglebone, microblaze, pandaboard, qemu, raspberry pi
  5743. updated.
  5744. Updated/fixed packages: aiccu, alsa-lib, alsa-utils,
  5745. am33x-cm3, aumix, autoconf, automake, barebox, bellagio,
  5746. berkeleydb, binutils, bison, blackbox, bluez_utils, boost,
  5747. bustle, busybox, cairo, can-utils, ccache, ccid, cgilua,
  5748. cifs-utils, civetweb, cmake, collectd, connman, copas,
  5749. coreutils, coxpcall, cppzmq, cramfs, crda, cryptodev-linux,
  5750. cryptsetup, cups, czmq, dhcpcd, dhcpdump, dhrystone, dialog,
  5751. dmraid, dnsmasq, dosfstools, dropbear, dropwatch, dtc, duma,
  5752. dvb-apps, e2fsprogs, eglibc, eigen, elf2flt, erlang, ethtool,
  5753. f2fs-tools, ffmpeg, file, filemq, fio, flashrom, flex,
  5754. fluxbox, fontconfig freerdp, freetype, gadgetfs-test, gawk,
  5755. gcc, gdb, gdbm, gettext, git, glibc, gnupg, gnutls, gob2,
  5756. gpsd, grep, grub, gst-ffmpeg, gst-plugins-good,
  5757. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  5758. gst1-plugins-ugly, gstreamer, gstreamer1, gtest, icu, iftop,
  5759. imagemagick, inadyn, infozip, iozone, iproute2, iptables, iw,
  5760. jpeg, jpeg-turbo, jq, kexec, kmod, knock, lbase64, lcdapi,
  5761. lftp, libcdaudio, libcgi, libcgicc, libcuefile, libcurl,
  5762. libdmtx, libdrm, libdvdnav, libdvdread, libegl, libevent,
  5763. libexif, libfcgi, libfreefare, libgles, libglib2, libllcp,
  5764. libmicrohttpd, libmpd, libnfc, libnl, libnss, libopenmax,
  5765. libopenvg, libpcap, libpfm4, libplayer, libpng, libqmi,
  5766. libreplaygain, libroxml, libsamplerate, libsexy, libsigsegv,
  5767. libsndfile, libsoc, libtasn1, libtorrent, libtpl, libupnp,
  5768. libusb, libusb-compat, libvorbis, libxcb, libxml2, libxmlpp,
  5769. libyaml, lighttpd, linknx, linux-firmware, linux-pam, live555,
  5770. lm_sensors, lmbench, lockdev, logrotate, lrzsz, ltrace, lua,
  5771. lua-ev, lua-msgpack-native, luabitop, luaexpat, luaexpatutils,
  5772. luafilesystem, luajit, luaposix, luasec, luasocket,
  5773. luasql-sqlite3, m4, matchbox, mdadm, minicom, mongrel2, mpc,
  5774. mpd, mpg123, mplayer, mtd, mysql, lvm2, mxml, ncurses, ne10,
  5775. neard, neardal, netsnmp, netstat-nat, network-manager, nodejs,
  5776. numactl, ofone, ola, olsr, omniorb, open2300, opencv,
  5777. openpowerlink, openssh, openssl, openvpn, oprofile, opus,
  5778. opus-tools, orbit, p11-kit, parted, pcre, pcsc-lite, perl,
  5779. php, poco, poppler, powervr, protobuf-c, psplash, python,
  5780. python-bottle,
  5781. python-{crc16,distutilscross,dpkt,id3,ipy,m2crypto,mad,meld},
  5782. python-{netifaces,nfc,protobuf,pygame,pyparsing,pyro,pyzmq},
  5783. python-{serial,setuptools}, qt, qt5base, qt5connectivity,
  5784. qt5declarative, qt5graphicaleffects, qt5jsbackend,
  5785. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  5786. qt5webkit, radvd, redis, rings, rng-tools, rpcbind,
  5787. rpi-firmware, rpi-userland, rt-tests, sam-ba, samba, sawman,
  5788. sconeserver, scons, sdl, sg3_utils, snappy, snmppp,
  5789. socketcand, spice, spice-protocol, sqlcipher, sqlite, squid,
  5790. sshfs, strace, subversion, sunxi-mali, supervisor, sysklogd,
  5791. sysprof, sysstat, systemd, sysvinit, taglib, tar, tcpdump,
  5792. ti-gfx, ti-utils, tinymembench, tn5250, trace-cmd,
  5793. transmission, tvheadend, tzdata, zxing, uboot, uboot-tools,
  5794. uclibc, udev, udpcast, ulogd, urg, usb_modeswitch_data,
  5795. util-linux, vala, valgrind, vorbis-tools, wavpack, wayland,
  5796. weston, wget, wireless-regdb, wireshark, wpa_supplicant,
  5797. wsapi, xavante, xapp_xdpyinfo, xapp_xrandr, xcb-proto,
  5798. xdriver_xf86-video-intel, xenomai, xkeyboard-config, xl2tp,
  5799. xlib_lib{FS,SM,X11},
  5800. xlib_libX{au,aw,composite,cursor,damage,ext,fixes,font,i},
  5801. xlib_libX{inerama,mu,pm,randr,render,res,t,tst,v,xf86dga},
  5802. xlib_libXxf86vm, xlib_libdmx, xlib_libfontenc,
  5803. xlib_libpciaccess, xlib_xtrans, xproto_dri2proto,
  5804. xproto_{glproto,inputproto,presentproto,randrproto,videoproto},
  5805. xproto_xextproto, xproto_xproto, xutil_util-macros,
  5806. xutil_makedepend, zic, zmqpp, zxing, zsh, zyre
  5807. New packages: apitrace, avrdude, c-ares, ca-certificates,
  5808. cwiid, dbus-cpp, evemu, fping, fswebcam, gpm, gst1-libav,
  5809. haveged, intel-microcode, iucode-tools, jasper, joe, ktap,
  5810. lbreakout2, libass, libbluray, libcdio, libenca, libevdev,
  5811. libmbim, libmodplug, libnfs, libnftnl, libplist, libshairplay,
  5812. libsocketcan, ljsyscall, log4cplus, ltris, luainterpreter,
  5813. luarocks, minidlna, mmc-utils, modemmanager, mtr, net-tools,
  5814. python-configobj, python-dialog, python-json-schema-validator,
  5815. python-keyring, python-msgpack, python-posix-ipc,
  5816. python-pyasn, python-pycrypto, python-pysnmp,
  5817. python-pysnmp-apps, python-pysnmp-mibs, python-pyusb,
  5818. python-simplejson, python-tornado, python-versiontools,
  5819. rtmpdump, rtptools, smcroute, smstools3, tcpreplay, thrift,
  5820. ti-uim, tinyxml, tmux, vlc, wmctrl, xconsole
  5821. Removed packages: autoconf, automake, ccache, cpanminus, lzma,
  5822. netkitbase, netkittelnet, pkg-config, squashfs3, ttcp, xstroke
  5823. Issues resolved (http://bugs.uclibc.org):
  5824. #65: new package: dbus c++ language bindings
  5825. #769: Update configuration menu for MIPS target
  5826. #2419: Add a bundle of Lua modules
  5827. #2629: Segmentation faults and division by zero in Grub on ext2
  5828. #3811: Added auto-mount for USB and SD Card (mdev) (for 2011.05)
  5829. #4339: Allow override of DL_DIR in extract step
  5830. #4363: Make sure that copied linux and busybox defconfig are...
  5831. #4454: There should be simple way to update image, when chang...
  5832. #5024: grub fails to build for x86_64 target architecture
  5833. #5066: New-Package: net-tools
  5834. #5072: ncurses: add ncurses-progs to target
  5835. #5294: uclibc build ignores target CFLAGS and LDFLAGS
  5836. #5366: Login doesn't work with util-linux versions of login/agetty
  5837. #5378: dropbear Makefile broken
  5838. #5390: System banner - change to empty doesn't remove /etc/issue
  5839. #5780: spurious build failure because it cannot remove ubinize.cfg
  5840. #5798: ncurses-5.9 fails to compile statically
  5841. #5810: Buildroot 2012.11: Additional GCC option "-msoft-float" ...
  5842. #6080: Git fetch caching
  5843. #6092: Bootable ISO image creation seems to have stopped working..
  5844. #6272: coreutils build fails
  5845. #6434: apply-patches.sh does not work recursively
  5846. #6446: eglibc doesn't install ldconfig to target
  5847. #6484: Add c-ares
  5848. #6596: Slow bootup if mdev is chosen
  5849. #6656: Build Qt5 with ccache
  5850. #6662: internal compiler error: Segmentation fault during making..
  5851. #6722: Usage of $($(PKG)_DIR_PREFIX) is an issue with linux package
  5852. #6752: genext2fs: e2fsck must run before tunefs -U random
  5853. #6770: openssl 1.0.1f fails with ccache
  5854. #6830: Qt5: no fonts are installed
  5855. #6848: Qt5: no text shown in simple QWidget / frame-buffer setup
  5856. #6854: Update to Qt 5.2.1
  5857. 2013.11, Released November 30th, 2013:
  5858. Minor fixes.
  5859. Updated/fixed packages: apr, binutils, dbus-python, dropwatch,
  5860. ecryptfs-utils, eglibc, gdb, gpsd, grantlee, hostapd,
  5861. iptables, qlibiscsi, libnspr, libnss, libpfm4, libtool,
  5862. lua-ev, lvm2, mplayer, qt, qt5, quagga, ruby, tinymembench,
  5863. tvheadend, util-linux, wpa_supplicant
  5864. Issues resolved (http://bugs.uclibc.org):
  5865. #1279: Buildroot compiled Busybox and Coreutils LFS issues
  5866. #2995: -fstack-protector-all causes ssh to SIGSEGV
  5867. #5570: Cannot compile software on the target machine
  5868. #6428: util-linux libmount segfaults with patch from buildroot
  5869. #6500: php fails to build for armel
  5870. #6554: gdb needs to dependents on host texinfo
  5871. #6692: GNU nano fails to compile for x86_64
  5872. #6704: wpa_supplicant: fix wrong path to executable file in D-Bus
  5873. 2013.11-rc3, Released November 26th, 2013
  5874. Fixes all over the tree.
  5875. Architecture: Mark MIPS I, II, III and IV as deprecated.
  5876. Updated/fixed packages: beecrypt, dbus, e2fsprogs, libcap-ng,
  5877. libglib2, libroxml, libsigsegv, libvncserver, lxc, mdadm,
  5878. mongoose, nut, ola, omniorb, openssl, pcre, php, poco,
  5879. protobuf-c, pv, qt5base, ruby, schifra, squid, sunxi-mail,
  5880. swig, ti-gfx, tinymembench, uclibc, udisks, vim
  5881. 2013.11-rc2, Released November 18th, 2013
  5882. Fixes all over the tree.
  5883. Defconfigs: qemu_arm_versatile, qemu_arm_nuri, sheevaplug:
  5884. Adjust kernel versions.
  5885. Toolchain: avr32: fix for modern kernel headers
  5886. Bootloader: Barebox updated to 2013.10.1
  5887. Updated/fixed packages: dhcp, e2fsprogs, gst1-plugins-bad,
  5888. libcurl, libvncserver, nano, pc, qt5base, squashfs, ttcp,
  5889. wayland, wvstreams
  5890. Issues resolved (http://bugs.uclibc.org):
  5891. #3601: DHCPD S80dhcp-server startup script issues
  5892. #6320: Fix kernel compile issue if BR2_LINUX_KERNEL_CUSTOM_GIT_VERS..
  5893. #6416: Xenomai package, patch alternative
  5894. #6590: directfb-examples build failed whit linaro toolchain
  5895. 2013.11-rc1, Released November 12th, 2013
  5896. Architectures: Nios-II support, MIPS arch handling fixes
  5897. Defconfigs: cubieboard2, freescale i.MX 6sololite evk,
  5898. sabre-sd, wandboard added, rpi renamed to raspberrypi_defconfig
  5899. Toolchain: glibc support, upstream uClibc fixes, uClibc 0.9.31
  5900. for avr32, crosstool-ng backend removed, external musl
  5901. toolchain support, gcc 4.8.2, updated Linaro external
  5902. toolchains. Fortran and objective-C support deprecated,
  5903. mudflap support
  5904. Bootloaders: U-Boot: u-boot.imx support, version bumps
  5905. Linux: use kmod instead of module-init-tools
  5906. System: default to devtmpfs for /dev
  5907. Infrastructure: Make 3.82 fixes, locales generation fixes, CVS
  5908. download support, post-rsync hooks
  5909. Fs: u-boot image support for cpio
  5910. Updated/fixed packages: aircrack-ng, alsamixergui, apr,
  5911. apr-util, atk, automake, bellagio, berkeleydb, bind, binutils,
  5912. bison, boost, busybox, can-utils, ccache, ccid, cgilua,
  5913. chrony, cifs-utils, cjson, collectd, connman, conntrack-tools,
  5914. copas, cppcms, cppzmq, czmq, dash, dbus, dhcpcd, diffutils,
  5915. directfb, dmidecode, dnsmaqs, docker, dosfstools, dropbear,
  5916. dropwatch, ebtables, eglibc, elf2flt, empty, enchant, erlang,
  5917. ethtool, fbgrab, fbv, fdk-aac, feh, ffmpeg, file, findutils,
  5918. fltk, fmtools, freetype, gdk-pixbuf, gettext, git,
  5919. glib-networking, gmp, gnupg, gnutls, gpu-viv-bin-mx6q, gsl,
  5920. gstreamer, gstreamer1, gst1-plugins-{bad,base,good,ugly},
  5921. gtest, gutenprint, hplip, i2c-tools, icu, ifplugd,
  5922. imagemagick, iozone, iproute2, ipset, iptables, iw, jamvm,
  5923. jansson, jpeg-turbo, kismet, kmod, lcms2, libassuan, libcap,
  5924. libcap-ng, libcdaudio, libcec, libcue, libcurl, libdrm,
  5925. libedit, libevas, libevent, libfreefare, libfuse,
  5926. libgpg-error, libiconv, liblog4c-localtime, libmicrohttpd,
  5927. libmnl, libmodbus,
  5928. libnetfilter_{acct,conntrack,cthelper,cttimeout,log,queue},
  5929. libnfnetlink, libnl, libpng, libqmi, libqrencode, libroxml,
  5930. libsecret, libsigsegv, libsoup, libtirpc, libunwind, libusb,
  5931. libvpx, lighttpd, linphone, linux-pam, lmbench,
  5932. lockfile-progs, log4cxx, logrotate, logsurfer, ltp-testsuite,
  5933. ltrace, luacrypto, luaposix, lvm2, m4, matchbox-lib,
  5934. media-ctl, mediastreamer, minicom, minidlna, mongoose, monit,
  5935. mpc, mpd, mpg123, mplayer, mrouted, mtdev, mutt, mysql_client,
  5936. nano, ncftp, ndisc6, neard, neardal, neon, net-snmp, netatalk,
  5937. netcat, netkitbase, netperf, netplug, nettle, nfacct,
  5938. nfs-utils, ngircd, ngrep, noip, nuttcp, olsr, openssh, opkg,
  5939. oprofile, opus-tools, orc, ortp, pciutils, pcre, pcsc-lite,
  5940. perf, perl, perl-cross, php, picocom, pkgconf, polarssl,
  5941. poppler, pppd, proftpd, protobuf, proxychains-ng, pulseaudio,
  5942. pv, qemu, qt, qt5base, qt5webkit, quagga, radvd, redis,
  5943. rpi-{firmware,userland}, rrdtool, rsync, rtorrent, ruby,
  5944. samba, scons, screen, sdl_sound, ser2net, setserial,
  5945. smartmontools, socat, socketcand, sqlcipher, sqlite, squid,
  5946. stress, strongswan, stunnel, sudo, syslinux, systemd,
  5947. sysvinit, tcl, ti-gfx, time, transmission, tremor, tslib,
  5948. tstools, tvheadend, tzdata, uboot-tools, uclibc, udpcast,
  5949. uemacs, ulogd, usb_modeswitch{,_data}, util-linux, vala,
  5950. valgrind, vde2, vorbus-tools, vpnc, vsftpd, vtun, wayland,
  5951. webkit, webp, webrtc-audio-processing, weston, wget,
  5952. wireshark, wsapi, xavante, xdriver_xf86-video-geode, xenomai,
  5953. xinetd, xlib_libpthread-stubs, xl2tp, xmlstarlet,
  5954. xserver_xorg-server, xz, zeromq, zic, zmqpp
  5955. New packages: aiccu, autossh, bc, civetweb, cppdb, cryptsetup,
  5956. duma, eigen, harfbuzz, igmpproxy, iputils, jq, knock, kobs-ng,
  5957. lesstif, libcgroup, libsepol, libsoc, libssh2, luasec, luasql,
  5958. lxc, nut, ola, omniorb, openpowerlink, orbit, p910nd, psplash,
  5959. python-crc16, python-ipy, python-pyzmq, qt5sensors,
  5960. qt5serialport, qt5x11extras, snmppp, subversion, tcping,
  5961. trace-cmd, xscreensaver, zsh
  5962. Removed packages: module-init-tools
  5963. Issues resolved (http://bugs.uclibc.org):
  5964. #1138: Buildroot fails to build packages if BR2_GCC_SHARED_LIBGCC=y
  5965. #5408: qt build failure with Sourcery CodeBench ARM 2010.09
  5966. #5630: makefile error with toolchain helpers.mk
  5967. #5672: htop: remove X11 stuff
  5968. #5678: linux.mk: linux-menuconfig fails
  5969. #5696: python3 installation is too large, patches from python2 needed
  5970. #5978: Erlang does not build for arm in 2013.02-rc3
  5971. #6392: Extended ARM uImage kernel options
  5972. #6404: Buildroot's coreutils 'uname -p' reports 'Unknown' on recent..
  5973. #6428: util-linux libmount segfaults with patch from buildroot
  5974. #6452: eglibc from Linaro 2013.07 not copied to target correctly
  5975. #6566: PHP segfault when crosscompiled to mips64 - patch included
  5976. #6572: [PowerPC] Buildroot uses wrong external toolchain libraries..
  5977. #6578: udisks package broken
  5978. #6602: ebtables 64 bit kernel + 32 bit userland alignment error..
  5979. #6608: ebtables missing ethertypes - fix included
  5980. #6620: Sysvinit package missing killall5 and symlinks - patch included
  5981. #6632: CMake use host pkg-config
  5982. #6638: pkgconf doesn't download
  5983. #6644: "all" target doesn't work in out-of-tree builds
  5984. #6650: Segmentation fault when trying to build latest buildroot
  5985. #6668: iptables limit module alignment problem on mips64
  5986. 2013.08, Released August 31th, 2013:
  5987. Minor fixes.
  5988. Documentation build fixed.
  5989. Updated/fixed packages: ltrace, strongswan
  5990. 2013.08-rc3, Released August 29th, 2013:
  5991. Fixes all over the tree.
  5992. External toolchain lib32/lib64 handling, ABI name for EABIhf,
  5993. misc fixes for generatelocales, apply-patches and module
  5994. stripping.
  5995. Top level menu names reordered and renamed for clarity.
  5996. Updated/fixed packages: acl, attr, bash, dbus, directfb,
  5997. dvb-apps, kexec, kmod, libbsd, linux-fusion, mesa3d, minidlna,
  5998. openssh, openssl, pulseaudio, python-setuptools, qt5,
  5999. qt5webkit, redis, strongswan, sunxi-mali
  6000. Issues resolved (http://bugs.uclibc.org):
  6001. #6464: dbus-daemon-launch-helper needs setuid
  6002. 2013.08-rc2, Released August 16th 2013:
  6003. Documentation improvements.
  6004. External toolchains fixes.
  6005. Updated/fixed packages: aircrack-ng, bash, boost, cairo,
  6006. cppcms, eglibc, ffmpeg, gcc, git, gnupg, imagemagick, libcec,
  6007. libffi, libgcrypt, linux, linux-headers, ltrace, netatalk,
  6008. opencv, opengl, readline, samba, strongswan, sunxi-cedarx,
  6009. uclibc, udev, wayland, webkit, zeromq.
  6010. Issues resolved (http://bugs.uclibc.org):
  6011. #6440: typo in ffmpeg makefile
  6012. 2013.08-rc1, Released August 5th, 2013:
  6013. Architectures:
  6014. - improved support for floating point on ARM and Thumb/Thumb2
  6015. - support for ARM OABI removed
  6016. Toolchains:
  6017. - support added for Sourcery CodeBench ARM and MIPS 2013.05
  6018. - Linaro ARM and Aarch64 toolchains updated
  6019. - support added for the Arago ARMv5 and ARMv7 toolchains
  6020. - gcc 4.8.x version bumped
  6021. - support for installing both FDPIC and FLAT libraries on
  6022. Blackfin
  6023. - support for uClibc 0.9.31 removed,
  6024. - convert the internal toolchain backend to use the package
  6025. infrastructure
  6026. - support added for eglibc in the internal toolchain backend
  6027. - toolchain components for the ARC architecture updated and
  6028. gdb for ARC added.
  6029. - support for Blackfin in the internal toolchain fixed
  6030. Defconfigs: beaglebone_defconfig updated, new defconfig for
  6031. CubieBoard, for Olimex mx233 Olinuxino, for Calao Systems
  6032. TNY-A9G20-LPW.
  6033. A number of packages have been fixed to use the
  6034. <pkg>_CONFIG_SCRIPTS mechanism to get their <pkg>-config shell
  6035. script installed and modified properly. Licensing informations
  6036. has been added to a number of packages.
  6037. Use XZ tarballs for a number of packages.
  6038. Noticeable package changes/additions:
  6039. - The glib2/libgtk2/webkit stack has been updated to recent
  6040. versions.
  6041. - Support for Gstreamer 1.x has been added.
  6042. - OpenGL support for TI OMAP platforms has been added.
  6043. - OpenGL support for Allwinner platforms has been added.
  6044. - OpenMAX support for RasberryPi has been added.
  6045. Updated/fixed packages: acl, attr, autoconf, avahi, barebox,
  6046. bind, binutils, busybox, bwm-ng, bzip2, cifs-utils, colletctd,
  6047. cpanminus, cups, curl, dash, dbus, dhcp, directfb,
  6048. directfb-examples, dnsmasq, dosfstools, dropbear, dtc,
  6049. e2fsprogs, ed, efl, enlightenment, erlang, ethtool, fbgrab,
  6050. fftw, firmware-imx, flot, fltk, freetype, gawk, gdk-pixbuf,
  6051. gettext, gmp, gnutls, gsl, gutenprint, gvfs, gzip, haserl,
  6052. hiawatha, httping, icu, imagemagick, imlib2, imx-lib,
  6053. intltool, iozone, ipset, iptables, jquery, jquery-keyboard,
  6054. jquery-sparkline, kmod, less, libart, libcdaudio, libcgicc,
  6055. libesmtp, libftdi, libfuse, libglib2, libgtk, libgtk2, libidn,
  6056. libiqrf, liblog4c-localtime, libnspr, libnss, libpcap,
  6057. libroxml, libserial, libsigsev, libsoup, libtool, libtpl,
  6058. libvncserver, libxml2, linphone, lm_sensors, logrotate,
  6059. ltrace, lttng, luafilesystem, luajit, minicom, monit, mpg123,
  6060. mtd, mutt, mxml, neard, netatask, netsnmp, nettle,
  6061. network-manager, nodejs, nss-mdns, openssh, openswan, openvpn,
  6062. opkg, opus, pcre, perl-cross, php, pixman, poco, polarssl,
  6063. pulseaudio, pv, python, python3, qt, qt5, qt5declarative,
  6064. qt5jsbackend, qt5quick1, readline, rpi-firmware, ruby, samba,
  6065. sane-backends, sconeserver, sdl_image, sdparm, ser2net,
  6066. socketcand, sqlite, squid, strace, tcl, tcpdump, tinyhttpd,
  6067. tvheadend, tzdata, uboot, udpcast, usb_modeswitch,
  6068. usb_modeswitch_data, usbutils, webkit, wireshark, wvstreams,
  6069. xapp_luit, xapp_xmodmap, xenomai, xfsprogs, xlib_libX11, zic,
  6070. zlib.
  6071. New packages: a10disp, aespipe, am33x-cm3, cppcms, dhcpcd,
  6072. dropwatch, dtc, ecryptfs-utils, eglibc, elf2flt, fdk-aac,
  6073. gcc-final, gcc-initial, gcc-intermediate, git,
  6074. gpu-viv-bin-mx6q, gst1-plugins-bad, gst1-plugins-base,
  6075. gst1-plugins-good, gst1-plugins-ugly, gst-omx,
  6076. gst-plugin-x170, gstreamer1, jimtcl, lbase64, libassuan,
  6077. libbsd, libcec, libdvbsi, libedit, libgpgme, libqmi,
  6078. libqrencode, libsvg, libsvg-cairo, libunwind, libvpx,
  6079. linux-headers, lockdev, luabitop, luacrypto, lua-ev,
  6080. luaexpatutils, msgpack, ocrad, on2-8170-libs,
  6081. on2-8170-modules, p11-kit, pax-utils, ptpd, ptpd2,
  6082. python-pyro, ramspeed/smp, snappy, strongswan, sunxi-boards,
  6083. sunxi-cedarx, sunxi-mali, sunxi-tools, ti-gfx, tinymembench,
  6084. tree, tstools, uclibc, w_scan.
  6085. Issues resolved (http://bugs.uclibc.org):
  6086. #4718: python (built for powerpc) distutils has paths to host
  6087. compiler toolchain
  6088. #5516: appended device tree blobs on uImage fails
  6089. #6302: Versions of packages retrieved from github.com are wrong
  6090. #6308: dosfstools download link is wrong
  6091. #6326: Dropbear: Add options to allow better config for
  6092. different target devices (e.g. routers)
  6093. #6338: Wrong download link for minicom package
  6094. #6344: Wrong handling of license text files with same name and
  6095. different directory
  6096. #6374: gnutls package broken if linux cryptodev module
  6097. selected
  6098. #6410: omap3_beagle has uimage error load address error
  6099. 2013.05, Released May 31th, 2013:
  6100. Minor fixes.
  6101. External toolchain wrapper fix for if host/usr/bin is placed
  6102. in the patch.
  6103. Updated/fixed packages: acpid, at91bootstrap, czmq, elf2flt,
  6104. flex, jamvm, kmod, libplayer, libtirpc, libv4,
  6105. lttng-babeltrace, opengl, qt5jsbackend, udpcast, wvstreams
  6106. Issues resolved (http://bugs.uclibc.org):
  6107. #4868: Buildroot compile failure for toolchain/gdb-7.4/intl/reloc...
  6108. #4988: flex and m4 problems
  6109. #5912: obsolete CVS files
  6110. 2013.05-rc3, Released May 25th, 2013:
  6111. Minor fixes.
  6112. Updated/fixed packages: aircrack-ng, bellagio, boost, crda,
  6113. dvb-apps, flot, libatomic_ops, libeXosip2, libosip2, libxml2,
  6114. mongrel2, poco, portaudio, pptp-linux, tvheadend, urg, weston,
  6115. wireshark
  6116. 2013.05-rc2, Released May 15th, 2013:
  6117. Fixes all over the tree.
  6118. Default number of parallel jobs is now number of CPUs + 1.
  6119. Defconfigs: Add Telit EVK-PRO3, AT91SAM9260-EK Nand flash.
  6120. Updated/fixed packages: aircrack-ng, busybox, cairo,
  6121. classpath, curlftpfs, czmq, dbus, f2fs-tools, fan-ctrl,
  6122. filemq, gst-plugin-bad, gutenprint, hplip, json-c,
  6123. libatomic_ops, libcurl, libdrm, libglib2, libnspr, libnss,
  6124. libsha1, libsigsegv, libxcb, linknx, linux-pam, lttng-modules,
  6125. lttng-tools, matchbox-lib, mcookie, mesa3d, neon, pixman,
  6126. pulseaudio, python-nfc, qt5imageformats, quota, openssl,
  6127. sconeserver, strace, sylpheed, wvstreams,
  6128. xapp_{appres,bdftopcf,beforelight,bitmap,edires,fonttosfnt},
  6129. xapp_{fslsfonts,fstobdf,iceauth,ico,listres,luit,mkfontdir},
  6130. xapp_{mkfontscale,oclock,rgb,rstart,scripts,sessreg,setxkbmap},
  6131. xapp_{showfont,smproxy,twm,viewres,x11perf,xauth,xbacklight},
  6132. xapp_x{biff,calc,clipboard,clock,cmsdb,cursorgen,dbedizzy,ditview},
  6133. xapp_x{dm,dpyinfo,driinfo,edit,ev,eyes,f86dga,fd,fontsel,fs,fsinfo},
  6134. xapp_x{gamma,gc,host,input-calibrator,input,kbcomp,kbevd,kbprint},
  6135. xapp_x{kbutils,kill,load,logo,lsatoms,lsclients,lsfonts,mag,man},
  6136. xapp_x{message,mh,modmap,more,pr,prop,randr,rdb,refresh,set,setmode},
  6137. xapp_x{setpointer,setroot,sm,stdcmap,vidtune,vinfo,wd,wininfo,wud},
  6138. xcb-util, xcursor-transparent-theme, xdata_xbitmaps,
  6139. xdata_xcursor-themes,
  6140. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synaptics},
  6141. xdriver_xf86-input-{tslib,vmmouse,void},
  6142. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,fbdev,geode,glide},
  6143. xdriver_xf86-video-{glint,i128,intel,mach64,mga,neomagic,newport},
  6144. xdriver_xf86-video-{nv,openchrome,r128,savage,siliconmotion,sis},
  6145. xdriver_xf86-video-{tdfx,tga,trident,v4l,vesa,vmware,voodoo,wsfb},
  6146. xfont_encodings, xfont_font-adobe-{100,75}dpi,
  6147. xfont_font-utopia-{100dpi,75dpi,type1},
  6148. xfont_font-{alias,arabic-misc,bh-100dpi,bh-75dpi},
  6149. xfont_font-bh-lucidatypewriter-{100,75}dpi, xfont_font-bh-{ttf,type1},
  6150. xfont_font-bitstream-{100dpi,75dpi,type1}, xfont_font-cronyx-cyrillic,
  6151. xfont_font-{cursor,daewoo,dec,isas,jis,micro}-misc,
  6152. xfont_font-ibm-type1, xfont_font-misc-{cyrillic,ethiopic,meltho,misc},
  6153. xfont_font-{mutt,schumacher}-misc,
  6154. xfont_font-{screen-cyrillic,sony-misc,sun-misc,util},
  6155. xfont_font-winitzki-cyrillic, xfont_font-xfree86-type1,
  6156. xlib_lib{FS,ICE,SM,X11,XScrnSaver,Xau,Xaw,Xcomposite,Xcursor},
  6157. xlib_libX{damage,dmcp,ext,fixes,font,ft,i,inerama,mu,pm,randr},
  6158. xlib_libX{render,res,t,tst,v,vMC,xf86dga,xf86vm},
  6159. xlib_lib{dmx,fontenc,pciaccess,pthread-stubs,xkbfile}, xlib_xtrans,
  6160. xproto_{applewm,bigreqs,composite,damage,dmx,dri2,fixes}proto,
  6161. xproto_{fontcache,font,gl,input,kb,randr,record,render}proto,
  6162. xproto_{resource,scrnsaver,video,windowswm,xcmisc,xext}proto,
  6163. xproto_{xf86bigfont,xf86dga,xf86dri,xf86vidmode,xinerama,x}proto,
  6164. xserver_xorg-server, xutil_{makedepend,util-macros}
  6165. Readded Packages: xapp_xinit
  6166. Issues resolved (http://bugs.uclibc.org):
  6167. #5054: amd64: cannot find init - due to missing /lib64 folder
  6168. 2013.05-rc1, Released May 8th, 2013:
  6169. Architectures: ARC support, Blackfin support, FLAT binary
  6170. format, ARM: Drop old CPU variants, add fa526/626, Marvell PJ4
  6171. Toolchains: Add new Microblaze external toolchains, Linaro
  6172. ARM/Aarch64 updates, GCC 4.6.4 / 4.7.3 / 4.8.0 added to
  6173. internal toolchain, default to GCC 4.7.x. Internal
  6174. Crosstool-ng backend deprecated.
  6175. Defconfigs: Add Atmel at91sam9g45m10ek, freescale mpc8315erdb
  6176. & p1010rdb, Armadeus apf27 / apf28, Openblocks A6, Raspberry
  6177. pi, gnublin board.
  6178. FS: LZO and XZ compression methods, extra ubifs options,
  6179. ext2 rev 0/1 and ext3/4 support.
  6180. Patch handling: apply-patches now has .patch.xz support,
  6181. Patch logic reworked as discussed during Febrary dev days:
  6182. http://elinux.org/Buildroot:DeveloperDaysFOSDEM2013
  6183. <pkg>-rsync now excludes version control files.
  6184. linux: uImage load address for ARM multiplatform kernels
  6185. Infrastructure for multiple OpenGL / ES / EGL / OpenVG
  6186. providers, similar to how libjpeg / libjpeg-turbo is handled.
  6187. Infrastructure for packages to add system users.
  6188. kconfig: updated to 3.9-rc2, support make olddefconfig
  6189. Updated/fixed packages: alsa-lib, alsa-utils, apr, apr-util,
  6190. argp-standalone, at, at91bootstrap, audiofile, aumix, avahi,
  6191. bash, blackbox, bind, binutils, bison, boost, bridge-utils,
  6192. busybox, ccache, cifs-utils, cmake, collectd, connman,
  6193. conntrack-tools, cpanminus, crosstool-ng, diffutils, directfb,
  6194. directfb-examples, divine, dmalloc, dnsmasq, dosfstools,
  6195. dropbear, e2fsprogs, ebtables, eeprog, erlang, ethtool,
  6196. fb-test-app, fbset, feh, ffmpeg, file, flex, flot, foomatic,
  6197. fxload, gd, gdb, gdisk, genimage, gettext, gmp, gnuchess,
  6198. gnutls, gob2, gperf, gpsd, gstreamer, haserl, hiawatha, htop,
  6199. httping, icu, inotify-tools, intltool, iproute2, ipset,
  6200. iptables, iw, jpeg, jquery, jquery-{sparkline,validation},
  6201. json-c, kbd, kexec, kismet, kmod, lcdproc, libarchive,
  6202. libatasmart, libcap, libconfig, libconfuse, libcurl, libdrm,
  6203. libeet, libev, libevas, libeXosip2, libffi, libfribi, libfuse,
  6204. libgcrypt, libglib2, libgtk2, libid3tag, libmicrohttpd,
  6205. libnetfilter_acct, libnetfilter_conntrack, libnl, libpcap,
  6206. libplayer, libsigc, libv4l, libxcb, linenoise, linux-pam,
  6207. lm_sensors, ltp-testsuite, luajit, lzop, madplay, make, mdadm,
  6208. mediastreamer, memtester, mesa3d,
  6209. mobile-broadband-provider-info, monit, mpd, mpfr, mpg123,
  6210. mrouted, msmtp, nbd, ncurses, ndisc6, neard, neardal, neon,
  6211. netperf, netsnmp, nettle, nfacct, ntfs-3g, ofono, olsr,
  6212. omap-u-boot-utils, openssh, openssl, openswan, openvpn,
  6213. oprofile, orc, patch, pciutils, pcre, perl, php, poco,
  6214. polarssl, proftpd, psmisc, pulseaudio, python,
  6215. python-{bottle,netifaces,serial,setuptools}, qt, quagga,
  6216. quota, radvd, rpi-firmware, rpi-userland, rt-tests, sam-ba,
  6217. samba, sawman, sdl, ser2net, smartmontools, socat, socketcand,
  6218. speex, squid, stress, stunnel, sudo, syslinux, sysstat,
  6219. sysvinit, tcl, tcprelay, tinyhttpd, tslib, tvheadend,
  6220. uboot-tools, udev, ulogd, util-linux, vala, vtun, webkit,
  6221. xapp_{iceauth,luit,makefontscale,sessreg,setxkbmap,smproxy},
  6222. xapp_{xauth,xcmsdb,xdpyinfo,xev,xgamma,xhost,xinput,xkbcomp},
  6223. xapp_{xkbevd,xlsatoms,xlsclients,xmodmap,xpr,xprop,xrandr,xrdb},
  6224. xapp_{xset,xwd,xwininfo}, xcb-{proto,util},
  6225. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synptics},
  6226. xdriver_xf86-input-{tslib,vmmouse,void},
  6227. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,geode,glide,glint},
  6228. xdriver_xf86-video-{i128,intel,mach64,mga,neomagic,newport},
  6229. xdriver_xf86-video-{openchrome,r128,savage,siliconmotion,sis},
  6230. xdriver_xf86-video-{tdfx,trident,vesa,vmware,wsfb}, xenomai,
  6231. xfont, xinetd, xkeyboard-config, xlib_lib{FS,ICE,SM,X11},
  6232. xlib_libX{scrnSaver,au,aw,cursor,dmcp,ext,fixes,font,ft,i},
  6233. xlib_libX{inerama,mu,pm,randr,res,tst,v,vMC,xf86dga,xf86vm},
  6234. xlib_lib{dmx,fontenc,pciaccess,xkbfile}, xlib_xtrans,
  6235. xproto_{applevm,bigreqs,dri2,fonts,gl,input,kbd,record}proto,
  6236. xproto_{resource,scrnsaver,xcmisc,xext,x}proto,
  6237. xserver_xorg-server, xutil_makedepend, xz, zeromq
  6238. New packages: aircrack-ng, bcusdk, chrony, crda,
  6239. cryptodev-linux, cppzmq, czmq, dtach, enscript, exfat,
  6240. exfat-utils, f2fs-tools, fan-ctrl, filemq, foomatic-filters,
  6241. genimage, genpart, glibmm, gnuplot, gtest, gutenprint, hplip,
  6242. iozone, jansson, jhead, jquery-keyboard, jquery-ui,
  6243. jquery-ui-themes, json-glib, json-javascript, lcms2, libpfm4,
  6244. libpthsem, libserial, libsigsegv, libtasn1, libwebsockets,
  6245. libxkbcommon, libxml++, linknx, log4cxx, mongoose, mongrel2,
  6246. mtools, ne10, nmap, nodejs, openobex, openpgm, poppler,
  6247. protobuf-c, python-m2crypto, python-thrift, qjson, qt5base,
  6248. qt5declarative, qt5graphicaleffects, qt5imageformats,
  6249. qt5jsbackend, qt5multimedia, qt5quick1, qt5script, qt5svg,
  6250. qt5webkit qt5xmlpatterns, rapidjson, redis, swig, texinfo,
  6251. tzdata, urg, ussp-push, wayland, webp, weston, wireless-regdb,
  6252. wireshark, wvdial, wvstreams, xcb-util-image, xcb-util-wm,
  6253. xcursor-transparent-theme, zic, zmqpp, zyre
  6254. Removed packages: microperl, ocf-linux, xapp_xinit,
  6255. xapp_xplsprinters, xapp_xprehashprinterlist,
  6256. xfont_font-bitstream-speedo,
  6257. xlib_lib{Xfontcache,XprintAppUtil,XprintUtil,Xp,oldX,xkbui},
  6258. xproto_{print,xf86rush}proto
  6259. Deprecated packages: vala
  6260. Issues resolved (http://bugs.uclibc.org):
  6261. #1291: Add support for Faraday 526 arm processor (fa526)
  6262. #2683: cups does not install correctly to target
  6263. #3313: mesa3d fails to build
  6264. #5186: initramfs/cpio should support lzo compression
  6265. #5636: agetty - cannot get controlling tty error - need updated...
  6266. #5906: collectd client headers not exported
  6267. #5966: bison unnecessarily required as build dependency
  6268. #6140: --enable-fileinfo not applied for php package
  6269. #6164: openvpn usage of ip tool from Busybox
  6270. 2013.02, Released February 28th, 2013:
  6271. Misc manual updates.
  6272. Updated/fixed packages: busybox, collectd, flashbench,
  6273. libgtk2, libupnp, mii-diag, quota
  6274. 2013.02-rc3, Released February 26th, 2013
  6275. Minor fixes.
  6276. Updated/fixed packages: conntrack-tools, dialog,
  6277. enlightenment, haserl, keyutils, libfif, libmad,
  6278. linux-firmware, linux-fusion, matchbox-desktop, matchbox-wm,
  6279. ruby, spawn-fcgi, vtun
  6280. Issues resolved (http://bugs.uclibc.org):
  6281. #5960: fusion.ko driver does not install to target rootfs
  6282. 2013.02-rc2, Released February 19th, 2013
  6283. Fixes all over the tree.
  6284. Various manual updates and fixes.
  6285. Updated/fixed packages: busybox, collectd, gesftpserver,
  6286. glib-networking, gnutls, inotify-tools, libcurl, libffi,
  6287. libglib2, libtorrent, libvorbis, neard, network-manager,
  6288. ntfs-3g, openssl, qt, rpi-userland, rtorrent, thttpd, vim.
  6289. Issues resolved (http://bugs.uclibc.org):
  6290. #5906: collectd client headers not exported
  6291. 2013.02-rc1, Released February 10th, 2013
  6292. Toolchain: Crosstool-ng 1.17.0, default to GCC 4.6.3, target
  6293. libraries install fixed. Add Linaro ARM
  6294. 2012.11/2012.12/2013.01, AArch64 12.11/12.12/13.01. Sourcery
  6295. CodeBench MIPS 2012.03/09. Infrastructure to warn about
  6296. missing 32bit support for binary toolchains. Toolchain wrapper
  6297. is now relocatable. Add GDB 7.5.1 / Remove 6.8 / 7.0 /
  6298. 7.1. Deprecate uClibc 0.9.31.
  6299. Architecture: Xtensa fixes, add missing powerpc variants, arm
  6300. 1136jf-s rev1, add A5/A15, neon support toggle, OABI
  6301. deprecated. Sparc: drop old unused variants
  6302. Bootloaders: At91bootstap: fix upstream URL, Barebox: add
  6303. 2012.12/2013.01/2013.02, remove 2012.08/09/10, lzop fixes,
  6304. environment image support, U-Boot: add 2013.01.01
  6305. Linux: fix appended dtb handling for v3.8+ kernels, support
  6306. multiple device trees
  6307. Defconfigs: calao USB-A9260, snowball, QEMU PPC440 on ML507
  6308. board, QEMU ARM Exynos4210, Kernel version in QEMU defconfigs
  6309. updated, at91rm9200df: misc fixes. Lock kernel headers to
  6310. match kernel.
  6311. Infrastructure: Git download fixes. Toolchain make target
  6312. renamed from 'cross' to 'toolchain'. Eclipse integration
  6313. support. Option to set root password, post image scripts,
  6314. config scripts handling.
  6315. Updated/fixed packages: alsa-lib, argp-standalone, argus,
  6316. arptables, atk, audiofile, axel, beecrypt, bind, bison,
  6317. bluez_utils, boost, cairo, can-utils, bmon, boa, busybox,
  6318. cairo, ccache, cdrkit, cifs-utils, cjson, cmake, collectd,
  6319. connman, coreutils, cpanminus, cups, dbus, dhcp, dialog,
  6320. diffutils, directfb, distcc, divine, dnsmasq, docker,
  6321. dosfstools, dstat, e2fsprogs, ebtables, ed, empty, ethtool,
  6322. expedite, fbset, fbv, ffmpeg, flex, fltk, fluxbox, freetype,
  6323. gadget-test, gawk, gdb, genext2fs, gettext, giblib,
  6324. glib-networking, gmp, gmpc, gnupg, gnutls, gpsd,
  6325. gst-plugins-{bad,base,good}, gstreamer, gzip, haserl, hdparm,
  6326. heirloom-mailx, hiawanta, hostapd, icu, imagemagick, imlib2,
  6327. inadyn, infozip, iproute2, ipset, iptables, iw, jpeg, jquery,
  6328. jquery-sparklines, jqeury-validation, kismet, kmod, lame,
  6329. libao, libcap, libcurl, libdvdnav, libdvdread, libecore,
  6330. libedbus, libedje, libeet, libefreet, libeina, libeio,
  6331. liberation, libelementary, libembryo, libethumb, libev,
  6332. libevas, libffi, libfribidi, libfuse, libgcrypt, libglib2,
  6333. libgpg-error, libgtk2, libhid, libidn, libmicrohttpd, libmpd,
  6334. libnl, libnspr, libnss, libogg, libpcap, libplayer, libpng,
  6335. libroxml, librsvg, libseccomp, libsigc, libsndfile, libungif,
  6336. libupnp, liburcu, libusb-compat, libvncserver, libvorbis,
  6337. libxml2, libxslt, lighttpd, links, linux-firmware,
  6338. linux-fusion, ltp-testsuite, ltrace,
  6339. lttng-{babel,libust,modules,tools}, lvm2, lua, luajit, lzop,
  6340. matchbox-{desktop,lib}, mdadm, metacity, midori, minicom, mpd,
  6341. mpfr, mplayer, mtd, mysql_client, ncurses, neon, netatalk,
  6342. networkmanager, nspr, ntfs-3g, nuttcp, ofone, olsr, openssl,
  6343. openvpn, opkg, oprofile, opus, opus-tools, orc, ortp, pango,
  6344. pciutils, pcmanfm, pcre, pcsc-lite, perl, php, pixman,
  6345. pkgconf, polarssl, pptp-linux, proxychains, pulseaudio,
  6346. python, python3, qemu, qextserialport, qt, quagga, radvd,
  6347. readline, rng-tools, rt-tests, rubix, ruby, sam-ba, samba,
  6348. sane-backends, sconeserver, scons, screen, sdl, sdl_gfx,
  6349. sdl_mixer, sdl_ttf, sdparm, sed, ser2net, smartmontools,
  6350. speex, sqlite, squid, sshfs, strace, sudo, sylpheed, tn5250,
  6351. taglib, tar, torsmo, transmission, tslib, uboot-tools, ulogd,
  6352. usb_modeswitch, util-linux, valgrind, vim, vsftpd, wavpack,
  6353. webkit, wipe, wireless_tools, wpa_supplicant, xapp_xinit,
  6354. xapp_xinput-calibrator, xapp_xman, xapp_xmh, xlib_libX11,
  6355. xlib_libXdmcp, xlib_libXft, xlib_libpthread-stubs,
  6356. xlib_xtrans, xproto_xcmiscproto, xproto_xextproto,
  6357. xserver_xorg-server, xstroke, xvkbd, xz
  6358. New packages: b43-firmware, b43-fwcutter, bustle,
  6359. cache-calibrator, cegui06, celt051, classpath, curlftpfs,
  6360. dvb-apps, dvbsnoop, elfutils, enlightenment, firmware-imx,
  6361. flashbench, gd, gesftpserver, gst-fsl-plugins, httping, iftop,
  6362. imx-lib, jamvm, jpeg-turbo, keyutils, libatasmart, libcofi,
  6363. libebml, libevas-generic-loaders, libfslcodec, libfslparser,
  6364. libfslvpuwrap, libgsasl, libiscsi, libmatroska, libmcrypt,
  6365. libmhash, libqwt, libseccomp, libsha1, linenoise, mcrypt,
  6366. media-ctl, ncdu, neard, neardal, nettle, perf, polkit,
  6367. proxychains, python-bottle, python-pyparsing, rpi-firmware,
  6368. rpi-userland, sg3_utils, slirp, snowball-hdmiservice, spice,
  6369. spice-protocol, tcllib, tvheadend, udisks, usbredir
  6370. ux500-firmware, vde2, xcb-utils-keysyms, yavta,
  6371. zd1211-firmware
  6372. Removed packages: customize, xdriver_xf86-input-{acecad,aiptek},
  6373. xdriver_xf86-video-{apm,chips,i740,rendition,s3,s3virge,sisusb},
  6374. xdriver_xf86-video-sun{cg14,cg3,cg6,ffb,leo,tcx},
  6375. xdriver_xf86-video-{tsend,xgi,xgixp}
  6376. Deprecated packages: xstroke
  6377. Issues resolved (http://bugs.uclibc.org):
  6378. #4237: building shared openssl w/-Os fails due to gcc bug
  6379. #5690: python3 does not obey to BR2_PACKAGE_PYTHON3_PYC_ONLY=y
  6380. #5602: python3 should install a "python" symbolic link
  6381. #5846: Extra slash added to last slash in URL
  6382. 2012.11.1, Released January 3rd, 2013:
  6383. Toolchain: Fixed non-largefile builds on recent Ubuntu
  6384. versions.
  6385. Arch: fix missing x86/generic handling, Build for Xtensa with
  6386. longcalls option.
  6387. Updated/fixed packages: dosfstools, qt
  6388. 2012.11, Released December 2nd, 2012:
  6389. Git shallow clone fix for older git version.
  6390. Updated/fixed packages: ctuio, libtool
  6391. Issues resolved (http://bugs.uclibc.org):
  6392. #5726: List all the available hook points
  6393. 2012.11-rc2, Released November 30th, 2012:
  6394. Minor fixes around the tree.
  6395. Various manual updates and fixes.
  6396. Add checks for legacy features.
  6397. Updated/fixed packages: acpid, alsa-lib, arptables, binutils,
  6398. busybox, ccache, cjson, cramfs, directfb, flex, fluxbox, gdb,
  6399. hiawatha, igh-ethercat, imagemagick, imlib2, lcdproc,
  6400. libdaemon, libecore, libhid, libmad, libpcap, libsigc, libusb,
  6401. linux-fusion, matchbox, ocf-linux, owl-linux, python, rrdtool,
  6402. scons, strace, sylpheed
  6403. Issues resolved (http://bugs.uclibc.org):
  6404. #5732: Error : package/alsa-lib/alsa-lib.mk
  6405. 2012.11-rc1, Released November 17th, 2012
  6406. Fixes all over the tree and new features.
  6407. Defconfigs: use u-boot 2012.10 on at91 and beaglebone,
  6408. sheevaplug + qemu: bump kernel version, add qemu-mips64-malta
  6409. + nitrogen6x defconfigs.
  6410. Bootloaders: add u-boot 2012.07/10, ais target format, add
  6411. barebox 2012.08/09/10/11, linker overlap issue fix for
  6412. at91bootstrap, mxs-bootlets updated for new Barebox versions.
  6413. Toolchains: binutils 2.23.1, gcc 4.7.2, default to gcc 4.6.x,
  6414. Codebench arm/sh/x86 2012.03/09, Linaro 2012.08/09/10.
  6415. Libtirpc support for modern glibc variants. Toolchain on
  6416. target has been deprecated.
  6417. Initial Aarch64 support, Xtensa support re-added.
  6418. Infrastructure: Use shallow git clone when possible, use
  6419. tarballs rather than git URLs for github. Moved to pkgconf
  6420. rather than pkg-config. System directory added, default
  6421. skeleton/device tables moved. More than 1 post-build script
  6422. can now be used. output/target now contains a
  6423. THIS_IS_NOT_YOUR_ROOT_FILESYSTEM warning, to help people
  6424. understand how to (not) use it.
  6425. Manual has been reworked and extended.
  6426. Legal-info: Lots of package annotations, CSV file fixes,
  6427. _LICENSE / _REDISTRIBUTE splitup, per-package hooks.
  6428. Updated/fixed packages: acpid, alsa-lib, alsa-utils,
  6429. alsamixergui, attr, autoconf, automake, bash, bind, binutils,
  6430. bison, blackbox, bluez-utils, busybox, cairo, can-utils,
  6431. cifs-utils, cjson, cmake, collectd, connman, conntrack-tools,
  6432. coreutils, cups, cvs, dbus, dhcp, directfb, dmalloc, dnsmasq,
  6433. dropbear, e2fsprogs, ethtool, fbdump, feh, fftw, file,
  6434. flashrom, fluxbox, gdb, gdisk, gdk-pixbuf, genext2fs, gettext,
  6435. gnutls, gpsd, gqview, grep, gsl, gst-plugins-{bad,good},
  6436. hdparm, hiawatha, hostapd, input-tools, iproute2, ipset,
  6437. iptables, iw, json-c, kexec, kmod, lcdproc, leafpad, less,
  6438. libcurl, libdrm, libdvdnav, libdvdread, libffi, libfuse,
  6439. libglib2, libhid, liblockfile, libmad, libmbus, libmnl,
  6440. libnetfilter_{acct,conntrack,cthelper,cttimeout,queue},
  6441. libnfc, libnfc-llcp, libnfnetlink, libnl, libnspr, libnss,
  6442. libpcap, libplayer, libtool, libtorrent, liburcu, libv4l,
  6443. libxcb, libxml2, libxslt, links, linux-firmware, lm-sensors,
  6444. lmbench, lockfile-progs, logrotate, lshw, lsof,
  6445. lttng-babeltrace, lttng-tools, lua, luajit, mesa3d, microperl,
  6446. mii-diag, module-init-tools, mpc, mpd, mpg123, mplayer,
  6447. mtd-utils, mysql_client, nbd, ncurses, netatalk, netkitbase,
  6448. netkittelnet, netsnmp, newt, nfs-utils, openntpd, openssh,
  6449. openssl, opkg, patch, pciutils, pcre, php, poco, polarssl,
  6450. popt, portmap, pppd, procps, pulseaudio, python, python-nfc,
  6451. python-protobuf, qt, quota, rp-pppoe, rtorrent, sam-ba, samba,
  6452. scons, sdl_gfx, smartmontools, sqlite, squid, strace, sudo,
  6453. sylpheed, tcpdump, tremor, ttcp, tiff, unionfs,
  6454. usb_modeswitch, usbutils, util-linux, vala, valgrind, vpnc,
  6455. vsftpd, webkit, wget, which, wpa_supplicant, x11vnc, xapp_*,
  6456. xdriver_*, xenomai, xfont_*, xinetd, xl2tp, xlib_*, xlsclient,
  6457. xproto_*, xserver_xorg-server, xutil_util-macros, xz, zeromq
  6458. New packages: arptables, at91bootstrap3, boot-wrapper-aarch64,
  6459. ccid, cpanminus, cpuload, erlang, evtest, fb-test-apps,
  6460. fxload, gdbm, gnupg, googlefontdirectory, grantlee, gsl,
  6461. lcdapi, liblo, liblog4c-localtime, libtirpc, linux-pam,
  6462. lua-msgpack-native, macchanger, mtdev, mtdev2tuio, nfacct,
  6463. opus, opus-tools, pcsc-lite, perl, pkgconf, python-meld3,
  6464. python3, qemu, qextserialport, qtuio, rpcbind, schifra,
  6465. sconeserver, supervisor, time, ulogd, usb_modeswitch_data,
  6466. yasm
  6467. Deprecated packages: netkitbase, netkittelnet
  6468. Issues resolved (http://bugs.uclibc.org):
  6469. #807: [PATCH] samba - make iconv and smbd optional
  6470. #3049: binutils have a sysroot bug in ld
  6471. #5330: update vsftpd to 3.0.0
  6472. #5486: libglib2 build fails on: libs/libglib-2.0.so: undefined...
  6473. #5666: Fails to build python 2.7.2 for 2440 arm
  6474. 2012.08, Release August 31th, 2012
  6475. Updated/fixed packages: microperl, cups, luajit, rrdtool,
  6476. prboom, oprofile.
  6477. Added license information for: sqlite.
  6478. Changed the source URLs of all packages located on Sourceforge
  6479. in order to use the automatic mirror selection URL
  6480. downloads.sourceforge.net, and get rid of the
  6481. BR2_SOURCEFORGE_MIRROR option.
  6482. 2012.08-rc3, Released August 25th, 2012
  6483. Updated/fixed packages: libglib2, netsnmp, freetype, libfuse,
  6484. libpng, x11vnc, zlib, gpsd, ifplugd, bash, distcc.
  6485. Added license informations for: barebox, grub, syslinux,
  6486. uboot, xloader, yajl, zlib, zxing, alsa-lib, alsa-utils,
  6487. faad2, nano, fbdump, rsync, librsync, fontconfig,
  6488. inotify-tools,
  6489. 2012.08-rc2, Released August 15th, 2012
  6490. Updated/fixed packages: imagemagick, sudo, crosstool-ng.
  6491. Added license informations for: mxml, nanocom, empty, expat,
  6492. lua, lucjson, xinetd, cjson, luaexpat, lmbench, bwm-ng,
  6493. input-event-daemon, luajit, cgilua, copas, coxpcall,
  6494. luafilesystem, luasocket, rings, wsapi, xavante, libtpl,
  6495. avahi, busybox, libfcgi, ifplugd, libcgicc, libcurl,
  6496. libdaemon, libdnet, libgpg-error, libpcap, libpng, lighttpd,
  6497. mtd, openssl, psmisc, socat, spawn-fcgi.
  6498. Fixes to Microblaze external toolchains
  6499. configuration. Improvements of the pkg-stats
  6500. script. Out-of-tree fix for the graph-depends script.
  6501. Kernel headers version bump.
  6502. 2012.08-rc1, Released August 1st, 2012
  6503. Fixes all over the tree and new features.
  6504. Integration of a legal information reporting infrastructure,
  6505. which allows to generate detailed informations about the
  6506. licenses and source code of all components of a system
  6507. generated by Buildroot. License information will progressively
  6508. be added on packages.
  6509. Default configuration files added for Calao-systems USB-A9263
  6510. and Calao-systems USB-A9G20-LPW.
  6511. External toolchains update: allow download of a custom
  6512. toolchain, add Linaro 2012.05 and 2012.06 for ARM, add
  6513. Blackfin toolchain 2012R1-BETA1, add Sourcery CodeBench MIPS
  6514. 2011.09.
  6515. Allow the restriction of downloads to the primary site only.
  6516. This is useful for project developers who want to ensure that
  6517. the project can be built even if the upstream tarball
  6518. locations disappear.
  6519. Add a 'System configuration' choice to select between 3
  6520. different init systems: Busybox init, SysV init and Systemd
  6521. init.
  6522. Cleanups to the package infrastructure. The visible change to
  6523. developers is that $(eval $(call AUTOTARGETS)) is now $(eval
  6524. $(autotools-package)), and similarly for other package
  6525. infrastructures and host packages. Refer to the documentation
  6526. for details.
  6527. By default, automatic detection of the number of compilation
  6528. jobs to use, depending on the number of CPUs available.
  6529. Improvements to generate systems with static libraries only
  6530. (infrastructure and package fixes).
  6531. Add proper support in the Linux kernel package to generate
  6532. Device Tree Blobs or combined Device Tree / Kernel
  6533. images. This will be useful on Microblaze, PowerPC and ARM,
  6534. which are architectures making extensive use of the Device
  6535. Tree.
  6536. Updated/fixed packages: audiofile, autoconf, automake, axel,
  6537. barebox, bash, beecrypt, berkeleydb, bind, bison, bluez_utils,
  6538. bonnie, boost, busybox, bsdiff, bwm-ng, bzip2, cifs-utils,
  6539. cgilua, cmake, connman, conntrack-tools, crosstool-ng, cups,
  6540. dbus, dhcp, dnsmasq, e2fsprogs, eeprog, ethtool, faad2, fbv,
  6541. ffmpeg, freetype, gmp, gnutls, gob2, gpsd, grep,
  6542. gst-plugins-base, gst-plugins-good, gzip, hiawatha, hostapd,
  6543. htop, icu, igh-ethercat, imagemagick, input-tools, iostat,
  6544. iproute2, ipset, iptables, iw, kmod, less, libcap, libgci,
  6545. libconfig, libcurl, libelf, libevas, libeXosip2, libexif,
  6546. libfuse, libidn, libmad, libmbus, libmnl,
  6547. libnetfilter-conntrack, libnl, libnspr, libnss, libogg,
  6548. libosip2, libpcap, libpng, libroxml, liburcu, libusb, libxml2,
  6549. libxslt, lighttpd, linux, ltrace, lttng-libust, lttng-modules,
  6550. lttng-tools, lua, m4, memtester, midori, mii-diag,
  6551. module-init-tools, mpfr, mpg123, mrouted, msmtp, mtd, mxml,
  6552. mysql_client, nasm, nbd, ncurses, nfs-utils, opencv, openocd,
  6553. openssl, pciutils, php, polarssl, portaudio, pppd,
  6554. pthread-stubs, pulseaudio, qt, quagga, quota, radvd, rpm,
  6555. rrdtool, samba, sam-ba, scons, sdl_gfx, sdl_sound, speex,
  6556. sqlite, squashfs, squid, sudo, synergy, syslinux, systemd,
  6557. tar, tcpdump, tcpreplay, udev, usbutils, valgrind, wget,
  6558. wpa_supplicant, wsapi, xavante, xserver_xorg-server, zlib
  6559. New packages: cjson, collectd, dfu-util, dmidecode, elftosb,
  6560. fbterm, flashrom, freerdp, inadyn, libfreefare,
  6561. libnetfilter_cttimeout, libnfc, libnfc-llcp, liboping,
  6562. libtorrent, linphone, logsurfer, lshw, luacjson, luaexpat,
  6563. luajit, mediastreamer, mobile-broadband-provider-info, monit,
  6564. mxs-bootlets, nanocom, nss-mdns, ofone, omap-u-boot-utils,
  6565. opkg, ortp, owl-linux, python-id3, python-nfc, quota,
  6566. ramspeed, rtorrent, sound-theme-borealis,
  6567. sound-theme-freedesktop, sysprof, webrtc-audio-processing,
  6568. xinetd, zxing
  6569. Issues resolved (http://bugs.uclibc.org):
  6570. #1315: Allow use of older external toolchains without sysroot
  6571. support [won't fix]
  6572. #5276: Hiawatha needs to manage IPV6 if so [fixed]
  6573. #5360: buildroot fails when building "host-libglib2 2.30.2
  6574. Building" [won't fix, upstream problem]
  6575. #5384: Can't build packages relying on gets on newer glibc
  6576. [fixed]
  6577. 2012.05, Released May 30th, 2012:
  6578. Updated/fixed packages: busybox, netsnmp, pptp-linux
  6579. 2012.05-rc3, Released May 25th, 2012:
  6580. Minor fixes around the tree.
  6581. Infra: Fix for DOWNLOAD macro when using primary mirrors with
  6582. scp targets.
  6583. Toolchain: Kernel headers 3.2.18 / 3.3.7.
  6584. Updated/fixed packages: binutils, bison, busybox, cifs-utils,
  6585. gnuchess, gpsd, iperf, libmpeg2, mtd, ntfs-3g, oprofile,
  6586. xserver-xorg
  6587. 2012.05-rc2, Released May 18th, 2012:
  6588. Fixes all over the tree.
  6589. Toolchain: uClibc: Use 0.9.33.2, Crosstool-ng: fix gperf
  6590. dependency, disable decimal floats support, Linux 3.2.17 /
  6591. 3.3.6 kernel headers. Fix sysroot copy handling for toolchains
  6592. without C++ support.
  6593. Updated/fixed packages: apr, apr-util, ccache, dnsmasq,
  6594. heirloom-mailx, gdb, ndisc6, opencv, openssl, socat, vala
  6595. 2012.05-rc1, Released May 10th, 2012:
  6596. Fixes all over the tree and new features.
  6597. Use /etc/os-release for version info rather than
  6598. /etc/br-version.
  6599. CMake toolchain file moved to $HOST_DIR/usr/share/buildroot.
  6600. Apply-patches.sh: cleanups, archived patches handling fixes,
  6601. support series files.
  6602. Defconfigs: beaglebone, mx53qsb, pandaboard, qemu configs for
  6603. arm-vexpress/microblaze/ppc-mpc88544ds, use 3.2.x for
  6604. atngw100, use 3.3.x for qemu configs.
  6605. Menu structure: Libraries moved out of multimedia section
  6606. Atom processor support. Prescott fix, blackfin ABI fix,
  6607. Microblaze architecture support (using ext toolchain). Cleanup
  6608. architecture names, deprecate Xtensa support.
  6609. Toolchain: Add GCC 4.4.7, 4.6.3, 4.7.0. uClibc 0.9.33.1,
  6610. default to uClibc 0.9.33.x, enable
  6611. UCLIBC_SUPPORT_AI_ADDRCONFIG by default, static and 64bit
  6612. fixes for external toolchains, linaro ext toolchains, new
  6613. sourcery codebench ext toolchains, GDB 7.4.1, crosstool-ng
  6614. 1.15.2.
  6615. Bootloaders: U-Boot: add 2012.04.01, SPL and u-boot.img
  6616. support. Barebox: add 2012.04, remove 2011.12.
  6617. Updated/fixed packages: alsa-lib, alsa-utils, at, atk, avahi,
  6618. barebox, berkeleydb, bind, bluez_utils, boost, busybox,
  6619. can-utils, ccache, cifs-utils, coreutils, cups, dbus, dhcp,
  6620. directfb, dnsmasq, doom-wad, dosfstools, e2fsprogs, expat,
  6621. fakeroot, feh, ffmpeg, file, fis, freetype, gamin, gawk,
  6622. gdk-pixbuf, gettext, giblib, glib-networking, gmp, gnutls,
  6623. gpsd, grep, gstreamer, gst-plugins-{bad,base,good,ugly},
  6624. haserl, hdparm, imagemagick, iproute2, iptable, iw, kexec,
  6625. kmod, lame, libaio, libarchive, libatomic_ops, libconfig,
  6626. libcurl, libdvdnav, libdvdread, libedbus, libethumb, libffi,
  6627. libfuse, libglib2, libgtk2, libhid, libmad, libmbus, libmpeg2,
  6628. libnl, libplayer, libpng, libsigc, libsoup, libupnp, liburcu,
  6629. libusb, libusb-compat, libxml2, libxml-parser-perl, libxslt,
  6630. lighttpd, linux-firmware, linux-fusion, lite, lsof, ltrace,
  6631. lttng-libust, lua, m4, makedevs, microperl, mpd, mpfr, mpg123,
  6632. mrouted, mtd, mysql_client, nbd, ncftp, ncurses, neon,
  6633. netsnmp, network-manager, nfs-utils, ngrep, ntfs-3g, openntpd,
  6634. openssh, openssl, parted, pango, pcre, php, pixman, poco,
  6635. psmisc, pulseaudio, python, qt, quagga, radvd, rpm, rsync,
  6636. ruby, samba, sam-ba, sane-backends, sawman, screen, sdl_net,
  6637. smartmontools, speex, sqlite, squashfs3, squid, sshfs, sudo,
  6638. syslinux, sysstat, taglib, tcpdump, tftp-hpa, transmission,
  6639. tiff, tinyhttpd, uboot-tools, udev, uemacs, unionfs, usbutils,
  6640. util-linux, vala, valgrind, vim, vsftpd, wget, wipe,
  6641. wpa_supplicant, xdriver_xf86-{input-vmmouse,video-fbdev},
  6642. xfsprogs, zlib
  6643. New packages: apr, apr-util, audiofile, bellagio,
  6644. conntrack-tools, empty, fmtools, glib-networking,
  6645. heirloom-mailx, hiawatha, latencytop, lcdproc, libcap-ng,
  6646. libdmtx, libfcgi, libnetfilter_conntrack, libnfnetlink,
  6647. libtpl, localedef, minicom, msmtp, ndisc6, netatalk,
  6648. ocf-linux, openswan, parted, polarssl, protobuf, read-edid,
  6649. socketcand, stress, systemd, ushare, zeromq
  6650. Deprecated packages: ttcp
  6651. Removed packages: ntfsprogs
  6652. Issues resolved (http://bugs.uclibc.org):
  6653. #2353: [lua] fix build with 2010.08-rc1
  6654. #2503: Microperl fails build on MIPSel or with Fedora13.x86_64
  6655. #2557: [PATCH] mkfs.xfs complains about missing libxfs.so.0
  6656. #2881: Can't build project statically with external toolchain
  6657. #3751: MIPS: fix BR2_GCC_TARGET_ABI for MIPS n64
  6658. #4808: ccache may build against wrong zlib
  6659. #4880: New package lcdproc
  6660. #4886: New package protobuf
  6661. #4892: build fails on ltp-testsuite-20101031/testcases/kernel/fs/...
  6662. #4898: * make: [target-finalize] Error 1 (ignored)*
  6663. #4985: Qt 4.7.4 build crashes with Linux 2.6.29
  6664. #4970: udev 181 fails to build if kernel version 3.3 is selected
  6665. #5018: dialog broken: exits with assert in uClibc
  6666. #5102: qt package moc, uic, rcc read from wrong place
  6667. #5144: Patch to fix ixon bug in uemacs
  6668. #5198: Line graphics output is broken in GNU Screen
  6669. #5204: Missing terminfo file(s) for GNU screen terminal type
  6670. 2012.02, Released February 29th, 2012:
  6671. Updated/fixed packages: libecore
  6672. 2012.02-rc3, Released February 27th, 2012:
  6673. Fixes all over the tree.
  6674. Automatic host dependencies handling for cmake packages
  6675. fixed. Customize package deprecated as using a post-build
  6676. script is nowadays the preferred way of adding extra stuff to
  6677. the rootfs.
  6678. Linux-headers 3.0.x / 3.2.x stable version bumped.
  6679. QEMU defconfigs updated to 3.2.x kernels and readme fixed.
  6680. Updated/fixed packages: dropbear, ffmpeg, libpng
  6681. 2012.02-rc2, Released February 19th, 2012:
  6682. Fixes all over the tree.
  6683. Toolchain: uClibc: Added upstream post-0.9.33 fixes, Bump
  6684. linux-headers 3.0.x / 3.2.x stable versions.
  6685. Documentation: Added makedev / <pkg>_DEVICES /
  6686. <pkg>_PERMISSIONS documentation.
  6687. Updated/fixed packages: busybox, ffmpeg, gst-dsp, libecore,
  6688. libvncserver, mxml, python.
  6689. 2012.02-rc1, Released February 12th, 2012:
  6690. Fixes all over the tree and new features.
  6691. Toolchain: Default to GCC 4.5.x, add binutils 2.22. Java
  6692. support removed, Powerpc SPE ABI support. GDB ELF support fix,
  6693. GDB 7.4, crosstool-NG 1.13.4.
  6694. Gentargets: scp and mercurial support.
  6695. Autotools: derive host dependencies from target by default.
  6696. Packages can now declare device table snippets.
  6697. Host utilities menu with commonly used host tools.
  6698. defconfigs: qemu configs for x86-64, mips and sparc, at91
  6699. defconfigs now use modern U-Boot / mainline Linux, added
  6700. lpc3250 defconfigs.
  6701. uClibc: remove 0.9.30, backport unshare() support, add
  6702. 0.9.32.1 / 0.9.33, use same config for ctng.
  6703. Bootloaders: U-Boot: add 2011.12, remove 2010.xx versions,
  6704. Barebox: add 2012.01/02, remove 2011.10/11, LPC32xx
  6705. bootloaders added.
  6706. Various manual updates. Release tarballs now contain generated
  6707. manual in text/html/pdf formats.
  6708. Buildroot now calls the stop function of scripts in
  6709. /etc/init.d at shutdown.
  6710. Updated/fixed packages: atk, avahi, barebox, bash, beecrypt,
  6711. bind, binutils, bison, bluez_utils, bzip2, busybox, cairo,
  6712. ccache, cdrkit, coreutils, cramfs, dbus, dbus-glib, dialog,
  6713. diffutils, dmalloc, dropbear, e2fsprogs, ebtables, ed,
  6714. ethtool, expat, ffmpeg, file, fis, flex, fluxbox, fontconfig,
  6715. freetype, gawk, grep, gst-dsp, gst-ffmpeg, gst-plugins-base,
  6716. hdparm, hostapd, htop, i2c-tools, icu, iproute2, ipsec-tools,
  6717. ipset, iptables, iw, jpeg, kismet, lame, libcap, libcgi,
  6718. libev, libeXosip2, libffi, libftdi, libgpg-error, libgtk2,
  6719. libidn, libmms, libmnl, libmodbus, libnl, libogg, libosip,
  6720. libpcap, libpng, libraw1394, libroxml, libusb, libusb-compat,
  6721. libv4l, libvorbis, libxcb, libxml-parser-perl, libxslt,
  6722. lighttpd, links, lm-sensors, lua, m4, module-init-tools, mpc,
  6723. mesa3d, mpd, mpfr, mplayer, mtd-utils, nano, nbd, ncurses,
  6724. netperf, netsnmp, ntp, opencv, openocd, openssl, openvpn, orc,
  6725. pciutils, pcre, pixman, pkg-config, poco, popt, proftpd,
  6726. python, python-serial, qt, ruby, samba, sdl, sdparm,
  6727. squashfs3, sshfs, sqlite, squid, sudo, syslinux, tcl, tcpdump,
  6728. ti-utils, tiff, tremor, uboot, uboot-tools, udev, usbmount,
  6729. util-linux, vala, valgrind, vsftpd, wpa_supplicant,
  6730. xapp_{bdftopcf,mkfontdir,mkfontscale,xkbcomp,xcursorgen,xinit},
  6731. xapp_xinput, xapp_xman, xcb-util, xdm, xenomai,
  6732. xf86-video-sis, xfont_{encodings,font-util},
  6733. xlib_lib{fontenc,X11,Xau,Xcursor,Xdmcp,Xfixes,Xfont,Xrender},
  6734. xlib_libxkbfile, xterm, xutil_makedepend, yajl
  6735. New packages: boost, connman, dstat, expedite, explorercanvas,
  6736. feh, flot, giblib, igh-ethercat, imlib2, jquery,
  6737. jquery-sparklines, jquery-validation, jsmin, kmod, libecore,
  6738. libedbus, libedje, libeet, libeina, libelementary, libesmtp,
  6739. libethumb, libevas, libical, libmbus, liboauth, liburcu,
  6740. libvncserver, linux-firmware,
  6741. lttng-{babeltrace,libust,modules,tools}, NetworkManager,
  6742. open2300, python-distutilscross, python-dpkt,
  6743. python-netifaces, python-pygame, python-setuptools, rt-tests,
  6744. sam-ba, sane-backends, sqlcipher, transmission, unionfs,
  6745. xf86-input-tslib, xinput-calibrator
  6746. Issues resolved (http://bugs.uclibc.org):
  6747. #743: Add Transmission bit torrent option to buildroot
  6748. #755: Add Boost libraries as a package
  6749. #2299: Add crypto support to libsoup
  6750. #2617: Pixman 0.19.2 & Cairo 1.10.0
  6751. #3403: libgpg-error: bump to version 1.10
  6752. #3409: libgpg-error: download from gnupg.org
  6753. #3421: nano: make tiny flag optional
  6754. #3691: New EFL packages
  6755. #4664: Cannot patch AT91Bootstrap
  6756. #4700: setlocalversion not working for combination svn/ubuntu 11.10...
  6757. #4760: Qt: add host-pkg-config to dependency-list
  6758. 2011.11, Released November 30th, 2011:
  6759. Fixes all over the tree.
  6760. Bump kernel headers / default Linux version to 3.1.4.
  6761. Updated/fixed packages: ruby
  6762. 2011.11-rc3, Released November 26th, 2011:
  6763. Fixes all over the tree.
  6764. Toolchain: Fix gdb dependencies for external toolchains,
  6765. adjust uClibc patches so they don't confuse modern versions of
  6766. patch, bump crosstool-ng, kernel headers and linux versions.
  6767. Updated/fixed packages: busybox, freetype, mplayer, opencv,
  6768. php, rsyslog, ruby, thttpd, xapp_xf86dga
  6769. Issues resolved (http://bugs.uclibc.org):
  6770. #4357: Prevent patch commands from accessing source control
  6771. #4369: Fix permissions on untared lsof archive
  6772. 2011.11-rc2, Released November 18th, 2011:
  6773. Fixes all over the tree and new features.
  6774. Updated asciidoc documentation
  6775. Toolchain: Bumped 3.x stable kernel headers, use wget in
  6776. crosstool-ng as well, bump crosstool-ng version, gdb fixes,
  6777. uClibc sparc fix.
  6778. Updated/fixed packages: distcc, file, gst-plugins-bad, libxcb,
  6779. mplayer, newt, qt, rpm, rrdtool, tar, tftpd
  6780. Issues resolved (http://bugs.uclibc.org):
  6781. #3355: mplayer fails to build
  6782. #4021: uClibc: undefined reference to `__GI___errno_location'
  6783. #4297: Qt's qmake uses wrong pkg-config
  6784. 2011.11-rc1, Released November 11th, 2011:
  6785. Fixes all over the tree and new features.
  6786. Moved misc scripts and support stuff to support/. Renamed
  6787. patch-kernel.sh to support/scripts/apply-patches.sh.
  6788. Documentation: Moved to asciidoc format, make targets to
  6789. generate text/html/pdf/epub output added.
  6790. Defconfigs: Qemu configs updated to 3.1 kernel and readmes
  6791. added.
  6792. Bootloaders: Add support for custom git tree / tarballs for
  6793. barebox, similar to how it's handled for u-boot. Clean up
  6794. menuconfig options.
  6795. Toolchain: Update external codesourcery toolchain download
  6796. URLs after Codesourcery got bought by Mentor, add x86
  6797. toolchain, update toolchain versions and optimize toolchain
  6798. sysroot copying. Fix uClibc 0.9.32 builds for e500 PPC,
  6799. updated GDB versions / download URLs. Binutils
  6800. libbfd/libopcodes static/dynamic linking fix. GCC 4.6.2 added,
  6801. use ctng-1.13.0.
  6802. Package infrastructure: Support for local packages /
  6803. overrides, package dir / name arguments dropped from
  6804. {GEN,AUTO,CMAKE}TARGETS.
  6805. Linux: Kernel extensions infrastructure support, Xenomai +
  6806. RTAI support.
  6807. Updated/fixed packages: acpid, bind, busybox, dash, dbus,
  6808. dbus-glib, directfb, dnsmasq, drystone, e2fsprogs, ethtool,
  6809. fakeroot, fbdump, file, freetype, fuse, gamin, gmp, gmpc,
  6810. gnutls, gob2, gst-plugins-{base,bad,good,ugly}, gstreamer,
  6811. hostapd, ifplugd, imagemagick, intltool, ipsec-tools, ipset,
  6812. iptables, iw, jpeg, kexec, leafpad, less, libargtable2, libao,
  6813. libconfuse, libcuefile, libcurl, libdaemon, libevent,
  6814. libglib2, libiconv, libmpd, libreplaygain, libroxml,
  6815. libsamplerate, libsndfile, libsoup, libsvgtiny, libtool,
  6816. libxcb, lighttpd, links, linux-fusion, lite, lrzsz, lsof, lzo,
  6817. lzop, makedevs, mcookie, mpg123, mpd, mpfr, mtd, musepack,
  6818. mutt, mysql_client, ncftp, ncurses, neon, netcat, netsnmp,
  6819. ntfs-3g, ntfsprogs, ntp, openntpd, openssh, openssl, oprofile,
  6820. orc, pciutils, psmisc, python, qt, quagga, radvd, rpm, rsync,
  6821. samba, sawman, sdl_sound, smartmontools, sqlite, squid,
  6822. stunnel, sudo, sylpheed, sysstat, taglib, tar, tcpreplay,
  6823. tslib, usbutils, util-linux, valgrind, wget, whetstone, which,
  6824. wpa-supplicant, xdata_xcursor-themes, xmlstarlet, xterm
  6825. New packages: bluez-utils, cifs-utils, fftw, fluxbox, json-c,
  6826. libev, libftdi, libgeotiff, libmodbus, libplayer, live555,
  6827. ngrep, noip, opencv, openocd, picocom, poco, portaudio,
  6828. pulseaudio, pv, rtai, vala, xenomai.
  6829. Removed packages: liboil, sfdisk, swfdec, webif
  6830. Issues resolved (http://bugs.uclibc.org):
  6831. #505: live555: new package
  6832. #507: Enable live and tv options in MPlayer-1.0rc2
  6833. #531: let e2fsprogs package to export headers to staging dir if needed
  6834. #1171: Linuxthreads new cannot find sysdep.h
  6835. #1357: Add bluez to buildroot system
  6836. #2107: New package: input-event-daemon
  6837. #2599: New package: orc (Oil Runtime Compiler)
  6838. #2605: gstreamer: Update to 0.10.30
  6839. #2677: introducing util-linux-ng as replacement for util-linux
  6840. #2917: Qt: Add declarative module
  6841. #3145: jffs2 image generation fails
  6842. #3271: netperf-2.4.5 fails to compile
  6843. #3331: xdata_xcursor-themes depends on xcursorgen
  6844. #3343: Add file:// download SITE_METHOD
  6845. #3391: Add support for specifying an external kernel tree
  6846. #3631: Error while compiling with Xorg
  6847. #3709: oprofile doesn't build for mipsel
  6848. #3925: midori not getting compile
  6849. #4045: Add support for downloading i386 toolchains from codesourcery
  6850. #4165: lrzsz-fix-symlink-at-rebuild.patch
  6851. #4171: makedevs-unused-but-set-variable.patch
  6852. #4183: Codesourcery toolchain download site has changed
  6853. #4231: libneon.so: undefined reference to `SSL_SESSION_cmp'
  6854. #4381: Add option to lighttpd to enable Lua support
  6855. #4387: Make sure that dest dir exists before installing mtd files
  6856. 2011.08, Released August 31th, 2011:
  6857. Fixes all over the tree.
  6858. Toolchain: Fix codesourcery 2009q3 ARM download, Linux 3.0.4
  6859. kernel headers.
  6860. Updated/fixed packages: ipset, python
  6861. 2011.08-rc2, Released August 29th, 2011:
  6862. Fixes all over the tree.
  6863. Toolchain: crosstool-NG 1.12.1, use binutils 2.21 on
  6864. mips/sh/older uClibc, disallow uClibc 0.9.32 on avr32/sh
  6865. (broken).
  6866. Defconfigs: kernel updates, fix mini2440 serial port config,
  6867. remove old arm toolchain configs.
  6868. Bootloaders: Fix grub patching, add barebox-{n,x,menuconfig}
  6869. targets similar to linux/busybox.
  6870. Updated/fixed packages: barebox, directfb, libsoup,
  6871. libxml-parser-perl, mtd, ncurses, python, ti-utils, udev,
  6872. usbmount, util-linux, xfont_font-misc-misc
  6873. Issues resolved (http://bugs.uclibc.org):
  6874. #3685: ncurses installation hangs due to old version of tic
  6875. #4093: Grub fails to install bz2 patch after conversion to...
  6876. 2011.08-rc1, Released August 4th, 2011:
  6877. Fixes all over the tree and new features.
  6878. Toolchain: uClibc 0.9.32 / NPTL support, 0.9.29 removed,
  6879. ext-toolchain-wrapper improvements, improved non-MMU
  6880. support. GCC 4.3.6 / 4.6.1.
  6881. GENTARGETS infrastructure extended to cover bootloaders and
  6882. Linux kernel as well. Options to retrive Linux/U-Boot from a
  6883. custom git repo instead of upstream tarballs.
  6884. Support for Linux 3.x and release candidate tarballs.
  6885. X-Loader bootloader for omap added.
  6886. Make source/external-deps now also works for external
  6887. toolchains / crosstool-ng backend.
  6888. Updated/fixed packages: autoconf, berkeleydb, bind, binutils,
  6889. bmon, bridge-utils, busybox, cmake, dbus, dbus-glib,
  6890. e2fsprogs, ethtool, ffmpeg, gst-plugins-{bad,base,good,ugly},
  6891. gvfs, hostapd, iproute2, iptables, iw, jpeg, lame, libarchive,
  6892. libdnet, libdrm, libgcrypt, libgtk2, libmpeg2, libpng,
  6893. libsoup, lighttpd, linux-fusion, lzo, midori, mtd-utils,
  6894. nfs-utils, openvpn, oprofile, orc, pkg-config, proftpd, qt,
  6895. ruby, samba, sdl, shared-mime-info, sudo, sqlite, squid,
  6896. synergy, udev, usbmount, usbutils, util-linux, valgrind,
  6897. webkit, xorg-xserver, xz, zlib
  6898. New packages: acl, attr, ebtables, gnutls, inotify-tools,
  6899. ipset, libargtable2, libiqrf, libmnl, libnspr, libnss,
  6900. libroxml, libyaml, live555, mxml, orc, rsyslog, sredird,
  6901. statserial, stunnel, ti-utils, uboot-tools, yajl
  6902. Deprecated packages: liboil, swfdec
  6903. Removed packages: hal
  6904. Issues resolved (http://bugs.uclibc.org):
  6905. #3559: libnspr: Add new package
  6906. #3595: patch to add libroxml
  6907. #3565: libnss: Add new package
  6908. #3583: xfonts_font-adobe-100dpi fails due to missing map file
  6909. #3649: [PATCH] Add mapdir to existing pkg-config patch
  6910. #3907: 2011.05 - Qt 4.7.3 not building on ARM
  6911. #3961: Nfs-utils: Remove SUSv3-function index
  6912. #3985: "help" target's defconfig list needs sort
  6913. #3997: bump libroxml to v2.1.0
  6914. 2011.05, Released May 27th, 2011:
  6915. Updated/fixed packages: makedevs
  6916. 2011.05-rc2, Released May 24th, 2011:
  6917. Fixes all over the tree.
  6918. Toolchain: Code sourcery ARM 2009q1 download URL fixed /
  6919. 2009q3 external toolchains added. Crosstool-NG bumped to
  6920. 1.11.3, eglic/glibc configuration fixes. Linux kernel 2.6.38.x
  6921. bumped to 2.6.38.7.
  6922. Updated/fixed packages: bind, fakeroot, kbd, psmisc, qt
  6923. 2011.05-rc1, Released May 18th, 2011:
  6924. Fixes all over the tree and new features.
  6925. External toolchain improvements: We now build a binary
  6926. toolchain wrapper and install it into HOST_DIR/usr/bin, which
  6927. enforces the correct compiler arguments, making an external
  6928. toolchain as easy to use outside of Buildroot as the internal
  6929. ones are. This also brought a cleanup of CFLAGS, making the
  6930. Buildroot build output easier to read.
  6931. Rootfs device handling improvements: Choice between static
  6932. /dev, devtmpfs and devtmpfs with either mdev or udev.
  6933. Toolchain: More preconfigured codesourcery external
  6934. toolchains, improved Crosstool-NG support, fix for GCC
  6935. snapshot versions, GCC 4.4.6 / 4.5.3, experimental GCC 4.6.0
  6936. support, target-GCC fixes, uClibc fixes, 0.9.32-rc3 support.
  6937. Bootloaders: U-boot 2011.03, Barebox 2011.05.0
  6938. Linux: support for custom kernel image targets, E.G. for
  6939. powerpc builds with embedded device trees.
  6940. Misc fixes for qemu defconfigs, ensuring correct serial
  6941. terminal setup out of the box.
  6942. Misc gentarget / autotools handling fixes.
  6943. Updated/fixed packages: alsa-lib, alsa-utils, alsamixergui,
  6944. atk, avahi, bind, bison, busybox, copas, dbus-glib, dhcp,
  6945. dhcpdump, dnsmasq, dropbear, ethtool, fakeroot, ffmpeg, file,
  6946. gamin, gnuconfig, gst-ffmpeg, gst-plugins-good, gtk2-engines,
  6947. haserl, hostapd, icu, imagemagick, iproute2, iw, kismet, less,
  6948. libcap, libdnet, libglade, libglib2, libgtk2, libnl, libpng,
  6949. libxml2, libxml2, libxslt, lighttpd, lockfile-progs, makedevs,
  6950. midori, mpg123, mpc, mpd, mpfr, mplayer, mtd-utils, ncurses,
  6951. netsnmp, openssh, openssl, openvpn, pango, pkg-config, popt,
  6952. procps, proftpd, qt, quagga, readline, rsync, samba, sdl,
  6953. socat, squashfs, squid, sudo, tslib, udev, usbutils, webkit,
  6954. wpa_supplicant, xerces, xfont_font-misc-misc, xlib_libX11,
  6955. xlib_libXfont, xlib_xtrans, xorg-server, xterm, xz
  6956. New packages: bonnie++, can-utils, gdisk, htop,
  6957. input-event-daemon, libexif, libraw, libv4l, ngircd
  6958. Removed packages: festival
  6959. Issues resolved (http://bugs.uclibc.org):
  6960. #2131: Add OpenMP support to the toolchain
  6961. #3379: New Package: bonnie++
  6962. #3445: Not working openssl-10.0.0d on 386sx
  6963. #3451: fakeroot package: wrong FAKEROOT_SITE variable
  6964. #3457: alsamixergui: broken URL
  6965. #3475: Calling sync on large filesystems when not always necessary
  6966. #3511: make busybox-menuconfig does not download busybox package
  6967. #3541: Quotes in the top Makefile:217 break buildroot/kernel config...
  6968. #3571: u-boot: fw_printenv does not build
  6969. #3643: popt source url is not responding
  6970. #3733: dropbear: make zlib optional
  6971. #3757: Buildroot can't build mplayer with libmad
  6972. 2011.02, Released February 28th, 2011:
  6973. Fixes all over the tree.
  6974. Updated/fixed packages: alsamixergui, avahi, ffmpeg, icu, mpd,
  6975. nuttcp, qt, slang, squashfs, sylpheed, synergy, xerces
  6976. Deprecated packages: devmem2, webif
  6977. Issues resolved (http://bugs.uclibc.org):
  6978. #2911: Qt: Disable qt3support-option, if gui-module isn't selected
  6979. #3259: Unable to build webkit (on arm)
  6980. #3295: slang fails to build on mipsel
  6981. #3325: ffmpeg fails to build
  6982. 2011.02-rc2, Released February 24th, 2011:
  6983. Fixes all over the tree.
  6984. Festival packages marked as broken. Unless someone steps up
  6985. to support them, they will be removed during the 2011.05
  6986. development cycle.
  6987. Updated/fixed packages: atk, avahi, bind, cairo, dbus,
  6988. enchant, fakeroot, gmpc, gpsd, gvfs, iperf, jpeg, libarchive,
  6989. libcgicc, libdaemon, libdrm, libevent, libgail, libglib2,
  6990. libgpg-error, libmicrohttpd, librsvg, libsoup, libxcp,
  6991. makedevs, matchbox-fakekey, matchbox-startup-monitor, mdadm,
  6992. metacity, mpd, nasm, nfs-utils, olsr, openssl, popt,
  6993. pthread-stubs, quagga, rpm, samba, sdl, sdl_gfx, sdl_image,
  6994. sdl_mixer, sdl_sound, sdl_ttf, squashfs, synergy, taglib,
  6995. tcpreplay, tiff, wpa_supplicant, xcb-util,
  6996. xdriver_xf86-input-{acepad,aiptek,evdev,joystick,keyboard},
  6997. xdriver_xf86-input-{mouse,synaptics,void},
  6998. xdriver_xf86-video-{chips,dummy,geode,glide,intel,nv,wsfb},
  6999. xlib_lib{ICE,SM,XScrnSaver,Xau,Xcursor,Xdmcp,Xi,Xinerama},
  7000. xlib_lib{Xrandr,Xt,Xtst,Xxf86dga,Xxf86vm,dmx,fontenc,pciaccess},
  7001. xserver_xorg-server, xz
  7002. Removed packages: ace_of_penguins, vlc
  7003. Issues resolved (http://bugs.uclibc.org):
  7004. #3205: Failing chmod when running "make" in buildroot (openssl)...
  7005. #3277: quagga fails to build with SNMP support
  7006. #3283: See why nfs-utils needs fakeroot, and convert to autotools
  7007. #3307: synergy fails to build due to missing XTest library
  7008. 2011.02-rc1, Released February 14th, 2011:
  7009. Fixes all over the tree and new features.
  7010. External toolchain improvements: clarification of the options,
  7011. and introduction of the toolchain profile concept, for
  7012. well-known toolchains. Buildroot is now capable of
  7013. automatically downloading and extracting well-known toolchains
  7014. (for the moment, CodeSourcery ARM, PowerPC, MIPS and SuperH
  7015. toolchains are supported). Crosstool-NG backend updated and
  7016. improved.
  7017. Complete rework of how hardware boards are supported.
  7018. Each board now only has a single defconfig file, and all
  7019. board-specific options have been removed. See
  7020. docs/buildroot.html#board_support for details.
  7021. Added support for the following boards: Mini2440, Qemu ARM
  7022. Versatile, Qemu MIPSel Malta, Qemu PowerPC G3beige, Qemu SH4
  7023. r2d and Qemu x86. The Qemu boards support allows to easily
  7024. build systems that are known to work under Qemu.
  7025. Initial support for Blackfin processors.
  7026. Staging directory moved into $(O)/host/usr/<tuple>/sysroot, in
  7027. preparation for support of SDK. For the same reason, the
  7028. toolchain binaries (cross-compiler and other related tools)
  7029. are now installed in $(O)/host/usr/bin/. The cross pkg-config
  7030. now also automatically returns correct values for cross
  7031. compilation, without needing any environment variables to be
  7032. set.
  7033. Ccache support reworked. Now used for both host and target
  7034. compilation, and cache is stored in ~/.buildroot-ccache.
  7035. Toolchain: uClibc 0.9.32-rc2, several components moved to
  7036. normal AUTOTARGET packages.
  7037. Generic cmake infrastructure, similar to the existing
  7038. GENTARGETS/AUTOTARGETS.
  7039. Support for bzr downloads, next to the existing git/svn support.
  7040. Kconfig infrastructure rebased against 2.6.38-rc3, bringing
  7041. misc fixes. 'xconfig' now uses Qt4 rather than Qt3.
  7042. EXT2 file system size handling improved, UBI image support, fs
  7043. configuration options cleanup, U-Boot/Barebox version bumps.
  7044. Updated/fixed packages: alsa-utils, at, autoconf, automake,
  7045. bash, binutils, bison, busybox, bzip2, cdrkit, cloop, cmake,
  7046. coreutils, cups, dbus, dbus-python, dhcp, directfb,
  7047. direcfb-examples, dmalloc, dnsmasq, dosfstools, e2fsprogs, ed,
  7048. fbset, ffmpeg, findutils, flac, freetype, gdk-pixbuf, gmp,
  7049. grep, gperf, gst-ffmpeg, gst-plugins-bad, gst-plugins-base,
  7050. gst-plugins-good, gst-plugins-ugly, gstreamer, gvfs, hdparm,
  7051. hostapd, i2c-tools, icu, imagemagick, input-tools, iproute2,
  7052. iptables, iw, jpeg, kexec, libaio, libart, libcap, libconfig,
  7053. libfuse, libglib2, libidn, libmad, libogg, libpcap, libpng,
  7054. libsndfile, libtheora, libtool, libusb-compat, libvorbis,
  7055. libxcb, libxml2, libxslt, links, linux-fusion, lm-sensors,
  7056. lsof, ltp-testsuite, ltrace, lvm2, lzo, m4, makedevs,
  7057. memtester, mesa3d, mii-diag, mpc, mpfr, mpg123, mplayer,
  7058. mrouted, mtd-utils, nano, netperf, netplug, ntfs-3g, ntp,
  7059. openssh, openssl, openvpn, oprofile, pango, patch, pciutils,
  7060. php, pkgconfig, portmap, psmisc, python, qt, rsync, ruby,
  7061. sawman, screen, sdl_gfx, sdl_sound, smartmontools, socat,
  7062. sqlite, squid, sshfs, sstrip, sysklogd, sysstat, sysvinit,
  7063. tar, tcpdump, tslib, udev, usbutils, vim, vtun, webkit, wipe,
  7064. x11vnc, xapp_xlogo, xcb-proto, xfont_font-util,
  7065. xkeyboard-config, xlib_libX11, xz, zlib
  7066. New packages: dhrystone, dsp-tools, faad2, fbgrab, gst-dsp,
  7067. gst-omapfb, irda-utils, lame, libao, libcue, libcuefile,
  7068. libffi, libhid, libreplaygain, libsamplerate, libsigc++,
  7069. lsuio, mpd, musepack, python-mad, python-serial, rsh-redone,
  7070. sdparm, tidsp-binaries, vorbis-tools, wavpack, whetstone,
  7071. xl2tp, xmlstarlet
  7072. Removed packages: hotplug, l2tp, libfloat, microcom,
  7073. ng-spice-rework
  7074. Issues resolved (http://bugs.uclibc.org):
  7075. #267: The make target: cross fails because toolchain_build_...
  7076. #415: Berkeley DB: mut_pthread.o: relocation R_X86_64_32 against...
  7077. #561: ltp-testsuite failed to install
  7078. #1447: Installing gfortran on PowerPC
  7079. #1651: Build fail caused by ccache in module-init-tools
  7080. #1681: Cross-compiled binaries shouldn't be installed into staging
  7081. #1723: [PATCH] axel: convert to generic package infrastructure and...
  7082. #1735: [PATCH] mplayer: convert to autotools infrastructure
  7083. #2551: [PATCH] native toolchain in the target filesystem fails
  7084. #2623: buildroot-snapshot-20100922 fails when compiling development...
  7085. #2647: makedevs package lacks support for 16-bit major/minor numbers
  7086. #2371: QT MYSQL Module does not build when MySQL installed on the host
  7087. #2839: compile fails in various packages with a odd message "error:...
  7088. #2887: tar "buffer overflow detected" error
  7089. #2893: Broken "make source" with external toolchain
  7090. #2905: Qt: Speed up compilation, if gui-module isn't selected
  7091. #2929: genext2fs: couldn't allocate a block (no free space)
  7092. #2935: Ntpdate isn't installed
  7093. #2965: Broken linkage to xkbcomp (blocking X server startup)
  7094. #2983: xlib_libX11 build failed
  7095. #3007: kexec doesn't build: Missing regdef.h file
  7096. #3085: Init scripts are not compatible with sysVinit (when busybox...
  7097. #3103: make external-deps wants to download gcc-.tar.bz2 when...
  7098. #3109: abnormal `make busybox-menuconfig`
  7099. #3115: How about board specific makefiles?
  7100. #3169: python patch has typo, aborts build in scenario
  7101. #3181: dhcp.mk copies S80dhcp-server to etc/init.d, not etc/init.d/
  7102. 2010.11, Released November 30th, 2010:
  7103. Fixes all over the tree.
  7104. Updated/fixed packages: libgcrypt, qt, squid, sysstat, tcpdump,
  7105. xserver-xorg
  7106. Issues resolved (http://bugs.uclibc.org):
  7107. #2773: squid with openssl support needs openssl on the host
  7108. #2857: OBJDUMP definition is missing from TARGET_CONFIGURE_OPTS
  7109. 2010.11-rc2, Released November 25th, 2010:
  7110. Fixes all over the tree.
  7111. Add support for LEON Sparc architecture variants. Fix make
  7112. source/external-deps for host packages.
  7113. Updated/fixed packages: bash, bind, busybox, dialog, gpsd,
  7114. libglib2, libcurl, libmad, lrzsz, midori, module-init-tools,
  7115. mtd-utils, openssh, openssl, pciutils, php, qt, sqlite,
  7116. sysstat, webkit, zlib
  7117. Issues resolved (http://bugs.uclibc.org):
  7118. #759: Sysstat build broken without libintl
  7119. #2479: host-module-init-tools 3.11 fails to build
  7120. #2725: Buildroot overrides kernel config
  7121. #2785: mtd-utils build fails due to missing libmtd
  7122. #2791: Added PHP-Process Control to the PHP-Package
  7123. #2797: pciutils dependencies on zlib not taken into account
  7124. #2809: failed to compile libglib2
  7125. #2821: [PATCH] Patch for JavaScriptCore in QtWebKit module
  7126. #2827: qt-4.7.0-pthread_getattr_np.patch invalid for qt 4.6...
  7127. #2833: Failed to compile webkit without X11
  7128. 2010.11-rc1, Released November 8th, 2010:
  7129. Fixes all over the tree and new features.
  7130. Kconfig infrastructure rebased against 2.6.36-rc1, bringing
  7131. misc fixes + nconfig and savedefconfig targets.
  7132. Toolchain: ARM cortex A9 support, experimental crosstool-ng
  7133. backend, GCC 4.5.x.
  7134. Fs: Squashfs 4.1 with lzo support
  7135. Old-style package hooks (*_HOOK_POST_*) removed. Use the more
  7136. generic new-style ones instead.
  7137. Download handling reworked and support for git/svn downloads
  7138. added.
  7139. Removed experimental shared config.cache support, as it is
  7140. too unreliable.
  7141. A convenience Makefile wrapper is created when using
  7142. out-of-tree building, similar to how it is done for the kernel.
  7143. Alpha, Cris, IA64 and Sparc64 architecture support removed.
  7144. New packages: argp-standalone, gdk-pixbuf, gpsd, gst-ffmpeg,
  7145. libmpeg2, kbd, librsvg, nuttcp, rng-tools, rrdtool, xz
  7146. Updated/fixed packages: acpid, alsa-lib, argus, at, autoconf,
  7147. automake, avahi, axel, beecrypt, berkeleydb, bind, bmon, boa,
  7148. bootutils, bridge-utils, bsdiff, busybox, cvs, dbus, directfb,
  7149. dmraid, docker, dosfstools, dropbear, e2fsprogs, ethtool,
  7150. expat, ezxml, fbset, fconfig, ffmpeg, freetype, gadgetfs-test,
  7151. gamin, gawk, genext2fs, gperf, gst-plugins-base,
  7152. gst-plugins-ugly, gtk2-themes, gtkperf, gvfs, haserl, hdparm,
  7153. hostapd, hwdata, ifplugd, imagemagick, iperf, ipsec-tools,
  7154. iproute2, iptables, iw, jpeg, kexec, kismet, less, libcgi,
  7155. libcurl, libdaemon, libdnet, liberation, libevent, libeXosip2,
  7156. libglade, libgtk2, libiconv, libidn, libintl, libmms, libmpd,
  7157. libnl, liboil, libosip2, libpcap, libpng, libtool, libungif,
  7158. libxml2, libxslt, lighttpd, lite, lm-sensors, lockfile-progs,
  7159. logrotate, m4, matchbox, mdadm, mesa3d, metacity, mplayer,
  7160. mtd-utils, mysql_client, nano, nbd, ncftp, neon, netperf,
  7161. netsnmp, ng-spice-rework, ntfsprogs, ntp, openntpd, openssh,
  7162. openssl, openvpn, oprofile, pango, patch, pcre, php,
  7163. pkg-config, portmap, pppd, pptp-linux, prboom, proftpd, radvd,
  7164. rdesktop, readline, rp-pppoe, ruby, qt, quagga, samba, sawman,
  7165. sdl_mixer, sdl_sound, sed, setserial, shared-mime-info, slang,
  7166. speex, sqlite, squashfs, startup-notification, strace,
  7167. sylpheed, sysstat, taglib, tcpdump, thttpd, tiff, tn5250,
  7168. torsmo, tslib, udev, udpcast, usbmount, usbutils, vsftpd,
  7169. vtun, which, wireless-tools, wpa_supplicant, xapp_twm,
  7170. xapp_xbacklight, xapp_xcursorgen, xapp_xinit, xapp_xinput,
  7171. xapp_xmore,
  7172. xdriver_xf86-input-{acecad,aiptek,evdev,joystick,keyboard},
  7173. xdriver-xf86-input-{mouse,synaptics,vmmouse,void},
  7174. xdriver-xf86-video-{apm,ark,ast,ati,chips,cirrus,dummy,fbdev},
  7175. xdriver-xf86-video-{geode,glide,glint,i128,i740,intel,mach64},
  7176. xdriver-xf86-video-{mga,neomagic,newport,nv,openchrome,r128},
  7177. xdriver-xf86-video-{rendition,s3,s3virge,savage,siliconmotion},
  7178. xdriver-xf86-video-{sis,sisusb,suncg3,suncg6,suncg14,sunffb},
  7179. xdriver-xf86-video-{sunleo,suntcx,tdfx,tga,trident,v4l,vesa},
  7180. xdriver-xf86-video-{vmware,voodeo,wsfb,xgi,xgixp},
  7181. xkeyboard-config, xlib_libX11, xserver_xorg-server, xstroke,
  7182. xterm, xvkbd, zlib
  7183. Deprecated packages: hotplug, lzma, ng-spice-rework, sfdisk
  7184. Removed packages: dillo, libglib12, libgtk12, microwin,
  7185. pcmcia
  7186. Issues resolved (http://bugs.uclibc.org):
  7187. #901: new package: gpsd
  7188. #2389: Generate a Makefile wrapper in $(O)
  7189. #2461: wireless_tools: install shared library if needed
  7190. #2521: Can't compile sdl_mixer, mikmod.h can't be found
  7191. #2533: xserver_xorg-server: Enable glx, if mesa3d is built
  7192. #2563: [PATCH] cairo: Expose the configure option to disable some...
  7193. #2581: libmms: Update to 0.6, and patch to work on architectures...
  7194. #2707: Can't compile linux kernel using buildroot + crosstool-ng
  7195. #2731: Build order
  7196. #2737: buildroot configuration tool crashing when the path exceeds...
  7197. #2767: Build for lsof broken in buildroot-2010.08
  7198. 2010.08: Released August 31th, 2010:
  7199. Fixes all over the tree.
  7200. Updated/fixed packages: atk, xstroke
  7201. Removed packages: lxdoom
  7202. 2010.08-rc2, Released August 30th, 2010:
  7203. Fixes all over the tree.
  7204. Mark the combination of uClibc 0.9.31, gcc 4.2.x, C++ and
  7205. locale support as broken. Remove deprecated GCC 4.2.[1-3]
  7206. versions.
  7207. Mark CRIS architecture as deprecated, as it is discontinued
  7208. upstream.
  7209. Marked shared config.cache as experimental and disabled by
  7210. default as it is known to break with certain package
  7211. combinations.
  7212. Toolchain: fixed gcc 4.2.x build after uClibc NPTL support got
  7213. added.
  7214. fs: old-style squashfs for big endian archs fixed.
  7215. Updated/fixed packages: busybox, gst-plugins-base,
  7216. imagemagick, kismet, libgail, libglib2, libgtk2, lua,
  7217. luafilesystem, lzo, ncurses, netcat, pango, php, pppd,
  7218. proftpd, qt, samba, startup-notification, swfdec, sysvinit,
  7219. util-linux
  7220. Removed packages: stunnel
  7221. Issues resolved (http://bugs.uclibc.org):
  7222. #635: util-linux fails to build in 2009.08
  7223. #2239: netcat package installs its binary to target as avr32-linux...
  7224. #2395: libglib2-2.24.1 and libxml2-2.7.7 fails build on MIPS because...
  7225. #2443: Initramfs: Don't overwrite $(TARGET_DIR)/init if it exists
  7226. #2449: Minor fixes for squashfs makefile and correct PowerPC e500 ...
  7227. 2010.08-rc1, Released July 30th, 2010:
  7228. Fixes all over the tree and new features.
  7229. Toolchain: GCC 4.3.5, older 4.3.x versions removed. GCC 4.1.2
  7230. and non-sysroot support removed. Added support for (snapshot)
  7231. NPTL in uClibc, 0.9.28.3 removed,
  7232. Bootloaders: Various cleanups, moved to boot/, added Barebox,
  7233. removed yaboot. Support building u-boot from custom tarball,
  7234. u-boot 2010.06.
  7235. New GTK-based configurator, usable using 'make gconfig'.
  7236. Java packages marked as broken. Unless someone steps up to
  7237. support this, they will be removed during the 2010.11
  7238. development cycle.
  7239. Alpha, IA64 and Sparc64 architectures marked as deprecated.
  7240. GTK+ on DirectFB has also been marked as deprecated, as it is
  7241. not supported in recent GTK+ versions, and more and more
  7242. packages depends on the new versions.
  7243. Unless someone steps up to support them, they will be removed
  7244. during the 2010.11 development cycle.
  7245. New packages: cgilua, copas, coxpcall, ffmpeg, libsvgtiny,
  7246. libgail, luafilesystem, luasocket, rings, wsapi, xavante, xterm
  7247. Updated/fixed packages: alsa-lib, alsamixergui, at, atk,
  7248. avahi, berkeleydb, bash, blackbox, busybox, bzip2, cairo,
  7249. cdrkit, cmake, dash, dhcp, dialog, diffutils, distcc, dmalloc,
  7250. dnsmasq, dropbear, e2fsprogs, fbv, file, flex, fontconfig,
  7251. gawk, gmpc, gnuchess, gst-plugins-base, gst-plugins-good,
  7252. gstreamer, gzip, icu, intltool, iostat, ipsec-tools, iptables,
  7253. iw, libart, libcgi, libcurl, libdrm, libeXosip, libfuse,
  7254. libglib2, libgpg-error, libiconv, libidn, liblockfile, libpng,
  7255. libsoup, lighttpd, links, linux-fusion, lmbench, lrzsz,
  7256. ltrace, make, midori, module-init-tools, mplayer,
  7257. mysql_client, nbd, ncurses, neon, netcat, netperf, netsnmp,
  7258. ntfsprogs, openssl, oprofile, pango, php, qt, quagga, samba,
  7259. setserial, sdl, sdl_mixer, sdl_sound, sdl_ttf, speech-tools,
  7260. sqlite, squashfs, swfdec, tftpd, thttpd, tn5250, tremor,
  7261. usbutils, webif, webkit, wireless_tools, xerces,
  7262. xkeyboard-config, xserver_xorg-server, xvkbd, zlib
  7263. Removed packages: modutils, portage, rxvt
  7264. Deprecated packages: dillo, libglib12, libgtk12, microwin, pcmcia
  7265. Issues resolved (http://bugs.uclibc.org):
  7266. #321: alsa-lib uses host include files for python which breaks ...
  7267. #361: linux kernel configuration choice works incorrectly
  7268. #387: Tremor not installed to toolchain
  7269. #401: new package: ffmpeg
  7270. #475: uImage target for U-boot failed generating
  7271. #543: ATK requires X11 on DirectFB target
  7272. #575: webkit: Buildroot Libtool Patch Fails
  7273. #583: build fails with external x86_64 toolchain
  7274. #729: sstrip creates corrupted headers
  7275. #829: Webkit r44552 needs libXt
  7276. #835: Package Dataflashboot-1.05 does not compile with buildroot...
  7277. #847: Compiling target-gcc v4.4 fails with "libc.so.0: cannot open...
  7278. #859: Add (head of) nptl branch to list of uClibc versions
  7279. #949: compile with debug info
  7280. #955: Grub fails to build with External Toolchain
  7281. #1051: Webkit doesn't compile (Linuxthreads new, x86)
  7282. #1213: Move .config into output directory
  7283. #1225: Buildroot fails to account for "nof" subdirectory (no float...
  7284. #1231: (sparc) Linux kernel fails to build
  7285. #1261: The getline() in output/build/linux-2.6.28/scripts/unifdef.c...
  7286. #1339: Busybox needs -fno-strict-aliasing to compile cleanly
  7287. #1393: neon config fails libxml/parser.h: libxml2 requires, but not ...
  7288. #1405: WebKit fails to build because pthread_getattr_np is not impl...
  7289. #1675: GMP Error during buildroot make process
  7290. #1741: external toolchain linking error
  7291. #1753: lmbench: convert to generic package infrastructure
  7292. #1771: Fakeroot and the target/generic/device_table.txt create bad...
  7293. #1807: LZMA 4.32.7, Required header file(s) are missing
  7294. #1813: xkeyboard-config fails to build because of intltool problem
  7295. #1879: Bump iptables to 1.4.8
  7296. #1885: Add a bunch of lua modules
  7297. #1897: Bump libusb to 1.0.7
  7298. #1903: Bump tn5250 to 0.17.4 and migrate to autotargets
  7299. #1909: netperf-2.4.5 fails to build because of undeclared SOCK_DCCP
  7300. #1927: Bump file to 5.03 and migrate to autotargets
  7301. #1933: Bump gawk to 3.1.8 and migrate to autotargets
  7302. #1945: PHP: add sqlite3 dependency when using external lib
  7303. #1951: Bump openssl to 0.9.8o
  7304. #1957: Bump sqlite to 3.6.23.1
  7305. #1975: Package removal/deprecation
  7306. #1981: zlib: bump to 1.2.5
  7307. #1987: intltool: Fix spelling mistake
  7308. #1993: Bump bash to 4.1.7(1) and migrate to autotargets
  7309. #1999: Typo in path checking
  7310. #2005: Bump dnsmasq to 2.55 and migrate to gentargets
  7311. #2035: ipsec-tools-0.7.2 fails to build with gcc-4.4.x
  7312. #2038: Bump ncurses to 5.7
  7313. #2095: make gconfig: undefined reference to symbol 'dlsym@@GLIBC_2.2.5'
  7314. #2101: blackbox depends on locale support
  7315. #2119: Tries to build kernel, although disabled in config
  7316. #2125: libXfont build fail
  7317. #2143: buildroot compiler generates segfaulting statically linked exe..
  7318. #2149: xterm build failure
  7319. #2155: Compression lzo don't set for ubifs
  7320. #2161: [SECURITY] Update libpng to 1.2.44
  7321. #2167: Bump busybox to 1.17.0, convert to gentargets, drop 1.12, ...
  7322. #2181: pixman can't apply pixman-0.10.0-no-tests.patch
  7323. #2191: linux-fusion build fail
  7324. #2221: Qt does not compile (dependencies not taken into account?)
  7325. #2233: Atmel atstk target skeletons have /etc/mtab as a file, not ...
  7326. #2245: Netcat does not work due to incorrect assumptions about signed..
  7327. #2251: directory output/build after make *_defconfig not found
  7328. #2257: Convert netsnmp package to autotargets
  7329. #2263: Bump samba to 3.3.13
  7330. #2269: setserial causes make error
  7331. 2010.05, Released May 30th, 2010:
  7332. Fixes all over the tree.
  7333. Updated/fixed packages: coreutils, hal, libcap,
  7334. lockfile-progs, ncftp, xserver_xorg-server
  7335. Issues resolved (http://bugs.uclibc.org):
  7336. #1789: binutils fails to build for i386
  7337. #1843: Fix libcap build failure
  7338. #1855: XORG Keyboard driver fails to compile
  7339. 2010.05-rc3, Released May 27th, 2010:
  7340. Fixes all over the tree.
  7341. Updated/fixed packages: aumix, atk, avahi, bmon, busybox, cairo,
  7342. cdrkit, dbus-glib, dbus-python, docker, enchant, fltk, gamin,
  7343. gettext, gmpc, gob2, grep, gstreamer, gst-plugins-bad,
  7344. gst-plugins-base, gvfs, hal, iconv, icu, iperf, libcgicc,
  7345. libdvdnav, libdvdread, libglade, libglib2, libgtk2, libidn,
  7346. libmms, libmpd, libpcap, libsoup, lmbench, lsof, ltrace, lvm2,
  7347. make, metacity, microperl, mtd-utils, mutt, nbd, netsnmp,
  7348. ntfsprogs, ntp, olsr, pango, pciutils, pcmanfm, php,
  7349. pkg-config, psmisc, qt, samba, shared-mime-info, squashfs,
  7350. squashfs3, sshfs, startup-notification, swfdec, sylpheed,
  7351. uemacs, util-linux, valgrind, vpnc, vsftpd, webkit, xstroke
  7352. Issues resolved (http://bugs.uclibc.org):
  7353. #75: arm buildroot "unrecognized option" error
  7354. #699: Buildroot fails to copy libstdc++ to target when using external...
  7355. #1693: NTP trys IPV6 even if not configured error: 'IPV6_MULTICAST...
  7356. #1729: alsamixergui fails to build
  7357. #1801: Avahi-autoipd doesn't create TARGET_DIR/var/lib
  7358. #1819: pciutils small bugs
  7359. #2065: Internal toolchain: bump gcc 4.3.x series to 4.3.5
  7360. 2010.05-rc2, Released May 11th, 2010:
  7361. Fixes all over the tree.
  7362. Updated/fixed packages: busybox, customize, gawk, gnuchess,
  7363. hal, hostapd, less, libgcrypt, libnl, libxcb, linux-fusion,
  7364. ltp-testsuite, mplayer, netplug, pciutils, php, sed,
  7365. shared-mime-info usb_modeswitch, usbutils, vlc wpa_supplicant,
  7366. xapp_bdftopcf, xapp_mkfontdir, xdriver_xf86-video-openchrome,
  7367. xfont_encodings, xlib_libX11, xlib_libXfont, xlib_xtrans,
  7368. xproto_fontcacheproto, xproto_fontsproto, xvkbd
  7369. Removed packages: vice
  7370. Issues resolved (http://bugs.uclibc.org):
  7371. #849: "customize" package copies files to wrong place in target tree
  7372. #985: Bump usb_modeswitch package to 1.1.0
  7373. #1135: Package customize. Wrong copying
  7374. #1525: Package hal deletes a whole <target>/etc/rc.d directory
  7375. #1531: libxcb 1.5 build fails, due to missing xcbgen Python module
  7376. #1669: Busybox failed to compile when using an external toolchain
  7377. #1699: Fix usbutils dependencies and bump
  7378. #1705: Fix pciutils broken cross compiling
  7379. #1717: External toolchain fixes for hostapd & wpa_supplicant
  7380. 2010.05-rc1, Released May 3rd, 2010:
  7381. Cleaned up / restructured package menu.
  7382. Toolchain: uClibc 0.9.30.3 / 0.9.31, older 0.9.30.x removed.
  7383. 2.6.33 kernel headers, binutils 2.20.1, GCC 4.4.4,
  7384. removed broken nios2 support, ppc e300cX/e500mc support,
  7385. improved external toolchain support, GDB 7.x support.
  7386. X.org updated to 7.5.
  7387. New packages: cdrkit, cramfs, genext2fs, genromfs,
  7388. libatomic_ops, librsync, libusb-compat, lmbench, netperf,
  7389. squashfs, squashfs3, squid
  7390. Updated/fixed packages: alsa-utils, argus, autoconf, bison,
  7391. busybox, bzip2, directfb, dnsmasq, dosfstools, e2fsprogs,
  7392. eeprog, fakeroot, fbv, findutils, freetype, haserl, hostapd,
  7393. iperf, iptables, iw, less, libaio, libcgi, libcgicc, libdrm,
  7394. libgcrypt, libglib2, libid3tag, libmad, liboil, libosip2,
  7395. libpng, libraw1394, libsysfs, libxml2, libxslt, linux-fusion,
  7396. ltrace, lua, lzma, madplay, makedevs, matchbox, mdadm,
  7397. memstat, mesa3d, mtd-utils, nano, ncurses, openssl, patch,
  7398. pciutils, php, pixman, portage, pppd, pthread-stubs, python,
  7399. qt, radvd, samba, setserial, smartmontools, tar, tslib,
  7400. udpcast, usb_modeswith, vtun, wget, xdata_xcursor-themes,
  7401. xdriver_xf86-video-intel, xkeyboard-config, xlib_libX11,
  7402. xlib_libXaw, xlib_libXfont, xlib_libXfontcache,
  7403. xlib_libXxf86misc, xlib_libXtst, xlib_libpciaccess,
  7404. xproto_dri2proto, xproto_eviext, xproto_fontcacheproto,
  7405. xproto_xf86miscproto, xserver_xorg-server
  7406. Removed packages: xapp_xtrap, xlib_libXTrap, xlib_libXevie,
  7407. xlib_libXxf86misc, xxproto_evieext, proto_trapproto,
  7408. xproto_xf86miscproto
  7409. Issues resolved (http://bugs.uclibc.org):
  7410. #513: Add new squid package
  7411. #661: lmbench: new package
  7412. #719: Add lua option to haserl
  7413. #800: [PATCH] iperf update to 2.0.4
  7414. #803: [PATCH] lua - add shared library patch and config option for...
  7415. #805: [PATCH] mdadm - version update
  7416. #817: integrator926_defconfig uses unsupported uboot board name
  7417. #851: Add option to specify --sysroot value for external toolchain
  7418. #1093: Upgrade libusb to v1.0.3 and add new libusb-compat
  7419. package for compatibility with old packages that expect
  7420. the pre-1.0 API.
  7421. #1105: Add new netperf package
  7422. #1111: Bump wget to 1.12 and migrate to Makefile.autotools.in
  7423. #1117: Bump nano to 2.2.3 and migrate to Makefile.autotools.in
  7424. #1123: Bump less to 436 and migrate to Makefile.autotools.in
  7425. #1129: Bump memstat to 0.8 and migrate to Makefile.package.in
  7426. #1189: Wrong u-boot configuration name for integrator926 target
  7427. #1219: kernel headers not correctly installed into toolchain/staging
  7428. #1267: Wrong BR2_EXTRA_VERSION
  7429. #1273: BR2_INET_IPV6 does not enable IPv6 in pppd
  7430. #1303: Add librsync package
  7431. #1321: Busybox link fails due to lack of --sysroot option
  7432. #1327: mtd-utils compile failure due to lack of --sysroot in CFLAGS
  7433. #1345: Bump pppd to 2.4.5 and convert to Makefile.autotools.in
  7434. #1369: cannot build radvd (flex problem)
  7435. #1387: xlib_libX11-1.3.2 can't find libjpeg
  7436. #1411: [SECURITY] Update openssl package to 0.9.8n
  7437. #1417: Bump iptables to 1.4.7
  7438. #1423: Bump e2fsprogs to 1.41.11
  7439. #1429: [SECURITY] Update php to 5.2.13
  7440. #1441: Add binutils 2.20.1
  7441. #1447: Package installation on target with debug symbols is broken
  7442. #1459: Misc QA fixes
  7443. #1489: radvd update to 1.6
  7444. #1513: Enable powerpc e300c2, e300c3 and e500mc optimization
  7445. #1537: dev entries not created anymore
  7446. #1555: Fix default uclibc-0.9.31 configuration
  7447. #1561: [SECURITY] Update samba to 3.3.12
  7448. #1567: openssl0.9.8n fails to compile
  7449. #1573: Alsa-utils alsactl/init/* not installed to target
  7450. #1591: portmap fails to compile
  7451. #1615: Convert eeprog package to gentargets
  7452. #1645: Bump hostapd package to 0.7.2
  7453. 2010.02, Release February 26th, 2010:
  7454. Fixes all over the tree.
  7455. Updated/fixed packages: avahi, busybox, cramfs, ipsec-tools, libcgicc,
  7456. libgtk2, libraw1394, madplay, netsnmp, pango, squashfs, sylpheed, qt,
  7457. xfont_font-util
  7458. Removed packages: hostap, openmotif, xpdf
  7459. Issues resolved (http://bugs.uclibc.org):
  7460. #165: openmotif does not build
  7461. #1147: Remove obsolete hostap package
  7462. #1183: make source fails to download gmp, mpfr and patches
  7463. 2010.02-rc2, Released February 23th, 2010:
  7464. Fixes all over the tree and new features.
  7465. New packages: intltool
  7466. Updated/fixed packages: ace_of_penguins, alsa-lib, alsa-utils, argus,
  7467. at, automake, ccache, dosfstools, e2fsprogs, flex, gob2, gmpc,
  7468. gst-plugins-good, imagemagick, iw, kexec, libeXosip, libgtk2,
  7469. libpcap, libpng, libsoup, libxcb, libxml-parser-perl, libxml2,
  7470. libxslt, lvm2, matchbox, mplayer, rsync, rubix, shared-mime-info,
  7471. tcl, webkit, xapp_mkfontscale, xfont_encodings, xfont_font-util,
  7472. xlib_libfontenc, xproto_trapproto, zlib
  7473. Removed package: xboard
  7474. Issues resolved (http://bugs.uclibc.org):
  7475. #335: atk looks for the path to the gnome library on the host
  7476. #355: Please update WebKit - it doesn't compile!
  7477. #453: libglib2 autoreconf
  7478. #457: e2fsprogs link problem
  7479. #459: libgtk2 autoreconf
  7480. #469: build of libgtk2 for host incorrectly assumes that X.org ...
  7481. #671: Bash fails to build when building buildront on Ubuntu 9.04
  7482. #711: WebKit host dependencies problems
  7483. #821: cp: illegal operation
  7484. #1039: Not compiled on ubuntu karmic
  7485. #1069: [PATCH] The AT91BOOTSTRAP makefile contains a typo
  7486. 2010.02-rc1, Released February 9th, 2010:
  7487. Fixes all over the tree and new features.
  7488. Generalized autotools infrastructure to be usable for
  7489. non-autotools packages, see package/Makefile.package.in for
  7490. details.
  7491. Cleaned up avr32 toolchain config, external source-based
  7492. toolchain support is gone.
  7493. Dependency checks: Also check for makeinfo, only print output
  7494. on errors.
  7495. Toolchain: uClibc 0.9.30.2, gcc 4.4.3
  7496. New packages: libcdaudio, libdvdnav, libdvdread, hostapd, ser2net,
  7497. tcpreplay
  7498. Updated/fixed packages: alsa-lib, alsa-utils, at, autoconf, bash,
  7499. bind, binutils, bootutils, busybox, dbus, directfb, dnsmasq,
  7500. e2fsprogs, gstreamer, gperf, gst-plugins-bad, gvfs, fbdump, flex,
  7501. hal, iptables, iw, jpeg, kismet, libfuse, libglib2, liboil, libpcap,
  7502. libungif, libxml2, libxslt, lighttpd, mesa, mpg123, mtd-utils, nbd,
  7503. neon, netstat-nat, newt, openvpn, pcre, php, qt, rdesktop, readline,
  7504. rpm, sawman, sdl, sdl_ttf, sqlite, sshfs, tremor, u-boot,
  7505. usb_modeswitch, usbutils, webkit, wpa_supplicant, xfsprogs, zlib
  7506. Removed package: asterisk, openswan
  7507. Issues resolved (http://bugs.uclibc.org):
  7508. #515: tcpreplay: new package
  7509. #553: Wrong DirectFB ps2mouse limitation
  7510. #559: mesa3d build fails
  7511. #679: Autoconf cannot find M4
  7512. #739: New/updated hostapd package
  7513. #749: Bump usbutils package to version 0.86
  7514. #751: Kernel 2.6 snapshot fetch fail
  7515. #753: Bump lighttpd package to 1.4.25
  7516. #757: U-Boot: mkimage cannot be installed using external toolchain
  7517. #761: Add binutils 2.20 to toolchain options
  7518. #763: [SECURITY] Update pcre to 7.9
  7519. #765: Add buildroot branding to gcc
  7520. #767: Bump iw package to 0.9.18
  7521. #773: [SECURITY] Update bind to 9.5.2-P1
  7522. #795: Minor edits to fix typos, grammar, spelling, usage in documen...
  7523. #813: Drop not very useful generic package selection options ...
  7524. #823: Editor backup files (~) is copied from the target_skeleton
  7525. #827: Bump mtd-utils package to version 1.2.0
  7526. #841: Build error
  7527. #913: Bump iptables to 1.4.6
  7528. #919: Bump usb_modeswitch package to 1.0.7
  7529. #925: Bump wpa_supplicant package to 0.6.10
  7530. #931: Bump kismet package to 2010-01-R1
  7531. #937: Bump openvpn package to 2.1.1
  7532. #943: Bump sqlite package to 3.6.22
  7533. #961: Bump dnsmasq to 2.52
  7534. #967: Bump netstat-nat to 1.4.10
  7535. #973: Bump iw to 0.9.19
  7536. #1003: DHCP options disabled with busybox-1.16.0
  7537. #1009: [SECURITY] Bump php to 5.2.12
  7538. #1015: [SECURITY] Bump bind to 9.5.1-P2
  7539. #1027: Busybox flash commands conflict with those from mtd-utils
  7540. #1063: [SECURITY] Update lighttpd to 1.4.26
  7541. 2009.11, Released December 1st, 2009:
  7542. Additional fixes and cleanups.
  7543. Updated/fixed packages: alsamixergui, autoconf, coreutils, fltk,
  7544. microperl, ncurses, vim
  7545. Issues resolved (http://bugs.uclibc.org):
  7546. #707: Cant configure fltk-1.1.7. configure: error: Configure could ...
  7547. 2009.11-rc2, Released November 29th, 2009:
  7548. Additional fixes and cleanups.
  7549. Updated/fixed packages: busybox, dbus, fltk, gvfs, ltrace
  7550. 2009.11-rc1, Released November 23rd, 2009:
  7551. Fixes all over the tree and new features.
  7552. Cleaned up / Simplified build directory layout. Refer to
  7553. docs/buildroot.html#using for details.
  7554. Target defconfig files moved to configs/ and listed in 'make help'
  7555. output.
  7556. Fixed *clean targets. Now clean removes everything generated,
  7557. so you can do a fresh rebuild. Distclean furthermore removes
  7558. kbuild tools and .config, bringing the source tree back in a
  7559. pristine state.
  7560. Toolchain: ARM cortex A8 support, GCC 4.4.2, sensible default
  7561. soft / hardfloat setting for architecture, ensure target-ldd
  7562. gets installed.
  7563. New packages: divine, gvfs, libarchive, libmicrohttpd,
  7564. sdl_sound, swfdec, sysstat
  7565. Updated/fixed packages: alsa-lib, alsamixergui, autoconf, bootutils,
  7566. busybox, gcc, directfb, dnsmasq, e2fsprogs, festival, gamin, gperf,
  7567. gqview, gstreamer, gst-plugins-bad, gst-plugins-base, gst-plugins-good,
  7568. imagemagick, ipkg, iptables, iw, kernel-headers, kismet, leafpad,
  7569. libelf, libevent, libglib2, libidn, liblockfile, libmad, libpcap,
  7570. libupnp, libuuid, libxml2, lighttpd, ltrace, lua, lzma, magiccube4d,
  7571. matchbox, mdadm, nbd, ncftp, ncurses, netkittelnet, netsnmp,
  7572. ng-spice-rework, ntfs-3g, openntp, openssl, pcmanfm, php, psmisc,
  7573. python, quagga, radvd, rpm, rsync, rubix, samba, sawman, sdl, sdl_image,
  7574. shared-mime-info, sfdisk, spawn-fcgi, speech-tools, sqlite, squashfs,
  7575. synergy, syslinux, sysklogd, target-binutils, tcpdump, torsmo, u-boot,
  7576. udpcast, util-linux, valgrind, vsftpd, wipe, wpa-supplicant, x11vnc,
  7577. xdata_xcursor-themes, xboard, xfsprogs, xstroke, zlib[5~
  7578. Removed package: mdnsresponder, mpatrol, gcc 3.4.6 + 4.0.4, vice
  7579. Issues resolved (http://bugs.uclibc.org):
  7580. #301: allow to install libsmbclient
  7581. #303: add gvfs package
  7582. #477: Add sdl_sound package
  7583. #487: Make kismet package sexier
  7584. #511: New package usb_modeswitch
  7585. #527: misc fixes for dnsmasq package
  7586. #565: libevent: Bump version and clean up makefile
  7587. #587: Use iptables multipurpose binaries and bump to 1.4.4
  7588. #593: Missing early check for patch(1)
  7589. #597: (REOP) Selecting busybox in buildroot's config clobbers ar ...
  7590. #609: libmicrohttpd: New package
  7591. #615: python: Don't delete .py files unless asked
  7592. #617: netkit/inetd requires RPC and fails to build if RPC is disabled
  7593. #619: netkittelnet requires netkitbase to install, but there's no ...
  7594. #645: allow to build nbd-server with NBD package
  7595. #653: [SECURITY] Update php package to version 5.2.11
  7596. #655: Update sqlite package to version 3.6.18
  7597. #657: Bug in imagemagick-clean target
  7598. #663: Add option for NAND flash with 512B Page and 16 kB erasesize ...
  7599. #665: [PATCH] Samba package
  7600. #667: [PATCH] e2fsprogs
  7601. #683: SDL-dfb does not select directfb
  7602. #701: make install problem with unstripped binaries
  7603. #703: [SECURITY] Update openssl package to 0.9.8l
  7604. #705: Bump spawn-fcgi package to 1.6.3
  7605. #709: Bump lighttpd package to 1.4.24
  7606. #713: Migrate openntpd package to Makefile.autotools.in
  7607. #715: Bump libidn package to 1.15 and other fixes
  7608. #717: Bump dnsmasq to 2.51 and introduce new IDN option
  7609. #731: Bump iw package to 0.9.17
  7610. 2009.08, Released August 31th, 2009:
  7611. Additional fixes and cleanups.
  7612. Updated/fixed packages: ctorrent, saveconfig/getconfig,
  7613. sdl_net, util-linux.
  7614. Issues resolved (http://bugs.uclibc.org):
  7615. #529: util-linux doesn't find headers and include libs correctly
  7616. #557: Build ctorrent with SSL support if available
  7617. 2009.08-rc3, Released August 26th, 2009:
  7618. Additional fixes and cleanups.
  7619. Updated/fixed packages: alsa-utils, berkeleydb, busybox, dbus,
  7620. directfb, enchant, kernel headers.
  7621. Issues resolved (http://bugs.uclibc.org):
  7622. #471: Allow directfb compilation with debug
  7623. #541: Removal of CVS directories in target filesystem broken
  7624. #547: berkeleydb: Update config.{sub, guess}
  7625. #549: enchant: Fix dependencies.
  7626. #569: Fix alsa-utils build for x86 on x86-64
  7627. 2009.08-rc2, Released August 6th, 2009:
  7628. Additional fixes and new features.
  7629. New packages: libuuid, gcc 4.3.4.
  7630. Updated/fixed packages: busybox, classpath, gzip, ipsec-tools,
  7631. jamvm, libusb, microperl, neon, popt, sed, webkit.
  7632. Fixed issue with 'make oldconfig'
  7633. Issues resolved (http://bugs.uclibc.org):
  7634. #525: sed broken with external toolchain
  7635. #537: Fix gzip build with recent glibc
  7636. 2009.08-rc1, Released August 2nd, 2009:
  7637. Fixes all over the tree and new features.
  7638. Improvement of external toolchain support:
  7639. - Support for glibc toolchains.
  7640. - The toolchain configuration announced to Buildroot is
  7641. verified against the real toolchain configuration.
  7642. - Fixes, documentation.
  7643. Cleanup X.org support: clarified configuration options, and
  7644. removed mandatory dependency on useless libraries such as
  7645. libXt or libXaw.
  7646. New QT-based configurator, usable using 'make xconfig'.
  7647. Support for the Xtensa architecture.
  7648. Toolchain: GCC 4.4.1, 2.6.30 kernel headers, removed < 2.6.26
  7649. headers.
  7650. New packages: bmon, ctorrent, dosfstools, enchant,
  7651. gst-plugins-bad, iw, libmms, libnl, netstat-nat, ntfsprogs,
  7652. sdl_gfx, spawn-fcgi.
  7653. Updated packages: bind, busybox, coreutils, sqlite, directfb,
  7654. expat, gamin, gnuconfig, haserl, ipsec-tools, classpath,
  7655. libcurl, libglib2, liblockfile, libpng, libsoup, libxml2,
  7656. lighttpd, ltp-testsuite, lvm2, matchbox, memstat,
  7657. gst-plugins-good, gstreamer, libogg, libvorbis, mplayer,
  7658. neon, openssl, pciutils, php, qt, ruby, sawman, webkit,
  7659. wpa-supplicant, xdriver_xf86-input-synaptics,
  7660. xdriver_xf86-video-intel, xlib_libXfont, xlib_libXft,
  7661. xlib_libXt, xproto_xproto, xserver-xorg, xutil_makedepend,
  7662. xutil_util-macros.
  7663. Issues resolved (http://bugs.uclibc.org):
  7664. #83: liblockfile fails to compile due to eaccess redefinition
  7665. #163: Xtensa architecture port
  7666. #171: xorg-server / kernel headers 2.6.26 - vm86.c compilation issue
  7667. #241: device mapper + lvm2: build together
  7668. #243: ctorrent: new package
  7669. #247: ntfsprogs: new package
  7670. #271: Library 'libgcc_s.so.1' not installed in search path
  7671. #287: New package libnl
  7672. #289: New package iw
  7673. #331: Update MPlayer to version 1.0rc2
  7674. #333: Bump sqlite package to 3.6.15
  7675. #349: update libsoup to version 2.26.2
  7676. #357: New package netstat-nat
  7677. #359,#413: Upgrade openvpn to Makefile.autotools.in
  7678. #367: linux kernel compile error for arm926t
  7679. #369: Add SDL_gfx package
  7680. #373: Support for building gstreamer without libxml
  7681. #379: update DirectFB to version 1.4.0
  7682. #383: gst-plugins-good: Allow soup plugin to be configured
  7683. #385: neon: Fix pkgconfig dependency
  7684. #387: Tremor not installed to toolchain
  7685. #389: New package bmon
  7686. #391: gstreamer: Bump version to 0.10.23
  7687. #393: gst-plugins-base: Bump version to 0.10.23
  7688. #395: gst-plugins-bad: New package
  7689. #403: Error while building iso9660 image
  7690. #409: Bump php package to 5.2.10
  7691. #411: ipsec-tools: Bump version to 0.7.2
  7692. #417: New package spawn-fcgi
  7693. #419: Bump lighttpd package to 1.4.23
  7694. #421: toolchain: Clean up toolchain locale support menu
  7695. #427: webkit: Update to WebKit svn r44552
  7696. #437: ltp-testsuite: Bump version to 20090630
  7697. #451: Upgrade from unmaintained dosfstools-2.11 to dosfstools-3.0.3
  7698. #467: DirectFB 1.4.1
  7699. #473: memstat_0.5.tar.gz has install with -D and that fails "make"
  7700. #491: libxml2: Bump version to 0.7.3
  7701. #495: Bump bind package to 9.5.1-P3 (security)
  7702. #497: OpenSSL RSA key generation hangs on x86_64
  7703. #509: Bump sqlite package to 3.6.16
  7704. #523: pciutils broken with external toolchain
  7705. #533: Update gamin to 0.1.10 to fix compilation
  7706. 2009.05, Released June 1st, 2009:
  7707. Fixes for dropbear & diffutils, bump linux-advanced 2.6.29.x
  7708. version and marked ubifsroot as broken.
  7709. 2009.05-rc3, Released May 27th, 2009:
  7710. Fixes for toolchain (gcc arm pr37436), stable kernel versions,
  7711. busybox, curl, libusb, readline, python and strace.
  7712. Issues resolved (http://bugs.uclibc.org):
  7713. #345: libcurl package needs a urandom fix
  7714. 2009.05-rc2, Released May 19th, 2009:
  7715. Fixes for toolchain (gcc w/softfloat on ppc, 3.4.6 buildfix
  7716. for newer hosts), stable kernel versions, busybox, cups,
  7717. dmraid, docker, mesa3d, rsync and updated defconfigs.
  7718. xserver marked as broken on AVR32 and atngw100-expanded
  7719. config removed.
  7720. Issues resolved (http://bugs.uclibc.org):
  7721. #167: metacity does not build
  7722. #295: gamin installs python support even if python is disabled
  7723. #323: gen_matypes fails to execute during build of Mesa when us...
  7724. 2009.05-rc1, Released May 5th, 2009:
  7725. Fixes all over the tree, further conversion of packages to
  7726. Makefile.autotools.in and we now build host versions of
  7727. packages where needed for build time dependencies instead of
  7728. relying on the correct versions being available on the build
  7729. host. Ancient toolchain / busybox versions have furthermore
  7730. been removed as announced in the 2009.02 release notes.
  7731. New packages: flac, gob2, lzop, taglib, wpa_supplicant
  7732. Updated packages: avahi, bind, binutils, busybox, dbus, dbus-glib,
  7733. directfb, dnsmasq, freetype, gcc, gmp, gstreamer, iptables, kernel
  7734. headers, kexec, libglib2, libpng, libsndfile, lua, mpfr, ntfs-3g,
  7735. openssl, php, qtopia4, rsync, samba, sqlite, tar, uboot, uclibc,
  7736. util-linux, xorg7, xerces
  7737. Issues resolved (http://bugs.uclibc.org):
  7738. #5,#77,#141,#143: Convert php package to Makefile.autotools.in
  7739. and a ton of other improvements
  7740. #19: page.h missing by util-linux
  7741. #37: update libglib2 to version 2.18.4
  7742. #61: tslib puts staging_dir into pkgconfig file
  7743. #69: tar refuses to build
  7744. #71,#175: ./wchar.h:41:12: error: empty filename in #include
  7745. #73: Bump openssl package to the latest version
  7746. #81: New package wpa_supplicant
  7747. #99: new package: flac
  7748. #101: update gstreamer packages
  7749. #105,#313: menuconfig segfaults on tinyx if wchar is not
  7750. selected
  7751. #107: convert libvorbis to Makefile.autotools.in
  7752. #109: Make pppd package avoid bsd err
  7753. #111: binutils 2.17 fails to build when texinfo >= 4.10
  7754. #133: Modify ncurses5-config to get correct include path
  7755. #137: Bump php to version 5.2.9
  7756. #139: Bump sqlite to 3.6.11 and convert to
  7757. Makefile.autotools.in
  7758. #145: Bump bind package to 9.5.1-P1 (security)
  7759. #147: buildroot toolchain fails to build w/binutils-2.19.1
  7760. #151: openssl package trivial fixes
  7761. #161: vim fails on patching with errors in configure.patch
  7762. #169: blackbox-0.70.1 does not build
  7763. #177: xdriver_xf86-input-keyboard does not build
  7764. #179: Upgrade dropbear to Makefile.autotools.in
  7765. #181: Update to Xorg 7.4
  7766. #187: ntfs-3g: could not build cross
  7767. #191: alsa-lib ARM binaries always built with EABI
  7768. #213: Bump wpa_supplicant package to version 0.6.9
  7769. #217: Bump openssl package to 0.9.8k (security)
  7770. #219: Toolchain build fails on m4
  7771. #225: m4 macros are out of place
  7772. #233: make ipv6 optional in iptables
  7773. #237: ncftp: convert to Makefile.autotools.in
  7774. #239: ntfs-3g: convert to Makefile.autotools.in
  7775. #245: lzop: new package
  7776. #271: Bump bind package to 9.5.1-P2 (security)
  7777. #277: Bump sqlite package to 3.6.16
  7778. #279: update libglib2 to version 2.20.1
  7779. #281: update DirectFB to version 1.2.8
  7780. #283: add taglib
  7781. #285: compilation of samba fails if IPV6 support is missing
  7782. #293: update samba to version 3.3.3
  7783. #299: add shared-mime-info package
  7784. #307: make openssl package respect build flags