CHANGES 387 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825
  1. 2020.08.1, released October 12th, 2020
  2. Important / security related fixes.
  3. Fixes for various compilation issues with GCC 10.x.
  4. meson: Correct SDK cross-compilation.conf file when
  5. per-package builds were used to build SDK.
  6. systemd: Use /run rather than /var/run for PID files in units.
  7. Toolchain: use Secure-PLT rather than BSS-PLT for PowerPC 32.
  8. Fakeroot scripts (BR2_ROOTFS_POST_FAKEROOT_SCRIPT) are now run
  9. after all finalization hooks (including pre-rootfs) to ensure
  10. they can override any late configuration done by packages.
  11. support/script/pycompile: Rework logic to ensure .pyc files
  12. contain absolute target paths, fixing code inspection at
  13. runtime when executed with cwd != '/'.
  14. support/scripts/setlocalversion: Correct Mercurial output to
  15. match behaviour with Git.
  16. support/scripts/apply-patches.sh: Use patch
  17. --no-backup-if-mismatch, so we no longer blindly have to
  18. remove *.orig files after patching, fixing issues with
  19. packages containing such files.
  20. fs/jffs2: Now correctly handles xattrs
  21. Updated/fixed packages: acpica, afboot-stm32, alsa-utils,
  22. apparmor, bandwidthd, barebox, bash, bison, brotli,
  23. cifs-utils, cups, dhcpcd, dhcpdump, docker-cli, docker-engine,
  24. ecryptfs-utils, efl, fail2ban, fbterm, ffmpeg, fontconfig,
  25. freetype, gcc, gdb, ghostscript, gnupg2, gnutls, go, gqview,
  26. gst1-plugins-base, gst1-plugins-ugly, ipmitool, jbig2dec,
  27. kexec, lcdproc, libcamera, libhtp, libnetconf2, libraw,
  28. libssh, libxml2, libxml-parser-perl, libzip, linux-headers,
  29. live555, localedef, ltp-testsuite, lua, matchbox, memcached,
  30. memtester, mesa3d, meson, minidlna, mongodb, mongrel2, motion,
  31. mraa, mtd, musepack, neardal, netatalk, netperf, netsniff-ng,
  32. nginx, nodejs, nss-pam-ldapd, open-plc-utils, openswan,
  33. opentyrian, openvmtools, php, postgresql, python,
  34. python-aenum, python-cycler, python-engineio, python-fire,
  35. python-pymodbus, python-scapy, python-semver,
  36. python-sentry-sdk, python-socketio, python-texttable,
  37. python-tinyrpc, python-txtorcon, python3, qt5base, quagga,
  38. read-edid, redis, rsh-redone, runc, samba4, socketcand,
  39. strace, supertux, suricata, systemd, ti-utils, trinity,
  40. uclibc, usb_modeswitch, vlc, vsftpd, wampcc,
  41. wayland-protocols, wireguard-linux-compat, wireshark, wlroots,
  42. wolfssl, w_scan, xerces, xfsprogs, xdriver-xf86-video-ati,
  43. xserver_xorg-server, ympd, zeromq, zlib-ng, zstd
  44. Issues resolved (http://bugs.uclibc.org):
  45. #12911: usb_modeswitch installation race condition
  46. #13236: Can't compile linux 5.4.8 (with gcc 10 on host)
  47. 2020.08, released September 1st, 2020
  48. Various fixes.
  49. Updated/fixed packages: am33x-cm3, avahi, bluez-tools,
  50. busybox, chocolate-doom, collectd, dhcp, docker-cli, domoticz,
  51. gobject-introspection, graphite2, haproxy, ibm-sw-tpm2,
  52. imagemagick, libeXosip2, libressl, lxc, mbedtls, menu-cache,
  53. mongodb, mosquitto, nvidia-driver, paho-mqtt-c, pixz,
  54. postgresql, python-django, rtty, squid, stress-ng, systemd,
  55. trousers, uclibc, wireshark, wolfssl, zbar
  56. 2020.08-rc3, released August 28th, 2020
  57. Fixes all over the tree.
  58. Infrastructure: Ensure RPATH entries that may be needed for
  59. dlopen() are not dropped by patchelf.
  60. Toolchain: Drop old GCC 6 based external Sourcery AMD64
  61. toolchain.
  62. Updated/fixed packages: assimp, davfs2, dillo, glibc,
  63. gnuradio, hostapd, ibm-sw-tpm2, ipmitool, json-c, libroxml,
  64. linux, mender, netopeer2, openal, openjpeg, python-matplotlib,
  65. ripgrep, shadowsocks-libev, trousers, xlib_libX11,
  66. xserver_xorg-server
  67. Issues resolved (http://bugs.uclibc.org):
  68. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  69. 2020.08-rc2, released August 24th, 2020
  70. Fixes all over the tree, including a number of fixes for
  71. compilation with GCC-10.
  72. Toolchain: Disallow building uClibc-ng for RISC-V 64-bit,
  73. because of issues with a missing __riscv_flush_icache()
  74. implementation.
  75. Defconfigs: CI20: Use mainline Linux and U-boot. Update
  76. Microchip sama5d27_wlsom1_ek_mmc_dev to use bluez5-utils
  77. instead of (the removed) legacy bluez-utils
  78. Updated/fixed packages: 18xx-ti-utils, aircrack-ng, apache,
  79. atest, bandwidthd, bellagio, bind, bird, bluez-alsa, boost,
  80. c-periphery, capnproto, chrony, collectd, cpio, cvs,
  81. dieharder, domoticz, dovecot, dovecot-pigeonhole, drbd-utils,
  82. dump1090, efl, elixir, f2fs-tools, feh, fluidsynth, fping,
  83. gdbm, gdk-pixbuf, ghostscript, gst1-plugins-bad,
  84. gstreamer1-editing-services, htop, ibm-sw-tpm2, ifplugd,
  85. iftop, igd2-for-linux, ima-evm-utils, iprutils, iputils,
  86. keepalived, kmsxx, libabseil-cpp, libcamera, libcurl,
  87. libfuse3, libnss, librtlsdr, libubox, libunwind, live555,
  88. lttng-tools, luabitop, mender-artifact, minizip,
  89. mjpg-streamer, mpd, mpv, mtd, ncftp, open-lldp, openal,
  90. opencv, opencv3, openfpgaloader, optee-os, owfs, php,
  91. pistache, prosody, pulseview, python-decorator,
  92. python-gunicorn, python-rpi-gpio, python-spidev,
  93. python3-decorator, python3-mako, python3-pyselftools, qt5,
  94. qt5webengine, rauc, redis, ripgrep, rtl8188eu, rtl8821au,
  95. setools, smstools3, supertux, tftpd, tpm2-abrmd,
  96. wpa_supplicant, xen, xlib_libX11, xserver_xorg-server
  97. New packages: python3-cython, python3-pycryptodomex
  98. Issues resolved (http://bugs.uclibc.org):
  99. #12876: nodejs fails to build when host-icu has been built before
  100. #13111: python-gunicorn: missing dependency on python-setuptools
  101. #13121: wpa_supplicant fails to build without libopenssl enabled
  102. #13146: raspberrypi3_defconfig: "Inappropriate ioctl for device"..
  103. #13156: package live555 new license
  104. #13166: python-rpi-gpio: does not work against aarch64, unint..
  105. 2020.08-rc1, released August 6th, 2020
  106. Toolchain:
  107. - GCC 10.x added, GCC 9.x is the default
  108. - binutils 2.34 added, binutils 2.33 is the default, binutils
  109. 2.31 removed
  110. - glibc updated to 2.31
  111. - ARC toolchain components updated to 2020.03-release.
  112. - Enable uClibc-ng usage for RISC-V 64-bit
  113. Infrastructure:
  114. - qmake-package was fixed to be compatible with
  115. BR2_PER_PACKAGE_DIRECTORIES
  116. - complete rewrite of the Gitlab CI Yaml configuration file,
  117. now generated directly by the Gitlab CI pipeline itselfs
  118. Misc:
  119. - cargo and cargo-bin packages removed, as cargo is now part
  120. of Rust itself
  121. Filesystem: ubinize configuration files can now use
  122. BINARIES_DIR to refer to the $(O)/images directory.
  123. New packages: bitwise, earlyoom, fuse-overlayfs, gloox,
  124. kodi-pvr-octonet, kodi-pvr-zattoo, libabseil-cpp, libcutl,
  125. libnids, libnpupnp, libodb, libodb-boost, libodb-mysql,
  126. libodb-pgsql, mbpfan, netopeer2, odb, parprouted,
  127. python-colorzero, python-gpiozero, python-pybind, python-yatl,
  128. python3-decorator, qt5quicktimeline, resiprocate, ttyd,
  129. unclutter-xfixes, urandom-scripts,
  130. New defconfigs: bananapi_m2_zero, freescale_imx8mnevk,
  131. globalscale_espressobin, imx6ullevk,
  132. microchip_sama5d27_wlsom1_ek, rock_pi_4, rock_pi_n10
  133. Removed packages: cargo, cargo-bin,
  134. kodi-peripheral-steamcontroller
  135. Issues resolved (http://bugs.uclibc.org):
  136. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_DIRECTORIES
  137. #12946: Grub: Decompressor is too big.
  138. #12986: Mtools: Error converting to codepage 850
  139. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  140. #13011: Incorrect selection of gcc version
  141. #13021: Minor code error when building granite-0.4.1
  142. #13026: rpi-firmware: must not rename start files
  143. #13046: Optimize for fast -Ofast is not compliant
  144. #13081: host-e2fsprogs attempts to create udev rules.d on build host if not exists
  145. #13101: BR audit2allow support
  146. 2020.05.3, released October 12th, 2020
  147. Important / security related fixes.
  148. meson: Correct SDK cross-compilation.conf file when
  149. per-package builds were used to build SDK.
  150. systemd: Use /run rather than /var/run for PID files in units.
  151. Toolchain: use Secure-PLT rather than BSS-PLT for PowerPC 32.
  152. Fakeroot scripts (BR2_ROOTFS_POST_FAKEROOT_SCRIPT) are now run
  153. after all finalization hooks (including pre-rootfs) to ensure
  154. they can override any late configuration done by packages.
  155. support/script/pycompile: Rework logic to ensure .pyc files
  156. contain absolute target paths, fixing code inspection at
  157. runtime when executed with cwd != '/'.
  158. support/scripts/setlocalversion: Correct Mercurial output to
  159. match behaviour with Git.
  160. support/scripts/apply-patches.sh: Use patch
  161. --no-backup-if-mismatch, so we no longer blindly have to
  162. remove *.orig files after patching, fixing issues with
  163. packages containing such files.
  164. Updated/fixed packages: alsa-utils, apparmor, avahi,
  165. bandwidthd, barebox, bash, bison, brotli, busybox, cifs-utils,
  166. cryptsetup, cups, dhcpcd, dhcpdump, docker-cli, docker-engine,
  167. ecryptfs-utils, efl, fail2ban, freetype, gcc, gdb,
  168. ghostscript, gnutls, go, graphite2, gst1-plugins-base,
  169. gst1-plugins-ugly, imagemagick, ipmitool, jbig2dec, libhtp,
  170. libraw, libssh, libxml2, libxml-parser-perl, linux-headers,
  171. localedef, lua, mbedtls, memcached, mesa3d, meson, minidlna,
  172. mongodb, nginx, nodejs, nss-pam-ldapd, openvmtools,
  173. paho-mqtt-c, php, postgresql, python, python-aenum,
  174. python-django, python-engineio, python-fire, python-pymodbus,
  175. python-scapy, python-semver, python-sentry-sdk,
  176. python-socketio, python-texttable, python-tinyrpc,
  177. python-txtorcon, python3, qt5base, rsh-redone, runc, samba4,
  178. strace, supertux, suricata, systemd, uclibc, usb_modeswitch,
  179. vlc, vsftpd, wayland-protocols, wireguard-linux-compat,
  180. wireshark, wlroots, wolfssl, xserver_xorg-server, ympd,
  181. zeromq, zstd
  182. Issues resolved (http://bugs.uclibc.org):
  183. #12911: usb_modeswitch installation race condition
  184. #13251: cryptsetup does not work on branch 2020.02 following..
  185. 2020.05.2, released August 29th, 2020
  186. Important / security related fixes.
  187. Infrastructure: Ensure RPATH entries that may be needed for
  188. dlopen() are not dropped by patchelf.
  189. BR_VERSION_FULL/setlocalversion (used by make print-version
  190. and /etc/os-release): Properly handle local git tags
  191. Updated/fixed packages: apache, assimp, at91bootstrap3, bind,
  192. boost, busybox, capnproto, cegui, chrony, collectd, cpio,
  193. cryptsetup, cups, cvs, dbus, docker-engine, domoticz, dovecot,
  194. dovecot-pigeonhole, dropbear, efl, elixir, f2fs-tools, ffmpeg,
  195. gd, gdk-pixbuf, ghostscript, glibc, gnuradio, grub2,
  196. gst1-plugins-bad, gstreamer1-editing-services, hostapd,
  197. ibm-sw-tpm2, iputils, jasper, json-c, libcurl, libressl,
  198. libwebsockets, linux, live555, mesa3d, mongodb, mosquitto,
  199. mpv, nodejs, opencv, opencv3, openfpgaloader, openjpeg,
  200. patchelf, perl, php, postgresql, prosody, python-django,
  201. python-gunicorn, python-matplotlib, ripgrep, rtl8188eu,
  202. rtl8821au, ruby, shadowsocks-libev, squid, systemd,
  203. tpm2-abrmd, tpm2-tools, trousers, uboot, webkitgtk, wireshark,
  204. wolfssl, wpa_supplicant, wpewebkit, xen, xlib_libX11,
  205. xserver_xorg-server
  206. Issues resolved (http://bugs.uclibc.org):
  207. #12876: nodejs fails to build when host-icu has been built before
  208. #13111: python-gunicorn: missing dependency on python-setuptools
  209. #13121: wpa_supplicant fails to build without libopenssl enabled
  210. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  211. #13156: package live555 new license
  212. 2020.05.1, released July 25th, 2020
  213. Important / security related fixes.
  214. Toolchain:
  215. - Make external toolchain version check also work for
  216. toolchains configured with --with-gcc-major-version-only
  217. - Do not handle SOURCE_DATE_EPOCH in toolchain wrapper if the
  218. compiler supports it, fixing an issue with precompiled
  219. headers
  220. - Ensure debug libs from external toolchains are not installed
  221. into target if debugging is disabled
  222. Download:
  223. - Correct reproducibility issue in handling of git submodules
  224. for older git versions.
  225. - Fix file locking over NFS
  226. fs: Ensure cpio archive element order is reproducible
  227. Br2-external: Fix error reporting for invalid br2-external trees
  228. Per-package:
  229. - Fix an issue with python3 sysconfig data not getting
  230. correctly expanded
  231. - Fix per-package building for packages using the qmake
  232. infrastructure
  233. Updated/fixed packages: a10disp, asterisk, bind, brltty,
  234. cdrkit, clamav, cryptodev-linux, dbus, docker-cli,
  235. docker-engine, dvb-apps, e2fsprogs, exim, exiv2, freerdp, gdb,
  236. gdk-pixbuf, gerbera, gnutls, go, granite, grub2, gssdp,
  237. gst1-plugins-good, gst1-plugins-ugly, gupnp, intel-microcode,
  238. iproute2, irrlicht, iwd, jq, kodi, libcamera, libcec,
  239. libconfuse, libcurl, libevdev, libhttpserver, libmicrohttpd,
  240. libnss, libressl, libvncserver, libxml2, libxmlrpc, lxc,
  241. mbedtls, mediastreamer, mesa3d, meson, minizip, mongodb,
  242. mtools, mutt, nano, network-manager, nghttp2, ngircd, nodejs,
  243. ntp, open-plc-utils, open2300, openjdk-bin, openssh,
  244. oracle-mysql, paho-mqtt-c, pango, php, poco, prosody, putty,
  245. python-greenlet, python-urllib3, python-validators, python3,
  246. readline, redis, rpi-firmware, rtl8821au, samba4, sdl2,
  247. sqlite, squid, strace, sunxi-mali-mainline-driver, syslog-ng,
  248. systemd, tcpreplay, tinydtls, upmpdcli, upx, vlc, webkitgtk,
  249. wireguard-linux-compat, wireshark, wpebackend-fdo, wpewebkit,
  250. x11vnc, znc, zstd
  251. Issues resolved (http://bugs.uclibc.org):
  252. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_..
  253. #12946: Grub: Decompressor is too big.
  254. #12986: Mtools: Error converting to codepage 850
  255. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  256. #13011: Incorrect selection of gcc version
  257. #13021: Minor code error when building granite-0.4.1
  258. #13026: rpi-firmware: must not rename start files
  259. #13031: nodejs: RangeError at new ArrayBuffer()
  260. #13046: Optimize for fast -Ofast is not compliant
  261. 2020.05, released June 1st, 2020
  262. Various fixes.
  263. Updated/fixed packages: arm-trusted-firmware, gcc, mp4v2, fmc,
  264. fmlib, glib-networking, libusb-compat, linux, qt5webengine,
  265. sysrepo, wampcc, xen
  266. 2020.05-rc3, released May 29th, 2020
  267. Fixes all over the tree.
  268. Infrastructure: Support checking download hashes for packages
  269. coming from Subversion.
  270. Defconfigs: Increase boot partition size to 64MB for Freescale
  271. boards to allow space for bigger kernels.
  272. Updated/fixed packages: audit, bind, dovecot, efl, erlang,
  273. ffmpeg, fio, gerbera, gnupg, leveldb, lrzip, ltrace, matio,
  274. mesa3d, mp4v2, prosody, qemu, qt5declarative, speexdsp,
  275. systemd, tremor, uboot-tools, unbound, wireshark
  276. Removed packages: wiringpi
  277. Issues resolved (http://bugs.uclibc.org):
  278. #12361: Init system (systemd) kills login on Raspberry Pi Zero
  279. #12686: recipe for target 'install_dev' failed (libcrypto.so..)
  280. 2020.05-rc2, released May 22nd 2020
  281. Fixes all over the tree.
  282. U-Boot: Support building with Python 3.x instead of Python
  283. 2.x. Since U-Boot 2020.01, various U-Boot build scripts use
  284. Python 3.x instead of Python 2.x, so add an option to pull in
  285. host-python3 rather than host-python. Also fix a number of
  286. defconfigs to use this new option.
  287. Updated/fixed packages: apparmor, binutils, bison, brltty,
  288. c-icap, cegui, checkpolicy, clamav, crda, cvs, docker-cli,
  289. docker-engine, domoticz, elf2flt, exfatprogs, fakeroot,
  290. ffmpeg, freerdp, gcc, glibc, gnuconfig, irrlicht, kmod,
  291. libexif, libpam-tacplus, libssh2, libv4l, libvncserver,
  292. localedef, lrzip, mariadb, matchbox, mbuffer, mesa3d,
  293. mesa3d-headers, meson, netsniff-ng, openldap, openocd,
  294. optee-os, p7zip, paho-mqtt-c, php, piglit, pigz,
  295. python-argon2-cffi, python-attrs, python-future,
  296. python-markdown, python-pycryptodomex, python-pyqt5, qt5base,
  297. rpi-firmware, rustc, squashfs, squid, stella, suricata,
  298. systemd, uacme, uclibc, util-linux, vboot-utils
  299. New packages: python3-pyelftools
  300. Removed packages: ezxml, mtdev2tuio, python-pycrypto
  301. Issues resolved (http://bugs.uclibc.org):
  302. #10551: PowerPC SPE and Musl
  303. #12256: package tar is outdated (1.29 is 3 years old)
  304. #12271: python-iptables runtime dependencies
  305. #12321: host-generic-package: PKG_DL_OPTS not used for host package
  306. #12391: CMake-based host package fails to include output/host/include
  307. #12431: ethernet no detected on nanopi neo 2
  308. #12521: RISCV RV32IA selected, RV64GC output
  309. #12586: avahi failure
  310. #12596: host-e2fsprogs: tune2fs incompatibility on older glibc..
  311. #12611: ntp hash is not matching with upstream 4.2.8p13
  312. #12626: PHP missing header files within 2020.02
  313. #12631: glibc support Power-PC SPE
  314. #12656: bison fails to relocate with relocate-sdk.sh
  315. #12661: cups problems in buildroot
  316. #12686: recipe for target 'install_dev' failed (libcrypto.so:..
  317. #12691: host-rust build fails
  318. #12761: Buildroot fails when building GCNano binaries for the STM..
  319. #12786: Systemd spawns two getty processes when the getty port..
  320. #12806: There are multiple issues in buildroot that faults cups..
  321. #12826: nodejs-12.16.1: error: 'uv_sleep' was not declared in..
  322. #12831: RPI-firmware package: DTB-overlay dependency
  323. #12836: libunwind: package does not show up in menuconfig for..
  324. #12841: util-linux/sfdisk 2.35.1 fails on sector-size header
  325. #12866: should we be disabling bash executable path caching?
  326. #12886: GMP built in wrong order (?)
  327. #12891: QEMU, libvirt-bin, qemu-kvm Package Support required
  328. #12901: GStreamer doesn't build on 2020-05 rc1 with GObject..
  329. #12906: qt PrefixPath is wrong on 2020.05-rc1
  330. #12921: nodejs-12.16.1: error: overriding 'virtual icu_65::..
  331. 2020.05-rc1, released May 7th 2020
  332. Addition of support for gobject-introspection: both the
  333. gobject-introspection package itself, but also introspection
  334. support was enabled in a number of other packages.
  335. Support for Qt 5.6 was dropped as its support was dropped
  336. upstream, only one version of Qt is supported at the moment:
  337. Qt 5.14.2.
  338. Addition of support for the apparmor Linux security module, by
  339. adding the necessary user-space packages.
  340. Addition of a qmake package infrastructure, now used by most
  341. Qt-related packages.
  342. The Luarocks package infrastructure has been extended to
  343. support build host packages.
  344. The package infrastructure was improved to allow each package
  345. to indicate the Linux kernel configuration options it needs.
  346. Addition of support for generating filesystem images using the
  347. EROFS filesystem.
  348. The logic that calculates the list of files installed by each
  349. package was reworked to be compatible with the top-level
  350. parallel build functionality.
  351. Addition of a package for a pre-compiled ARM32 bare-metal
  352. toolchain, which can be used to build ARM32 code in ARM64
  353. configurations, such as firmware/bootloader code.
  354. The Qemu defconfigs are now boot-tested in Qemu as part of the
  355. Gitlab continuous integration.
  356. Toolchain: gcc 9.x bumped to 9.3.0, gcc 8.x bumped to 8.4.0,
  357. gdb bumped to 8.3.1.
  358. New packages: apcupsd, apparmor, arm-gnu-a-toolchain, bearssl,
  359. belle-sip, belr, cage, chartjs, erofs-utils, exfatprogs,
  360. gobject-introspection, ibm-sw-tpm2, imx-seco, jbig2dec,
  361. libapparmor, libiberty, libfuse3, libtextstyle, libudfread,
  362. libuhttpd, libuwsc, lua-lyaml, matio, mbuffer, netdata,
  363. openfpgaloader, perl-i18n, perl-locale-maketext-lexicon,
  364. perl-lwp-protocol-https,
  365. perl-mojolicious-plugin-authorization,
  366. perl-mojolicious-plugin-cspheader,
  367. perl-mojolicious-plugin-i18n,
  368. perl-mojolicious-plugin-securityheader, perl-mozilla-ca,
  369. perl-path-class, pistache, pkcs11-helper, prelink-cross,
  370. python-argon2-cffi, python-canopen, python-cbor2,
  371. python-filelock, python-flatbuffers, python-greenlet,
  372. python-modbus-tk, python-pyalsa, python-pysftp, python-regex,
  373. python-snappy, rtty, tinyproxy, udev-gentoo-scripts, unbound,
  374. vuejs, wlroots.
  375. New defconfigs: freescale_imx6ullevk, freescale_imx8qmmek,
  376. nanopi_neo4, nanopi_r1, nitrogen8mm, nitrogen8mn, olpc_xo1,
  377. olpc_xo175, roc_rk3399_pc, stm32mp157a_dk1, zynq_qmtech
  378. Issues resolved (http://bugs.uclibc.org):
  379. #10386: Add an option to put all compiled executables that
  380. show up on target/ in staging/ as well
  381. #11866: iniramfs file system fails to boot using Grub on EFI x86_64
  382. #12666: Doesn't pick up a custom bash profile
  383. #12696: Uboot 2020.01 Problem loading Linux kernel on Nano PI NEO
  384. #12701: [patch] wpa_supplicant must depend on openssl
  385. #12711: host-localedef 2.30-20 fails to compile on fedora 32 (gcc 10.0.1)
  386. #12716: bio.h not found
  387. #12726: systemctl preset-all failed for ctrl-alt-del.target
  388. #12731: rtl8188eu not buildung for banana pi M1 (glib, systemd, 4.18.12)
  389. #12746: "sysdig" package description points to
  390. http://sysdig.org, which bounces to malware site
  391. #12751: OpenJdk package installation issues on target
  392. #12796: Update OpenSSL to Version 1.1.1g to patch CVE-2020-1967
  393. #12811: bootstrap stuck and no login prompt
  394. 2020.02.7, released October 12th, 2020
  395. Important / security related fixes.
  396. meson: Correct SDK cross-compilation.conf file when
  397. per-package builds were used to build SDK.
  398. systemd: Use /run rather than /var/run for PID files in units.
  399. Toolchain: use Secure-PLT rather than BSS-PLT for PowerPC 32.
  400. support/script/pycompile: Rework logic to ensure .pyc files
  401. contain absolute target paths, fixing code inspection at
  402. runtime when executed with cwd != '/'.
  403. support/scripts/setlocalversion: Correct Mercurial output to
  404. match behaviour with Git.
  405. support/scripts/apply-patches.sh: Use patch
  406. --no-backup-if-mismatch, so we no longer blindly have to
  407. remove *.orig files after patching, fixing issues with
  408. packages containing such files.
  409. Updated/fixed packages: bandwidthd, barebox, bash, bison,
  410. brotli, cifs-utils, cryptsetup, dhcpcd, dhcpdump, docker-cli,
  411. docker-engine, ecryptfs-utils, efl, fail2ban, freetype, gcc,
  412. gdb, ghostscript, gnutls, go, gst1-plugins-base,
  413. gst1-plugins-ugly, ipmitool, libhtp, libraw, libssh, libxml2,
  414. libxml-parser-perl, localedef, lua, memcached, mesa3d, meson,
  415. minidlna, nginx, nodejs, nss-pam-ldapd, openvmtools, php,
  416. postgresql, python, python-aenum, python-autobahn,
  417. python-engineio, python-fire, python-pymodbus, python-scapy,
  418. python-semver, python-sentry-sdk, python-socketio,
  419. python-texttable, python-tinyrpc, python-txtorcon, python3,
  420. qt5base, runc, samba4, strace, supertux, suricata, systemd,
  421. vlc, wayland-protocols, wireguard-linux-compat, wireshark,
  422. xserver_xorg-server, zeromq, zstd
  423. Issues resolved (http://bugs.uclibc.org):
  424. #12911: usb_modeswitch installation race condition
  425. #13251: cryptsetup does not work on branch 2020.02 following..
  426. 2020.02.6, released September 5th, 2020
  427. Important / security related fixes.
  428. Fix a 2020.02.5 build regression in busybox when systemd (and
  429. not less) are enabled because of missing infrastructure.
  430. Updated/fixed packages: alsa-utils, avahi, busybox, cups,
  431. docker-cli, graphite2, imagemagick, libeXosip2, mbedtls,
  432. nvidia-driver, paho-mqtt-c, python-django, systemd, uclibc,
  433. usb_modeswitch, wolfssl
  434. Issues resolved (http://bugs.uclibc.org):
  435. #12911: usb_modeswitch installation race condition
  436. 2020.02.5, released August 29th, 2020
  437. Important / security related fixes.
  438. Infrastructure: Ensure RPATH entries that may be needed for
  439. dlopen() are not dropped by patchelf.
  440. BR_VERSION_FULL/setlocalversion (used by make print-version
  441. and /etc/os-release): Properly handle local git tags
  442. Updated/fixed packages: apache, at91bootstrap3, bind, boost,
  443. busybox, capnproto, chrony, collectd, cpio, cryptsetup, cups,
  444. cvs, dbus, docker-engine, domoticz, dovecot,
  445. dovecot-pigeonhole, dropbear, efl, elixir, f2fs-tools, ffmpeg,
  446. gd, gdk-pixbuf, ghostscript, glibc, grub2, gst1-plugins-bad,
  447. hostapd, iputils, jasper, json-c, libcurl, libwebsockets,
  448. linux, live555, mesa3d, mosquitto, mpv, nodejs, opencv,
  449. opencv3, openjpeg, patchelf, perl, php, postgresql,
  450. python-django, python-gunicorn, python-matplotlib, ripgrep,
  451. rtl8188eu, rtl8821au, ruby, shadowsocks-libev, squid,
  452. tpm2-abrmd, tpm2-tools, trousers, uacme, webkitgtk, wireshark,
  453. wolfssl, wpa_supplicant, wpewebkit, xen, xlib_libX11,
  454. xserver_xorg-server
  455. Issues resolved (http://bugs.uclibc.org):
  456. #12876: nodejs fails to build when host-icu has been built before
  457. #13111: python-gunicorn: missing dependency on python-setuptools
  458. #13121: wpa_supplicant fails to build without libopenssl enabled
  459. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  460. #13156: package live555 new license
  461. 2020.02.4, released July 26th, 2020
  462. Important / security related fixes.
  463. Toolchain:
  464. - Make external toolchain version check also work for
  465. toolchains configured with --with-gcc-major-version-only
  466. - Do not handle SOURCE_DATE_EPOCH in toolchain wrapper if the
  467. compiler supports it, fixing an issue with precompiled
  468. headers
  469. - Ensure debug libs from external toolchains are not installed
  470. into target if debugging is disabled
  471. Download:
  472. - Correct reproducibility issue in handling of git submodules
  473. for older git versions.
  474. - Fix file locking over NFS
  475. fs: Ensure cpio archive element order is reproducible
  476. Br2-external: Fix error reporting for invalid br2-external trees
  477. Per-package:
  478. - Fix an issue with python3 sysconfig data not getting
  479. correctly expanded
  480. - Fix per-package building for packages using the qmake
  481. infrastructure
  482. Updated/fixed packages: a10disp, asterisk, bind, cdrkit,
  483. checkpolicy, clamav, dbus, docker-cli, docker-engine,
  484. dvb-apps, e2fsprogs, exim, exiv2, freerdp, gnutls, go, grub2,
  485. gssdp, gst1-plugins-good, gst1-plugins-ugly, gupnp,
  486. intel-microcode, iproute2, irrlicht, iwd, jq, kodi, libcamera,
  487. libconfuse, libcurl, libglib2, libhttpserver, libmicrohttpd,
  488. libopenssl, libvncserver, libxml2, libxmlrpc, lxc, mbedtls,
  489. mesa3d, meson, mongodb, mtools, mutt, nghttp2, ngircd, nodejs,
  490. ntp, open-plc-utils, open2300, openjdk-bin, openssh,
  491. oracle-mysql, paho-mqtt-c, pcre, php, poco, prosody, putty,
  492. python-twisted, python-urllib3, python-validators, python3,
  493. qt5xmlpatterns, redis, rpi-firmware, rtl8821au, samba4, sdl2,
  494. sqlite, squid, syslog-ng, systemd, tcpreplay, tinydtls,
  495. upmpdcli, upx, vlc, webkitgtk, wireguard-linux-compat,
  496. wireshark, wpebackend-fdo, wpewebkit, zstd
  497. Issues resolved (http://bugs.uclibc.org):
  498. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_..
  499. #12946: Grub: Decompressor is too big.
  500. #12986: Mtools: Error converting to codepage 850
  501. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  502. #13011: Incorrect selection of gcc version
  503. #13026: rpi-firmware: must not rename start files
  504. #13031: nodejs: RangeError at new ArrayBuffer()
  505. #13046: Optimize for fast -Ofast is not compliant
  506. 2020.02.3, released June 3rd, 2020
  507. Important / security related fixes.
  508. Fix various build issues of host packages on hosts using GCC
  509. 10.
  510. Updated/fixed packages: arm-trusted-firmware, audit, bind,
  511. binutils, bison, clamav, crda, dovecot, dtc, efl, elf2flt,
  512. erlang, fakeroot, ffmpeg, fmc, fmlib, freerdp, gcc, git,
  513. glib-networking, gnupg, leveldb, libexif, libssh2,
  514. libusb-compat, linux-headers, lrzip, ltrace, mariadb, mesa3d,
  515. mp4v2, openldap, openocd, perl, php, prosody,
  516. python-pycryptodomex, python-pyqt5, qemu, rpi-firmware, rustc,
  517. speexdsp, sysrepo, systemd, tremor, vboot-utils, wireshark,
  518. xen
  519. Removed packages: python-pycrypto
  520. Issues resolved (http://bugs.uclibc.org):
  521. #12361: Init system (systemd) kills login on Raspberry Pi Zero
  522. #12656: bison fails to relocate with relocate-sdk.sh
  523. #12671: leveldb won't detect that snappy is present (static..
  524. #12691: host-rust build fails
  525. #12831: RPI-firmware package: DTB-overlay dependency
  526. 2020.02.2, released May 12th, 2020
  527. Important / security related fixes.
  528. Musl: Disallow on PPC64 cores without AltiVec support
  529. (E.G. e5500).
  530. fs/cpio: Correctly handle booting with 'console='
  531. release: Ensure temporary .br2-external.* files are not
  532. included in the release tarball
  533. Defconfigs: Fix various mistyped config options, or config
  534. options where the dependencies were no longer met.
  535. Updated/fixed packages: apache, azure-iot-sdk-c, binutils,
  536. boinc, c-ares, cvs, docker-cli, docker-containerd,
  537. docker-engine, domoticz, e2fsprogs, efl, evtest, exim, ffmpeg,
  538. freerdp, gcc, gflags, glibc, gnuconfig, haproxy, imx-gpu-2d,
  539. irrlicht, jpeg kodi-pvr-vuplus, libarchive, libcoap,
  540. libfpm-extra, libglib2, libhtp, libid3tag, libinput, libmad,
  541. libopenssl, libsepol, libssh, libv4l, libvncserver, libwpe,
  542. localedef, mariadb, matchbox, mbedtls, mc, mesa3d-headers,
  543. meson, midori, msgpack, netsnmp, nginx, ogre, openjdk,
  544. openldap, openvpn, p7zip, paho-mqtt-c, php, polkit, python,
  545. python-attrs, python-crossbar, python-dpkt, python-flask,
  546. python-future, python-iptables, python-jedi, python-markdown2,
  547. python3, qemu, qpdf, qt5, samba4, squashfs, squid, strongswan,
  548. suricata, tzdata, util-linux, vlc, wget, webkitgtk,
  549. wireguard-linux-compat, wireshark, wpebackend-fdo, wpewebkit,
  550. zic
  551. Issues resolved (http://bugs.uclibc.org):
  552. #11866: initramfs file system fails to boot using Grub on EFI x86_64
  553. #12271: python-iptables runtime dependencies
  554. #12726: systemctl preset-all failed for ctrl-alt-del.target
  555. #12751: OpenJdk package installation issues on target
  556. #12796: Update OpenSSL to Version 1.1.1g to patch CVE-2020-1967
  557. #12811: bootstrap stuck and no login prompt
  558. #12841: util-linux/sfdisk 2.35.1 fails on sector-size header
  559. 2020.02.1, released April 10th, 2020
  560. Important / security related fixes.
  561. core: Also fixup /lib references in libtool .la files, similar
  562. to how it is done for /usr/*.
  563. Various fixes for builds with per-package target/host
  564. directories.
  565. toolchain: Fix kernel headers validation check for external
  566. toolchains. Fix make 4.3+ compatibility in external toolchain
  567. logic.
  568. fs/initramfs: fix show-info so it also shows the usual
  569. rootfs-related variables.
  570. Updated/fixed packages: arm-trusted-firmware, barebox-aux,
  571. bluez5_utils, bubblewrap, busybox, civetweb, cog, collectd,
  572. ffmpeg, gcc, gnutls, gssdp, gvfs, haproxy, hiredis, hostapd,
  573. kmscube, kodi-screensaver-rsxs, libical, libinput, libexif,
  574. libopenssl, libsndfile, linux, linux-tools, llvm, localedef,
  575. mcrypt, mesa3d, meson, monit, nftables, ntp, opencv3,
  576. oprofile, php, pinentry, polkit, pure-ftpd, python-pyyaml,
  577. qt5, quagga, radvd, rcw, redis, rocksdb, samba4, screen,
  578. sdbusplus, swupdate, sysdig, sysklogd, syslinux, syslog-ng,
  579. tor, tslib, uacme, util-linux, vala, vlc,
  580. wireguard-linux-compat, wireguard-tools, wireshark,
  581. wpa_supplicant, xserver_xorg-server
  582. Issues resolved (http://bugs.uclibc.org):
  583. #12711: host-localedef 2.30-20 fails to compile on fedora 32
  584. #12746: "sysdig" package description points to http://sysdig.org, ..
  585. 2020.02, released March 8th, 2020
  586. Various fixes.
  587. br2-external: Fix compatibility with make 4.3+
  588. Updated/fixed packages: bash, bcm2835, binutils, cups,
  589. erlang-p1-acme, fbgrab, gr-osmosdr, gst1-plugins-base,
  590. gst1-validate, gstreamer1, guile, jhead, libdrm, libevdev,
  591. libinput, libnss, libsndfile, libvncserver, linux-firmware,
  592. mesa3d, nodejs, openjdk-bin, openvmtools, optee-test, patch,
  593. php, piglit, pppd, python-django, qemu, qt5base, ruby,
  594. ser2net, swupdate, thrift, zziplib
  595. Removed packages: classpath, jamvm
  596. Issues resolved (http://bugs.uclibc.org):
  597. #12606: fbgrab location has changed
  598. 2020.02-rc3, released March 2nd, 2020
  599. Fixes all over the tree.
  600. Infrastructure: Rework file list handling to fix race
  601. conditions when building with per-package target and host
  602. directories and top-level parallel builds.
  603. Updated/fixed packages: aufs, binutils, blktrace, brltty,
  604. cairo, dnsmasq, docker-compose, elf2flt, exim, exiv2, git,
  605. kodi-inputstream-adaptive, libarchive, libcgroup, libgdiplus,
  606. libssh2, libvncserver, libvorbis, linknx, linux-firmware, lxc,
  607. lz4, mosquitto, openjpeg, openrc, poco, proftpd, pure-ftpd,
  608. python3, python-multidict, python-setuptools-scm-git-archive,
  609. qpdf, qt5tools, rdesktop, rocksdb, shellinabox, squid,
  610. suricata, swig, systemd, taglib, util-linux, wireshark, zsh
  611. Issues resolved (http://bugs.uclibc.org):
  612. #12571: ltp-testsuite : Build failure
  613. #12576: 2020.02-RC1: error while loading shared libraries: ...
  614. #12581: 2020.02-rc1 glibc failing to build on fedora 31
  615. 2020.02-rc2, released February 26th, 2020
  616. Fixes all over the tree.
  617. Toolchain: Ensure strong SSP can only be enabled if the
  618. (external) toolchain supports it.
  619. Fix a race condition related to creating the output/staging
  620. symlink on systems with coreutils < 8.27.
  621. Drop support for the (end of life) Qt 5.6 variant.
  622. Updated/fixed packages: at, armadillo, audiofile, bash,
  623. busybox, erlang, fail2ban, fluidsynth, ipsec-tools, jpeg-turbo,
  624. kvm-unit-tests, libftdi1, libinput, libsvgtiny, libtomcrypt,
  625. libupnpp, libxml2, linux-tools, luv, mbedtls, mesa3d, minicom,
  626. openvmtools, php, qt5, qt5webengine, qwt, radvd, rcw,
  627. sdbusplus, systemd, tpm2-tss, vorbis-tools
  628. Issues resolved (http://bugs.uclibc.org):
  629. #12581: 2020.02-rc1 glibc failing to build on fedora 31
  630. 2020.02-rc1, released February 18th, 2020
  631. Fixes all over the tree and new features.
  632. Add experimental support for building with a per-package
  633. target and host directory. This still has some rough edges,
  634. but brings a number of advantages:
  635. - Packages will only be able to access the explicitly listed
  636. dependencies and not any other packages that happen to be
  637. built before, ensuring correct dependency information in
  638. Buildroot.
  639. - Possibility for top-level parallel builds, speeding up
  640. builds on multicore machines.
  641. Core: Ensure package-file-lists data is correct after
  642. incremental builds as well.
  643. Architecture: Add support for ARC-HS38 with 64bit multiplier
  644. variant, allow building glibc for big endian ARC, handle 16KB
  645. MMU page size for ARC in toolchain wrapper.
  646. Toolchain: Add binutils 2.33.1, GCC 7.5.0, Arm 9.2-2019.12
  647. toolchains, ARC 2019.09 toolchain. Allow using custom kernel
  648. headers newer than what is known by Buildroot.
  649. pkg-stats: Support for CVE vulnerability reporting by
  650. comparing to NVD database.
  651. Reproducible builds: The go -trimpath option is now used to
  652. get rid of absolute build paths, __FILE__ and __BASE_FILE__
  653. defines are now handled in the toolchain wrapper.
  654. Systemd: Build host variant and use systemctl to automatically
  655. enable unit files rather than manually managing symlinks.
  656. Util-linux: Ensure that hwclock is built without GPLv3
  657. code. Notice that builds with hwclock has contained
  658. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  659. New defconfigs: Beelink GS1, Raspberrypi4 64bit
  660. New packages: alura, avro-c, bubblewrap, cctz, cereal,
  661. cpuburn-arm, elixir, erlang-base64url, erlang-idna,
  662. erlang-jose, erlang-p1-acme, erlang-p1-mqtree,
  663. erlang-p1-yconf, fluid-soundfont, fluidsynth, gcnano-binaries,
  664. gensio, glslsandbox-player, libargon2, libmodsecurity,
  665. libpam-nfc, libtelnet, lua-codegen, lua-livr, lua-livr-extra,
  666. lua-rotas, lua-silva, mfoc, network-manager-openvpn,
  667. nginx-modsecurity, perl-crypt-openssl-aes,
  668. perl-math-prime-util, pipewire, ptm2human, python-aenum,
  669. python-aiohttp-debugtoolbar, python-aiohttp-mako,
  670. python-aiologstash, python-aiosignal, python-aiozipkin,
  671. python-async-lru, python-avro, python-bunch, python-crontab,
  672. python-dnspython, python-entrypoints, python-esptool,
  673. python-frozenlist, python-future, python-gitdb, python-janus,
  674. python-lockfile, python-logstash, python-nested-dict,
  675. python-pbr, python-pyaes, python-pydantic, python-smmap2,
  676. python-sockjs, python-zc-lockfile, raspi-gpio, rocksdb,
  677. sdbusplus, spidermonkey, thermald, ti-sgx-libgbm, tinyssh,
  678. tio, umtprd, weston-imx, wireguard-linux-compat,
  679. wireguard-tools, xdg-dbus-proxy
  680. Removed packages: bluez_utils, celt051, erlang-p1-iconv, fis,
  681. gadgetfs-test, libplayer, gstreamer, gst-ffmpeg,
  682. gst-fsl-plugins, gst-omapfb, gst-plugins-bad,
  683. gst-plugins-base, gst-plugins-good, gst-plugins-ugly,
  684. perl-digest-md5, perl-mime-base64, perl-net-ping,
  685. python-scapy3k, wireguard
  686. Issues resolved (http://bugs.uclibc.org):
  687. #11906: the new version of mesa3d cannot support etnaviv when..
  688. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  689. #12121: PyQt5.QtSerialPort and other modules not being built
  690. #12256: package tar is outdated (1.29 is 3 years old
  691. #12286: Can't import gobject in python 3.8
  692. #12376: python-scapy3k is deprecated
  693. #12386: carriage return issue when "make menuconfig"
  694. #12441: qt5webengine build error: asm/errno.h: No such file or..
  695. #12446: Buildroot fails to finish installing packages
  696. #12456: qtvirtualkeyboard: No such file or directory
  697. #12461: libglib2 build files with deep directory structure
  698. #12481: minicom fails when output directory path contains "m4"
  699. #12501: libnss-3.49.1: ld error: multiple definition of `gcm_..
  700. #12526: host-nodejs 12.14.1: configure fail: AttributeError: ..
  701. #12536: Linux-Headers extracting failure
  702. #12546: Ninja 1.10 build Error
  703. 2019.11.3, released April 10th, 2020
  704. Important / security related fixes.
  705. core: Fix compatibility with make 4.3+. Also fixup /lib
  706. references in libtool .la files, similar to how it is done for
  707. /usr/*.
  708. toolchain: Fix kernel headers validation check for external
  709. toolchains.
  710. fs/initramfs: fix show-info so it also shows the usual
  711. rootfs-related variables.
  712. Updated/fixed packages: barebox-aux, bluez5_utils, busybox,
  713. civetweb, cog, collectd, ffmpeg, gcc, gnutls, gssdp, gvfs, haproxy,
  714. hiredis, hostapd, kmscube, libical, libopenssl, libsndfile,
  715. linux-tools, llvm, monit, ntp, php, pure-ftpd, radvd, redis,
  716. samba4, screen, sysdig, syslinux, syslog-ng, tor, uacme,
  717. util-linux, vala, vlc, wpa_supplicant, xserver_xorg-server
  718. Issues resolved (http://bugs.uclibc.org):
  719. #12746: "sysdig" package description points to http://sysdig.org, ..
  720. 2019.11.2, released March 16th, 2020
  721. Important / security related fixes.
  722. Core: Ensure package-file-lists data is correct after
  723. incremental builds as well.
  724. Fix a race condition related to creating the output/staging
  725. symlink on systems with coreutils < 8.27.
  726. Toolchain: ARC tools bumped to arc-2019.09.
  727. Br2-external: Fix patch handling when external linux-extension
  728. packages are used. Fix compatibility with make 4.3+
  729. Util-linux: Ensure that hwclock is built without GPLv3
  730. code. Notice that builds with hwclock has contained
  731. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  732. Updated/fixed packages: armadillo, at, bcm2835, binutils,
  733. blktrace, bluez-alsa, bootstrap, brltty, busybox, cairo,
  734. clamav, cog, cups, czmq, dnsmasq, docker-containerd, dovecot,
  735. dovecot-pigeonhole, e2fsprogs, elf2flt, eudev, exim, exiv2,
  736. fbgrab, gettext-tiny, glibc, go, grep, gst1-validate, guile,
  737. imagemagick, jhead, jpeg-turbo, kvm-unit-tests, lapack,
  738. libarchive, libcgroup, libdrm, libevent, libexif, libftdi1,
  739. libgdiplus, libjpeg, libsigrok, libsndfile, libssh2,
  740. libsvgtiny, libvncserver, libvorbis, libxml2, libxslt, linknx,
  741. lxc, lz4, mariadb, mbedtls, meson, mongoose, mosquitto, musl,
  742. ncurses, nodejs, ntfs-3g, ogre, opencv3, openjdk, openjpeg,
  743. openrc, openswan, openvmtools, optee-test, patch, php, piglet,
  744. postgresql, pppd, proftpd, pure-ftpd, python-django,
  745. python-pyqt5, python-setuptools-scm-git-archive, python3,
  746. qemu, qt5base, qt5tools, qt5virtualkeyboard, qt5webengine,
  747. qwt, rdesktop, ruby, runc, samba4, shellinabox,
  748. skeleton-init-openrc, smartmontools, spdlog, sqlcipher, squid,
  749. suricata, swig, swupdate, sysklogd, taglib, thrift,
  750. ti-cgt-pru, uclibc, util-linux, vorbis-tools, webkitgtk,
  751. wireshark, wpebackend-fdo, wpewebkit, xen,
  752. xserver_xorg-server, zeromq, zsh, zziplib
  753. Issues resolved (http://bugs.uclibc.org):
  754. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  755. #12331: meson issue
  756. #12456: qtvirtualkeyboard: No such file or directory
  757. #12461: libglib2 build files with deep directory structure
  758. #12481: minicom fails when output directory path contains "m4"
  759. #12606: fbgrab location has changed
  760. 2019.11.1, released January 12th, 2020
  761. Important / security related fixes.
  762. Infrastructure: kconfig: Fix reconfigure logic, python: Ensure
  763. correct compiler and linker flags are used for compiled code
  764. utils/scanpypi: Remind users to update DEVELOPERS
  765. Defconfigs: imx6-sabresd: Fix the Qt5 display names,
  766. imx8: Drop extra copy of U-Boot DTB
  767. Updated/fixed packages: acsccid, bitcoin, boost, busybox,
  768. cc-tool, cmocka, cpio, cups, dante, dialog, dillo, docker-cli,
  769. docker-containerd, docker-engine, easy-rsa, ebtables,
  770. ecryptfs-utils, efl, ffmpeg, gdb, git, glibc, gnupg2, go,
  771. gpsd, grpc, gst1-plugins-bad, iputils, jasper,
  772. kf5-kcoreaddons, leveldb, libarchive, libfribi, libgit2,
  773. libkrb5, libp11, librsvg, libssh, libtomcrypt, libuio, libv4l,
  774. lirc-tools, log4cplus, lrzip, lvm2, mali-t76x,
  775. matchbox-desktop, mender-grubenv, mmc-utils, mosquitto,
  776. nodejs, ntp, openipmi, opencv3, openpowerlink, openrc, pango,
  777. perl-sys-cpu, pimd, postgresql, pulseaudio, python-brotli,
  778. python-coherence, python-crc16, python-django, python-dpkt,
  779. python-gobject, python-pyasn-modules, python-pypcap,
  780. python-pyqt5, python-subprocess32, python3, qpdf,
  781. qt-webkit-kiosk, qt5virtualkeyboard, qt5webengine, quota,
  782. rabbitmq-c, rauc, rpcbind, rtl8821au, runc, rygel, samba4,
  783. sdl2, setserial, snort, spidev_test,
  784. sunxi-mali-mainline-driver, syslog-ng, sysrepo, tcllib, tftpd,
  785. usbmount, w_scan, wavpack, wsapi, wsapi-fcgi, wsapi-xavante,
  786. x265, xserver_xorg-server, ytree, zip
  787. Issues resolved (http://bugs.uclibc.org):
  788. #12121: PyQt5.QtSerialPort and other modules not being built
  789. #12286: Can't import gobject in python 3.8
  790. 2019.11, released December 1st, 2019
  791. Various fixes.
  792. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  793. <pkg>_DL_OPTS by default, just like it is done for a number of
  794. other package variables.
  795. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  796. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  797. the (rare) case where the .py files are needed at runtime
  798. rather than .pyc.
  799. Updated/fixed packages: am33x-cm3, bind, collectd, go, gob2,
  800. gst1-plugins-bad, haproxy, jasper, jpeg-turbo, libdrm,
  801. libftdi, libftdi1, libnss, libselinux, libstrophe, lzma,
  802. minicom, network-manager, nodejs, oniguruma, opencv3,
  803. openvmtools, perl-gdgraph, perl-gdtextutil, prosody,
  804. python-cchardet, systemd, tiff, wolfssl,
  805. Issues resolved (http://bugs.uclibc.org):
  806. #11416: check-uniq-files staging issue
  807. #12146: Oprofile runtime issue
  808. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  809. #12171: Python-opencv needs config.py and config-3.7.py to run..
  810. #12196: duma package
  811. #12211: host-nodejs 10.15.3 package fail to build
  812. #12316: tzdata fails to install with empty "default local time"
  813. #12326: network-manager build fails with missing glib error
  814. #12366: Gstreamer1 gst1-plugins-bad do not compile with RPI-Userland
  815. 2019.11-rc3, released November 24th, 2019
  816. Fixes all over the tree.
  817. Updated/fixed packages: asterisk, clamav, domoticz, faifa,
  818. gerbera, kmod, kvm-unit-tests, libupnp18, linux-serial-test,
  819. lsof, ltp-testsuite, lxc, mesa3d, mesa3d-headers, perl, php,
  820. postgresql, qemu, rauc, redis, rpcbind, spice, spice-protocol,
  821. systemd, tftpd, waylandpp, webkitgtk, zip
  822. 2019.11-rc2, released November 16th, 2019
  823. Fixes all over the tree.
  824. Toolchain: ARC tools bumped to arc-2019.09-rc1, ensure
  825. external toolchain kernel headers version check correctly stop
  826. the build on mismatch
  827. Meson: Fix generation of global cross-compilation.conf
  828. Download: Also use the package download method for extra
  829. downloads from the same site, so it does not get confused by
  830. URLs containing '+'
  831. Defconfigs: Fix boot issue for beaglebone
  832. Updated/fixed packages: bird, chrony, connman, dhcp, domoticz,
  833. dropwatch, dtc, elf2flt, gettext-tiny, glog, intel-microcode,
  834. ipsec-tools, jailhouse, kodi, libfribi, libmbim, libressl,
  835. libsigrokdecode, libsvgtiny, linux-serial-test, ltp-testsuite,
  836. lvm2, lxc, mariadb, mesa3d, minizip, ndisc6, neardal, ninja,
  837. ofono, openvmtools, oracle-mysql, qt5wayland, safeclib, socat,
  838. sudo, systemd, wpewebkit, xserver_xorg-server
  839. 2019.11-rc1, released November 5th, 2019
  840. Fixes all over the tree and new features.
  841. Dependencies: Gcc/g++ 4.8 or newer is now required on the
  842. build host.
  843. Ensure host has JSON::PP perl module installed if
  844. webkitgtk/wpewebkit packages are enabled as it is needed
  845. during their build process.
  846. Toolchain: Add support for the D programming language (GCC
  847. 9.x, Glibc).
  848. GCC 9.x updated to 9.2.0, Glibc updated to 2.30, Musl updated
  849. to 1.1.24, uClibc-ng updated to 1.0.32, ARC toolchain updated
  850. to arc-2019.09-eng002.
  851. Musl: Add a patch to add support for
  852. sched_{get,set}scheduler() and sched_{get,set}param() for
  853. compatibility.
  854. Generate check-headers program under BUILD_DIR rather than
  855. /tmp to fix issues with distributions mounting /tmp noexec.
  856. Also copy libssp.so for external toolchains if SSP
  857. to handle toolchains providing SSP support in libssp rather
  858. than in the C library
  859. New defconfigs: Beaglebone AI, FriendlyARM Nanopi NEO Plus2,
  860. Libre Computer "La Frite", QEMU Armv7-A with trustzone/OP-TEE,
  861. STM32MP157 Discovery Kit
  862. Arch: RISC-V: Default to a sensible floating point ABI based
  863. on the selected ISA extensions rather than always defaulting
  864. to ILP32/64
  865. Graph-size: Package sizes are now shown in human readable form
  866. (Kib/Mib/Gib) rather than always in Kib. Binary (KB/MB/GB)
  867. format can be selected using the --binary option. The cut-off
  868. limit for classifying packages as "other" is now configurable
  869. using the --size-limit option.
  870. Br2-external: Linux kernel extensions can now also be provided
  871. in an external tree by adding packages under
  872. linux/linux-ext-*.mk. See the manual for details.
  873. Fakeroot now works correctly under Microsoft Windows 10
  874. Services for Linux, which does not provide SYSV IPC support
  875. The check-uniq-files logic which would complain if multiple
  876. packages would touch the same files has been removed as it
  877. causes issues in certain situations (when packages are
  878. rebuilt) and the issue is no longer considered a problem for
  879. toplevel parallel builds as those will use a per-package
  880. staging/target directory.
  881. With this removed, Python is no longer required for a basic
  882. build (only for optional scripts).
  883. support/scripts/genimage.sh will no longer make a copy of
  884. TARGET_DIR, speeding up post-build/image scripts.
  885. The runtime test logic now uses Python 3.x.
  886. A 'v' prefix has been dropped from the <pkg>_SOURCE variable
  887. for a number of packages to match the version numbers used by
  888. https://release-monitoring.org
  889. New packages: caps, collectl, dav1d, fstrcmp, ima-evm-utils,
  890. jitterentropy-library, kodi-vfs-rar, kodi-vfs-sftp, libavl,
  891. libhttpserver, libmspack, libnetconf2, libolm, libyang,
  892. linux-serial-test, lrzip, mdevd, minimodem, musl-fts, netifrc,
  893. ogre, openlayers, python-aioredis, python-asgiref,
  894. python-backports-functools-lru-cache, python-bluezero,
  895. python-brotli, python-channels, python-channels-redis,
  896. python-colorlog, python-daphne, python-django-enumfields,
  897. python-jaraco-functools, python-kiwisolver, python-msgfy,
  898. python-rpi-ws281x, python-setuptools-scm-git-archive,
  899. python-simplelogging, python-soupsieve, python-sqliteschema,
  900. python-sqlparse, python-tqdm, python-webencodings, qt5webview,
  901. restclient-cpp, ripgrep, snmpclitools, sunwait, sysrepo,
  902. uacme, utf8proc, uvw, ytree
  903. Removed packages: alljoyn, alljoyn-base, alljoyn-tcl-base,
  904. devmem2, eventlog, kodi-audiodecoder-opus,
  905. kodi-screensaver-planestate, kodi-visualisation-waveforhue,
  906. python-pysnmp-apps, riscv-pk, ustr
  907. Issues resolved (http://bugs.uclibc.org):
  908. #9881: systemd-resolved not setting resolv.conf link
  909. #10171: devmem2 w (word) is 8 bytes in x86 64 systems
  910. #10586: musl gcc has ifunc enabled when musl doesn't support it
  911. #10806: Allow nfs-utils to use ipv6
  912. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  913. #11411: check-uniq-files target issue
  914. #11766: Console (getty) issues with systemd
  915. #11781: mariadb build error
  916. #12031: Build of cups-filters fails while linking, apparently due..
  917. #12116: console prompt does not appear after login
  918. #12141: eudev package is missing "render" and "kvm" groups
  919. #12181: dropbear: norootlogin (-w) no longer works when PAM is enabled
  920. #12186: Raspberry Pi Zero-W build fails on newer kernel versions
  921. #12191: cmake BUILDDIR
  922. #12241: Permission denied while running "make"
  923. #12261: sudo versions prior to 1.8.28 are affected.
  924. #12276: make clean/distclean does not remove BR2_DL_DIR and BR2_HOST_DIR
  925. #12281: Custom configuration fails to build (based on raspberrypi3_..
  926. 2019.08.3, released December 7th, 2019
  927. Important / security related fixes.
  928. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  929. <pkg>_DL_OPTS by default, just like it is done for a number of
  930. other package variables
  931. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  932. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  933. the (rare) case where the .py files are needed at runtime
  934. rather than .pyc.
  935. Fix <pkg>-reconfigure handling for packages using the kconfig
  936. infrastructure.
  937. Toolchain: ensure external toolchain kernel headers version
  938. check correctly stop the build on mismatch
  939. Deconfigs: beaglebone: fix boot issue
  940. Updated/fixed packages: am33x-cm3, asterisk, bind, chrony,
  941. clamav, cmocka, collectd, connman, dhcp, dropwatch, faifa,
  942. gettext-tiny, gob2, haproxy, intel-microcode, ipsec-tools,
  943. jailhouse, jasper, jpeg-turbo, kodi, kvm-unit-tests, libftdi,
  944. libftdi1, libnss, libressl, libstrophe, libsvgtiny, lvm2,
  945. lzma, mariadb, minicom, mosquitto, neardal, ninja, nodejs,
  946. oniguruma, openvmtools, oracle-mysql, perl-gdgraph,
  947. perl-gdtextutil, php, postgresql, prosody, python-cchardet,
  948. python-django, qt5wayland, rabbitmq, rauc, redis, rpcbind,
  949. socat, spice, spice-protocol, tftpd, tiff, webkitgtk
  950. New packages: libmspack
  951. Issues resolved (http://bugs.uclibc.org):
  952. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  953. #12171: Python-opencv needs config.py and config-3.7.py to run..
  954. #12211: host-nodejs 10.15.3 package fail to build
  955. #12316: tzdata fails to install with empty "default local time"
  956. 2019.08.2, released November 9th, 2019
  957. Important / security related fixes.
  958. Toolchain: Also copy libssp.so for external toolchains if SSP
  959. to handle toolchains providing SSP support in libssp rather
  960. than in the C library
  961. Download: Also use the package download method for extra
  962. downloads from the same site, so it does not get confused by
  963. URLs containing '+'
  964. Fakeroot now works correctly under Microsoft Windows 10
  965. Services for Linux, which does not provide SYSV IPC support
  966. utils/test-pkg: ensure to exit with an error upon failure
  967. Updated/fixed packages: asterisk, azmq, binutils,
  968. cups-filters, domoticz, dtc, duma, elf2flt, eudev, exfat,
  969. exfat-utils, fakeroot, fdk-aac, file, freerdp, gcc, gd,
  970. ghostscript, go, gpsd, grpc, gst1-plugins-base, gvfs, icu,
  971. intel-microcode, kvm-unit-tests, libfribidi, libnspr, libnss,
  972. libopenssl, libpcap, libpciaccess, librsvg, libseccomp,
  973. libsigrok, libtorrent, libunwind, libva, linux-tools,
  974. lua-sdl2, lxc, minizip, mjpegtools, mongoose, mono, nbd,
  975. nfs-utils, php, piglit, python, python-autobahn,
  976. python-pysnmp-apps, python-tornado, python3, qemu, qt5base,
  977. ruby, safeclib, samba4, sdl_mixer, sox, sudo, suricata,
  978. systemd, tcpdump, unscd, util-linux, vdr-plugin-vnsiserver,
  979. vtun, wireshark, xvisor, yaffs2utils
  980. Issues resolved (http://bugs.uclibc.org):
  981. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  982. #12261: sudo versions prior to 1.8.28 are affected
  983. 2019.08.1, released October 3rd, 2019
  984. Important / security related fixes.
  985. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  986. Use default console settings
  987. Dependencies: Ensure host has JSON::PP perl module installed
  988. if webkitgtk/wpewebkit packages are enabled as it is needed
  989. during their build process.
  990. Toolchain: Generate check-headers program under BUILD_DIR
  991. rather than /tmp to fix issues with distributions mounting
  992. /tmp noexec.
  993. Updated/fixed packages: asterisk, augeas, axel, bind, bwm-ng,
  994. cups, cups-filters, docker-cli, docker-engine, docker-proxy,
  995. e2fsprogs, eudev, exim, expat, gcc, go, haveged, ifplugd, joe,
  996. kf5-extra-cmake-modules, kf5-modemmanager-qt,
  997. kf5-networkmanager-qt, libcamera, libcurl, libgcrypt,
  998. libglib2, libgpg-error, libnspr, libnss, libopenssl,
  999. logrotate, luksmeta, mariadb, mbedtls, mongodb, mosquitto,
  1000. ncurses, nfs-utils, nghttp2, nodejs, openvmtools, php,
  1001. protobuf, putty, qemu, samba4, snort, swupdate,
  1002. systemd-bootchart, thttpd, uclibc, unzip, util-linux,
  1003. wireshark
  1004. Issues resolved (http://bugs.uclibc.org):
  1005. #10806: Allow nfs-utils to use ipv6
  1006. #11781: mariadb build error
  1007. #12031: Build of cups-filters fails while linking, apparently due..
  1008. #12141: eudev package is missing "render" and "kvm" groups
  1009. #12241: Permission denied while running "make"
  1010. 2019.08, released September 1st, 2019
  1011. Various fixes.
  1012. Defconfigs: Removed nanopc t4, nanopi m4 and neo4, pine64
  1013. rockpro64 and raxda rock pi4 as they rely on a ARM32 toolchain
  1014. on the build host to build ATF. These defconfigs will be added
  1015. back once a package providing such toolchain is
  1016. available. Also dropped ts4800 defconfig as it does not build
  1017. with GCC >= 8.x.
  1018. Updated/fixed packages: libxcb, php, python-numpy, webkitgtk,
  1019. wpewebkit, xfont_font-util
  1020. Issues resolved (http://bugs.uclibc.org):
  1021. #12156: buildroot-2019.08-rc3 does not build for Pi Zero W
  1022. 2019.08-rc3, released August 28th, 2019
  1023. Fixes all over the tree.
  1024. Updated/fixed packages: clamav, dovecot, dovecot-pigeonhole,
  1025. gcc, intel-microcode, libmicrohttpd, libmodplug, mpg123,
  1026. nginx, openldap, python, qemu, samba4, squid, strace, vlc
  1027. Issues resolved (http://bugs.uclibc.org):
  1028. #11686: fbdev_drv.so: undefined symbol: shadowUpdatePackedWeak,..
  1029. 2019.08-rc2, released August 20th, 2019
  1030. Fixes all over the tree.
  1031. Compile fixes for a number of defconfigs.
  1032. Updated/fixed packages: apache, autofs, batctl, batman-adv,
  1033. bind, collectd, cwiid, dahdi-linux, dahdi-tools, daq,
  1034. dehydrated, dhcp, dtc, efl, enlightenment, evtest, giflib,
  1035. gnutls, go, gst-plugins-bad, gst-plugins-base,
  1036. gst1-plugins-bad, gst1-plugins-base, gst1-rtsp-server, gtkmm3,
  1037. gupnp, harfbuzz, imagemagick, lftp, libbsd, libcpprestsdk,
  1038. libdnet, libfm, libgit2, libgtk2, libgtk3, libpri, librsvg,
  1039. libss7, libssh2, libwpe, lua-cqueues, metacity, micropython,
  1040. mpd, mpg123, musl, mpv, openblas, openbox, opencv, pango,
  1041. pcmanfm, piglit, pigpio, pinentry, postgresql, qemu, qt5base,
  1042. qt5enginio, qt5multimedia, qt5serialbus, quagga, quazip,
  1043. rrdtool, rygel, samba4, stellarium, tcpreplay, ti-gfx, vte,
  1044. wampcc, wilink-bt-firmware, wireless-regdb, wpebackend-fdo,
  1045. xscreensaver
  1046. Removed packages: libamcodec, odroid-mali, odroid-scripts
  1047. Issues resolved (http://bugs.uclibc.org):
  1048. #9481: NetworkManager/Ping unable to resolve domains
  1049. #10566: php.mk is missing option --with-pgsql
  1050. #10861: Package batman_adv Makefile is missing include header direct..
  1051. #11641: linux kernel .config timestamp always out of date fixed with..
  1052. #11671: russian locale ru_RU:145: LC_TIME: syntax error
  1053. #11701: recuuring of usr and in bin shortcuts are created
  1054. #11741: pigpio does not build host-pigpio
  1055. #11876: automount using host mount/umount
  1056. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  1057. #11921: dahdi fails to build
  1058. #11936: libcpprestsdk should install to staging
  1059. #11946: wilink-bt-firmware: moved from github to http://git.ti.com/ti-bt
  1060. #11961: libpri build failure
  1061. #12086: dhcp shared libraries not installed to target
  1062. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  1063. #12106: daq: build fails if libdumbnet-dev is installed in the host
  1064. #12126: vc4 has neon as hard dependency
  1065. 2019.08-rc1, released August 9th, 2019
  1066. Fixes all over the tree and new features.
  1067. toolchain: ARC toolchain updated to 2019.03 (binutils 2.32.51
  1068. / GCC 8.3.1 / glibc 2.29), ARM AAarch64/ARM toolchains updated
  1069. to 2019.03. Add GCC 9.1.0, remove GCC 4.9 and 6.5, add GDB
  1070. 8.3, remove GDB 7.12 and 8.0.1, default to GDB 8.2, GCC
  1071. 8.3.0. Musl updated to 1.1.23, bringing support for RISC-V 64.
  1072. Architectures: Internal toolchain support for C-SKY, support
  1073. for ARC HS48 v3.1 and HS38 with Quad MAC & FPU, support for
  1074. ARM A76, A76/A55 big.LITTLE, emag, neoverse-N1, phecda and
  1075. tsv110.
  1076. Filesystems: Pass extra pax options to tar for binary
  1077. reproducibility. Build host-cpio for the --reproducible option
  1078. support when BR2_REPRODUCIBLE is enabled. Genimage updated to
  1079. version 11, bringing GPT support.
  1080. Br2-external: Add support for injecting additional options to
  1081. the list of preconfigured external toolchains and libjpeg and
  1082. openssl providers using files under provides/. See the manual
  1083. for details.
  1084. Ensure custom <pkg>_OVERRIDE_SRCDIR_RSYNC_EXCLUSIONS are
  1085. passed before the standard exclusions so they are not ignored
  1086. by rsync when using override-srcdir.
  1087. Gnuconfig updated to 2019-05-28, adding C-SKY support.
  1088. test-pkg: Correct long option handling and clean output dir
  1089. after a successful build to save disk space.
  1090. support/testing: Emulate a machine with 256MB RAM to fix
  1091. issues with certain tests running out of memory, use
  1092. virtio-rng to provide needed entrophy.
  1093. pkg-stats: support outputting in JSON format with --json for
  1094. easier post processing. The classic HTML output is still
  1095. available with --html. Parallelize access to
  1096. release-monitoring.org to speed up runtime.
  1097. Drop non-conventional version prefix/suffix/separators for
  1098. packages for better compatibility with release-monitoring.org
  1099. Packages:
  1100. Init systems: Add basic openrc support and
  1101. <pkg>_INSTALL_INIT_OPENRC variable in the infrastructure to
  1102. install openrc service scripts if enabled.
  1103. busybox: Build each applet as a separate binary when SELinux
  1104. is enabled for more finegrained policy control. Use daemon
  1105. mode for mdev rather than legacy hotplug.
  1106. linux: Workaround -Werror related build failure on powerpc,
  1107. by forcing CONFIG_PPC_DISABLE_WERROR on.
  1108. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  1109. partition is available before mounting.
  1110. New defconfigs: HiFive Unleashed, I.MX8MM EVK and Pico, Nanopi
  1111. m4 and neo4, Nanopc t4, Olimex A33 olinuxino, Pine64
  1112. Rockpro64, PowerPC mac99, QEMU C-SKY 610/807/810/860 virt,
  1113. Raspberry Pi 4, Raxda rock pi4, Solidrun Clearfog GT-8K
  1114. Removed defconfigs: Odroid C2
  1115. New packages: bitcoin, c-capnproto, fatcat, ifmetric, jack1,
  1116. jailhouse, libubootenv, luasyslog, mender-grubenv,
  1117. murata-cyw-fw, openrc, piglit, python-colorama, python-cycler,
  1118. python-hiredis, python-ifaddr, python-inflection,
  1119. python-iptables, python-matplotlib, python-periphery,
  1120. python-pycairo, python-redis, python-termcolor,
  1121. python-tinyrpc, python-txdbus, skeleton-init-openrc, spdlog,
  1122. sshguard, stellarium, zziplib
  1123. Removed packages: xapp_mkfontdir
  1124. Issues resolved (http://bugs.uclibc.org):
  1125. #11096: Upgrade from glibc 2.26 to 2.27 broke some locales...
  1126. #11271: utils/check-package fails with exception depending on..
  1127. #11991: [numpy] segfault when compiling for RPi3 64bits
  1128. #12016: Grub fails to boot bzImage after upgrade to 2019.05
  1129. #12046: Can’t login as root user after upgrading to buildroot..
  1130. #12051: package/dhcp installs libtool wrapper scripts on tar...
  1131. #12076: Patchelf can link against an incompatible libc++ ver...
  1132. 2019.05.3, Released October 3rd, 2019
  1133. Important / security related fixes.
  1134. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  1135. Use default console settings
  1136. Dependencies: Ensure host has JSON::PP perl module installed
  1137. if webkitgtk/wpewebkit packages are enabled as it is needed
  1138. during their build process.
  1139. Toolchain: Generate check-headers program under BUILD_DIR
  1140. rather than /tmp to fix issues with distributions mounting
  1141. /tmp noexec.
  1142. Updated/fixed packages: asterisk, augeas, bind, bwm-ng, cups,
  1143. cups-filters, docker-cli, docker-engine, docker-proxy,
  1144. e2fsprogs, eudev, exim, expat, gcc, go, haveged, ifplugd,
  1145. iptables, joe, kf5-extra-cmake-modules, kf5-modemmanager-qt,
  1146. kf5-networkmanager-qtlibcamera, libcurl, libgcrypt,
  1147. libgpg-error, libnftl, libnspr, libnss, libopenssl,
  1148. libtorrent-rasterbar, luksmeta, mariadb, mbedtls, mongodb,
  1149. mosquitto, ncurses, nfs-utils, nghttp2, nodejs, openvmtools,
  1150. php, protobuf, putty, qemu, samba4, swupdate,
  1151. systemd-bootchart, thttpd, uclibc, unzip, util-linux,
  1152. wireshark
  1153. Issues resolved (http://bugs.uclibc.org):
  1154. #10806: Allow nfs-utils to use ipv6
  1155. #11781: mariadb build error
  1156. #12031: Build of cups-filters fails while linking, apparently due..
  1157. #12141: eudev package is missing "render" and "kvm" groups
  1158. #12241: Permission denied while running "make"
  1159. 2019.05.2, Released September 3rd, 2019
  1160. Important / security related fixes.
  1161. Filesystems: Pass extra pax options to tar for binary
  1162. reproducibility.
  1163. Updated/fixed packages: apache, arm-trusted-firmware,
  1164. asterisk, atk, autofs, batctl, batman-adv, berkeleydb,
  1165. busybox, bzip2, clamav, cloop, cmake, collectd, connman-gtk,
  1166. dahdi-linux, dahdi-tools, daq, dehydrated, dhcp, dovecot,
  1167. dovecot-pigeonhole,, elfutils, evtest, exim, expect, giflib,
  1168. git, glib-networking, glibc, gnupg2, gnutls, go,
  1169. gst1-rtsp-server, gtkperf, gupnp-tools, gvfs, imagemagick,
  1170. imx-uuc, intel-microcode, json-glib, lftp, libbsd, libcurl,
  1171. libgit2, libgtk2, libgtk3, libmodplug, libnss, libpri,
  1172. libshout, libss7, libssh2, libvips, libxcb, linux-headers,
  1173. mdadm, mesa3d, metacity, mpg123, mosquitto, musl, nginx,
  1174. oniguruma, openblas, opencv3, openjdk, openjdk-bin, openldap,
  1175. openvmtools, pcmanfm, php, pigpio, postgresql, prboom,
  1176. proftpd, proj, python, python-django, python-idna,
  1177. python-numpy, python-urllib3, python3, qemu, qt5, qt5base,
  1178. qt5enginio, quagga, rygel, squid, subversion, tcpreplay,
  1179. unzip, vlc, vte, webkitgtk, wireless-regdb, xen,
  1180. xfont_font-util, xlib_libICE, xlib_libXfont, xlib_libXfont2,
  1181. yad, zeromq
  1182. Issues resolved (http://bugs.uclibc.org):
  1183. #11741: pigpio does not build host-pigpio
  1184. #11876: automount using host mount/umount
  1185. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  1186. #11921: dahdi fails to build
  1187. #11961: libpri build failure
  1188. #12086: (dhcpd-missing-libs) - dhcp shared libraries not installed to..
  1189. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  1190. #12106: daq: build fails if libdumbnet-dev is installed in the host
  1191. #12126: vc4 has neon as hard dependency
  1192. 2019.05.1, Released July 7th, 2019
  1193. Important / security related fixes.
  1194. arch: x86: Fix typo breaking 'core-avx2' variant
  1195. linux: Workaround -Werror related build failure on powerpc,
  1196. by forcing CONFIG_PPC_DISABLE_WERROR on.
  1197. support/testing: Emulate a machine with 256MB RAM to fix
  1198. issues with certain tests running out of memory.
  1199. test-pkg: Correct long option handling and clean output dir
  1200. after a successful build to save disk space.
  1201. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  1202. partition is available before mounting.
  1203. Updated/fixed packages: barebox, busybox, bzip2, davfs2,
  1204. dialog, docker-cli, docker-engine, exim, expat, faad2,
  1205. haveged, irssi, libcamera, libcdaudio, libcurl, libglib2,
  1206. libressl, libsecret, lmbench, meson, monit, php, postgresql,
  1207. psplash, python-django, qt5base, tvheadend, webkitgtk,
  1208. xserver_xorg-server, znc
  1209. 2019.05, released June 2nd, 2019
  1210. Various fixes.
  1211. Toolchain: Ensure pre-built Andes toolchains can only be
  1212. selected when x86 32bit support is available on the host.
  1213. Disallow PowerPC SPE ABI for GCC >= 8.x, as it is no longer
  1214. supported.
  1215. Infra: pkg-config: Use a dedicated timestamp file rather than
  1216. .config as that gets touched by linux-4.19+, causing repeated
  1217. builds.
  1218. Add C-SKY support to our config.sub (gnuconfig)
  1219. Updated/fixed packages: dosfstools, botan, brotli, dropbear,
  1220. flare-engine, gst1-plugins-bad, libhtp, libnss, libopenssl,
  1221. linuxptp, matchbox-panel, mender, mutt, netsurf,
  1222. network-manager, opencv3, openjdk, openmpi, php,
  1223. python-cython, qt5multimedia, qtwayland, qt5webkit-examples,
  1224. supertux, suricata, tpm2-totp, v4l2loopback, wireshark,
  1225. wpewebkit
  1226. 2019.05-rc3, released May 25th, 2019
  1227. Fixes all over the tree.
  1228. check-bin-arch: Ignore /usr/lib/grub, similar to how /lib/grub
  1229. is ignored.
  1230. check-package: Warn about utf-8 characters in .mk files
  1231. Linux: Default to 5.1.x series
  1232. Updated/fixed packages: assimp, atop, chocolate-doom, cjson,
  1233. ddrescue, dhcp, ffmpeg, gerbera, glibmm, gpsd, gst-ffmpeg,
  1234. intel-microcode, jasper, keepalived, kismet, libcpprestsdk,
  1235. libcurl, libssh2, libupnp18, luarocks, mono-gtksharp3, opus,
  1236. postgresql, pcsc-lite, python, tslib, webkitgtk,
  1237. wpebackend-fdo, wpewebkit
  1238. 2019.05-rc2, released May 15th, 2019
  1239. Fixes all over the tree.
  1240. Updated/fixed packages: bind, bullet, ca-certificates,
  1241. collectd, cracklib, dhcp, gdb, libinput, libtorrent-rasterbar,
  1242. linknx, lynx, mono, netsurf, optee-os, postgresql, qt5enginio,
  1243. qt5multimedia, rpm, samba4, sqlite, strace, uclibc, woff2
  1244. Issues resolved (http://bugs.uclibc.org):
  1245. #11841: grub-efi.cfg not used when building EFI disk image
  1246. 2019.05-rc1, Released May 8th, 2019
  1247. Fixes all over the tree and new features.
  1248. Architecture: Andes 32-bit (nds32) support added.
  1249. Only build host-lzip / host-xz when really needed by packages,
  1250. not just when not available on the build host.
  1251. Toolchain: Glibc bumped to 2.29, musl bumped to 1.1.22,
  1252. binutils 2.32 added, 2.28/2.29 removed, default changed to
  1253. 2.31.1.
  1254. fs: Set FAKEROOTDONTTRYCHOWN environment variable to not
  1255. forward {f,l,}chown calls to libc when running under fakeroot
  1256. to fix issues when building in restricted environments
  1257. (E.G. user namespace with bubblewrap).
  1258. Linux: Also build default make target to ensure extra files
  1259. like the gdb scripts enabled by CONFIG_GDB_SCRIPTS are also
  1260. built. Notice: This may mean that extra host utilities like
  1261. uboot-mkimage are needed.
  1262. Infrastructure: show-info and <pkg>-show-info make targets
  1263. added to output package metadata in JSON format for external
  1264. use.
  1265. pkg-generic: Only tweak .la files needing it to ensure they
  1266. are not included in subsequent package file lists.
  1267. test-pkg: Generate a basic package config if none is
  1268. specified.
  1269. Gettext-tiny package added as an lightweight replacement for
  1270. GNU gettext for situations where NLS support is not needed.
  1271. New defconfigs: Andes AE3XX, Freescale imx8mpico / imx8qxpmek
  1272. / T2080 QDS RDB, Licheepi zero, Orangepi R1
  1273. Removed defconfigs: Olimx A20 Olinuxino Lime legacy
  1274. New packages: bats-core, bayer2rgb-neon, brickd, cog, dacapo,
  1275. enet, gettext-tiny, gli, gst1-plugins-bayer2rgb-neon,
  1276. imx-sc-firmware, intel-mediadriver, intel-mediasdk, libcamera,
  1277. libhtp, libp11, libwpe, lua-binaryheap, lua-gd, lua-lunitx,
  1278. mender-artifact, most, oniguruma, openjdk, openjdk-bin,
  1279. opensbi, optee-benchmark, optee-client, optee-examples,
  1280. optee-os, optee-test, paho-mqtt-cpp, python-aioblescan,
  1281. python-aioconsole, python-aiohttp-cors, python-aiomonitor,
  1282. python-backcall, python-jedi, python-parso, python-pyjwt,
  1283. python-terminaltables, suricata, tpm2-totp, uftp,
  1284. wpebackend-fdo, wpewebkit
  1285. Removed packages: libump, lunit, sunxi-mali
  1286. Issues resolved (http://bugs.uclibc.org):
  1287. #11716: Typo on website, saying latest release is 2018.2.11
  1288. #11756: package/syslinux: MBR's don't fit because of binutils..
  1289. #11761: Building custom kernel 5.1-rc3 or later breaks on objtool
  1290. #11816: Only selected coreutils binaries are installed
  1291. 2019.02.11, released April 9th, 2020
  1292. Important / security related fixes.
  1293. core: Fix compatibility with make 4.3+. Also fixup /lib
  1294. references in libtool .la files, similar to how it is done for
  1295. /usr/*.
  1296. toolchain: Fix kernel headers validation check for external
  1297. toolchains.
  1298. Updated/fixed packages: barebox-aux, bluez5_utils, busybox,
  1299. civetweb, collectd, ffmpeg, gcc, gnutls, gvfs, haproxy,
  1300. hiredis, kmscube, libical, libopenssl, libsndfile,
  1301. linux-tools, ntp, php, pure-ftpd, screen, sysdig, tor,
  1302. util-linux, vala, vlc, xserver_xorg-server
  1303. Issues resolved (http://bugs.uclibc.org):
  1304. #12746: "sysdig" package description points to http://sysdig.org, ..
  1305. 2019.02.10, released March 16th, 2020
  1306. Important / security related fixes.
  1307. Core: Ensure package-file-lists data is correct after
  1308. incremental builds as well.
  1309. Fix a race condition related to creating the output/staging
  1310. symlink on systems with coreutils < 8.27.
  1311. Br2-external: Fix compatibility with make 4.3+
  1312. Util-linux: Ensure that hwclock is built without GPLv3
  1313. code. Notice that builds with hwclock has contained
  1314. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  1315. Updated/fixed packages: armadillo, at, binutils, blktrace,
  1316. bootstrap, busybox, cairo, cups, czmq, dnsmasq,
  1317. docker-containerd, dovecot, dovecot-pigeonhole, e2fsprogs,
  1318. eudev, exim, exiv2, fbgrab, grep, gst1-validate, guile,
  1319. imagemagick, jhead, kvm-unit-tests, lapack, libcgroup,
  1320. libftdi1, libjpeg, libsigrok, libsndfile, libssh2, libsvgtiny,
  1321. libvncserver, libvorbis, libxml2, libxslt, linux, lz4,
  1322. mariadb, mbedtls, meson, mfgtools, mongoose, ncurses, ntfs-3g,
  1323. opencv3, openjpeg, openswan, openvmtools, patch, php,
  1324. postgresql, pppd, proftpd, pure-ftpd, python-django,
  1325. python-pyqt5, python3, qemu, qt5base, qt5webengine, qwt,
  1326. rdesktop, ruby, runc, samba4, shellinabox, smartmontools,
  1327. sqlcipher, squid, swupdate, sysklogd, taglib, thrift,
  1328. ti-cgt-pru, uboot, util-linux, vorbis-tools, webkitgtk,
  1329. wireshark, xen, xserver_xorg-server, zeromq, zsh
  1330. Issues resolved (http://bugs.uclibc.org):
  1331. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  1332. #12331: meson issue
  1333. #12461: libglib2 build files with deep directory structure
  1334. #12606: fbgrab location has changed
  1335. 2019.02.9, released January 12th, 2020
  1336. Important / security related fixes.
  1337. pkg-python infrastructure: Ensure correct compiler and linker
  1338. flags are used for compiled code
  1339. utils/scanpypi: Remind users to update DEVELOPERS
  1340. Updated/fixed packages: busybox, cc-tool, cpio, cups, dante,
  1341. dillo, docker-cli, docker-containerd, docker-engine, easy-rsa,
  1342. ecryptfs-utils, efl, git, glibc, gnupg2, gst1-plugins-bad,
  1343. kf5-kcoreaddons, libarchive, libgit2, libkrb5, librsvg,
  1344. libssh, libtomcrypt, libuio, lirc-tools, lvm2,
  1345. matchbox-desktop, nodejs, ntp, opencv3, openpowerlink,
  1346. python-django, python-ecdsa, python-pyasn-modules,
  1347. python-pyqt5, python-subprocess32, python3, qpdf, runc, rygel,
  1348. samba4, sdl2, wavpack, xserver_xorg-server, zip
  1349. Issues resolved (http://bugs.uclibc.org):
  1350. #12121: PyQt5.QtSerialPort and other modules not being built
  1351. 2019.02.8, released December 7th, 2019
  1352. Important / security related fixes.
  1353. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  1354. <pkg>_DL_OPTS by default, just like it is done for a number of
  1355. other package variables
  1356. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  1357. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  1358. the (rare) case where the .py files are needed at runtime
  1359. rather than .pyc.
  1360. Fix <pkg>-reconfigure handling for packages using the kconfig
  1361. infrastructure.
  1362. Toolchain: ensure external toolchain kernel headers version
  1363. check correctly stop the build on mismatch
  1364. Deconfigs: beaglebone: fix boot issue
  1365. Updated/fixed packages: am33x-cm3, asterisk, bind, chrony,
  1366. clamav, collectd, connman, faifa, gob2, haproxy,
  1367. intel-microcode, ipsec-tools, jasper, jpeg-turbo, kodi,
  1368. kvm-unit-tests, libftdi, libftdi1, libnss, libstrophe,
  1369. libsvgtiny, lvm2, lzma, mariadb, minicom, neardal, nodejs,
  1370. opencv3, openvmtools, oracle-mysql, perl-gdgraph,
  1371. perl-gdtextutil, php, postgresql, prosody, python-django,
  1372. rabbitmq-c, rauc, redis, rpcbind, socat, spice,
  1373. spice-protocol, tftpd, tiff, webkitgtk
  1374. New packages: libmspack
  1375. Issues resolved (http://bugs.uclibc.org):
  1376. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  1377. #12171: Python-opencv needs config.py and config-3.7.py to run..
  1378. #12211: host-nodejs 10.15.3 package fail to build
  1379. #12316: tzdata fails to install with empty "default local time"
  1380. 2019.02.7, Released November 10th, 2019
  1381. Important / security related fixes.
  1382. support/testing: use a kernel with HW_RANDOM_VIRTIO to work
  1383. around issues with lack of entrophy
  1384. Toolchain: Also copy libssp.so for external toolchains if SSP
  1385. is enabled to handle toolchains providing SSP support in
  1386. libssp rather than in the C library
  1387. Download: Also use the package download method for extra
  1388. downloads from the same site, so it does not get confused by
  1389. URLs containing '+'
  1390. Fakeroot now works correctly under Microsoft Windows 10
  1391. Services for Linux, which does not provide SYSV IPC support
  1392. utils/test-pkg: ensure to exit with an error upon failure
  1393. Updated/fixed packages: asterisk, azmq, cups-filters,
  1394. domoticz, duma, elf2flt, eudev, exfat, exfat-utils, fakeroot,
  1395. file, freerdp, gd, ghostscript, go, gvfs, intel-microcode,
  1396. kvm-unit-tests, libarchive, libnspr, libnss, libopenssl,
  1397. libpcap, libpciaccess, librsvg, libseccomp, libsigrok,
  1398. libtorrent, libunwind, linux-tools, lua-sdl2, lxc, minizip,
  1399. mjpegtools, mongoose, php, python, python-pysnmp-apps,
  1400. python3, qemu, qt5base, ruby, safeclib, samba4, sdl_mixer,
  1401. sox, sudo, systemd, tcpdump, unscd, util-lkinux, vtun, xvisor,
  1402. yaffs2utils
  1403. Issues resolved (http://bugs.uclibc.org):
  1404. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  1405. #12261: sudo versions prior to 1.8.28 are affected
  1406. 2019.02.6, Released October 3rd, 2019
  1407. Important / security related fixes.
  1408. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  1409. Use default console settings
  1410. Dependencies: Ensure host has JSON::PP perl module installed
  1411. if webkitgtk/wpewebkit packages are enabled as it is needed
  1412. during their build process.
  1413. Toolchain: Generate check-headers program under BUILD_DIR
  1414. rather than /tmp to fix issues with distributions mounting
  1415. /tmp noexec.
  1416. Updated/fixed packages: asterisk, augeas, bind, bwm-ng, cups,
  1417. cups-filters, docker-cli, docker-engine, docker-proxy,
  1418. dropbear, e2fsprogs, eudev, exim, expat, gcc, go, ifplugd,
  1419. haveged, iptables, joe, kf5-extra-cmake-modules,
  1420. kf5-modemmanager-qt, kf5-networkmanager-qt, libcurl,
  1421. libgcrypt, libgpg-error, libnftl, libnspr, libnss, libopenssl,
  1422. luksmeta, mariadb, mbedtls, mongodb, mosquitto, ncurses,
  1423. nfs-utils, nghttp2, nodejs, openvmtools, php, protobuf, putty,
  1424. qemu, qt5base, samba4, swupdate, systemd-bootchart, thttpd,
  1425. uclibc, unzip, util-linux, wireshark
  1426. Issues resolved (http://bugs.uclibc.org):
  1427. #10806: Allow nfs-utils to use ipv6
  1428. #11781: mariadb build error
  1429. #12031: Build of cups-filters fails while linking, apparently due..
  1430. #12141: eudev package is missing "render" and "kvm" groups
  1431. #12181: dropbear: norootlogin (-w) no longer works when PAM is enabled
  1432. #12241: Permission denied while running "make"
  1433. 2019.02.5, Released September 2nd, 2019
  1434. Important / security related fixes.
  1435. Filesystems: Pass extra pax options to tar for binary
  1436. reproducibility.
  1437. Updated/fixed packages: apache, arm-trusted-firmware,
  1438. asterisk, atk, autofs, batctl, batman-adv, berkeleydb, brotli,
  1439. busybox, bzip2, clamav, cloop, cmake, collectd, connman-gtk,
  1440. cryptopp, dahdi-linux, dahdi-tools, daq, dehydrated, dovecot,
  1441. dovecot-pigeonhole,, elfutils, evtest, exim, expect, giflib,
  1442. git, glib-networking, glibc, gnupg2, gnutls, go,
  1443. gst1-rtsp-server, gtkperf, gupnp-tools, gvfs, imagemagick,
  1444. imx-uuc, intel-microcode, json-glib, lftp, libbsd, libcurl,
  1445. libgit2, libgtk3, libmodplug, libnss, libpri, libshout,
  1446. libss7, libssh2, libvips, libxcb, linux-headers, mdadm,
  1447. mesa3d, metacity, mpg123, mosquitto, musl, nginx, openblas,
  1448. opencv3, openldap, openvmtools, pcmanfm, php, pigpio,
  1449. postgresql, prboom, proftpd, proj, python, python-django,
  1450. python-idna, python-numpy, python-urllib3, python3, qemu, qt5,
  1451. qt5base, qt5enginio, quagga, rygel, squid, subversion,
  1452. tcpreplay, unzip, vlc, vte, webkitgtk, weston, wireless-regdb,
  1453. xen, xfont_font-util, xlib_libICE, xlib_libXfont,
  1454. xlib_libXfont2, yad, zeromq
  1455. Issues resolved (http://bugs.uclibc.org):
  1456. #11741: pigpio does not build host-pigpio
  1457. #11876: automount using host mount/umount
  1458. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  1459. #11921: dahdi fails to build
  1460. #11961: libpri build failure
  1461. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  1462. #12106: daq: build fails if libdumbnet-dev is installed in the host
  1463. #12126: vc4 has neon as hard dependency
  1464. 2019.02.4, Released July 10th, 2019
  1465. Important / security related fixes.
  1466. arch: x86: Fix typo breaking 'core-avx2' variant, add Westmere
  1467. variant.
  1468. linux: Workaround -Werror related build failure on powerpc,
  1469. by forcing CONFIG_PPC_DISABLE_WERROR on.
  1470. support/testing: Emulate a machine with 256MB RAM to fix
  1471. issues with certain tests running out of memory.
  1472. test-pkg: Correct long option handling and clean output dir
  1473. after a successful build to save disk space.
  1474. Ensure custom <pkg>_OVERRIDE_SRCDIR_RSYNC_EXCLUSIONS are
  1475. passed before the standard exclusions so they are not ignored
  1476. by rsync when using override-srcdir.
  1477. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  1478. partition is available before mounting.
  1479. Updated/fixed packages: barebox, bzip2, davfs2, dbus, dialog,
  1480. docker-cli, docker-engine, expat, faad2, ffmpeg, freeswitch,
  1481. gerbera, haveged, irssi, libcdadio, libgit2, libglib2,
  1482. libsecret, libvncserver, lmbench, logrotate, mariadb, meson,
  1483. mongoose, monit, mpd, openblas, php, postgresql, psplash,
  1484. python, python-django, python3, qt5base, samba4, taglib,
  1485. tvheadend, vlc, webkitgtk, xserver_xorg-server, znc
  1486. 2019.02.3, Released June 7th, 2019
  1487. Important / security related fixes.
  1488. Infra: pkg-config: Use a dedicated timestamp file rather than
  1489. .config as that gets touched by linux-4.19+, causing repeated
  1490. builds.
  1491. check-bin-arch: Also ignore /usr/lib/grub to support merged
  1492. /usr setups, similar to how /lib/grub is ignored.
  1493. gnuconfig/config.sub: Add C-SKY architecture support.
  1494. Updated/fixed packages: assimp, atftp, atop, botan, busybox,
  1495. ca-certificates, chocolate-doom, cjson, coreutils, cracklib,
  1496. ddrescue, dhcp, docker-cli, docker-containerd, docker-engine,
  1497. dosfstools, dovecot, dovecot-pigeonhole, dropbear, exim,
  1498. ffmpeg, flare-engine, gcc, gdb, gerbera, glibmm, go, gpsd,
  1499. gst-ffmpeg, gst1-plugins-bad, gst1-plugins-base, imagemagick,
  1500. intel-microcode, jasper, kf5-kcoreaddons, kismet, libcurl,
  1501. libglib2, libnss, libopenssl, libsigrok, libssh2, libupnp18,
  1502. linuxptp, luajit, lynx, matchbox-panel, mender,
  1503. netcat-openbsd, netsurf, nfs-utils, opus, orc, owfs,
  1504. pcsc-lite, php, popt, postgresql, python, python-cython,
  1505. python-django, python-ply, qt5enginio, rpm, runc, samba4,
  1506. sqlite, subversion, supertux, systemd, tslib, uclibc,
  1507. v4l2loopback, webkitgtk, woff2
  1508. Issues resolved (http://bugs.uclibc.org):
  1509. #11816: Only selected coreutils binaries are installed
  1510. #11841: grub-efi.cfg not used when building EFI disk image
  1511. #11911: systemd v240 memory leak in systemd-journald
  1512. 2019.02.2, Released April 29th, 2019
  1513. Important / security related fixes.
  1514. Only build host-lzip / host-xz when really needed by packages,
  1515. not just when not available on the build host.
  1516. fs: Set FAKEROOTDONTTRYCHOWN environment variable to not
  1517. forward {f,l,}chown calls to libc when running under fakeroot
  1518. to fix issues when building in restricted environments
  1519. (E.G. user namespace with bubblewrap).
  1520. Linux: Also build default make target to ensure extra files
  1521. like the gdb scripts enabled by CONFIG_GDB_SCRIPTS are also
  1522. built. Notice: This may mean that extra host utilities like
  1523. uboot-mkimage are needed.
  1524. Defconfigs: ASUS tinker and Amarula vyasa rk3822: Support
  1525. larger kernel images, Atmel SAM5D27, SAM5D2,3,4 xplained:
  1526. Increase rootfs size to fit utilities, Raspberry Pi 64bit:
  1527. Include overlays in sdcard image
  1528. Updated/fixed packages: android-tools, apache, bind, binutils,
  1529. busybox, civetweb, cjson, copas, davfs2, docker-cli,
  1530. docker-containerd, docker-engine, dovecot, dovecot-pigeonhole,
  1531. freerdp, gerbera, ghostscript, git, gnutls, go, gst-omx,
  1532. gst1-plugins-base, gst1-plugins-ugly, haproxy, hostapd,
  1533. ipsec-tools, libfreefare, libfuse, libkrb5, libpng, libxml2,
  1534. libxslt, linknx, linux, linux-firmware, linux-tools, live555,
  1535. lldp, lrzsz, lynx, madplay, make, minicom, mongodb, msmtp,
  1536. musl, mutt, neon, netsnmp, numactl, opus, perl, php,
  1537. postgresql, pure-ftpd, python-urllib3, python3, qt5base,
  1538. rapidxml, rpm, rsyslog, ruby, runc, samba4, sane-backends,
  1539. softether, stunnel, sysklogd, syslinux, syslog-ng,
  1540. systemd-bootchart, thttpd, thrift, tiff, tor, tpm2-tools,
  1541. tpm2-tss, webkitgtk, yaffs2utils, wget, wpa_supplicant, wsapi,
  1542. xapp_xfd, xapp_xload, xlib_libXpm, xserver_xorg-server, xz,
  1543. znc
  1544. Issues resolved (http://bugs.uclibc.org):
  1545. #11756: package/syslinux: MBR's don't fit because of binutils..
  1546. #11761: Building custom kernel 5.1-rc3 or later breaks on objtool
  1547. 2019.02.1, Released March 29th, 2019
  1548. Important / security related fixes.
  1549. pkg-generic: Only tweak .la files needing it to ensure they
  1550. are not included in subsequent package file lists.
  1551. test-pkg: Generate a basic package config if none is
  1552. specified.
  1553. Updated/fixed packages: asterisk, avahi, bash, beecrypt,
  1554. binutils, busybox, clamav, cups, efl, eigen, fetchmail, file,
  1555. flashrom, fltk, gerbera, git, glibc, gnuradio, go,
  1556. gst-plugins-bad, intel-gmmlib, jq, kexec, kf5-modemmanager-qt,
  1557. leveldb, libcurl, libdrm, libftdi1, libglib2, libiio, libpcap,
  1558. libseccomp, libssh2, log4cplus, lvm2, mariadb, mender,
  1559. mongodb, mosquitto, musl, nodejs, ntp, openjpeg, owfs, php,
  1560. pure-ftpd, putty, python-aiojobs, qt5webkit, rdesktop, samba4,
  1561. sunxi-tools, supertux, swupdate, tpm2-abrmd, tpm2-tss,
  1562. wavemon, wireshark, vsftpd, xapp_xdm, xen,
  1563. xdriver_xf86-video-fbdev, xlib_libXdmcp
  1564. Issues resolved (http://bugs.uclibc.org):
  1565. #11716: Typo on website, saying latest release is 2018.2.11
  1566. 2019.02, released March 4th, 2019
  1567. Minor fixes.
  1568. Libressl support added for Qt 5.6 as a replacement for
  1569. openssl, as 5.6 is not compatible with openssl 1.1.x.
  1570. Updated/fixed packages: cutelyst, devmem2, gqrx,
  1571. gst-plugins-bad, libraw, libsoxr, qt5base, runc, systemd, tor
  1572. 2019.02-rc3, released March 1st, 2019
  1573. Fixes all over the tree.
  1574. Openssl support dropped from Qt 5.6, as it isn't compatible
  1575. with openssl 1.1.x.
  1576. Toolchain: GCC 8.x updated to 8.3.0, fixing a number of
  1577. issues.
  1578. Dependencies: Require CMake 3.8 or newer to fix compilation
  1579. issue with certain packages. If not available, host-cmake will
  1580. instead be built.
  1581. Printvars: Fix performance regression since 2018.02
  1582. Scanypi: Correctly handle underscores in python package names.
  1583. Updated/fixed packages: botan, clamav, cryptopp, i2pd,
  1584. ibrcommon, iproute2, libcpprestsdk, libssh, lua-curl,
  1585. luaexpat, qt5base, runc, stress-ng, syslinux, systemd,
  1586. upmpdcli, zbar
  1587. Issues resolved (http://bugs.uclibc.org):
  1588. #9966: util-linux-2.30/.stamp_built' failed
  1589. #11696: possible typo in board/pc/post-build.sh
  1590. 2019.02-rc2, released February 23th, 2019
  1591. Fixes all over the tree.
  1592. Removed zynq_zybo defconfig, as it hasn't seen any update
  1593. since it was added in 2016, and uses a U-Boot version not
  1594. compatible with openssl-1.1.x.
  1595. Linux: Ignore user supplied downloadable hashes, as no hash
  1596. checksums are available for those.
  1597. Updated/fixed packages: bind, cryptopp, docker-containerd,
  1598. dtc, efivar, gdb, imagemagick, ipmiutil, libcpprestsdk,
  1599. libcurl, libgpiod, libid3tag, libv4l, log4cplus, luvi,
  1600. madplay, mender, mosquitto, poco, postgresql, proftpd,
  1601. pulseaudio, python-django, qemu, qt5base, qwt, rabbitmq-c,
  1602. reaver, safeclip, stress-ng, swupdate, syslog-ng, systemd,
  1603. tor, unzip, xenomai
  1604. Issues resolved (http://bugs.uclibc.org):
  1605. #11501: compile sdl2 with enable wayland
  1606. #11681: .. unable to initialize decompress status for section..
  1607. 2019.02-rc1, released February 13th, 2019
  1608. Fixes all over the tree and new features.
  1609. Dependencies:
  1610. Require Python >= 2.7 as it is needed for E.G. building
  1611. libglib2.
  1612. Ensure GNU gzip is used for reproducible tarballs (instead of
  1613. pigz)
  1614. Infrastucture:
  1615. Ensure the PLATFORM and OS environment variables are not set,
  1616. as they cause build issues for some packages.
  1617. The package list infrastructure now correctly handles packages
  1618. installing files with old mtime.
  1619. Add a config option to force all optional host utilities to be
  1620. built, even if suitable versions are available on the build
  1621. machine.
  1622. graph-build-time: Also show time spent downloading
  1623. Download: fixes for SSH/SCP support
  1624. Ensure user provided permissions override permissions from
  1625. packages.
  1626. SDK: Fix handling of relative symlinks (targets starting with
  1627. '.' or '..')
  1628. BR2_SYSTEM_DEFAULT_PATH setting to customize the default path
  1629. for processes.
  1630. The custom skeleton logic will now populate the needed /bin,
  1631. /lib, /sbin directories/symlinks if not present. Merged /usr
  1632. can now be used with a custom skeleton.
  1633. Rootfs overlays can now override symbolic links from
  1634. packages. This was disabled to ensure the correct symbolic
  1635. links are present when merged /usr is used. Instead validate
  1636. that the rootfs overlays do not include invalid /bin, /sbin
  1637. and /lib entries.
  1638. The waf infrastructure now support the <pkg>_SUBDIR variable,
  1639. similar to the other package types.
  1640. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  1641. Various improvements to the meson infrastructure.
  1642. Luarocks: A Buildroot addon has been added to automate
  1643. creating a Buildroot package from luarocks, similar to
  1644. scancpan and scanpypi.
  1645. scanpypi: protect against zip-slip vulnerability in zip/tar
  1646. handling
  1647. check-package: fix Python 3 support
  1648. get-developers: Fix behaviour when called from elsewhere than
  1649. the toplevel directory.
  1650. pkg-stats: Show latest upstream version of each package, based
  1651. on data from release-monitoring.org
  1652. kconfig: Fix for make linux-menuconfig / uboot-menuconfig from
  1653. a clean tree when ccache is enabled.
  1654. Default to sha256 password encoding, drop md5 support.
  1655. Architecture:
  1656. Support for RISC-V 32bit architecture, ARM A55, 75 and Saphira
  1657. variants, MIPS support for mips32r3, mips64r3 and Marvell
  1658. Octeon II/III variants.
  1659. Toolchain:
  1660. ARC toolchain 2018.09, ARM 8.2-2018.11, Codescape IMG/MTI MIPS
  1661. 2018.09-02, MUSL 1.1.21, GCC 6.5.0 / 7.4.0, GDB 8.2.1
  1662. Packages:
  1663. openssl: Bump to 1.1.1x series, bringing TLSv1.3 support and
  1664. long term support.
  1665. fftw: Split into fftw-{single,double,long-double,quad}
  1666. packages for the different data precision options.
  1667. libcurl: Now has explicit TLS backend selection options.
  1668. linux: Support building device tree blobs with the -@ option
  1669. for device tree overlays.
  1670. weston: The weston-imx i.MX variant is now used when
  1671. imx-gpu-viv is enabled
  1672. pkgconf: Update to 1.5.3, which brings support for
  1673. --define-prefix (used by GStreamer)
  1674. Add host-python3-setuptools package to handle host python
  1675. packages needing python3 with setuptools support.
  1676. New defconfigs: Aarch64 EFI, Orangepi one plus, Orangepi lite
  1677. 2, QEMU RISC-V 32bit virt, Rock64
  1678. New packages: brcm-patchram-plus, clinfo, cunit, docker-cli,
  1679. erlang-p1-eimp, exempi, fail2ban, fftw-double,
  1680. fftw-double-long, fftw-quad, fftw-single, gerbera, grpc,
  1681. gst1-shark, intel-gmmlib, iwd, kf5-kcoreaddons, libeastl,
  1682. libpackagekite, libtorrent-rasterbar, lua-std-debug,
  1683. lua-std-normalize, mini-snmpd, netsurf, pamtester, pcm-tools,
  1684. python-aiodns, python-aiohttp, python-aiohttp-jinja2,
  1685. python-aiohttp-remotes, python-aiohttp-security,
  1686. python-aiohttp-session, python-aiohttpd-sse, python-aiojobs,
  1687. python-cchardet, python-pycares, python-sentry-sdk,
  1688. python-wtforms, python3-setuptools, rcw, rtc-tools, shim,
  1689. utp_com, vmtouch, websocketpp
  1690. Removed packages: fftw, lua 5.2.x, luacrypto, perl-time-hires,
  1691. python-pyqt, qt, qtuio, tn5250
  1692. Issues resolved (http://bugs.uclibc.org):
  1693. #10851: Patch to handle numpad Enter key properly
  1694. #11066: x11r7 X11 S40xorg leads to a black screen on QEMU x86..
  1695. #11126: Bash Shell Programming using Buildroot
  1696. #11426: pps-tools bash dependency
  1697. #11476: stdio2.h error invalid use of __builtin_va_arg_pack
  1698. #11536: dt-utils building fails with glibc 2.28
  1699. #11546: open-vm-tools with glibc 2.28
  1700. #11566: Fix init script
  1701. #11576: Unable to start apache with event MPM on raspberry pi 3
  1702. #11591: [pkgconf 1.5.3] xserver OpenGL support is missing
  1703. #11606: libjpeg has no Config.in
  1704. #11616: 2018.02.09 fails to build libzlib with full RELRO..
  1705. #11656: Custom device tree and u-boot boot.scr not integrated..
  1706. #11666: Touchscreen with (Py)Qt5 should use tslib instead of evdev
  1707. 2018.11.4, Released March 28th, 2019
  1708. Important / security related fixes.
  1709. Updated/fixed packages: avahi, beecrypt, binutils, botan,
  1710. busybox, clamav, cups, devmem2, efl, fetchmail, file, fltk,
  1711. gcc, gdb, git, go, gst-plugins-bad, iproute2, jq,
  1712. kf5-modemmanager-qt, leveldb, libopenssl, libraw, libseccomp,
  1713. libsoxr, libssh2, mariadb, mosquitto, nodejs, ntp, openjpeg,
  1714. perl, php, putty, qt5webkit, rdesktop, runc, samba4, swupdate,
  1715. systemd, tor, vsftpd, wireshark, xapp_xdm, xen, xlib_libXdmcp
  1716. 2018.11.3, Released February 23th, 2019
  1717. Important / security related fixes.
  1718. Ensure the PLATFORM and OS environment variables are not set,
  1719. as they cause build issues for some packages.
  1720. The package list infrastructure now correctly handles packages
  1721. installing files with old mtime.
  1722. Linux: Skip hash checks for user supplied downloadable
  1723. patches, as no hash checksums are available for those.
  1724. scanpypi: protect against zip-slip vulnerability in zip/tar
  1725. handling
  1726. Download: fixes for SSH/SCP support
  1727. SDK: Fix handling of relative symlinks (targets starting with
  1728. '.' or '..')
  1729. Updated/fixed packages: bind, dhcpcd, docker-compose,
  1730. docker-containerd, docker-engine, dovecot, dovecot-pigeonhole,
  1731. dtc, efivar, ghostscript, gnuradio, imagemagick, jpeg-turbo,
  1732. libarchive, libb64, libcurl, libgeotiff, libgpiod, libid3tag,
  1733. libupnp18, log4cplus, madplay, meson, mosquitto, openssh, php,
  1734. poco, postgresql, proftpd, pulseaudio, python, python-django,
  1735. python3, qt5base, reaver, runc, sg3_utils, sqlcipher,
  1736. swupdate, systemd, unzip, webkitgtk, xenomai
  1737. 2018.11.2, Released January 30th, 2019
  1738. Important / security related fixes.
  1739. Defconfigs: Fixes for imx6slevk, imx7dsabresd, imx8mqevk, Lego
  1740. EV3, QEMU AArch64-virt
  1741. Download: Fix scp download handling
  1742. check-package: fix Python 3 support
  1743. get-developers: Fix behaviour when called from elsewhere than
  1744. the toplevel directory.
  1745. kconfig: Fix for make linux-menuconfig / uboot-menuconfig from
  1746. a clean tree when ccache is enabled.
  1747. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  1748. Updated/fixed packages: acpica, apache, apr, avrdude, cargo,
  1749. cc-tool, dash, dhcpdump, dmalloc, docker-containerd, efivar,
  1750. fwts, glibc, gnuchess, gnupg2, go, leveldb, libarchive,
  1751. libassuan, libftdi1, libgpg-error, libhttpparser, libkcapi,
  1752. libmad, libsndfile, libsquish, liburiparser, libwebsock,
  1753. libxml2, lighttpd, llvm, lm-sensors, lua-msgpack-native, lxc,
  1754. mariadb, mbedtls, meson, mosquitto, netatalk, nodejs, odhcp6c,
  1755. openresolv, openssh, pango, patchelf, php, python-django,
  1756. python-numpy, python-pyyaml, rauc, rp-pppoe, s6-networking,
  1757. samba4, sdl_sound, shairport-sync, sqlite, subversion,
  1758. sunxi-cedarx, swupdate, systemd, tcpreplay, tekui, tmp2-abrmd,
  1759. tpm2-tools, tpm2-tss, udisks, unixodbc, usb_modeswitch,
  1760. webkitgtk, wireshark, wolfssl, xapp_rgb, xenomai, xerces
  1761. Issues resolved (http://bugs.uclibc.org):
  1762. #11576: Unable to start apache with event MPM on raspberry pi 3
  1763. 2018.11.1, Released December 20th, 2018
  1764. Important / security related fixes.
  1765. defconfigs: Fixes for bananapi m2 ultra, ci20
  1766. Download wrapper: Fix for urlencode handling
  1767. Updated/fixed packages: asterisk, docker-compose,
  1768. docker-engine, dt-utils, gnutls, go, grub, libbsd, libcurl,
  1769. libpgpme, libiscsi, liblo, libmpd, libopenssl, liboping,
  1770. libpam-tacplus, libpjsip, linux-firmware, liquid-dsp,
  1771. lua-cqueue, luvi, lxc, lynx, nginx, nodejs, openzwave, php,
  1772. pps-tools, proftpd, prosody, sdl2_net, squashfs, swupdate,
  1773. uclibc, vtu, webkitgtk, wine, xen
  1774. New packages: docker-cli
  1775. Issues resolved (http://bugs.uclibc.org):
  1776. #11426: pps-tools bash dependency
  1777. #11536: dt-utils building fails with glibc 2.28
  1778. 2018.11, Released December 1st, 2018
  1779. Minor fixes.
  1780. Updated/fixed packages: c-ares, quagga, squid
  1781. 2018.11-rc3, released November 30th, 2018
  1782. Fixes all over the tree.
  1783. Defconfigs: Fixes for Armadeus APF27, imx6sabre, Olimex A20
  1784. olinuxino lime legacy, Orangepi zero plus 2, PC, Riotboard.
  1785. graph-depends: Fix for package names starting with a non-alpha
  1786. character.
  1787. Updated/fixed packages: alsa-utils, botan, dante, domoticz,
  1788. dtc, freetype, gauche, gcc, gdb, ghostscript, glibc,
  1789. imx-usb-loader, libbsd, libid3tag, libkrb5, libmicrohttpd,
  1790. libopenssl, libsoxr, linux, motion, msgpack, mtd,
  1791. perl-net-ssleay, php, popt, python-numpy, qt5declarative,
  1792. samba4, shadowsocks-libev, stress-ng, systemd, usb_modeswitch,
  1793. webkitgtk, valgrind, weston, xfsprogs
  1794. 2018.11-rc2, released November 21th, 2018
  1795. Fixes all over the tree.
  1796. fs: Drop intermediate tarball from the filesystem handling to
  1797. fix an issue with xattrs handling related to fakeroot. Ensure
  1798. tarball target includes xattrs.
  1799. download: Fix confusion in git submodule handling if dl/ is a
  1800. symlink.
  1801. genrandconfig: Fix missing newline in BR2_WGET handling,
  1802. causing the following line to be ignored. This would affect
  1803. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  1804. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  1805. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  1806. show-build-order: Also include the dependencies of
  1807. rootfs-common.
  1808. Fix a number of build issues in packages for the recently
  1809. merged RISC-V architecture support.
  1810. Updated/fixed packages: dt-utils, easydbus, elfutils,
  1811. flare-engine, flatcc, glibc, gstreamer, gstreamer1, imx-uuc,
  1812. libassuan, libcorrect, libiscsi, libkrb5, libmicrohttpd,
  1813. libnftnl, libnspr, libnss, libsemanage, libsigsegv, libv4l,
  1814. ltp-testsuite, luv, luvi, make, ncmpc, netplug, openocd,
  1815. prosody, qemu, rpm, sconeserver, shadowsocks-libev,
  1816. supertuxcart, syslinux, systemd, trace-cmd, uclibc,
  1817. uclibc-ng-test, vtun, webkitgtk, weston, wireshark, xen,
  1818. xlib_libfontenc
  1819. Issues resolved (http://bugs.uclibc.org):
  1820. #11086: download/git submodule breaks on symlinked dl folder
  1821. #11216: Capabilities not applied to filesystem
  1822. 2018.11-rc1, released November 9th, 2018
  1823. Fixes all over the tree and new features.
  1824. Architecture: RISC-V support (64bit) added.
  1825. Toolchain: Glibc bumped to 2.28. Fortran support for external
  1826. toolchains. ARM (Linaro) toolchains updated to 8.2-2018.08.
  1827. Hardening flags (RELRO) are now handled by the toolchain
  1828. wrapper instead of explicitly through CFLAGS/LDFLAGS, fixing a
  1829. number of issues.
  1830. Filesystems: Support for creating btrfs and f2fs filesystems
  1831. added.
  1832. Add a number of patches to fix build errors for host utilities
  1833. on modern distributions using glibc-2.28.
  1834. mkusers: Ensure existing group members are preserved when a
  1835. group is reprocessed.
  1836. printvars: Fix issue with exceeding shell command line length
  1837. limits for certain setups.
  1838. Workaround added for incompatibility issues between host-dtc
  1839. and older U-Boot and Linux kernel versions.
  1840. Detect and reject build paths containing '@', as this confuses
  1841. a number of packages, including GCC.
  1842. utils/diffconfig: Make it work for (non-Buildroot) config
  1843. files not using the BR2_ prefix.
  1844. New defconfigs: Amarula a64-relic, Bananapi m2 ultra, Embest
  1845. riotboard, Hardkernel Odroid XU-4, QEMU riscv64-virt.
  1846. olimex_a20_olinuxion_lime_mali is renamed to _legacy.
  1847. OpenCL infrastructure support added, similar to how OpenGL is
  1848. handled.
  1849. Linux-headers: Support for kernel headers from a custom
  1850. tarball / git repo added.
  1851. New packages: bird, bluez5_utils-headers, btrfs-progs,
  1852. checksec, davici, duktape, ell, haproxy, libclc, libcorrect,
  1853. libopencl, libopenresolv, nss-myhostname,
  1854. perl-apache-logformat-compiler, perl-appconfig,
  1855. perl-astro-suntime, perl-class-inspector, perl-class-load,
  1856. perl-class-method-modifiers, perl-class-std,
  1857. perl-class-std-fast, perl-cookie-baker, perl-data-dump,
  1858. perl-data-optlist, perl-data-uuid, perl-data-manip,
  1859. perl-dbd-mysql, perl-dbi, perl-devel-globaldestruction,
  1860. perl-devel-stacktrace, perl-devel-stacktrace-ashtml,
  1861. perl-device-serialport, perl-dist-checkconflicts,
  1862. perl-exporter-tiny, perl-file-sharedir, perl-file-slurp,
  1863. perl-filesys-notify-simple, perl-hash-multivalue,
  1864. perl-http-entity-parser, perl-http-headers-fast,
  1865. perl-http-multipartparser, perl-io-interface,
  1866. perl-io-socket-multicast, perl-json-maybexs, perl-mime-tools,
  1867. perl-module-implementation, perl-module-runtime, perl-moo,
  1868. perl-number-bytes-human, perl-package-stash, perl-params-util,
  1869. perl-plack, perl-posix-strftime-compiler, perl-role-tiny,
  1870. perl-streams-buffered, perl-sub-exporter-progressive,
  1871. perl-sub-install, perl-sub-quote, perl-sys-cpu,
  1872. perl-sys-meminfo, perl-sys-mmap, perl-time-parsedate,
  1873. perl-type-tiny, perl-www-form-urlencoded, perl-x10, pigpio,
  1874. python-async-timeout, python-falcon, python-fire,
  1875. python-mimeparse, python-multidict, python-passlib,
  1876. python-pigpio, python-pip, python-ply, python-py,
  1877. python-pyasn1, python-pyasn1-modules, python-pycryptodomex,
  1878. python-pyhamcrest, python-pysmi, python-scapy, python-semver,
  1879. python-serial-asyncio, python-typing, python-uvloop,
  1880. pythonwrapt, python-yarl, python-zeroconf, riscv-pk, sedutil,
  1881. spandsp, tini, waffle, xapian
  1882. Removed packages: bootutils, dsp-tools, expedite, gst-dsp,
  1883. xloader
  1884. Issues resolved (http://bugs.uclibc.org):
  1885. #11116: Buildroot should set PYTHON_EGG_CACHE instead of writing ..
  1886. #11156: In python3 module 'socket' has no attribute 'AF_BLUETOOTH'
  1887. #11166: Erlang bad argument on valid uint64 when crosscompiled on..
  1888. #11206: zlib: fails to build with Linaro toolchain, BR2_RELRO_FULL..
  1889. #11241: ACPID shouldn't depend on BR2_x86_64 || BR2_i386
  1890. #11251: Util scanpypi failes when package change - to _ in tar file
  1891. #11266: qt5base-5.11.1 does not compile with musl, complains about..
  1892. #11286: python-rpi-gpio only should depend on BR2_arm || BR2_aarch64
  1893. #11321: Latest master fails to build readline with RELRO FULL
  1894. #11326: sysvinit fails to build in latest GIT master
  1895. #11331: Internal application no longer builds with latest GIT master
  1896. #11336: nfs-utils fails to build in latest GIT master
  1897. #11351: build root-2018-08, linaro aarch64 compile error
  1898. #11376: mdmon binary missing
  1899. #11391: Valgind availability on ARM
  1900. #11396: uboot environment image checksum invalid if target is big endian
  1901. #11421: GCC error message for ARM Cortex-A9/ARM.V7
  1902. #11451: Can't find libmpfr.so.4 when using external toolchain on ubuntu..
  1903. #11481: Docs: Is external.desc required?
  1904. 2018.08.4, Released December 20th, 2018
  1905. Important / security related fixes.
  1906. Defconfigs: Fixes for ci20, orangepi zero plus 2
  1907. Download wrapper: Fix for urlencode handling
  1908. Updated/fixed packages: c-ares, dante, docker-compose,
  1909. domoticz, freetype, ghostscript, gnutls, libcurl, libgpgme,
  1910. libid3tag, libiscsi, libmpd, libopenssl, liboping, libpjsip,
  1911. linux-firmware, liquid-dsp, luvi, lynx, msgpack, nginx,
  1912. nodejs, php, popt, pps-tools, prosody, python-numpy,
  1913. python-requests, samba4, sdl2_net, squashfs, swupdate,
  1914. systemd, uclibc, vte, webkitgtk, wine, xfsprogs
  1915. Issues resolved (http://bugs.uclibc.org):
  1916. #11426: pps-tools bash dependency
  1917. 2018.08.3, Released November 26th, 2018
  1918. Important / security related fixes.
  1919. fs: Drop intermediate tarball from the filesystem handling to
  1920. fix an issue with xattrs handling related to fakeroot. Ensure
  1921. tarball target includes xattrs.
  1922. download: Fix confusion in git submodule handling if dl/ is a
  1923. symlink.
  1924. toolchain: Only allow enabling stack protection on
  1925. architectures with control flow integrity (CFI) support. Only
  1926. allow FORTIFY_SOURCE support on gcc >= 6.
  1927. genrandconfig: Fix missing newline in BR2_WGET handling,
  1928. causing the following line to be ignored. This would affect
  1929. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  1930. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  1931. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  1932. show-build-order: Also include the dependencies of
  1933. rootfs-common.
  1934. Defconfigs: Fixes for Armadeus APF27, imx6sabre, Olimex A20
  1935. olinuxino lime legacy, Orangepi zero plus 2.
  1936. graph-depends: Fix for package names starting with a non-alpha
  1937. character.
  1938. Updated/fixed packages: attr, audit, bind, brotli, busybox,
  1939. dtc, easydbus, elfutils, flare-engine, flatcc, gauche, gcc,
  1940. giflib, gpsd, lcdproc, libcurl, libiscsi, libkcapi, libnfs,
  1941. libnspr, libnss, libsemanage, liburiparser, lighttpd,
  1942. lua-curl, mariadb, mmc, mosquitto, mysql, ncmpc, neardal,
  1943. netplug, network-manager, nfs-utils, nginx, openocd, openswan,
  1944. p11-kit, postgresql, prosody, qemu, qt, rpm, ruby, samba4,
  1945. squid, supertuxkart, systemd, tar, trace-cmd, traceroute,
  1946. twolame, uclibc, usb_modeswitch, vtun, webkitgtk, weston,
  1947. xdriver_xf86-video-geode, xlib_libfontenc, xserver_xorg-server
  1948. Issues resolved (http://bugs.uclibc.org):
  1949. #11086: download/git submodule breaks on symlinked dl folder
  1950. #11481: Docs: Is external.desc required?
  1951. 2018.08.2, Released October 25th, 2018
  1952. Important / security related fixes.
  1953. Workaround added for incompatibility issues between host-dtc
  1954. and older U-Boot and Linux kernel versions.
  1955. Detect and reject build paths containing '@', as this confuses
  1956. a number of packages, including GCC.
  1957. utils/get-developers: Add -e option for use with git
  1958. send-email.
  1959. utils/diffconfig: Make it work for (non-Buildroot) config
  1960. files not using the BR2_ prefix.
  1961. u-boot: Fix for environment image handling on big endian
  1962. systems.
  1963. Updated/fixed packages: binutils, ca-certificates,
  1964. cups-filters, dtc, erlang, file, freetype, gcc, git, gvfs,
  1965. jasper, leveldb, libarchive, libssh, live555, ljlinenoise,
  1966. mariadb, mongoose, netsnmp, nmap, nodejs, ntp, open-plc-utils,
  1967. poco, psmisc, ptpd2, python-enum34, qemu, qt, qt5base,
  1968. setools, spice, spice-protocol, tinc, ustr, wireshark,
  1969. Issues resolved (http://bugs.uclibc.org):
  1970. #11396: uboot environment image checksum invalid if target is big endian
  1971. 2018.08.1, Released October 7th, 2018
  1972. Important / security related fixes.
  1973. Add a number of patches to fix build errors for host utilities
  1974. on modern distributions using glibc-2.28.
  1975. mkusers: Ensure existing group members are preserved when a
  1976. group is reprocessed.
  1977. printvars: Fix issue with exceeding shell command line length
  1978. limits for certain setups.
  1979. Updated/fixed packages: acpid, android-tools, apache,
  1980. arp-scan, bandwidthd, bind, brltty, clamav, connman, cppcms,
  1981. domoticz, dtc, fio, gcc, gdb, ghostscript, gnupg, httpping,
  1982. igmpproxy, imlib2, ipsec-tools, libesmtp, libnfs, libxslt,
  1983. links, lua, mosquitto, nilfs-utils, ocrad, parted, php,
  1984. python-django, screen, shairport-sync, strongswan,
  1985. vboot-utils, webkitgtk, wireguard, x265 xen, xlib_libXdmcp,
  1986. xlib_libXfont, xlib_libXft, xlib_libxshmfence,
  1987. xutil_makedepend, zeromq
  1988. 2018.08, Released September 6th, 2018
  1989. Minor fixes.
  1990. Known issues:
  1991. - Glibc 2.28 on the build host breaks compilation of a number
  1992. of host packages. 2018.08 contains fixes for some of these
  1993. packages, but not all. Consider building on hosts (or in
  1994. containers) using older Glibc versions.
  1995. - host-dtc 1.4.7 breaks compilation of older U-Boot and Linux
  1996. kernel configurations using FDT/DTC. Consider updating the
  1997. Linux kernel to >= 4.17 and U-Boot to >= 2018.07 or
  1998. backporting commit 9130ba8846 (scripts/dtc: Update to
  1999. upstream version v1.4.6-9-gaadd0b65c987) for the Linux
  2000. kernel / commit db405d1980 for U-Boot.
  2001. Alternatively revert commit 7b929ddcf0 (dtc: bump version to
  2002. 1.4.7) and ensure your build host does not have the libfdt
  2003. development headers installed.
  2004. Updated/fixed packages: busybox, chipmunk, cutelyst,
  2005. domoticz, gcc, imagemagick, lcms2, libcurl, mediastreamer,
  2006. moarvm, php, qt, qt5virtualkeyboard, qt5webengine, screen,
  2007. sdl2, squashfs, uboot, xen
  2008. Issues resolved (http://bugs.uclibc.org):
  2009. #11261: ccache using wrong cached objects
  2010. #11276: Understanding the patch for kernel-4.9 and other..
  2011. 2018.08-rc3, Released August 31th, 2018
  2012. Fixes all over the tree.
  2013. linux: additional improvements to the flex / bison dependency
  2014. handling, use system provided variant if available. Ensure
  2015. toolchain is available when configuring for 4.18+ support.
  2016. Download: Fix handling of primary sites using file://
  2017. Toolchain: Correct external toolchain musl detection for
  2018. static toolchains.
  2019. Updated/fixed packages: aircrack-ng, bison, brltty, busybox,
  2020. cutelyst, dropbear, gr-osmosdr, i2c-tools, json-c, libconfuse,
  2021. libkcapi, libsoup, libssh, liburiparser, mbedtls, mender,
  2022. mesa3d, minicom, mjpegtools, mutt, openpowerlink, openssh,
  2023. oracle-mysql, php, postgresql, pv, qt5base, qt5quickcontrols,
  2024. rauc, shairport-sync, systemd, xlib_libX11, zeromq,
  2025. Issues resolved (http://bugs.uclibc.org):
  2026. #11091: BR2_PRIMARY_SITE doesn't work (wget is selected...
  2027. #11141: WF111 package no longer available
  2028. #11211: Internal compiler error: Killed (program cc1plus)..
  2029. #11236: util-linux fails to build on Travis CI when python..
  2030. #11246: Glibc 2.28 - fails to build host-bison and host-m4
  2031. #11256: Add python-falcon and python-mimeparse packages
  2032. 2018.08-rc2, Released August 20th, 2018
  2033. Fixes all over the tree.
  2034. pkg-kconfig: Support dependencies needed to run the
  2035. configurator, E.G. recent Linux kernel versions needing flex
  2036. and bison.
  2037. Defconfigs: ARM Juno: Bump ATF to fix a build
  2038. issue. Raspberrypi2: Bump rootfs size. Snps_archs38_vdk:
  2039. Correct /etc/inittab. Technologic ts7680: Correct genimage
  2040. configuration. Orange PI PC / Zero, Sheevaplug: Bump U-boot to
  2041. 2018.07 to fix build issue. Ensure host-openssl is pulled in
  2042. for kernel builds where needed.
  2043. Updated/fixed packages: aircrack-ng, bind, boost,
  2044. boot-wrapper-aarch64, bzip2, busybox, chrony, cryptsetup,
  2045. dahdi-tools, dbus, domoticz, eigen, ipsec-tools, libarchive,
  2046. libfuse, libgit2, libopenssl, libselinux, lighttpd, lvm2, m4,
  2047. makedevs, mariadb, mesa3d-headers, mono, ncmpc, ncurses,
  2048. nodejs, php, python-django, python-pyqt5, qt5base,
  2049. qt5serialbus, ruby, samba4, uboot-tools, uclibc, vlc,
  2050. waylandpp, wireless_tools, wireshark, wpa_supplicant, mtd,
  2051. xdriver_xf86-video-ati, xserver_xorg-server
  2052. Issues resolved (http://bugs.uclibc.org):
  2053. #10781: cryptsetup luksOpen container_file container causes..
  2054. #10996: bogus musl ARM toolchain
  2055. #11191: xattr and check-package issue
  2056. 2018.08-rc1, Released August 5th, 2018
  2057. Toolchain:
  2058. - add support for gcc 8.x, switch to gcc 7.x as the default
  2059. version
  2060. - add support for gdb 8.1, switch to gdb 8.0 as the default
  2061. and remove gdb 7.10/7.11
  2062. - add support for binutils 2.31
  2063. - NIOSII CodeSourcery toolchain updated
  2064. - Linaro AArch64 BE toolchain added, and other Linaro
  2065. toolchains updated
  2066. - Synopsys ARC pre-built toolchain updated
  2067. Architecture: add support for ARM Cortex-M7
  2068. Major updates:
  2069. - systemd bumped to 239
  2070. - Qt5 bumped to 5.11.1
  2071. - Rust bumped to 1.27
  2072. - GStreamer stack bumped to 1.14.2
  2073. - X.org server bumped to 1.20, and all X.org proto packages
  2074. replaced by the single xorgproto package
  2075. - i.MX6 support packages bumped to 6.2.4
  2076. - i.MX Vivante graphics version bumped to 6.2.4.p1.2,
  2077. adding support for Wayland and i.MX8MQ platforms
  2078. Linux: bumped to 4.17 by default.
  2079. Infrastructure: new package infrastructure added for packages
  2080. using the Meson build system
  2081. New packages: at-spi2-atk, at-spi2-core, capnproto, cmocka,
  2082. corkscrew, cutelyst, davfs2, flatcc, libidn2, libgit2,
  2083. libopusenc, mender, nghttp2, perl-convert-asn1, perl-crypt-blowfish,
  2084. perl-crypt-cbc, perl-digest-md5, perl-mime-base64-urlsafe,
  2085. perl-mojolicious-plugin-authentication, perl-net-ping,
  2086. perl-net-snmp, perl-net-ssh2, perl-net-telnet, pigz,
  2087. python-reentry, python-request-id, python-validators,
  2088. python-webob, shadowsocks-libev, speexdsp, xorgproto, wampcc
  2089. New defconfigs: NXP i.MX7D SDB, Boundary Devices Nitrogen 8M,
  2090. Olimex A10 OLinuxino, ZynqMP ZCU106
  2091. Removed packages: all xproto_* have been removed and replaced
  2092. by xorgproto
  2093. Issues resolved (http://bugs.uclibc.org):
  2094. #9411: MUSL build with RT Error relocating /lib/libgcc_s.so.1:
  2095. __cpu_indicator_init: symbol not found
  2096. #9921: lockfile module within python-daemon not available
  2097. #10341: gdb install of py files when using buildroot toolchain
  2098. includes build path
  2099. #10661: /etc/init.d/S29netplug starts multiple instances of netplugd
  2100. #10751: Missing dependency in pulseaudio package
  2101. #10811: kodi-17.6-Krypton does not compile for freescale_* devices
  2102. #10856: openblas on qemu_x86_64_defconfig fails with
  2103. "sgemm_kernel.o: No such file or directory"
  2104. #11056: Compiling a file that uses libdrm headers fails with:
  2105. fatal error: drm.h: No such file or directory
  2106. #11061: support/download: git version=master broken
  2107. #11071: Building postgresql package on Debian 9.4 x64 for armel target fails
  2108. #11076: Docker containerd installed to incorrect path
  2109. #11101: host-patchelf Endian Issue with relative RPATH
  2110. #11111: raspberry pi 3 b+: missing BSP for 64-bit kernel
  2111. #11121: statfs call corrupts memory struct statfs too small
  2112. #11181: Switching toolchain does not work
  2113. 2018.05.3, Released October 6th, 2018
  2114. Important / security related fixes.
  2115. Add a number of patches to fix build errors for host utilities
  2116. on modern distributions using glibc-2.28.
  2117. mkusers: Ensure existing group members are preserved when a
  2118. group is reprocessed.
  2119. printvars: Fix issue with exceeding shell command line length
  2120. limits for certain setups.
  2121. Updated/fixed packages: acpid, android-tools, apache,
  2122. arp-scan, bandwidthd, bind, bison, brltty, chipmunk, connman,
  2123. cppcms, fio, gcc, ghostscript, gnupg, httping, igmpproxy,
  2124. imagemagick, imlib2, ipsec-tools, lcm2, libcurl, libesmtp,
  2125. libnfs, libssh, libxslt, links, mediastreamer, minicom,
  2126. moarvm, nilfs-utils, ocrad, parted, php, postgresql, pv,
  2127. python-django, qt, qt5quickcontrols, qt5webengine, screen,
  2128. sdl2, shairport-sync, squashfs, strongswan, vboot-utils,
  2129. webkitgtk, wireguard, x265, xen, xlib_libXfont, xlib_libXft,
  2130. xlib_libxshmfence, zeromq
  2131. 2018.05.2, Released August 28th, 2018
  2132. Important / security related fixes.
  2133. Defconfigs: Raspberrypi2: Bump rootfs size, T7680: Fix
  2134. genimage.cfg issue, ARM Juno: Bump ATF to v1.3 to fix build
  2135. issue.
  2136. Updated/fixed packages: acl, attr, apache, bind,
  2137. boot-wrapper-aarch64, brltty, bzip2, chrony, crda, cryptsetup,
  2138. dahdi-tools, dmidecode, dropbear, eigen, ffmpeg, gawk, gcc,
  2139. ghostscript, gnutls, imx-gpu-viv, ipsec-tools, libarchive,
  2140. libfuse, libglib2, libopenssl, libselinux, libsoup, lighttpd,
  2141. linuxptp, lttng-modules, lttng-tools, lua-flu, lvm2, m4,
  2142. makedevs, mariadb, mbedtls, mesa3d-heders, mtd, ncurses,
  2143. nodejs, openssh, php, python-django, rauc, ruby, samba4,
  2144. stress-ng, ti-utils, uboot-tools, uclibc, vim, waylandpp,
  2145. wireless_tools, wireless-regdb, wireshark, wpa_supplicant,
  2146. xorriso, znc
  2147. Issues resolved (http://bugs.uclibc.org):
  2148. #10781: cryptsetup luksOpen container_file container causes..
  2149. #10986: Installing package attr when already supplied by..
  2150. #11191: xattr and check-package issue
  2151. 2018.05.1, Released July 20th, 2018
  2152. Important / security related fixes.
  2153. U-Boot: Ensure host version of ncurses is picked up and not
  2154. host-ncurses built by buildroot, as that otherwise causes
  2155. widechar/non-widechar conflicts and corrupted menuconfig
  2156. menus.
  2157. Linux: Enable CONFIG_PERF_EVENTS when perf is enabled.
  2158. Toolchain: ARC tools updated to arc-2018.03.
  2159. pkg-stats: Fix python 3.x compatibility.
  2160. dl-wrapper: Fix support for URIs containing '+', fix
  2161. no-check-hash for inferred site method.
  2162. Defconfigs: Raspberrypi3: Bump rootfs size, Minnowboard-max:
  2163. Support ethernet on Turbot variant.
  2164. Updated/fixed packages: audit, bind, btrfs-progs, cifs-utils,
  2165. clamav, collectd, coreutils, docker-containerd, dos2unix,
  2166. edid-decode, file, gcc, gdb, gnupg, gnupg2, heimdal, hidapi,
  2167. imagemagick, libcurl, libgcrypt, libglib2, liblogging,
  2168. libostree, libressl, libsoup, libv4l, libvncserver, libvorbis,
  2169. libwebsockets, libxslt, lm-sensors, mariadb, mpg123, ncurses,
  2170. network-manager, nodejs, patchelf, perl, php-amqp, pinentry,
  2171. pixiewps, qpdf, qt53d, qt5base, qt5charts, qt5script, redis,
  2172. systemd, triggerhappy, uboot, wireguard, wireless-regdb,
  2173. wireshark
  2174. 2018.05, Released June 1st, 2018
  2175. Minor fixes.
  2176. Download: Work around for hanging connections for packages
  2177. from CVS, by adding a 10 minute max timeout.
  2178. Updated/fixed packages: binutils, clang, dash, expect, git,
  2179. glibc, jpeg-turbo, libjpeg, log4cplus, openvmtools, xen,
  2180. Issues resolved (http://bugs.uclibc.org):
  2181. #11051: runtime issue on STM32 with usage of binutils 2.29.x
  2182. 2018.05-rc3, Released May 28th, 2018
  2183. Fixes all over the tree.
  2184. Toolchain: ARC tools updated to arc-2018.03-rc2.
  2185. Fs: Ensure hard links in TARGET_DIR are correctly copied for
  2186. filesystem input. With the recent changes to the file system
  2187. generation logic, hard links were "expanded" in file system
  2188. images leading to bloated rootfs images for setups with hard
  2189. links.
  2190. Infrastructure: Error out for packages using the 'local'
  2191. method but forgetting to specify <pkg>_SITE.
  2192. Build rpcgen for the host when needed to support distributions
  2193. no longer shipping rpcgen with glibc (E.G. recent Fedora).
  2194. Updated/fixed packages: autofs, bash-completion, binutils,
  2195. busybox, cjson, elf2flt, libcoap, libcurl, libtirpc, lrzsz,
  2196. poppler, procps-ng, qt-webkit-kiosk, quota, samba4, xfsprogs
  2197. Issues resolved (http://bugs.uclibc.org):
  2198. #11031: ld-elf2flt: host/bin/ld.real': execvp: No such file..
  2199. #11036: C compiler cannot create executables
  2200. #11046: Git package binaries are ~180MB (compared to ~20MB in..
  2201. 2018.05-rc2, Released May 22nd, 2018
  2202. Fixes all over the tree.
  2203. Dependencies: Check that the current working directory (.)
  2204. isn't listed in PATH as that causes various build issues.
  2205. Manual: Clarify that git branch names may not be used as
  2206. version identifiers. This has never been supported, but was
  2207. kind of working (with some limitations) before the git
  2208. download rework - Now it does not work at all.
  2209. Linux: Ensure host version of ncurses is picked up and not
  2210. host-ncurses built by buildroot, as that otherwise causes
  2211. widechar/non-widechar conflicts and corrupted menuconfig
  2212. menus.
  2213. Packages: Renamed a number of package options not prefixed
  2214. with BR2_PACKAGE_<pkg> for consstency.
  2215. Download infrastructure: Fix file:// protocol handling after
  2216. download rework.
  2217. Updated/fixed packages: acl, apr-util, asterisk, attr,
  2218. bluez5_utils, cifs-utils, clamav, clang, cups-filters,
  2219. dahdi-linux, exim, faketime, gdb, go, gst1-plugins-bad,
  2220. imx-mkimage, ipsec-tools, jamvm, janus-gateway,
  2221. jquery-ui-themes, libcap, libcurl, libftdi, libkcapi, libkrb5,
  2222. libmediaart, libmodbus, libmodplug, libmpd,
  2223. libnetfilter_cthelper, libnetfilter_cttimeout, libnfc,
  2224. libnfnetlink, libnss, liboauth, libogg, libosip2,
  2225. libpam-radius-auth, libpcap, libpciaccess, llvm, log4cplus,
  2226. ltrace, lynx, mbedtls, modem-manager, nfs-utils,
  2227. python-cython, python-websockets, qt5cinex, qt5wayland, rauc,
  2228. snort, strace, ti-sgx-km, transmission, wavpack, wget, woff2,
  2229. xen, zmqpp, znc, zstd
  2230. Issues resolved (http://bugs.uclibc.org):
  2231. #10986: Installing package attr when already supplied by...
  2232. #11011: BUildroot for Raspberry Pi 2
  2233. #11016: Wrong compiler used for external user host packages
  2234. 2018.05-rc1, Released May 9th, 2018
  2235. Toolchain: glibc bumped to 2.27, musl bumped to 1.1.19,
  2236. uClibc-ng 1.0.30, Linux kernel headers bumped to 4.16.x.
  2237. Architecture: support for the Blackfin architecture has been
  2238. removed, as it was removed from Linux upstream, poorly
  2239. maintained in binutils/gdb, and abandoned by Analog Devices.
  2240. Numerous packages updated to have hashes for their license
  2241. files.
  2242. Systemd can now be built with uClibc toolchains.
  2243. Linux: addition of BR2_LINUX_KERNEL_NEEDS_HOST_LIBELF and
  2244. BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL to support building Linux
  2245. kernel configurations that need libelf on the host or openssl
  2246. on the host.
  2247. Coding style:
  2248. - all Python scripts are now verified with flake8
  2249. - check-package extended to check all Config.in and .mk files
  2250. in tree, not only the ones in package/
  2251. Infrastructure:
  2252. - The download infrastructure has seen a major overhaul, with
  2253. the main visible new feature being Git caching: a package
  2254. fetched from Git no longer needs to be re-cloned entirely
  2255. everytime its version is changed. Anoter visible change is
  2256. that the download folder now has subfolders per package. See
  2257. http://lists.busybox.net/pipermail/buildroot/2018-April/217923.html
  2258. for more details about those changes.
  2259. - The logic that generates the root filesystem images has been
  2260. reworked, with the main goal of allowing several filesystem
  2261. images to be produced in parallel, also a requirement for
  2262. top-level parallel build. Now, a .tar filesystem image is
  2263. always created, and re-extracted in a private directory to
  2264. create each format-specific filesystem image.
  2265. - A new package infrastructure was introduced for Go-based
  2266. packages: golang-package.
  2267. - Dependencies on extraction tools are now handled as proper
  2268. per-package dependencies, using
  2269. <pkg>_EXTRACT_DEPENDENCIES. Beyond a cleanup, this is also a
  2270. preparation step for top-level parallel build support.
  2271. - When a file being downloaded is part of a package with a
  2272. .hash file, but there is no hash listed for this file, the
  2273. file is now preserved in the download directory rather than
  2274. removed. This helps when updating a package, as it gives the
  2275. ability to easily calculate the hash of the file.
  2276. - Addition of '<pkg>-show-recursive-depends' and
  2277. '<pkg>-show-recursive-rdepends' make targets, to
  2278. respectively display the recursive list of dependencies and
  2279. the recursive list of reverse dependencies of a given
  2280. package.
  2281. - The /etc/shells file is now automatically generated with the
  2282. list of shell programs installed on the system.
  2283. - Addition of -Ofast optimization level as an available
  2284. option.
  2285. Major updates: Go updated to 1.10, Erlang bumped to 20.3, Qt5
  2286. bumped to 5.10.1.
  2287. New packages: 18xx-ti-utils, abootimg, bluez-alsa, brotli,
  2288. chipmunk, clang, docker-compose, docker-proxy, flare-engine,
  2289. flare-game, gst1-interpipe, gstreamer1-editing-services,
  2290. hackrf, i2pd, imx-alsa-plugins, imx-mkimage, libcdio-paranoia,
  2291. libkrb5, llvm, pixiewps, python-backports-ssl-match-hostname,
  2292. python-cached-property, python-cython, python-docker,
  2293. python-dockerpty, python-docker-pycreds,
  2294. python-flask-sqlalchemy, python-functools32, python-influxdb,
  2295. python-json-models, python-libusb1, python-networkx,
  2296. python-psycopg2, python-pymodbus, python-sqlalchemy,
  2297. python-subprocess32, python-texttable,
  2298. python-websocket-client, python-yieldfrom, quotatool, reaver,
  2299. snort, sunxi-mali-mainline, sunxi-mali-mainline-driver, tk,
  2300. tpm2-abrmd, tpm2-tools, tpm2-tss, udftools, vte, woff2.
  2301. New defconfigs: ARC HS Development Kit, Arcturus ucls1012a,
  2302. Freescale i.MX6UL EVK (with vendor kernel), Freescale i.MX6
  2303. SoloLite EVK (with vendor kernel), Freescale i.MX31 3Stack,
  2304. Freescale i.MX8Q EVK Freescale p1025twr, Freescale t1040d4rdb,
  2305. Qemu PPC64 E5500, SolidRun ClearFog Base, Tinker RK3288, Vyasa
  2306. RK3288,
  2307. Removed packages: iqvlinux, kodi-adsp-*, mplayer
  2308. Removed defconfigs: ci40, firefly_rk3288,
  2309. freescale_p1010rdb_pa, freescale_mpc8315erdb, riotboard,
  2310. teliv_evk_pro3
  2311. Issues resolved (http://bugs.uclibc.org):
  2312. #10151: toolchain eclipse register : fails with a custom
  2313. BR2_HOST_DIR
  2314. #10511: Packages get downloaded uncompressed with wget
  2315. #10531: QtWebengine doesn't build if the host hasn't a 32 bits
  2316. C++ compiler working
  2317. #10846: error in compiling gnutls
  2318. #10886: openssl-1.0.2n fails to build
  2319. #10896: /bin/sh not in /etc/shells
  2320. #10961: Grub2 fails to build for x86_64 when BR2_SSP_ALL is
  2321. enabled
  2322. 2018.02.12, Released March 29th, 2019
  2323. Important / security related fixes.
  2324. Updated/fixed packages: avahi, beecrypt, busybox, clamav,
  2325. cups, devmem2, fetchmail, file, fltk, gcc, gdb, git, jq,
  2326. leveldb, libopenssl, libraw, libseccomp, libssh2,
  2327. libunistring, mariadb, mosquitto, nodejs, ntp, openjpeg, perl,
  2328. php, putty, qt5webkit, rdesktop, systemd, wireshark, vsftpd,
  2329. xapp_xdm, xlib_libXdmcp
  2330. 2018.02.11, Released February 23th, 2019
  2331. Important / security related fixes.
  2332. Ensure the PLATFORM and OS environment variables are not set,
  2333. as they cause build issues for some packages.
  2334. The package list infrastructure now correctly handles packages
  2335. installing files with old mtime.
  2336. Linux: Skip hash checks for user supplied downloadable
  2337. patches, as no hash checksums are available for those.
  2338. scanpypi: protect against zip-slip vulnerability in zip/tar
  2339. handling
  2340. Updated/fixed packages: bind, dhcpcd, dovecot, ghostscript,
  2341. gnuradio, imagemagick, jpeg-turbo, libarchive, libb64,
  2342. libcurl, libid3tag, madplay, mosquitto, openssh, php,
  2343. postgresql, proftpd, python, python-django, python3, qt5base,
  2344. sqlcipher, swupdate, systemd, unzip, webkitgtk
  2345. 2018.02.10, Released January 31th, 2019
  2346. Important / security related fixes.
  2347. Defconfigs: Fixes for Lego EV3, QEMU AArch64-virt
  2348. check-package: fix Python 3 support
  2349. get-developers: Fix behaviour when called from elsewhere than
  2350. the toplevel directory.
  2351. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  2352. Updated/fixed packages: acpica, apache, apr, asterisk,
  2353. avrdude, cargo, cc-tool, dash, dhcpdump, dmalloc, gnuchess,
  2354. gnupg2, leveldb, libarchive, libassuan, libftdi1,
  2355. libgpg-error, libhttpparser, libmad, libsndfile, libsquish,
  2356. liburiparser, libwebsock, libxml2, lighttpd, lm-sensors,
  2357. lua-msgpack-native, mbedtls, mosquitto, netatalk, nodejs,
  2358. openssh, pango, patchelf, php, python-django, python-pyyaml,
  2359. rauc, rp-pppoe, s6-networking, samba4, sdl_sound,
  2360. shairport-sync, sqlite, subversion, sunxi-cedarx, tcpreplay,
  2361. tekui, usb_modeswitch, webkitgtk, wireshark, wolfssl,
  2362. xapp_rgb, xenomai, xerces
  2363. Issues resolved (http://bugs.uclibc.org):
  2364. #11576: Unable to start apache with event MPM on raspberry pi 3
  2365. 2018.02.9, Released December 20th, 2018
  2366. Important / security related fixes.
  2367. defconfigs: Fixes for ci20
  2368. Updated/fixed packages: c-ares, dante, freetype, ghostscript,
  2369. glibc, gnutls, go, libcurl, libgpgme, libid3tag, libiscsi,
  2370. libmpd, libopenssl, libpjsip, linux, liquid-dsp, luvi, lynx,
  2371. msgpack, nginx, nodejs, php, popt, pps-tools, python-numpy,
  2372. python-requests, samba4, sdl2_net, squashfs, swupdate, uclibc,
  2373. wine, webkitgtk, xfsprogs
  2374. Issues resolved (http://bugs.uclibc.org):
  2375. #11426: pps-tools bash dependency
  2376. 2018.02.8, Released November 26th, 2018
  2377. Important / security related fixes.
  2378. fs: Drop intermediate tarball from the filesystem handling to
  2379. fix an issue with xattrs handling related to fakeroot. Ensure
  2380. tarball target includes xattrs.
  2381. download: Fix confusion in git submodule handling if dl/ is a
  2382. symlink.
  2383. toolchain: Only allow enabling stack protection on
  2384. architectures with control flow integrity (CFI) support. Only
  2385. allow FORTIFY_SOURCE support on gcc >= 6.
  2386. genrandconfig: Fix missing newline in BR2_WGET handling,
  2387. causing the following line to be ignored. This would affect
  2388. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  2389. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  2390. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  2391. show-build-order: Also include the dependencies of
  2392. rootfs-common.
  2393. Defconfigs: Fixes for Armadeus APF27, imx6sabre.
  2394. graph-depends: Fix for package names starting with a non-alpha
  2395. character.
  2396. Updated/fixed packages: attr, audit, bind, brotli, easydbus,
  2397. elfutils, gauche, gcc, giflib, gpsd, lcdproc, libcurl,
  2398. libiscsi, libnfs, libnspr, libnss, libkcapi, libsemanage,
  2399. liburiparser, lighttpd, linux, lua-curl, mariadb, mmc-utils,
  2400. mosquitto, mysql, neardal, netplug, network-manager,
  2401. nfs-utils, nginx, openocd, openswan, p11-kit, postgresql,
  2402. prosody, qemu, qt, rpm, ruby, samba4, squid, supertuxkart,
  2403. systemd, tar, trace-cmd, traceroute, twolame, uclibc,
  2404. usb_modeswitch, vtun, webkitgtk, xdriver_xf86-video-geode,
  2405. xlib_libfontenc, xproto_inputproto, xserver_xorg-server
  2406. Issues resolved (http://bugs.uclibc.org):
  2407. #11086: download/git submodule breaks on symlinked dl folder
  2408. #11251: Util scanpypi failes when package change - to _ in..
  2409. #11476: stdio2.h error invalid use of __builtin_va_arg_pack
  2410. #11481: Docs: Is external.desc required?
  2411. 2018.02.7, Released October 25th, 2018
  2412. Important / security related fixes.
  2413. Detect and reject build paths containing '@', as this confuses
  2414. a number of packages, including GCC.
  2415. utils/get-developers: Add -e option for use with git
  2416. send-email.
  2417. utils/diffconfig: Make it work for (non-Buildroot) config
  2418. files not using the BR2_ prefix.
  2419. u-boot: Fix for environment image handling on big endian
  2420. systems.
  2421. Updated/fixed packages: binutils, ca-certificates,
  2422. cups-filters, erlang, file, freetype, gcc, git, gvfs, leveldb,
  2423. libarchive, libcurl, libssh, live555, ljlinenoise, mariadb,
  2424. mongoose, netsnmp, nmap, nodejs, ntp, open-plc-utils, poco,
  2425. psmisc, ptpd2, python-enum34, qemu, qt, qt5base, setools,
  2426. spice, spice-protocol, tinc, ustr, wireshark
  2427. Issues resolved (http://bugs.uclibc.org):
  2428. #11396: uboot environment image checksum invalid if target is big endian
  2429. 2018.02.6, Released October 7th, 2018
  2430. Important / security related fixes.
  2431. Add a number of patches to fix build errors for host utilities
  2432. on modern distributions using glibc-2.28.
  2433. mkusers: Ensure existing group members are preserved when a
  2434. group is reprocessed.
  2435. printvars: Fix issue with exceeding shell command line length
  2436. limits for certain setups.
  2437. Updated/fixes packages: acpid, android-tools, apache,
  2438. arp-scan, bandwidthd, bind, bison, clamav, connman, cppcms,
  2439. cramfs, fio, gcc, ghostscript, glibc, gnupg, httping,
  2440. igmpproxy, imagemagick, imlib2, ipsec-tools, lcms2, libcurl,
  2441. libesmtp, libnfs, libssh, libxslt, links, linuxptp,
  2442. mediastreamer, minicom, moarvm, nilfs-utils, ocrad, parted,
  2443. php, pv, python-django, qt, qt5quickcontrols, qt5webengine,
  2444. screen, sdl2, shairport-sync, squashfs, strongswan,
  2445. vboot-utils, webkitgtk, wireguard, x265, xen, xlib_libXfont,
  2446. xlib_libXft
  2447. New packages: brotli, woff2
  2448. 2018.02.5, Released August 29th, 2018
  2449. Important / security related fixes.
  2450. Defconfigs: Raspberrypi2: Bump rootfs size, T7680: Fix
  2451. genimage.cfg issue, ARM Juno: Bump ATF to v1.3 to fix build
  2452. issue.
  2453. Updated/fixed packages: acl, apache, attr, bind,
  2454. boot-wrapper-aarch64, brltty, bzip2, chrony, crda, cryptsetup,
  2455. dahdi-tools, dmidecode, dropbear, eigen, erlang, ffmpeg, gawk,
  2456. gcc, ghostscript, gnutls, ipsec-tools, libarchive, libfuse,
  2457. libopenssl, libselinux, libsoup, lighttpd, linuxptp,
  2458. lttng-modules, lttng-tools, lua-flu, lvm2, m4, makedevs,
  2459. mariadb, mbedtls, mesa3d-headers, mtd, ncurses, nodejs,
  2460. openssh, php, postgresql, python-django, qt5xmlpatterns, ruby,
  2461. samba4, shairport-sync, stress-ng, ti-utils, uboot-tools, vim,
  2462. waylandpp, wireless_tools, wireshark, wpa_supplicant, xorriso,
  2463. znc
  2464. Issues resolved (http://bugs.uclibc.org):
  2465. #10781: cryptsetup luksOpen container_file container causes..
  2466. #10986: Installing package attr when already supplied by..
  2467. #11191: xattr and check-package issue
  2468. 2018.02.4, Released July 21th, 2018
  2469. Important / security related fixes.
  2470. U-Boot: Ensure host version of ncurses is picked up and not
  2471. host-ncurses built by buildroot, as that otherwise causes
  2472. widechar/non-widechar conflicts and corrupted menuconfig
  2473. menus.
  2474. Linux: Enable CONFIG_PERF_EVENTS when perf is enabled.
  2475. Defconfigs: Raspberrypi3: Bump rootfs size, Minnowboard-max:
  2476. Support ethernet on Turbot variant.
  2477. Updated/fixed packages: bind, clamav, collectd, dos2unix,
  2478. edid-decode, gcc, gdb, heimdal, hidapi, imx-gpu-viv, libcurl,
  2479. libglib2, liblogging, libostree, libsoup, libv4l, lm-sensors,
  2480. ncurses, network-manager, patchelf, pinentry, procps-ng, qpdf,
  2481. qt5, qt53d, qt5base, qt5charts, qt5script, qt5serialport,
  2482. systemd, wireguard, wireless-regdb
  2483. Issues resolved (http://bugs.uclibc.org):
  2484. #11101: host-patchelf Endian Issue with relative RPATH
  2485. 2018.02.3, Released June 18th, 2018
  2486. Important / security related fixes.
  2487. Various fixes for building on modern distributions (GCC 8.x,
  2488. no rpcgen utility).
  2489. ARM: Default to binutils 2.28 and warn about newer binutils
  2490. versions, which are known to cause boot failures for Linux
  2491. kernels built in thumb mode.
  2492. Busybox/mdev: Fix module autoloading.
  2493. Busybox/sysvinit: inittab: Add /dev/{stdin,stdout,stderr}
  2494. symlinks, call swapon -a to activate any configured swap
  2495. devices.
  2496. Dependencies: Check that PATH does not contain current working
  2497. directory, which triggers a number of build failures.
  2498. Infrastructure: Error out for packages erroneously using the
  2499. 'local' site method but not defining a _SITE.
  2500. Linux: Fix cuImage.<dtb> / simpleImage.<dtb> handling. Ensure
  2501. kconfig uses ncurses from the host to fix a ncurses/ncursesw
  2502. mixup, causing menuconfig display corruption.
  2503. Toolchain: Workarounds for fix-rpath issues with binutils and
  2504. elf2flt.
  2505. Util-linux: Fix blocking on getrandom() issue with recent
  2506. kernels.
  2507. Remove broken freescale_imx31_3stack,
  2508. freescale_imx6sololiteevk and freescale_imx6ulevk defconfigs.
  2509. Updated/fixed packages: apr-util, asterisk, attr, audit,
  2510. autofs, binutils, busybox, cifs-utils, cups-filters, dash,
  2511. ebtables, exim, expect, f2fs-tools, faketime, file, gdb, git,
  2512. glibc, gnupg, gnupg2, gst1-plugins-bad, imagemagick, jamvm,
  2513. jpeg-turbo, libcap, libcoap, libcurl, libgcrypt, libjpeg,
  2514. libnss, libressl, libtirpc, libvncserver, libvorbis, libxslt,
  2515. log4cplus, lrzsz, ltrace, lynx, mariadb, mbedtls, mpg123,
  2516. nasm, netplug, network-manager, nfs-utils, nodejs,
  2517. openvmtools, patch, perl, php-amqp, poppler, procps-ng,
  2518. python, python-websockets, quota, redis, samba4, sysvinit,
  2519. transmission, triggerhappy, util-linux, wavpack, wget,
  2520. wireshark, xen, zmqpp
  2521. Issues resolved (http://bugs.uclibc.org):
  2522. #10986: Installing package attr when already supplied by busybox..
  2523. #11031: ld-elf2flt: host/bin/ld.real': execvp: No such file or..
  2524. 2018.02.2, Released May 4th, 2018
  2525. Important / security related fixes.
  2526. Tweak package size/file instrumentation to better handle
  2527. package rebuilds.
  2528. Revert /etc/shells creation when bash is enabled.
  2529. Exclude /lib/firmware from the rpath fixup logic, as it may
  2530. contain non-native ELF files.
  2531. Scanpypi: Support the new PyPi infrastructure.
  2532. Handle GCC 8.x on the host.
  2533. Ensure timestamp of /usr is updated to support the systemd
  2534. ConditionNeedsUpdate option.
  2535. Updated/fixed packages: bluez5_utils, flann, gdb, gnupg2,
  2536. grub2, libcec, libcgi, libglib2, libgpg-error, libgpgme,
  2537. libtomcrypt, mbedtls, mkpasswd, php, python, python-requests,
  2538. python-watchdog, qt53d, qt5websockets, sdl2, sdl2_image,
  2539. syslog-ng, systemd, tcl, tcllib, uclibc, usb_modeswitch,
  2540. wireguard, wmctrl
  2541. Issues resolved (http://bugs.uclibc.org):
  2542. #10896: /bin/sh not in /etc/shells
  2543. #10961: Grub2 fails to build for x86_64 when BR2_SSP_ALL is enabled
  2544. 2018.02.1, Released April 9th, 2018
  2545. Important / security related fixes.
  2546. Removed unmaintained defconfigs: Creator Ci40, Firefly rk3288,
  2547. Freescale mpc8315erdb / p1010rdb_pa, Riotboard, Teliv EVK
  2548. Pro3.
  2549. Infrastructure: Speed up instrumentation for package size by
  2550. comparing timestamps instead of md5 checksums, as doing
  2551. checksums could lead to up to 25% longer build time for big
  2552. configurations.
  2553. Rename the internal <pkg>_BASE_NAME variable to <pkg>_NASENAME
  2554. to avoid name clashes with packages ending on '-base'.
  2555. Add a better fix for build issues for autotools based packages
  2556. checking for C++ support on toolchains without C++ support.
  2557. Build host-tar if tar is older than 1.27 on the build machine
  2558. to work around reproducibility issues with git archives
  2559. containing long paths.
  2560. check-unique-files: Fix for filenames not representable in the
  2561. users' locale.
  2562. Check-bin-arch: Add support for per-package ignore paths
  2563. (<pkg>_BIN_ARCH_EXCLUDE).
  2564. Toolchain: Fix SSP support detection for external toolchains.
  2565. linux: Add _NEEDS_HOST_OPENSSL / LIBELF options to ensure
  2566. these dependencies are available for Linux configurations
  2567. needed these dependencies, similar to how it is done for
  2568. U-Boot.
  2569. Support custom (not in tree) device tree files in addition to
  2570. in-tree ones.
  2571. U-Boot / uboot-tools: Fix header conflict with libfdt-devel
  2572. installed on host.
  2573. Updated/fixed packages: apache, busybox, c-ares, cmake,
  2574. docker-engine, enlightenment, eudev, fbgrab, freescale-imx,
  2575. gtest, imagemagick, intel-microcode, irssi, jimtcl, kmod,
  2576. kodi, ktap, libcoap, libcurl, libfcgi, libhttpparser,
  2577. libminiupnpc, libopenssl, libpjsip, libss7, libssh2, libupnp
  2578. libupnpp, libuv, libvorbis, memcached, motion, musl, nodejs,
  2579. ntp, openblas, opencv3, openocd, opus-tools, patch, php,
  2580. pkgconf, postgresql, powerpc-utils, python-jsonschema,
  2581. python-webpy, qemu, qt5bsae, qt5script, qt5webkit, rapidjson,
  2582. rauc, sam-ba, samba4, sngrep, systemd, tremor, uboot-tools,
  2583. uclibc-ng-test, upmpdcli, wireshark, xerces, xterm, zstd
  2584. New packages: docker-proxy, python-functools32
  2585. Issues resolved (http://bugs.uclibc.org):
  2586. #10766: upmpdcli: Segmentation fault
  2587. #10776: ktap fails to build
  2588. #10846: error in compiling gnutls
  2589. #10856: openblas on qemu_x86_64_defconfig fails with "sgemm_..
  2590. 2018.02, Released March 4th, 2018
  2591. Fixes all over the tree.
  2592. Issues with systemd with a readonly rootfs and DBus fixed.
  2593. Instructure:
  2594. - check-uniq-files: fix Python 2.6 compatibility.
  2595. - dependencies.sh: check for external argparse module for
  2596. Python 2.6.
  2597. - Add infrastructure to detect and use a UTF-8 locale on the
  2598. host, needed by systemd.
  2599. Update/fixed packages: clamav, dash, dhcp, dovecot, efl,
  2600. ffmpeg, libv4l, mono, mosquitto, php, postgresql, qt,
  2601. scanpypi, sdl2, systemd, tor, tvheadend, uboot, wavpack
  2602. Issues resolved (http://bugs.uclibc.org):
  2603. #10831: qemu_x86_64_defconfig build fails on linux-headers..
  2604. 2018.02-rc3, Released February 27th, 2018
  2605. Fixes all over the tree.
  2606. check-bin-arch: skip /lib/modules to allow 32-bit userland
  2607. with 64bit kernel.
  2608. dependencies: Blacklist tar 1.30+ and build our own host-tar
  2609. if needed as tar 1.30+ changed the --numeric-owner output for
  2610. long path names. Build host-tar before other host-dependencies
  2611. as they need it to extract their source tarballs.
  2612. Update/fixed packages: asterisk, azmq, bluez5_utils, domoticz,
  2613. e2fsprogs, erlang, exim, glibc, gpsd, jq, libglib2, libvorbis,
  2614. mariadb, mbedtls, mesa3d, mesa3d-headers, mpv, patch, pcre2,
  2615. php, qt5, qt5multimedia, qt5wayland, qt5webengine, qt5webkit,
  2616. systemd, quagga, rustc, uboot, wireguard, zic, zlib-ng
  2617. Issues resolved (http://bugs.uclibc.org):
  2618. #10726: Current libglib2.mk creates broken libglib2 binary...
  2619. #10786: Linux fails to build unless make linux-menuconfig...
  2620. #10796: Cannot generate cpio image without selecting CON...
  2621. 2018.02-rc2, Released February 15th, 2018
  2622. Fixes all over the tree.
  2623. Dependencies: Ensure C++ support is available like for C
  2624. support for packages needing 32bit host support.
  2625. utils/genrandconfig: Check host dependencies for config.
  2626. Updated/fixed packages: busybox, dnsmasq, dropbear, ffmpeg,
  2627. glibc, keepalived, libcpprestsdk, libgpiod, libmaxminddb,
  2628. librsvg, libtasn1, libv4l, libxml2, lightning, ltp-testsuite,
  2629. mesa3d, mesa3d-demos, mesa3d-headers, nftables, open-lldp,
  2630. php, postgresql, python-crossbar, qt5, qt53d, qt5enginio,
  2631. qt5tools, qt5webengine, qt5webkit, rsync, rust-bin, rustc,
  2632. systemd
  2633. Issues resolved (http://bugs.uclibc.org):
  2634. #9781: ti-sgx-km build on kernel >4.1
  2635. #10141: Squashfs extended attribute failures
  2636. 2018.02-rc1, Released February 5th, 2018
  2637. The global source-check and per-package <pkg>-source-check
  2638. targets have been removed.
  2639. Architecture: Add x86 Silvermont variant. Add several new ARM
  2640. variants, rework MIPS NaN logic. Support mainline binutils/gcc
  2641. for ARC.
  2642. Toolchains: Linaro toolchains upgraded to 2017.11 release, ARC
  2643. external toolchains upgraded to arc-2017.09. Libatomic is now
  2644. also copied for external musl based toolchains.
  2645. Add binutils 2.30.x and switch to binutils 2.29.x by default.
  2646. Added hardening options to build with RELRO and FORTITY.
  2647. New defconfigs: Bananapi M64, FriendlyARM Nanopi A64 & NEO2,
  2648. imx6slevk, imx6sx-sdb, imx6ulevk, Olimex A64-OLinuXino,
  2649. Orangepi lite / pc plus / pc / prime / win / win plus / zero
  2650. plus2, Pine64, Solidrun MacchiatoBin. Sopine.
  2651. Add utils/diffconfig, a simple utility for comparing
  2652. configuration files - Adapted from the version in the
  2653. Linux kernel.
  2654. Infrastructure: Check that the same file is not touched by
  2655. multiple packages, as a preparation for toplevel parallel
  2656. builds.
  2657. Hashes for the license files for a large number of packages
  2658. have been added, ensuring that license changes will not be
  2659. missed when packages are bumped.
  2660. Fix build issue for autotools based packages checking for C++
  2661. support on toolchains without C++ support and on a distro
  2662. lacking /lib/cpp (E.G. Arch Linux).
  2663. Support for the meson build system.
  2664. Pie charts generated by 'graph-build' or 'graph-size' are now
  2665. sorted according to the size of each piece.
  2666. System: Only show getty options when busybox init or sysvinit
  2667. are used.
  2668. ARM-trusted-firmware: Support ATF bundled in U-Boot as
  2669. well as U-Boot bundled in ATF.
  2670. Zlib is now a virtual package, provided by either libzlib or
  2671. zlib-ng, similar to openssl.
  2672. Support for the Rust programming language.
  2673. New packages: aoetools, armbian-firmware, binaries-marvell,
  2674. brltty, cargo, cargo-bin, cups-filters, curlpp, daq,
  2675. flatbuffers, gconf, glorytun, gstreamer1-mm, imx-m4fwloader,
  2676. imx-gpu-g2d, json-for-modern-cpp, libcpprestsdk, libgta,
  2677. libostree, libupnp18, luadbi, luadbi-sqlite3, lua-utf8, lynx,
  2678. meson, mv-ddr-marvell, nilfs-utils, opentracing-cpp,
  2679. open-lldp, pimd, proj, python-flask-cors,
  2680. python-jaraco-classes, python-more-itertools, python-oauthlib,
  2681. python-raven, python-remi, python-requests-oauthlib,
  2682. python-schedule, python-secretstorage, python-see,
  2683. python-tabledata, python-txtorcon, python-xlib, qt5charts,
  2684. rtl8189fs, rtl8723bu, rust, rustc, rust-bin, rygel, safeclib,
  2685. solatus, tcf-agent, traceroute, waylandpp, wolfssl,
  2686. zisofs-tools, zlib-ng
  2687. Removed packages: eeprog
  2688. 2017.11.2, Released January 21st, 2018
  2689. Important / security related fixes.
  2690. External toolchain: libatomic is now also copied for musl
  2691. based toolchains.
  2692. nconfig: Fix for ncurses/ncursesw linking issue causing crashes.
  2693. System: Only show getty options when busybox init or sysvinit
  2694. are used.
  2695. Infrastructure: Fix build issue for autotools based packages
  2696. checking for C++ support on toolchains without C++ support and
  2697. on a distro lacking /lib/cpp (E.G. Arch Linux).
  2698. Pie charts generated by 'graph-build' or 'graph-size' are now
  2699. sorted according to the size of each piece.
  2700. Updated/fixed packages: asterisk, avahi, bind, busybox,
  2701. coreutils, eeprog, intel-microcode, iputils, irssi, kmsxx,
  2702. libiio, linux-firmware, lz4, mariadb, matchbox-lib, mcookie,
  2703. ntp, php, pound, rpcbind, tar, ti-cgt-pru, webkitgtk, xen,
  2704. xlib_libXpm
  2705. Issues resolved (http://bugs.buildroot.org):
  2706. #9996: lz4 package does not install lz4 binaries in target
  2707. #10176: Rsyslog's S01logging is deleted by Busybox.mk from...
  2708. #10216: package/x11r7/mcookie/mcookie.c:207: bad size ?
  2709. #10301: systemd/getty unused options
  2710. #10331: kmsxx, host installation fails with BR2_SHARED_...
  2711. #10556: Building ntp package with SSL library libressl...
  2712. #10641: avahi-autoipd not starting when using systemd-tmpfiles
  2713. 2017.11.1, Released December 31th, 2017
  2714. Important / security related fixes.
  2715. Updated/fixed packages: asterisk, checkpolicy, dhcp, flann,
  2716. gdb, glibc, heimdal, kodi-pvr-mediaportal-tvserver,
  2717. kodi-pvr-stalker, libcue, libopenssl, libpqxx, libsoxr,
  2718. linknx, linux-tools, lldpd, ltp-testsuite, mariadb, mfgtools,
  2719. nodejs, nut, pulseaudio, python-cffi, qemu, rsync, tor, uboot,
  2720. uboot-tools, vlc, webkitgtk, weston, wireguard, wireshark,
  2721. xenomai, xfsprogs
  2722. 2017.11, Released November 30, 2017
  2723. Fixes all over the tree.
  2724. Toolchain: Use github mirror for Glibc.
  2725. Defconfigs: Correct boot.cmd for bananapi-m1.
  2726. Makefiles: Workaround include order issues for certain make
  2727. versions by explicitly sorting the result of wildcard where it
  2728. matters.
  2729. Download: Ensure subversion runs in non-interactive mode.
  2730. Updated/fixed packages: asterisk, boost, chrony, dovecot,
  2731. dvb-apps, exim, feh, freerdp, fwup, google-breakpad, jose,
  2732. kvm-unit-test, lftp, libcurl, libevent, libfastjson, libpjsip,
  2733. libupnp, linphone, localedef, lttng-tools, mp4v2, mtools,
  2734. ndisc6, oracle-mysql, parted, pdbg, qt, qt5connectivity,
  2735. qt5declarative, qt5webkit, rauc, runc, samba4, shairport-sync,
  2736. systemd-bootchart, webkitgtk, wireguard, xlib_libXcursor,
  2737. xlib_libXfont, xlib_libXfont2,
  2738. Issues resolved (http://bugs.buildroot.org):
  2739. 10501: host-localedef fails to compile on Ubuntu 17.10
  2740. 10506: Changed kernel image type (e.g. zImage to uImage)...
  2741. 2017.11-rc2, Released November 13th, 2017
  2742. Fixes all over the tree.
  2743. Updated/fixed packages: collectd, ffmpeg, freerdp,
  2744. go-bootstrap, imagemagick, jimtcl, libpjsip, libplist, libuv,
  2745. mesa3d, nodejs, ntp, openjpeg, postgresql, python-numpy, ruby,
  2746. snmp++, usb_modeswitch, util-linux, vboot-utils, webkitgtk,
  2747. wireshark, wpa_supplicant, xapp_xdriinfo
  2748. Issues resolved (http://bugs.buildroot.org):
  2749. #10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  2750. #10491: Cannot output security warning when compiled with buildroot..
  2751. 2017.11-rc1, Released November 6th, 2017
  2752. Fixes all over the tree and new features.
  2753. Openssl is now a virtual package, which may be provided by
  2754. OpenSSL (now renamed to libopenssl) or LibreSSL.
  2755. libssh2: there is now an explicit choice of the backend to use
  2756. (mbedtls, gnutls or openssl). Previously, the choice was implicit
  2757. based on the TLS library that was selected. Now, it is possible to
  2758. choose the backend, which is important if several TLS libraries are
  2759. selected.
  2760. netsnmp: all MIB files are now installed, making the target filesystem a
  2761. bit bigger than before. To remove unneeded MIBS, you should use a
  2762. post-build script.
  2763. Toolchain: Linaro toolchains updated to 2017.08, ARC toolchain
  2764. updated to 2017.09, Glibc updated to 2.26, Glibc support for
  2765. ARCv2. The toolchain wrapper now handles SOURCE_DATE_EPOCH for
  2766. older (pre-gcc7.x) toolchains for BR2_REPRODUCIBLE.
  2767. New defconfigs: Atmel SAM45D27, Bananapi M1 and M2 Plus,
  2768. Engicam i.CoreM6 Qt5 configuration, i.MX6 sabreauto (mainline
  2769. kernel/u-boot), i.MX6Q sabresd Qt5 configuration, i.MX7d-pico,
  2770. QEMU ppc64le, Raspberry pi3 Qt5 webengine configuration,
  2771. Technologic TS-7680.
  2772. New packages: asterisk, azmq, bcg729, boinc, dahdi-linux,
  2773. dahdi-tools, freeswitch-mod-bcg729, fscryptctl, libb64,
  2774. libpri, libss7, lua-basexx, lua-compat53, lua-cqueues,
  2775. lua-curl, lua-datafile, lua-fifo, lua-httpd,
  2776. lua-lpeg-patterns, lua-markdown, lua-sailor, lua-value,
  2777. luksmeta, minetest, minetest-game, pdmenu, prosody,
  2778. python-aiocoap, python-automat, python-ibmiotf,
  2779. python-iso8601, python-m2r, python-simplesqlite,
  2780. python-websockets, python-xmltodict, qt5wayland, qt5webengine,
  2781. restorecond, selinux-python, semodule-utils, uhubctl,
  2782. wireguard, wsapi-fcgi, wsapi-xavante
  2783. Removed packages: aiccu, rfkill, sepolgen
  2784. Issues resolved (http://bugs.buildroot.org):
  2785. #10281: lsblk does not compile for util-linux
  2786. #10336: lttng compilation fails : linking error
  2787. #10351: glibc missing in rootfs
  2788. #10356: nfs-utils missing header
  2789. #10361: python3 python-config script generates invalid includes
  2790. #10366: dropbear download url has changed
  2791. #10391: WiringPi retrieves wrong (old) version
  2792. #10406: Beaglebone black: Buggy SGX driver version, swapped...
  2793. #10426: uboot-tools' fw_setenv does not update the redundant...
  2794. #10451: libpcap 1.8.x and 1.7x does not compile on PPC
  2795. 2017.08.2, Released November 28th, 2017
  2796. Important / security related fixes.
  2797. Qt: 5.6 version updated to 5.6.3.
  2798. Reproducible: Do not override SOURCE_DATE_EPOCH if already set
  2799. in the environment.
  2800. Makefiles: Workaround include order issues for certain make
  2801. versions by explicitly sorting the result of wildcard where it
  2802. matters.
  2803. Updated/fixed packages: apr, apr-util, arqp-standalone,
  2804. azure-iot-sdk-c, collectd, dvb-apps, ffmpeg, go-bootstrap,
  2805. google-breakpad, gstreamer, imagemagick, irssi, jimtcl,
  2806. kvm-unit-test, libcurl, libfastjson, libglib2, libidn,
  2807. libpjsip, libplist, localedef, lttng-tools, luajit, mesa3d,
  2808. moarvm, mp4v2, openssh, openssl, oracle-mysql, postgresql,
  2809. python3, python-pyqt5, qt, qt5base, qt5canvas3d,
  2810. qt5connectivity, qt5declarative, qt5engineio,
  2811. qt5graphicaleffects, qt5imageformats, qt5location,
  2812. qt5multimedia, qt5quickcontrols, qt5quickcontrols2, qt5script,
  2813. qt5sensors, qt5serialbus, qt5serialport, qt5svg, qt5tools,
  2814. qt5webchannel, qt5webkit, qt5websockets, qt5x11extras,
  2815. qt5xmlpatterns, quagga, redis, ruby, samba4, sdl2, snmppp,
  2816. swupdate, ti-gfx, uboot-tools, usb_modeswitch, vboot-utils,
  2817. webkitgtk, wget, wireshark, xapp_xdriinfo.
  2818. Issues resolved (http://bugs.buildroot.org):
  2819. 10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  2820. 10361: python3 python-config script generates invalid includes
  2821. 10501: host-localedef fails to compile on Ubuntu 17.10
  2822. 2017.08.1, Released October 23rd, 2017
  2823. Important / security related fixes.
  2824. Webkitgtk bumped to the 2.18.x series, fixing a large number
  2825. of security issues.
  2826. Defconfigs: galileo: fix ext4 related kernel config, bump
  2827. kernel for gcc 6.x compatibility, enable wchar support for
  2828. grub2. wandboard: correct rootfs offset
  2829. support: Ensure gzip compression level 6 is used for git
  2830. tarballs. check-bin-arch: Correctly handle (ignore) symbolic
  2831. links. check-rpath: Also handle PIE binaries
  2832. External toolchain: Correctly handle glibc Buildroot
  2833. toolchains built with merged /usr
  2834. musl: fix ARMv4 build with binutils 2.27.51+, fix for
  2835. CVE-2017-15650
  2836. Updated/fixed packages: apache, augeas, bind, bluez5_utils,
  2837. busybox, bzip2, cmake, dnsmasq, ejabberd, gcc, git, go, ffmpeg, file,
  2838. flashrom, gd, gdk-pixbug, gnupg2, hostapd, ifupdown-scripts,
  2839. imagemagick, iucode-tool, kernel-module-imx-gpu-viv, lame,
  2840. libarchive, libcurl, libffi, libidn, libmbim, libnspr, libnss,
  2841. libressl, librsync, libsoup, libxml2, libzip, mbedtls, musl,
  2842. netplug, nginx, openvpn, pkgconf, poppler, proxychains-ng,
  2843. qemu, qt, rpi-userland, syslog, ruby, samba4, softether,
  2844. sqlite, strongswan, subversion, supertuxkart, supervisor, tcpdump,
  2845. tor, unrar, urq, vboot-utils, webkitgtk, wpa_supplicant, xen,
  2846. xmlstarlet, xlib_libXfont, xlib_libXfont2,
  2847. xserver_xorg-server, zsh
  2848. 2017.08, Released September 1st, 2017
  2849. Minor fixes.
  2850. Toolchain: Don't allow internal toolchain builds for MIPS
  2851. M6201/P6600, as support for these are not yet in mainline GCC.
  2852. Updated/fixed packages: bcusdk, connman, dialog, dnsmasq,
  2853. gnupg, grub2, iostat, iucode-tool, libgcrypt, libkcapi,
  2854. libphidget, libv4l, linux-tools, mediastreamer, minidlna,
  2855. nss-pam-ldapd, nvidia-driver, qt-webkit-kiosk, rpcbind, squid,
  2856. transmission, vde2, vim
  2857. Updated/fixed defconfigs:
  2858. Removed packages: simicfs.
  2859. Issues resolved (http://bugs.buildroot.org):
  2860. #10261: Grub2 fails to build for x86_64
  2861. 2017.08-rc3, Released August 23rd, 2017
  2862. Fixes all over the tree.
  2863. Updated/fixed packages: alsa-lib, alsa-utils, cc-tool,
  2864. dbus-cpp, e2fsprogs, elf2flt, faad2, fakeroot, gcc, git, gpsd,
  2865. gst1-validate, kvmtool, libconfuse, libepoxy, librsync,
  2866. libspatialindex, libunwind, linux, linux-headers, lua,
  2867. mariadb, mesa3d, mtd, openocd, python3, syslinux, sysvinit,
  2868. whois, xen, zmqpp.
  2869. Updated/fixed defconfigs: ci20, socrates_cyclone5,
  2870. toradex_apalis_imx6.
  2871. Removed defconfig: Armadeus APF9328.
  2872. skeleton-* packages introduced in -rc1 have been renamed to
  2873. skeleton-init-* instead.
  2874. Issues resolved (http://bugs.buildroot.org):
  2875. #10141: Squashfs extended attribute failures
  2876. 2017.08-rc2, Released August 11th, 2017
  2877. Fixes all over the tree.
  2878. Updated/fixed packages: bind, dbus, erlang-p1-xml, faad2,
  2879. ficl, gcc, gdb, glibc, jack2, libcurl, linux, linux-headers,
  2880. lua, mutt, nvme, qt5base, skeleton-common, snappy, stella,
  2881. swupdate, uclibc, valgrind, webkitgtk.
  2882. Updated/fixed defconfigs: beaglebone_qt5, minnowboard_max,
  2883. nanopi_m1{, _plus}, olimex_a20_olinuxino_lime, qemu_sparc,
  2884. qemu_sparc64.
  2885. The cmake-package infrastructure for host packages has been
  2886. fixed to not incorrectly detect target packages through
  2887. pkg-config.
  2888. Issues resolved (http://bugs.buildroot.org):
  2889. #9926: systemd-resolved.service: Failed at step NAMESPACE (systemd 233)
  2890. #10021: libqeglfs-viv-integration.so file is missing for qt5 on armv7
  2891. #10026: lua-5.3.4: fix lua linker error in swupdate
  2892. #10146: package/skeleton-common fix recursive variable
  2893. #10156: glibc compilation fails for X86 32bits (i386)
  2894. #10201: toolchain-wrapper.c:192: (error) Memory leak:
  2895. #10221: Buildroot Support
  2896. 2017.08-rc1, Released August 2nd, 2017
  2897. Infrastructure:
  2898. - The skeleton package has been split into multiple packages:
  2899. skeleton-sysv (when Busybox or SysV init are used),
  2900. skeleton-systemd (when systemd is used), skeleton-none (when
  2901. no init system is used) and skeleton-custom (when a custom
  2902. skeleton is used). Those packages, except skeleton-custom,
  2903. share common logic and data in a new package called
  2904. skeleton-common. The skeleton package becomes a virtual
  2905. package. This change allows to generate a filesystem that is
  2906. compliant with systemd expectations.
  2907. - Support for using a read-only filesystem with systemd has
  2908. been fixed.
  2909. - Major revamp of the gettext handling, with user-visible
  2910. effect:
  2911. - prior to this revamp, when BR2_ENABLE_LOCALE=y, each
  2912. package could decide to enable or not NLS support. When
  2913. BR2_ENABLE_LOCALE was disabled, NLS support was forced off
  2914. by passing --disable-nls to packages.
  2915. - after this revamp, a new BR2_SYSTEM_ENABLE_NLS option
  2916. controls whether NLS support should be enabled or not in
  2917. packages. This option defaults to disabled, which means
  2918. that now, NLS support is by default disabled in all
  2919. packages.
  2920. Therefore, if you need NLS support in packages, you must now
  2921. explicitly enable the BR2_SYSTEM_ENABLE_NLS option.
  2922. - The host directory no longer has a usr/ component. This
  2923. makes it much more natural to use that directory as an
  2924. externally used toolchain. For compatibility with existing
  2925. scripts, a usr -> . link is still added.
  2926. - Hashes are now checked on tarballs by Buildroot when a
  2927. package is sourced from a Git repository.
  2928. - Patches are no longer being downloaded from Github, since
  2929. auto-generated patches could change over time, and break
  2930. hashes. All patches that were downloaded from Github are now
  2931. stored in their respective package directories.
  2932. - Hash files in packages can now contain hashes for the
  2933. license files contained in the package source code. This
  2934. allows to detect changes in such license files.
  2935. - Binaries in $(TARGET_DIR) are now cleaned up from invalid
  2936. RPATHs at the end of the build.
  2937. - A new "make sdk" target prepares $(HOST_DIR) to be
  2938. relocatable: turns RPATHs in host binaries into relocatable
  2939. ones, removes bogus RPATHs from staging binaries/libraries,
  2940. and provides a relocate-sdk script that can be executed to
  2941. relocate the SDK after installation.
  2942. - Addition of utils/genrandconfig which generates a random
  2943. configuration based on a set of pre-defined toolchain
  2944. configurations (support/config-fragments/autobuild/) and a
  2945. random selection of packages. It is now used by the
  2946. autobuilders to generate the random configurations.
  2947. Filesystems:
  2948. - ext2/3/4 filesystems are now generated using mkfs.ext from
  2949. e2fsprogs instead of using genext2fs.
  2950. Architecture:
  2951. - Addition of support for ARM big.LITTLE variants
  2952. - Improved MIPS support, with options to select NaN encoding
  2953. and FP32 mode.
  2954. Toolchain:
  2955. - Switch to gcc 6.x as the default gcc version, add support
  2956. for gcc 7.x, remove support for gcc 4.8
  2957. - Switch to binutils 2.28 as the default binutils version, add
  2958. support for binutils 2.29, remove support for binutils 2.26
  2959. - Support added for gdb 8.0
  2960. - uClibc-ng bumped to 1.0.26
  2961. - CodeSourcery toolchains for x86 and SuperH have been
  2962. removed, they were using a too old glibc version
  2963. (2.17). External toolchains with glibc 2.17 or earlier are
  2964. no longer supported.
  2965. - The version selection in the glibc package has been
  2966. removed. Like musl and uClibc-ng, we now use the latest
  2967. glibc version.
  2968. - Improved support for Xtensa toolchain overlays, which can
  2969. now be downloaded.
  2970. Tools:
  2971. - Numerous improvements to the runtime test infrastructure
  2972. - Tests are now executed by Gitlab CI on a regular basis
  2973. - Tools that are directly useful to the user have been moved
  2974. from support/scripts/ to utils/: brmake, check-package,
  2975. get-developers, scancpan, scanpipy, size-stats-compare,
  2976. test-pkg.
  2977. New defconfigs: A13 Olinuxino, Engicam platforms (i.CoreM6
  2978. Solo/Dual/DualLite/Quad, RQS SOM, GEAM6UL SOM, Is.IoT MX6UL
  2979. SOM), Nano Pi M1 (Plus), OrangePi Zero and Plus.
  2980. New packages: azure-iot-sdk-c, cracklib, dt-utils, easy-rsa,
  2981. erlang-jiffy, erlang-p1-oauth2, erlang-p1-xmpp,
  2982. ifupdown-scripts, irrlicht, kodi-inputstream-adaptive,
  2983. kodi-inputstream-rtmp, kvazaar, let-me-create, libloki,
  2984. libpwquality, libressl, libspatialindex, libva-utils,
  2985. linuxconsoletools, linuxptp, luaossl, lua-sdl2, lua-stdlib,
  2986. lsscsi, paxtest, pcre2, pixz, python-asn1crypto,
  2987. python-backports-shutil-get-terminal-size, python-bcrypt,
  2988. python-cheroot, python-h2, python-hpack, python-hyperframe,
  2989. python-hyperlink, python-ipython-genutils, python-pathlib2,
  2990. python-pickleshare, python-priority, python-portend,
  2991. python-scandir, python-systemd, python-tempora,
  2992. python-traitlets, python-typepy, qt5virtualkeyboard,
  2993. ratpoison, rauc, refpolicy, rhash, sdl2_mixer, sdl2_net,
  2994. xr819-xradio, zstd
  2995. Removed packages: cloog, input-tools, mke2img
  2996. Issues resolved (http://bugs.buildroot.org):
  2997. #7892: systemd-journald is broken
  2998. #9341: avahi-utils does not compile with uClibc + libglib2
  2999. #9441: Link BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY to
  3000. BR2_ENABLE_DEBUG
  3001. #9746: ext4 image generated by Buildroot is not working
  3002. properly with U-Boot
  3003. #9886: Build fails with "unexpected EOF while looking for
  3004. matching `"'" if PATH contains a newline
  3005. #9891: parted 3.1 => 3.2?
  3006. #9911: qt5 does not build on sparc
  3007. #9916: qt5 does not build on
  3008. arm-buildroot-linux-uclibcgnueabihf for ARMv8 cores
  3009. #9936: Host QEMU does not build with SDL support because of
  3010. pkg-config
  3011. #9941: nodejs option disappears for arm
  3012. #9951: SCANCPAN failure
  3013. #9966: util-linux-2.30/.stamp_built' failed
  3014. #9976: License file for package 'rtl8821au' incorrect
  3015. #9991: SGX Error implicit declaration of function
  3016. ‘dmac_map_area’
  3017. #10011: wget does not work from Buildroot
  3018. #10036: Buildroot builds Raspbian Jessie headless image
  3019. presenting incorrect prompt
  3020. #10051: make: *** No rule to make target
  3021. 'raspberrpi3_defconfig'. Stop reported with Buildroot
  3022. v2017.05.1
  3023. #10056: No .config file was produced in /buildroot folder
  3024. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer
  3025. failure
  3026. #10071: fakeroot: replace hard-coded paths in post install
  3027. #10076: Makefile:4113: recipe for target 'all-gcc' failed
  3028. #10091: gcc7.1 does not build with graphite support due to old
  3029. isl
  3030. #10121: webkit without the multimedia option causes build
  3031. error
  3032. 2017.05.2, Released July 27th, 2017
  3033. Important / security related fixes.
  3034. Webkitgtk bumped to the 2.16.x series, fixing a large number
  3035. of security issues.
  3036. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  3037. which default to PIE mode.
  3038. Updated/fixed packages: aespipe, apache, bind, binutils,
  3039. busybox, ccache, collectd, dieharder, efibootmgr, efivar,
  3040. expat, ffmpeg, gcc, heimdal, iproute2, irssi, libglib2,
  3041. libmemcached, libosip2, libtirpc, libxml-parser-perl,
  3042. linux-fusion, linux-zigbee, mpg123, orc, pcre, php, protobuf,
  3043. pulseaudio, python-setproctitle, qt5base, rpi-firmware,
  3044. samba4, syslinux, systemd, spice, tcpdump, tiff, uboot-tools,
  3045. webkitgtk, x265, xserver_xorg-server, xvisor
  3046. Issues resolved (http://bugs.buildroot.org):
  3047. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  3048. 2017.05.1, Released July 4th, 2017
  3049. Important / security related fixes.
  3050. Update support/scripts/scancpan to use METACPAN v1 API as v0
  3051. has been shutdown.
  3052. Update support/scripts/mkusers to handle setups where
  3053. /etc/shadow is a symlink.
  3054. External toolchain: Don't create musl dynamic loader symlink
  3055. for static builds.
  3056. Setlocalversion: Correct detection of mercurial revisions for
  3057. non-tagged versions.
  3058. Defconfigs: at91sam9x5ek_mmc: workaround boot rom issue.
  3059. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  3060. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, glmark2,
  3061. gnutls, gst1-plugins-bad, imagemagick, imx-uuc, intltool,
  3062. iperf, ipsec-tools, irssi, kmod, libcurl, libgcrypt, libmad,
  3063. libnl, lugaro, mosquitto, mpg123, ncurses, nodejs, ntp,
  3064. openssh, openvpn, pngquant, python-simplegeneric, qt5base,
  3065. qt5multimedia, rtl8821au, socat, spice, systemd, tor, trinity,
  3066. tslib, vlc, x264, xen, xlib_libxshmfenc, xserver_xorg-server
  3067. Issues resolved (http://bugs.buildroot.org):
  3068. #9976: License file for package 'rtl8821au' incorrect
  3069. 2017.05, Released May 31st, 2017
  3070. Minor fixes.
  3071. External toolchain: musl dynamic linker symlink for mips-sf
  3072. corrected.
  3073. Updated/fixed packages: agentpp, bash, exim, hans, madplay,
  3074. qpid-proton, rtl8188eu, snmppp, stm32flash, strongswan, sudo,
  3075. xen
  3076. Issues resolved (http://bugs.buildroot.org):
  3077. #9906: genimage: Disk full
  3078. 2017.05-rc3, Released May 30th, 2017
  3079. Fixes all over the tree.
  3080. ARC toolchain bumped to 2017.03
  3081. Runtime testing improvements and cleanups.
  3082. Updated/fixed packages: acpica, armadillo, audiofile, c-icap,
  3083. cppcms, dhcp, docker-engine, dropbear, elfutils, erlang,
  3084. fbgrab, ffmpeg, flashrom, ftop, gnutls, google-breakpad,
  3085. keepalived, kodi, libcdio, libepoxy, libev, libminiupnpc,
  3086. libqmi, libtasn1, libv4l, mariadb, mono, mosh, mosquitto,
  3087. mxml, ntp, opencv, openpowerlink, oracle-mysql, popt,
  3088. pulseview, python-enum34, rabbitmq-c, redis, samba4, stella,
  3089. xen
  3090. Removed packages: firejail, ola
  3091. Issues resolved (http://bugs.buildroot.org):
  3092. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  3093. #9876: aarch64 support with gcc 4.8 toolchain
  3094. #9896: host-gcc-initial error downloading because incorrect URL
  3095. 2017.05-rc2, Released May 17th, 2017
  3096. Fixes all over the tree.
  3097. ARC toolchain bumped to 2017.03-rc2
  3098. Updated/fixed packages: bluez_utils, boost, clamav, daemon,
  3099. efibootmgr, efl, espeak, expedite, faketime, ffmpeg, fxload,
  3100. git, gpsd, kvm-unit-tests, libcdio, libv4l, lua, mke2img,
  3101. mpir, mpv, odroid-scripts, openblas, opencv3, openvpn, php,
  3102. postgresql, protobuf, qt5declarative, qwt, radvd, rpcbind,
  3103. rtmpdump, strongswan, sudo, ltp-testsuite, uclibc-ng-test,
  3104. vlc, x11vnc, xfsprogs
  3105. Issues resolved (http://bugs.buildroot.org):
  3106. #9796: source-check broken for Git downloads
  3107. #9866: BASE_DIR usage
  3108. 2017.05-rc1, Released May 8th, 2017
  3109. Fixes all over the tree and new features.
  3110. Infrastructure:
  3111. - Installed binaries are now checked for correct architecture
  3112. to catch natively built binaries or binaries built for other
  3113. architecture variants.
  3114. - Luarocks infrastructure improvements to extraction handling,
  3115. support for upstream name != Buildroot package name.
  3116. - 'make printvars' output format has changed to make it easier
  3117. to use in scripts. It now has options to quote the variables
  3118. and to show the expanded/unexpanded values.
  3119. - Automatic ext2 rootfs size calculation has been removed. The
  3120. logic was not working working reliable in all setups as it
  3121. depends on the host filesystem behaviour, so instead now the
  3122. size has to be specified explicitly (defaults to 60MB).
  3123. - The git download infrastructure now ensures that GNU format
  3124. tar files are created.
  3125. - Fixed a variable clashing issue in the mkusers script with
  3126. internal bash variables.
  3127. - Fakeroot now links against libacl to fix issues on
  3128. distributions using acls.
  3129. - Correct permissions for /dev/pts/ptmx when systemd is used
  3130. with recent glibc versions.
  3131. - br2-external: Improve error reporting.
  3132. - A wrapper script for genimage has been added in
  3133. support/scripts/genimage.sh for easy use of genimage from
  3134. post-image scripts.
  3135. - A script to check for common style issues in new packages
  3136. before submitting has been added in support/scripts/check-package
  3137. - Defconfigs are now tested by gitlab-CI instead of Travis:
  3138. https://gitlab.com/buildroot.org/buildroot
  3139. - Infrastructure for runtime testing has been added to
  3140. support/testing
  3141. Toolchain:
  3142. - External linaro toolchains updated to 2017.02, ARC toolchain
  3143. updated to 2017.03-rc1, NIOSII CodeSourcery to 2017.05
  3144. - A number of fixes and improvements to the external toolchain
  3145. handling, including C library detection, multilib and ld.so
  3146. handling
  3147. - Glibc 2.25 and uClibc-ng 1.0.24 added, wordexp support enabled
  3148. for uClibc-ng
  3149. - Binutils 2.28 added and default changed to 2.27
  3150. Architectures:
  3151. - Support for the C-SKY architecture has been added.
  3152. License handling:
  3153. - The package license markings for legal info now uses the
  3154. SPDX short identifiers for the license string where possible.
  3155. - License info has been improved / added for a number of packages.
  3156. Misc:
  3157. - Cmake 3.7.x installed on the host is no longer ignored as a
  3158. workaround for the RPATH issues has been implemented.
  3159. - Docker-engine can now be built statically on an otherwise
  3160. dynamic linked build for docker-in-docker setups.
  3161. - U-Boot now supports out-of-tree device trees, similar to
  3162. Linux
  3163. - Nodejs 0.10.x support (and with it, support for <ARMv6) has
  3164. been removed as this is now EOL upstream.
  3165. New defconfigs: AT91sam9x5ek dev/mmc/mmc-dev, banana pro,
  3166. Nationalchip gx6605s, MIPS creator ci40, nexbox a95x, 64bit
  3167. defconfig for raspberry pi 3, stm32f429-disc1.
  3168. The raspberry pi zero-w and rpi3 compute module are now also
  3169. supported by the rpi0 / rpi3 defconfigs, beaglebone green is
  3170. supported by the beaglebone defconfig.
  3171. Removed defconfig: minnowboard, via imx6 vab820, altera
  3172. socdk/sockit
  3173. New packages: arp-scan, atest, augeas, bluez-tools, daemon,
  3174. dc3dd, dieharder, execline, fmt, ghostscript, gqrx,
  3175. gst1-vaapi, jo, keepalived, kmscube, kodi-jsonschemabuilder,
  3176. kodi-skin-confluence, kodi-texturepacker, lensfun, leptonica,
  3177. libbson, libcsv, libgphoto2, libkcapi, libmaxminddb,
  3178. libmediaart, libnpth, libscrypt, lua-bit32, lua-resty-http,
  3179. lugaru, memtool, mpir, nanomsg, physfs, phytool, pngquant,
  3180. python-decorator, python-simplegeneric,
  3181. python-sortedcontainers, rpi-bt-firmware, rpi-wifi-firmware,
  3182. s6, s6-dns, s6-linux-init, s6-linux-utils, s6-networking,
  3183. s6-portable-utils, s6-rc, supertux, tesseract-ocr,
  3184. uccp420wlan, wilink-bt-firmware
  3185. Broken packages: ola
  3186. Removed packages: cosmo, kodi-visualisation-fountain,
  3187. polarssl, portmap, xdriver_xf86-video-glide,
  3188. xdriver_xf86-video-v4l, xdriver_xf86-video-wsfb
  3189. Issues resolved (http://bugs.buildroot.org):
  3190. #8831: image generation fails on host ZFS due to "no free space"
  3191. #9436: e2fsprogs remove busybox applets even of unselected e2fs..
  3192. #9456: mkusers script bash errors
  3193. #9496: mke2img fails during build on ntfs-3g host partition
  3194. #9531: NPM fails to build embedded modules
  3195. #9596: KODI: --enable-lirc needs "HAVE_LIRC" compiler definition..
  3196. #9691: Wrong cryptsetup package include files location
  3197. #9696: Wrong cryptsetup package include files location
  3198. #9706: Can't download newer revisions of package from PyPI
  3199. #9711: Recent libCEC version bump seems to break kodi package
  3200. #9716: exit, shutdown, reboot from kodi
  3201. #9721: version 2017.02: no acceptable m4 could be found in $PATH
  3202. #9726: Raspberry Pi version B - Problems with UART speed in..
  3203. #9751: expat legal info - manifest.csv: GPLv2 Source site: MIT..
  3204. #9756: glibc fails to build on buildroot-sh4*-buildroot-linux-gnu
  3205. #9766: support/scripts/pkgutil.py conflicts with the pkgutil.py..
  3206. #9776: libubox build failed
  3207. #9791: Python searches for packages in the user site directory
  3208. #9806: libseccomp is not available when BR2_arm=y
  3209. #9826: post-build scritp - symlinks created in post-build script..
  3210. #9836: triggerhappy: systemd unit broken
  3211. #9846: musl libc not installed correctly in target folder
  3212. #9856: build libubox failed on ubuntu 17.04 64bit
  3213. 2017.02.11, Released April 11th, 2018
  3214. Important / security related fixes.
  3215. dependencies: Blacklist tar 1.30+ and build our own host-tar
  3216. if needed as tar 1.30+ changed the --numeric-owner output for
  3217. long path names. Build host-tar before other host-dependencies
  3218. as they need it to extract their source tarballs.
  3219. Updated/fixed packages: apache, busybox, clamav, dhcp,
  3220. dnsmasq, dovecot, exim, imagemagick, irssi, jq, libcurl,
  3221. libpjsip, librsvg, libtasn1, libvorbis, libxml2, lz4, mariadb,
  3222. mbedtls, mosquitto, ntp, openblas, opencv3, openssl, patch,
  3223. postgresql, python-webpy, qt53d, qt5tools, quagga, rsync,
  3224. samba4, sngrep, tremor, wavpack, wireshark, xerces, xterm
  3225. Issues resolved (http://bugs.uclibc.org):
  3226. #10856: openblas on qemu_x86_64_defconfig fails with "sgemm_..
  3227. 2017.02.10, Released January 31st, 2018
  3228. Important / security related fixes.
  3229. nconfig: Fix for ncurses/ncursesw linking issue causing crashes.
  3230. System: Only show getty options when busybox init or sysvinit
  3231. are used.
  3232. Infrastructure: Fix build issue for autotools based packages
  3233. checking for C++ support on toolchains without C++ support and
  3234. on a distro lacking /lib/cpp (E.G. Arch Linux).
  3235. Updated/fixed packages: avahi, berkeleydb, bind, busybox,
  3236. ccache, clamav, coreutils, dovecot, eeprog, eudev, fis,
  3237. intel-microcode, iputils, irssi, kmsxx, libcurl, liberation,
  3238. libiio, lz4, mariadb, matchbox-lib, mcookie, openocd, php,
  3239. pound, rpcbind, squid, tar, ti-cgt-pru, transmission,
  3240. util-linux, webkitgtk, wireshark, xen
  3241. Issues resolved (http://bugs.buildroot.org):
  3242. #9996: lz4 package does not install lz4 binaries in target
  3243. #10176: Rsyslog's S01logging is deleted by Busybox.mk from...
  3244. #10216: package/x11r7/mcookie/mcookie.c:207: bad size ?
  3245. #10301: systemd/getty unused options
  3246. #10331: kmsxx, host installation fails with BR2_SHARED_...
  3247. #10536: Finding non-relative paths in the ccache
  3248. #10641: avahi-autoipd not starting when using systemd-tmpfiles
  3249. 2017.02.9, Released January 1st, 2018
  3250. Important / security related fixes.
  3251. Fix divide by zero issue in size-stats script.
  3252. Fix makefile include ordering issue with certain make versions
  3253. in the external toolchain handling.
  3254. Updated/fixed packages: dhcp, exim, flann, gdb, heimdal,
  3255. libcue, libcurl, libevent, libpqxx, libsoxr, linphone, lldpd,
  3256. mariadb, mfgtools, mtools, nodejs, nut, openssl, rsync,
  3257. samba4, tor, vlc, webkitgtk, wireshark, xfsprogs,
  3258. xlib_libXcursor, xlib_libXfont, xlib_libXfont2
  3259. 2017.02.8, Released November 27th, 2017
  3260. Important / security related fixes.
  3261. Qt: 5.6 version updated to 5.6.3.
  3262. Reproducible: Do not override SOURCE_DATE_EPOCH if already set
  3263. in the environment.
  3264. Updated/fixed packages: apr, apr-util, arqp-standalone,
  3265. collectd, dvb-apps, ffmpeg, google-breakpad, gstreamer,
  3266. imagemagick, libfastjson, libglib2, libpjsip, libplist,
  3267. localedef, luajit, mesa3d, openssh, openssl, postgresql,
  3268. python3, python-pyqt5, qt5base, qt5canvas3d, qt5connectivity,
  3269. qt5declarative, qt5engineio, qt5graphicaleffects,
  3270. qt5imageformats, qt5location, qt5multimedia, qt5quickcontrols,
  3271. qt5quickcontrols2, qt5script, qt5sensors, qt5serialbus,
  3272. qt5serialport, qt5svg, qt5tools, qt5webchannel, qt5webkit,
  3273. qt5websockets, qt5x11extras, qt5xmlpatterns, quagga, ruby,
  3274. samba4, snmppp, ti-gfx, vboot-utils, webkitgtk, wireshark,
  3275. xapp_xdriinfo.
  3276. Issues resolved (http://bugs.buildroot.org):
  3277. 10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  3278. 10361: python3 python-config script generates invalid includes
  3279. 10501: host-localedef fails to compile on Ubuntu 17.10
  3280. 2017.02.7, Released October 28th, 2017
  3281. Important / security related fixes.
  3282. Webkitgtk bumped to the 2.18.x series, fixing a large number
  3283. of security issues.
  3284. Defconfigs: wandboard: Correct rootfs offset
  3285. Toolchain: Linaro toolchains updated to 2017.08 release,
  3286. fixing a number of issues. Musl: fix for CVE-2017-15650.
  3287. Updated/fixed packages: busybox, bzip2, dnsmasq, git, go,
  3288. hostapd, irssi, iucode-tool, lame, libcurl, libffi, libnspr,
  3289. libnss, nodejs, openssh, openvpn, qemu, qt, redis, sdl2,
  3290. webkitgtk, wget, wpa_supplicant, xen, xlib_libXfont,
  3291. xlib_libXfont2, xserver_xorg-server
  3292. 2017.02.6, Released September 24th, 2017
  3293. Important / security related fixes.
  3294. Cmake: Ensure correct pkg-config is used when building host
  3295. packages
  3296. fs/iso9660: Ensure files from earlier builds are not included.
  3297. Updated/fixed packages: apache, bcusdk, bind, binutils,
  3298. bluez5_utils, botan, cmake, connman, dbus, dialog, e2fsprogs,
  3299. faad2, fakeroot, ffmpeg, file, flashrom, gcc, gd, gdb,
  3300. gdk-pixbuf, git, gnupg, gpsd, grub2, gst1-plugins-bad,
  3301. imagemagick, iostat, iucode-tool, jack2, libarchive, libcurl,
  3302. libgcrypt, libidn, libphidget, librsync, librsvg, libsoup,
  3303. libxml2, linux-tools, lua, mariadb, mbedtls, mediastreamer,
  3304. minidlna, netplug, nss-pam-ldapd, nvidia-driver, openjpeg,
  3305. postgresql, proxychains-ng, python-libconfig,
  3306. python-service-identity, qt, rpcbind, ruby, samba4, squashfs,
  3307. squid, strongswan, subversion, supervisor, sysvinit, tcpdump,
  3308. tor, transmission, unrar, valgrind, vim, webkitgtk, whois,
  3309. xen, zmqpp
  3310. Issues resolved (http://bugs.buildroot.org):
  3311. #10141: Squashfs extended attribute failures
  3312. #10261: Grub2 fails to build for x86_64
  3313. #10276: BR2_PACKAGE_LINUX_TOOLS_GPIO fails for MIPS with...
  3314. 2017.02.5, Released July 27th, 2017
  3315. Important / security related fixes.
  3316. Webkitgtk bumped to the 2.16.x series, fixing a large number
  3317. of security issues.
  3318. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  3319. which default to PIE mode.
  3320. Updated/fixed packages: aespipe, apache, bind, binutils,
  3321. busybox, ccache, collectd, efibootmgr, efivar, expat, ffmpeg,
  3322. gcc, heimdal, iproute2, irssi, libglib2, libmemcached,
  3323. libosip2, libtirpc, libxml-parser-perl, linux-fusion,
  3324. linux-zigbee, mpg123, nodejs, orc, pcre, php, pulseaudio,
  3325. python-setproctitle, qt5base, rpi-firmware, samba4, syslinux,
  3326. systemd, spice, tcpdump, tiff, webkitgtk, x265, xen,
  3327. xserver_xorg-server, xvisor
  3328. Issues resolved (http://bugs.buildroot.org):
  3329. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  3330. 2017.02.4, Released July 4th, 2017
  3331. Important / security related fixes.
  3332. Update support/scripts/scancpan to use METACPAN v1 API as v0
  3333. has been shutdown.
  3334. Update support/scripts/mkusers to handle setups where
  3335. /etc/shadow is a symlink.
  3336. External toolchain: Don't create musl dynamic loader symlink
  3337. for static builds.
  3338. Setlocalversion: Correct detection of mercurial revisions for
  3339. non-tagged versions.
  3340. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  3341. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, gnutls,
  3342. gst1-plugins-bad, imagemagick, imx-uuc, intltool, iperf,
  3343. ipsec-tools, irssi, libgcrypt, libmad, libnl, mosquitto,
  3344. mpg123, ncurses, nodejs, ntp, openssh, openvpn, qt5base,
  3345. qt5multimedia, rtl8821au, socat, spice, systemd, tor, tslib,
  3346. vlc, x264, xserver_xorg-server
  3347. Issues resolved (http://bugs.buildroot.org):
  3348. #9976: License file for package 'rtl8821au' incorrect
  3349. 2017.02.3, Released June 2nd, 2017
  3350. Important / security related fixes.
  3351. Download: <pkg>-source-check fixed for packages from git.
  3352. External toolchain: musl dynamic linker symlink for mips-sf
  3353. corrected.
  3354. Updated/fixed packages: armadillo, audiofile, bash,
  3355. bluez_utils, cppcms, dbus, dhcp, dropbear, efibootmgr, efl,
  3356. elfutils, faketime, fbgrab, flashrom, ftop, gdb, git,
  3357. google-breakpad, gpsd, hans, kvm-unit-tests, kyua, libev,
  3358. libmicrohttpd, libminiupnpc, libtasn1, libubox, ltp-testsuite,
  3359. lua, madplay, mariadb, mono, mosquitto, mxml, ntp,
  3360. nvidia-driver, openblas, openvpn, oracle-mysql, picocom, popt,
  3361. postgresql, pulseview, qt5base, qwt, rabbitmq-c, redis,
  3362. rpcbind, rtmpdump, samba4, strongswan, sudo, vlc
  3363. Issues resolved (http://bugs.buildroot.org):
  3364. #9796: source-check broken for Git downloads
  3365. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  3366. 2017.02.2, Released May 1st, 2017
  3367. Important / security related fixes.
  3368. Use HTTPS for the Codesourcery external toolchains as the HTTP
  3369. URLs no longer work.
  3370. Updated/fixed packages: bind, busybox, dovecot, freetype,
  3371. ghostscript, glibc, granite, hiredis, icu, imagemagick,
  3372. gst-plugins-base, gst1-plugins-base, libcroco, libcurl, libnl,
  3373. libnspr, libnss, libsamplerate, libsndfile, libunwind,
  3374. minicom, mplayer, mpv, nodejs, python-django, python-pyyaml,
  3375. python-web2py, samba4, syslinux, systemd, tiff, trinity,
  3376. uboot, wireshark, xen
  3377. Issues resolved (http://bugs.buildroot.org):
  3378. #9791: Python searches for packages in the user site directory
  3379. 2017.02.1, Released April 4th, 2017
  3380. Important / security related fixes.
  3381. Fix a variable clashing issue in the mkusers script with
  3382. internal bash variables.
  3383. Improve external toolchain version detection.
  3384. Correct permissions for /dev/pts/ptmx when systemd is used
  3385. with recent glibc versions.
  3386. Fix python module name clash for graph-depends.
  3387. Fakeroot now links against libacl to fix issues on
  3388. distributions using acls.
  3389. Ensure that the git download infrastructure creates GNU format
  3390. tar files.
  3391. br2-external: Improve error reporting.
  3392. Updated/fixed packages: acl, apr, audiofile, busybox, cairo,
  3393. dbus-cpp, dbus-glib, dbus-triggerd, domoticz, elfutils,
  3394. fakeroot, filemq, fmc, gdb, git, gnutls, gst-ffmpeg,
  3395. gst1-plygins-bad, harfbuzz, htop, imagemagick, jasper, libcec,
  3396. libiio, libplatform, librsvg, libselinux, libsidplay2, libsoc,
  3397. libwebsockets, libxkbcommon, linux-firmware, logrotate,
  3398. lpt-testsuite, lttng-libust, mariadb, mbedtls, memcached,
  3399. mesa3d, mpd, mplayer, nbd, ncftp, ntp, openssh, opentyrian,
  3400. pcre, perl-gd, python, qt5base, rpi-userland, rpm, samba4,
  3401. skalibs, slang, sngrep, squashfs, syslog-ng, taglib,
  3402. tcpreplay, tor, upmpdcli, wget, wireshark,
  3403. xdriver_xf86-video-vmware, xlib_libXv, zmqpp
  3404. Issues resolved (http://bugs.buildroot.org):
  3405. #9456: mkusers script bash errors
  3406. 2017.02, Released February 28th, 2017
  3407. Minor fixes, mainly fixing autobuilder issues.
  3408. Don't use cmake 3.7.x from the build host as it is also
  3409. affected by the RPATH handling issues, and instead build our
  3410. own if needed.
  3411. Updated/fixed packages: assimp, classpath, genimage, mplayer,
  3412. mpv, openocd, python-libconfig, qt5base, qt5quickcontrols,
  3413. vlc, xterm
  3414. 2017.02-rc3, Released February 26th, 2017
  3415. Fixes all over the tree.
  3416. Cmake reverted to version 3.6.3 to workaround regressions
  3417. related to RPATH handling.
  3418. Updated/fixed packages: bctoolbox, berkeleydb, binutils,
  3419. btrfs-progs, classpath, directfb, glibc, gstreamer1,
  3420. gst1-plugins-{base,good,bad,ugly}, gst1-libav,
  3421. gst1-rtsp-server, gst1-validate, gst-omx, htop, libcurl,
  3422. libepoxy, libimxvpuapi, libpcap, libuv, ncurses, openssh,
  3423. oracle-mysql, poco, python, qt5base, qt5webkit, sslh, synergy,
  3424. trousers, uclibc-ng-test, util-linux, vlc, xfsprogs
  3425. Issues resolved (http://bugs.buildroot.org):
  3426. #9251: Shared C++ libraries for Microblaze results in Segmentation...
  3427. #9456: mkusers script bash errors
  3428. #9506: Collectd 5.7.0 fails to build with libcrypt
  3429. #9581: VagrantFile provisioning step fails due to issue with grub-pc
  3430. #9586: usbmount: usbmount slows down the system... to a state of...
  3431. #9616: CMake host packages cannot provide CONF_ENV
  3432. #9641: Need raptor package installed in staging
  3433. #9671: stunnel build error
  3434. 2017.02-rc2, Released February 20th, 2017
  3435. Fixes all over the tree.
  3436. Support for SOURCE_DATE_EPOCH in the toolchain wrapper for
  3437. older gcc versions for reproducible builds has been
  3438. (temporarily) reverted because of licensing compatiblity
  3439. concerns.
  3440. Defconfigs: SD card generation fix for the Udoo Neo board
  3441. Infrastructure to handle .lz compressed tarballs added, and
  3442. affected packages updated to use it.
  3443. Updated/fixed packages: bctoolbox, bind, canelloni,
  3444. cbootimage, ccache, classpath, cups, dbus, ddrescue, directfb,
  3445. ed, erlang, gcc, gdb, glmark2, gstreamer, gstreamer1, hiredis,
  3446. kmod, kmsxx, lcdapi, libasplib, libgpiod, libnss, libraw,
  3447. libv4l, mesa3d-headers, mosquitto, mpd, mpv, musl, ntfs-3g,
  3448. ocrad, openswan, postgresql, qt5base, qt5quickcontrols, redis,
  3449. riemann-c-client, samba4, sunxi-mali, tcping, trousers,
  3450. uclibc, util-linux, vim, wavpack, wget, wiringpi, xfsprogs,
  3451. xserver_xorg-server
  3452. Issues resolved (http://bugs.buildroot.org):
  3453. #8941: Valgrind fails to build with stack protection turned on
  3454. #9291: perl: SysV message queues not configured, even if available
  3455. #9651: libxcb-1.12 built Error
  3456. #9656: util-linux: schedutils doesn't build on target w/o enabl...
  3457. #9666: qt5quickcontrols install fails
  3458. 2017.02-rc1, Released February 11th, 2017
  3459. Fixes all over the tree and new features.
  3460. Infrastructure:
  3461. - numerous improvements to support reproducible builds
  3462. - new waf-package package infrastructure to support packages
  3463. that use the Waf build system. 6 packages converted to
  3464. this infrastructure.
  3465. - add option <pkg>_PREFER_INSTALLER to the perl package
  3466. infrastructure
  3467. Architecture:
  3468. - add support for the OpenRISC CPU architecture
  3469. - merge description of the ARM and ARM64 options, and add
  3470. support for selecting a specific ARM64 core
  3471. Toolchain:
  3472. - major rework of the external toolchain support. It is now
  3473. split into several packages, one per external toolchain,
  3474. and a common infrastructure.
  3475. - important fix for musl to prevent a conflict between musl
  3476. and kernel headers (fixes the build of numerous packages
  3477. with musl)
  3478. - uClibc-ng bumped to 1.0.22, and therefore enable uClibc
  3479. for ARM64, mips32r6 and mips64r6
  3480. - add gdb 7.12.1, and switch to gdb 7.11 as the default
  3481. - Linaro toolchains updated to 2016.11, ARC toolchain
  3482. components updated to arc-2016.09, MIPS Codescape
  3483. toolchains bumped to 2016.05-06, CodeSourcery AMD64 and
  3484. NIOS2 toolchains bumped
  3485. - remove Analog Devices toolchain for the Blackfin
  3486. architecture, remove pre-built musl toolchains from
  3487. musl.codu.org
  3488. New defconfigs: Freescale i.MX23EVK, Qemu OpenRISC emulation,
  3489. Qemu NIOS2 emulation, Grinn chiliBoard, Freescale i.MX6Q
  3490. SabreSD, BeagleBoard X15, OrangePi One, ARC HS38 HAPS
  3491. New packages: angular-websocket, aubio, bctoolbox, darkhttpd,
  3492. ddrescue, easydbus, fakedate, git-crypt, hiredis, ifenslave,
  3493. jsmn, libgpiod, libgsm, linux-syscall-support, mariadb, mimic,
  3494. nginx-dav-ext, nmon, opkg-utils, policycoreutils,
  3495. pru-software-support, python-arrow, python-attrs,
  3496. python-babel, python-bitstring, python-chardet,
  3497. python-constantly, python-flask-babel, python-gunicorn,
  3498. python-incremental, python-jsonschema, python-logbook,
  3499. python-markdown2, python-mbstrdecoder, python-mutagen,
  3500. python-pathpy, python-pudb, python-pyqrcode,
  3501. python-pytablereader, python-setuptools-scm, python-sh,
  3502. python-toml, python-vcversioner, python-whoosh,
  3503. raspberrypi-usbboot, riemann-c-client, rtl8723bs, skalibs,
  3504. sslh, sngrep, ti-cgt-pru, uclibc-ng-test, udpxy, uhttpd,
  3505. upower, ustream-ssl, waf, xlib_libXfont2
  3506. Removed packages: perl-db-file, snowball-hdmiservice,
  3507. snowball-init
  3508. Tooling: addition of a test-pkg script to help contributors
  3509. build test their package.
  3510. Issues resolved (http://bugs.buildroot.org):
  3511. #8946: Valgrind fails to build with stack protection turned on
  3512. #9461: odroidc2 - toolchain Linaro AArch64 2016.11 compile error
  3513. #9466: VIM_REMOVE_DOCS removes rgb.txt
  3514. #9486: xorg-server 1.19 fails to compile for glibc with systemd init (x86_64)
  3515. #9501: eudev fails to build with older kernel headers
  3516. #9526: Embedded NPM fails to start with "no such file or directory" error
  3517. #9541: Platform drivers autoloading from info in device tree does not work
  3518. #9546: seems BR2_PACKAGE_RPI_FIRMWARE_INSTALL_DTB_OVERLAYS do nothing
  3519. #9551: Coreutils fails to build target src/src_libsinglebin_pinky_a-pinky.o
  3520. #9566: [kmod] Compilation fails with uclibc
  3521. #9571: buildroot fails while building opencv for arm64 platform
  3522. #9576: External tree with BR 2016.11 does not work anymore
  3523. #9606: xorg-server cannot build for ARM target
  3524. 2016.11.3, Released March 9th, 2017
  3525. Important / security related fixes.
  3526. Updated/fixed packages: bind, dbus, gnutls, imagemagick,
  3527. lcms2, libcurl, ntfs-3g, ntp, openssl, php, quagga, redis,
  3528. squid, stunnel, tcpdump, vim, wavpack, wireshark, xlib_libXpm
  3529. 2016.11.2, Released January 25th, 2017
  3530. Important / security related fixes.
  3531. A fix for BR2_EXTERNAL trees referenced using relative paths,
  3532. which broke in 2016.11.
  3533. Updated/fixed packages: bind, docker-engine, gd, gnutls, go,
  3534. imagemagick, irssi, libpng, libvncserver, musl, opus, php,
  3535. php-imagick, rabbitmq-server, runc, wireshark,
  3536. Issues resolved (http://bugs.buildroot.org):
  3537. #9576: External tree with BR 2016.11 does not work anymore
  3538. 2016.11.1, Released December 29th, 2016
  3539. Important / security related fixes.
  3540. Updated/fixed packages: apache, cryptopp, docker-engine,
  3541. dovecot, exim, gdk-pixbuf, libcurl, libupnp, links, monit,
  3542. nodejs, openssh, php, python, python-bottle, samba4, squid,
  3543. uboot, vim, wireshark, xorg-server uboot
  3544. Issues resolved (http://bugs.buildroot.org):
  3545. #9466: VIM_REMOVE_DOCS removes rgb.txt
  3546. 2016.11, Released November 30th, 2016
  3547. Minor fixes.
  3548. Updated/fixed packages: bzip2, gcc, jasper, sane-backends,
  3549. uboot, uclibc
  3550. Issues resolved (http://bugs.buildroot.org):
  3551. #9451: packages/postgresql/postgresql.mk contains wrong POST...
  3552. 2016.11-rc3, Released November 28th, 2016
  3553. Fixes all over the tree, including a number of security fixes.
  3554. The move from fakeroot to pseudo unfortunately brought a
  3555. number of issues. The SELinux issue described in #9386 which
  3556. triggered the move to pseudo has been investigated further and
  3557. a workaround implemented and the pseudo changes reverted.
  3558. Linux kernel: update default to 4.8.11.
  3559. Defconfigs: Updates/fixes for imx28ek, mx6udoo, imx6ulpico,
  3560. olimex a20 olinuxino lime mali, roseapplepi, synopsis aarch64
  3561. vdk, axs101, axs103 and hs38 smd vdk.
  3562. Updated/fixed packages: autossh, chrony, dosfstools,
  3563. dtv-scan-tables, e2fsprogs, gcc, gdb, gnuchess, gnuradio,
  3564. gpsd, gst1-plugins-bad, gst1-plugins-good, imagemagick,
  3565. kvm-unit-tests, libfribi, libuv, mesa3d, mpfr, mplayer, mpv,
  3566. ntp, ola, olsr, openblas, openjpeg, openssh, postgresql,
  3567. ptpd2python3, qemu, qextserialport, qt5base, quagga, xqwt,
  3568. taskd, tiff, tremor, trousers, udisks, uclibc, wireshark,
  3569. xapp_xload, xenomai, xmlstarlet
  3570. Issues resolved (http://bugs.buildroot.org):
  3571. #9386: ubinize fails with or without custom config
  3572. #9431: A misspelling
  3573. #9446: make raspberrypi3_defconfig compilation failure
  3574. 2016.11-rc2, Released November 13th, 2016
  3575. Fixes all over the tree.
  3576. Architecture: add support for MIPS XBurst cores; remove MIPS
  3577. support for M5100 cores.
  3578. Updated/fixed packages: mesa3d, lttng-babeltrace, tinyalsa, pseudo,
  3579. czmq, libxml2, makedevs, binutils, kvm-unit-tests, libnss, privoxy,
  3580. qemu, ser2net, net-tools, ffmpeg, assimp, libmpeg2, ccache, mpv,
  3581. libxslt, python, python3, php, valgrind, guile, domoticz, efl,
  3582. jasper, kvmtool, go, wget, sane-backends, weston, tinymembench,
  3583. strace, openjpeg, lcms2, quota.
  3584. Linux kernel: update default to 4.8.7.
  3585. CMake support: fix cmake wrapper to properly pass NDEBUG flag.
  3586. Filesystems: use a wrapper to pseudo, to better mimick the behaviour
  3587. of fakeroot; makedevs no longer breaks of the destination already
  3588. exists and is of the correct type/major/minor.
  3589. Defconfigs: a few legacy and broken defconfigs have been removed
  3590. because they now fail to build: kb9202_defconfig, mini2440_defconfig,
  3591. freescale_p2020ds, qmx6, calao*, atmel_sama5d4ek. Other defconfigs
  3592. have been updated: nanopi-neo, olimex_a20_olinuxino_lime_mali,
  3593. armadeus_apf51, armadeus_apf28, freescale_imx31_3stack, ci20,
  3594. olimex_a20_olinuxino_lime2, atmel_at91sam9260eknf,
  3595. atmel_at91sam9rlek, atmel_at91sam9g20dfc, atmel_at91sam9g45m10ek,
  3596. atmel_sama5d3xek.
  3597. 2016.11-rc1, Released November 3rd, 2016
  3598. Fixes all over the tree and new features.
  3599. It is now possible to specify multiple BR2_EXTERNAL
  3600. directories. The required files in a BR2_EXTERNAL directory
  3601. have changed to accomodate this feature. Refer to the
  3602. documentation for details of how to update them. External
  3603. trees now have a name and a description. Also, it is possible
  3604. to override a defconfig in the external tree.
  3605. The default skeleton now uses UID 65534 for the "nobody"
  3606. user instead of UID 99, like most distros do. See
  3607. https://lwn.net/Articles/695478/ for a complete discussion.
  3608. Programs and configuration files that explicitly refer to UID
  3609. 99 will have to be updated.
  3610. When the build environment already has a suitable cmake version
  3611. (3.1 or later), that one will be used instead of building
  3612. host-cmake. This can speed up the build significantly.
  3613. The ExtUtils::MakeMaker perl module is now required in the
  3614. build environment.
  3615. An additional check is done during the build that files are
  3616. not installed in the output directory within the output
  3617. directory. This happens e.g. when the target directory is
  3618. contained both in --prefix and in DESTDIR. The build will
  3619. terminate with an error message that specifies which package
  3620. and which file caused the failure.
  3621. The concept of "deprecated packages" and the BR2_DEPRECATED
  3622. option have been removed. Instead, packages are removed
  3623. immediately. Packages are only removed when they don't work
  3624. for some reason. If you still need a removed package and
  3625. you have a solution for the problem(s) that caused the
  3626. removal, please contribute it.
  3627. Architecture: support for sh64 removed, improved support for
  3628. MIPS core selection.
  3629. Toolchain: support for musl powerpc64le, mips64 and mipsr6
  3630. toolchains, ARC toolchain components updates, gcc 6.x series
  3631. bumped to 6.2.0, default binutils version switched to 2.26,
  3632. default gcc version switched to gcc 5.x, Linaro toolchains
  3633. updated, uclibc-ng bumped to 1.0.19. GCC is now always built
  3634. with TLS support. Checking of unsafe compiler options (that
  3635. point to host directories) has been extended with -isystem,
  3636. -idirafter and -iquote.
  3637. Package infrastructure: new variable $(PKG)_DL_OPTS, addition
  3638. of <pkg>-show-rdepends to list reverse dependencies, and
  3639. <pkg>-graph-rdepends to graph reverse dependencies. Linux tools
  3640. are now in a separate linux-tools package instead of in the
  3641. kernel build. Fakeroot has been replaced by pseudo.
  3642. CMake support: the toolchainfile.cmake file now provides a
  3643. definition of the CMAKE_BUILD_TYPE variable. The
  3644. toolchainfile.cmake also no longer forces the compiler/linker
  3645. flags defined by Buildroot.
  3646. New defconfigs: WaRP7, Solidrun's MX6 Cubox/Hummingboard,
  3647. TS-4900, Grinn's liteBoard, Udoo MX6Q/DL, Qemu ARM noMMU,
  3648. BeagleBone Qt5 demo, Digilent Zybo, FriendlyARM Nanopi NEO.
  3649. New packages: arm-trusted-firmware, amd-catalyst, atop, aufs,
  3650. aufs-util, fwts, gst1-rtsp-server, libglob, libite, mfgtools,
  3651. mksh, motion, paho-mqtt-c, php-amqp, pseudo, python-couchdb,
  3652. python-crcmod, python-cssutils, python-docutils,
  3653. python-futures, python-mwclient, python-mwscrape,
  3654. python-mwscrape2slob, python-pyelftools, python-pyicu,
  3655. python-pylru, python-pyqt5, python-requests-toolbelt,
  3656. python-simpleaudio, python-slob, rabbitmq-server, shapelib,
  3657. vdr, vdr-plugin-vnsiserver, vexpress-firmware, xvisor, iio and
  3658. gpio linux tools.
  3659. Removed packages: binutils 2.24, fakeroot, gcc 4.7, ipkg,
  3660. kodi-addon-xvdr, libgail, sstrip, torsmo, webkit, webkitgtk24,
  3661. wvdial, wvstreams.
  3662. Documentation: the list of packages that was present in the
  3663. Buildroot manual has been removed.
  3664. Legal info: the "licenses.txt" file that concatenates all
  3665. license texts is no longer generated - it was not considered
  3666. useful. The manifest.csv contains an empty cell instead of
  3667. "not saved" when no license file is available.
  3668. Other: addition of a DEVELOPERS file listing developers taking
  3669. care of packages or architectures.
  3670. Issues resolved (http://bugs.buildroot.org):
  3671. #7802: host-python build hangs compiling getbuildinfo.o
  3672. #8206: mplayer uses host xorg development files
  3673. #8516: mkcubiecard.sh uses outdated sfdisk switch -D
  3674. #8536: Building sudo with PAM results in unusable sudo
  3675. #8646: check-host-rpath script returns false positives when rpath
  3676. contains symlink
  3677. #8696: xdriver_xf86-input-mouse install header files in target
  3678. directory
  3679. #8811: rp-pppoe - generated scripts commands use HOST pathnames,
  3680. not necessarily TARGET
  3681. #8846: Orphaned/missing toolchain borks eclipse plugin
  3682. #8856: python tornado runtime wasn't met on buildroot 2016.02
  3683. #8901: gcc failes to build if fortran is enabled
  3684. #8916: LDFLAGS pass to openssh
  3685. #8941: "ls" of an NFSv4 share only works when pumped through strace
  3686. #8946: Valgrind fails to build with stack protection turned on
  3687. #9021: Kodi - Broken: Illegal instruction (core dumped)
  3688. #9096: rootfs.ubi not created
  3689. #9111: glibc 2.23: libmvec.so not copied
  3690. #9176: minnowboard : USB not mounted
  3691. #9196: raspberry pi 3 default build seem broken
  3692. #9201: Permission denied make: *** [core-dependencies] Error 126 in
  3693. Buildroot-2015.08.1
  3694. #9216: log4cpp package build fails to build within install
  3695. #9221: Kodi needs "Python .py and .pyc support" otherwise it crashes when
  3696. pressing buttons.
  3697. #9229: Firefly boot fails with: "failed to find part:boot"
  3698. #9256: [Config file] New device: Odroid-U2/U3
  3699. #9296: Buildroot Fails on applying patches
  3700. #9301: U-boot fails to build with default zynq_zed_defconfig configuration
  3701. #9316: U-boot fails to build if libssl-dev is not installed
  3702. #9321: Vanilla libcrypt++ v5.6.3 doesn't allow to work Nvidia Tegra's
  3703. flash utility (tegrarcm)
  3704. #9326: Odroid-C2 build results in non-bootable image
  3705. #9336: Improve iconv support for external toolchain based builds
  3706. #9356: gdb package
  3707. #9366: no link rootfs.ext4 -> rootfs.ext2
  3708. #9371: openssl: download failes with "Only allow downloads from primary
  3709. download site" + local server
  3710. #9381: check-host-rpath issues
  3711. #9386: ubinize fails with or without custom config
  3712. 2016.08, Released September 1st, 2016
  3713. Minor fixes.
  3714. Toolchain: ARC tools updated to arc-2016.09-eng010.
  3715. Updated/fixed packages: libshout, luajit, mpd, mplayer
  3716. Issues resolved (http://bugs.buildroot.org):
  3717. #7520: CodeSourcery toolchain ARM: C++11 std::exception_ptr..
  3718. #8341: Getting EGL Error: Could not create the egl surface:..
  3719. #9121: gst1-imx for i.MX6 compile failed, cannot find PXP, ..
  3720. 2016.08-rc3, Released August 29th, 2016
  3721. Fixes all over the tree.
  3722. Toolchain: C++ support for the internal blackfin toolchain
  3723. re-enabled.
  3724. Architecture: Default to bf532 CPU variant for blackfin,
  3725. Fix flat one memory region support for m68k and disable flat
  3726. seperate data support because of compatibility issues.
  3727. Defconfigs: Minnowboard and Raspberrypi: Fix errors with
  3728. post-build scripts when systemd is used.
  3729. Zynq microzed/zc706/zed: Fix u-booot configuration.
  3730. netbsd-queue package extended and renamed to
  3731. musl-compat-headers. With this, a number of musl compatibility
  3732. patches are no longer needed.
  3733. Updated/fixed packages: aircrack-ng, android-tools, babeld,
  3734. bcusdk, binutils, boa, busybox, connman, cpupower,
  3735. docker-engine, domoticz, elf2flt, ffmpeg, fwup, gcc,
  3736. glib-networking, gnupg, hplip, igd2-for-linux, imagemagick,
  3737. imx-uuc, iputils, jack2, kismet, kmsxx, libaio, libamcodec,
  3738. libconfuse, libffi, libfreeimage, libgcrypt, libgpg-error,
  3739. libiio, libraw, libsepol, libserialport, libxmlrpc, linknx,
  3740. linux-pam, lirc-tools, lldpd, logrotate, lshw, musl, ncurses,
  3741. neon, nettle, norm, ntfs-3g, openblas, openmpi, openswan,
  3742. pinentry, pixman, protobuf, python-meld3, qlibc, qt, qt5base,
  3743. quagga, rpcbind, rt-tests, runc, sane-backends, sconeserver,
  3744. squeezelite, stella, tftpd, tinycbor, tinydtls, trace-cmd,
  3745. trousers, tstools, uboot-tools, uclibc, ulogd, ustr, vlc,
  3746. webkitgtk, wireshark, xdriver_xf86-video-intel
  3747. Issues resolved (http://bugs.buildroot.org):
  3748. #9101: Error on support/download/git with system git older than 1.8.4
  3749. #9181: Compiling linux kernel fails if BR2_LINUX_KERNEL_TOOL_CPU..
  3750. 2016.08-rc2, Released August 17th, 2016
  3751. Fixes all over the tree.
  3752. Toolchain: disable broken C++ support for internal blackfin
  3753. toolchains, ARC toolchain bumped to arc-2016.09-eng008 (GCC 6)
  3754. to fix various issues.
  3755. System: Zoneinfo is available for the musl C library as well.
  3756. Updated/fixed packages: am33x-cm3, axel, barebox, bdwgc,
  3757. blktrace, cairo, dante, enlightenment, fbterm, ffmpeg, flex,
  3758. fontconfig, gcc, gmp, gnuplot, gnuradio, gst1-imx, hidapi,
  3759. inotify_tools, iproute2, kmsxx, lftp, libaio, libcofi,
  3760. libical, libpjsip, libsidplay2, libunwindow, libxml2,
  3761. linux-zigbee, lttng-libust, mpv, mtd, ncdu, netplug, ntp,
  3762. openblas, openipmi, owfs, php, poco, procps, qt, quota,
  3763. sg3_utils, spidev_test, systemd-bootchart, thrift,
  3764. uboot-tools, uclibc, webrtc-audio-processing, wayland, weston,
  3765. xdriver_xf86-video-savage, xserver_xorg-server, xen
  3766. Issues resolved (http://bugs.buildroot.org):
  3767. #9136: make graph-size fails with "ValueError: too many values to..
  3768. #9151: qt: fix build with ALSA >= 1.1.x
  3769. #9156: qt: Fix missing runtime Qt3Support dependency
  3770. #9161: modsetting patch not applied to xserver 1.18.4
  3771. #9166: Missing overlays directory in VFAT image for raspberry pi 3
  3772. 2016.08-rc1, Released August 6th, 2016
  3773. Fixes all over the tree and new features.
  3774. Toolchain: Fortran support added. eglibc support removed, musl
  3775. support no longer experimental. Blackfin and Microblaze
  3776. support for internal uClibc-ng toolchain, m68k/coldfire
  3777. improvements. The check for unsafe (build host) directories
  3778. access (/usr/include and /usr/lib) is now enabled by default.
  3779. Unused locales are now purged by default to save space (and
  3780. the default list of locales shrunk). The option to control
  3781. this has now moved from the toolchain menu to system
  3782. configuration.
  3783. Legal info improvements: sources are now hardlinked instead of
  3784. copied if possible to save space. Patches and extra downloads
  3785. are also saved.
  3786. An experimental configuration knob (BR2_REPRODUCIBLE) has been
  3787. added to make the builds more reproducible (E.G. less
  3788. differences in the binary output between builds of the same
  3789. configuration). This is still work in progress.
  3790. An option to execute a custom script inside the fakeroot
  3791. environment used to the generate the filesystem (E.G. to tweak
  3792. permissions or similar) has been added.
  3793. Git support now supports git submodules if
  3794. <pkg>_GIT_SUBMODULES is enabled.
  3795. Hash files for integritry validation have been added for all
  3796. packages.
  3797. Scanpypi utility to help creating packages from the Python
  3798. package index (pypi) has been added.
  3799. The makedevs utility now has support for adding file
  3800. capabilities using extended attributes.
  3801. New defconfigs: Arcturus uCP1020, Atmel sama5d{2,3,4} xplained
  3802. development configs, Blackfin GDB simulator, Linksprite
  3803. pcDuino, Minnow Board Max graphical demo, NXP i.MX25 PDK,
  3804. i.MX51 EVK, i.MX6UL Pico, i.MX7 sabresd, QEMU MIPS32r6{,el} and
  3805. MIPS64r6{,el} malta, Roseapple Pi, Samsung Snow chromebook,
  3806. Toradex Apalis i.MX6 COM, TS-4800, x86-64 PC BIOS and EFI
  3807. demos. A number of defconfigs have been updated and extended
  3808. to generate SD card images. Synopsys HS38 VDK defconfig removed.
  3809. New packages: 4th, acpica, acpitool, alljoyn, alljoyn-base,
  3810. alljoyn-tcl, alljoyn-tcl-base, argparse, babeld, batman-adv,
  3811. circus, dante, docker-containerd, docker-engine, domoticz,
  3812. efibootmgr, efivar, ficl, fwup, gsettings-desktop-schemas,
  3813. gtksourceview, gupnp-dlna, gupnp-tools, igd2-for-linux,
  3814. jemalloc, kmsxx, lapack, lft, libaacs, libamcodec, libbdplus,
  3815. libcoap, libdvdcss, libebur128, libfastjson, libminiupnpc,
  3816. libnatpmp, libpqxx, libuio, libvdpau, log4cpp, minissdpd,
  3817. mxsldr, nginx-nasxi, nginx-upload, ninja, nodm, odroid-mali,
  3818. odroid-scripts, omxplayer, openblas, openmpi, openzwave,
  3819. p7zip, pdbg, python-argh, python-dataproperty,
  3820. python-dateutil, python-dialog3, python-dicttoxml,
  3821. python-dominate, python-engineio, python-flask-jsonrpc,
  3822. python-flask-login, python-humanize, python-pathtools,
  3823. python-pathvalidate, python-pillow, python-prompt-toolkit,
  3824. python-pytablewriter, python-pytz, python-scapy3k,
  3825. python-sdnotify, python-socketio, python-tomako,
  3826. python-ubjson, python-u-msgpack, python-watchdog,
  3827. python-wcwidth, python-xlrd, python-xlsxwriter,
  3828. python-xlutils, python-xlwt, rs485conf, runc, sdl2_gfx,
  3829. sdl2_image, sdl2_ttf, shellinabox, sphinxbase, stella,
  3830. supertuxkart, systemd-bootchart, tekui, terminology, tinycbor,
  3831. tinydtls, ti-sgx-demos, ti-sgx-km, ti-sgx-um, tunctl, wavemon,
  3832. wiringpi, xen
  3833. Deprecated packages: ipkg, sstrip
  3834. Removed packages: sunxi-mali-prop
  3835. Issues resolved (http://bugs.buildroot.org):
  3836. #8931: segment fault when compile argp-help.c using aarch64-bu...
  3837. #8966: eglfs error. buildroot don't compile the library libeglfs.so
  3838. #8971: build for beaglebone fails
  3839. #8986: qt5imageformats fails to build on AArch64
  3840. #8991: grub2 fails to compile
  3841. #9001: Nodejs option not available
  3842. #9006: gcc with c++ support v4 and v5 fail to compile on fedora 24
  3843. #9016: arceb-buildroot-linux-uclibc ld uses incorrect default format
  3844. #9066: 8139TOO - faulty behaviour
  3845. #9086: Syntax Error (missing ")" in boot/uboot/uboot.mk on line 203)
  3846. #9091: U-Boot fails to boot with large ramdisk
  3847. 2016.05, Released May 31st, 2016
  3848. Minor fixes.
  3849. External toolchain: Fix for symlink handling when copying
  3850. links to target.
  3851. Updated/fixed packages: gcc, grantlee, gst-ffmpeg,
  3852. ipsec-tools, iptraf-ng, libcurl, libdrm, libsigsegv, ltris,
  3853. lttng-babeltrace, mbedtls, mesa3d, moarvm, mplayer, mtools,
  3854. net-tools, openpowerlink, pulseview, rpm, tinyalsa,
  3855. xdriver_xf86-video-fbturbo, xserver_xorg-server
  3856. 2016.05-rc3, Released May 26th, 2016
  3857. Fixes all over the tree.
  3858. Tweaks for SSP handling for external toolchains.
  3859. Updated/fixed packages: aircrack-ng, bluez5_utils, connman,
  3860. cups, erlang-p1-stringprep, expat, ffmpeg, flann, flannel, go,
  3861. gst1-libav, hidapi, hplip, iptraf-ng, jamvm, kodi,
  3862. kodi-screensaver-matrixtrails, libcurl, libepoxy, libgpgme,
  3863. libsemanage, libxslt, liquid-dsp, ltris, lxc, mesa3d, midori,
  3864. mpg123, mtr, openpgm, openpowerlink, oprofile, php,
  3865. postgresql, putty, python-service-identity, python-treq,
  3866. qlibc, qt5serialbus, ruby, stress-ng, strongswan, time, tinc,
  3867. ustr, valgrind, webkitgtk, libxml2, xorriso,
  3868. xserver_xorg-server
  3869. Issues resolved (http://bugs.uclibc.org):
  3870. #8936: Aircrack-ng - Alot of missing dependencies
  3871. 2016.05-rc2, Released May 17th, 2016
  3872. Fixes all over the tree.
  3873. Rootfs overlay handling now refuses to overwrite
  3874. /{usr,bin,sbin,lib} symlinks from BR2_ROOTFS_MERGED_USR option
  3875. even if these directories are present in the overlay.
  3876. External toolchain: Unbreak user provided libraries deployment
  3877. (BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS) handling after refactoring.
  3878. QEMU coldfire: Fix for signal handling kernel issue, enable
  3879. networking support.
  3880. Updated/fixed packages: android-tools, assimp, boost, gcc,
  3881. glibc, glmark2, gmrender-resurrect, go, go-bootstrap, iputils,
  3882. jack2, kodi-screensaver-asterwave, kodi-screensaver-rsxs,
  3883. kodi-visualisation-shadertoy, libarchive, libinput, libpjsip,
  3884. mali-t76x, mtr, nginx, opencv, openvpn, python-coherence,
  3885. qt5multimeda, quagga, samba4, sg3-utils, stress-ng, turbolua
  3886. 2016.05-rc1, Released May 10th, 2016
  3887. Fixes all over the tree and new features.
  3888. Architectures: new ARM variants: Cortex A17 and M4, improved
  3889. nonmmu (cortex-M) support, m68k has been re-enabled with
  3890. support for ColdFire. For x86, support for the i386 variant
  3891. has been dropped.
  3892. Toolchain: Add GCC 6 support, remove GCC 4.5, mark GCC 4.7 as
  3893. deprecated. Go programming language support, Add Binutils 2.26
  3894. support. Old Sourcery PowerPC external toolchains removed,
  3895. Sourcery MIPS 2016.06-8, AMD64 2015.11-139, NiosII 2015.11-130
  3896. added, Linaro ARM/ARMeb/Aarch64 toolchains updated.
  3897. New defconfigs: Firefly RK3288, Boundary Devices i.MX7 Nitrogen7,
  3898. STM32F429 and STM32F469 Discovery boards, Hardkernel ODROID-C2,
  3899. Raspberry Pi Zero and Raspberry Pi 3. Some Qemu defconfigs were
  3900. added for m68k, eXtensa-nommu and ColdFire.
  3901. Linux: use zImage by default on ARM, subversion repository
  3902. support (for u-boot as well).
  3903. New packages: aer-inject, android-tools, cannelloni,
  3904. cbootimage, cgroupfs-mount, connman-gtk, crudini, dt,
  3905. gmrender-resurrect, flannel, font-awesome, freeswitch, go,
  3906. go-bootstrap, gr-osmosdr, granite, i7z, imx-uuc,
  3907. kodi-adsp-basic, kodi-adsp-freesurround,
  3908. kodi-audiodecoder-opus, kodi-pvr-hdhomerun,
  3909. kodi-screensaver-asterwave, kodi-screensaver-cpblobs,
  3910. kodi-screensaver-matrixtrails, kodi-screensaver-planestate,
  3911. kodi-screensaver-rsxs, kodi-visualisation-fishbmc,
  3912. kodi-visualisation-fountain, kodi-visualisation-goom, libgee,
  3913. libimxvpuapi, libpjsip, libtomcrypt, libtommath, libusbgx,
  3914. lksctp-tools, mali-t76x, mkpimage, mpv, msr-tools, nload,
  3915. norm, nvme, owfs, pound, privoxy, procrank_linux, putty,
  3916. python-autobahn, python-characteristic, python-crossbar,
  3917. python-cryptography, python-iniparse, python-iowait,
  3918. python-lmdb, python-pexpect, python-ptyprocess,
  3919. python-pyasn-modules, python-pygments, python-pymysql,
  3920. python-pynacl, python-pyopenssl, python-pysocks,
  3921. python-pytrie, python-rpi-gpio, python-service-identity,
  3922. python-setproctitle, python-shutilwhich, python-treq,
  3923. python-txaio, python-ujson, python-wsaccel, qt5canvas3d,
  3924. qt5location, qt5quickcontrols2, qt5serialbus, qt5tools,
  3925. raptor, scrub, taskd, tegrarcm, turbolua, valijson,
  3926. wayland-protocols, webkitgtk, wilc1000-firmware, wpan-tools,
  3927. xdriver_xf86-video-amdgpu
  3928. Removed packages: foomatic-filters, python-m2crypto,
  3929. qt5quick1, qt5webkit-examples, samba, xdriver_xf86-input-void
  3930. Issues resolved (http://bugs.buildroot.org):
  3931. #6830: Qt5: no fonts are installed
  3932. #7562: musl buildroot-toolchain and BR2_MIPS_SOFT_FLOAT break
  3933. #7580: Invalid filesystem in Pandaboard defconfig
  3934. #8346: wf111 package removes all kernel module dependencies
  3935. #8436: xserver_xorg-server Segmentation fault
  3936. #8736: IPV6 forced on in busybox
  3937. #8746: At startup system stops with 'cannot set terminal proces..
  3938. #8751: make fail [fio does not build on sh]
  3939. #8766: Compiling host-gcc-final-4.9.3 broken on i386
  3940. #8771: make savedefconfig modifies sources
  3941. #8781: Unable to build uboot for imx28evk
  3942. #8786: gdb fails to build with xz and expat support at the same
  3943. #8801: Compilation of Buildroot 2016.2 for Raspberry Pi with...
  3944. #8806: Buildroot 2016.2 for Raspberry Pi requires that ext4...
  3945. #8836: Can't select Vim in menuconfig
  3946. #8851: Make sure fio can compile with libaio support if it...
  3947. #8861: With buildroot 2016.02 trying to build for corei7-avx
  3948. fails while trying to build host-binutils
  3949. #8866: Making an USB flash bootable with extlinux build with
  3950. buildroot does not work
  3951. 2016.02, Released March 1st, 2016
  3952. Minor fixes, mostly security related.
  3953. Circular dependency issue with same-as-kernel linux-headers
  3954. option fixed.
  3955. Updated/fixed packages: bluez5_utils, heirloom-mailx,
  3956. imx-gpu-viv, kodi-pvr-argustv, kodi-pvr-mediaportal-tvserver,
  3957. kodi-pvr-nextpvr, libfcgi, openssl, pifmrds, powerpc-utils,
  3958. python-m2crypto, slang, sox, squid, tn5250, xerces, zsh
  3959. 2016.02-rc3, Released February 27th, 2016
  3960. Fixes all over the tree.
  3961. Defconfigs: Ensure EABIhf is correctly enabled for ARM cores
  3962. where VFP is optional (but present on the specific hw). Fix
  3963. ARM variant selection for freescale_imx31_3stack_defconfig.
  3964. Ensure tarballs of downloaded git trees do not contain a
  3965. timestamp.
  3966. Clarify license of patches in COPYING.
  3967. Updated/fixed package: avahi, binutils, cairo, can-festival,
  3968. chrony, cifs-utils, dnsmasq, dvdauthor, e2fsprogs, efl,
  3969. erlang-rebar, eudev, fbterm, gawk, gnupg2, gnuradio, gpm,
  3970. gst1-plugins-good, hostapd, imagemagick, iproute2, iputils,
  3971. jack2, kexec, kismet, lftp, libarchive, libeXosip2, libfm,
  3972. libglib2, libsoil, libssh, libssh2, libuci, links, lshw, lxc,
  3973. mediastreamer, mono, mraa, mutt, nfs-utils, numactl, ofono,
  3974. omniorb, openipmi, openobex, patch, pax-utils, perf,
  3975. pulseaudio, pure-ftp, qhull, qt, quagga, quota, sdl_sound,
  3976. shairport-sync, spice, sysklogd, syslog-ng, trace-cmd,
  3977. trousers, tvheadend, util-linux, vim, webkitgtk24, wireshark,
  3978. wpa_supplicant, xerces, zsh
  3979. Issues resolved (http://bugs.uclibc.org):
  3980. #8651: libMonoPosixHelper.so wrong link reference in buildroot..
  3981. 2016.02-rc2, Released February 18th, 2016
  3982. Fixes all over the tree.
  3983. Toolchain: PR19405 backport to binutils 2.25.1 to fix NIOS ld
  3984. crash, backport of Xtensa .init/.fini literals handling.
  3985. glibc security patches for CVE-2014-8121, CVE-2015-1781
  3986. and CVE-2015-7547.
  3987. Defconfigs for Acmesystems Arietta g25 added.
  3988. Updated/fixed packages: binutils, boost, chrony, dovecot,
  3989. e2fsprogs, fio, gdb, glibc, graphite2, icu, kbd, libbsd,
  3990. libcue, libgcrypt, libraw, links, mc, mosquitto, nodejs,
  3991. postgresql, pptp-linux, pulseaudio, samba4, spice, squid,
  3992. sysklogd, systemd, tiff, uclibc, ulogd, util-linux, valgrind.
  3993. Issues resolved (http://bugs.uclibc.org):
  3994. #8576: Building embedded Linux for Atmel SAMA5D4_Xplained...
  3995. #8606: Problem compiling on Arch Linux
  3996. #8681: kbd 2.0.3 does not build on rpi
  3997. 2016.02-rc1, Released February 10th, 2016
  3998. Fixes all over the tree and new features.
  3999. Toolchain: Support for GCC 5.3.x. ARC toolchain updated to
  4000. arc-2015.12. Support for legacy uClibc dropped, default to
  4001. uClibc-ng instead. Added sys/queue.h implementation for MUSL
  4002. for compatibility. Updated versions of Code sourcery and
  4003. Linaro toolchains. MIPS Codescape toolchains added. Version
  4004. selection for preconfigured external toolchains removed.
  4005. New Defconfigs: ARM Juno r0/r1 development boards, Freescale
  4006. i.MX6UL Evaluation Kit, Intel Galileo Gen 2, Orange Pi PC.
  4007. A number of defconfigs have been extended to generate complete
  4008. system images using genimage.
  4009. Linux: Automatically patch timeconst.pl for <3.9 kernels,
  4010. which isn't compatible with modern perl versions, breaking the
  4011. build when building on recent (Fedora 23, Debian
  4012. Testing/Unstable, ..) distributions.
  4013. Makedevs utility now accepts textual (non-numerical) user and
  4014. group names.
  4015. Vagrant file to easily setup a working development environment
  4016. in a VM has been added.
  4017. Size-stats-compare script to compare rootfs sizes between
  4018. builds has been added.
  4019. Infozip package renamed to zip. EFL packages restructured.
  4020. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  4021. angularjs, apache, apr, argp-standalone, armadillo, arptables,
  4022. at, atk, audiofile, aumix, autoconf-archive, avahi, bash, bc,
  4023. bcache-tools, bdwgc, beecrypt, bind, binutils, bluez5_utils,
  4024. bluez_utils, bonnie, boost, busybox, cairo, cdrkit, chrony,
  4025. clamav, cmake, collectd, connman, coreutils, cppcms, crda,
  4026. cryptodev-linux, cryptsetup, cups, cwiid, cxxtest, dbus,
  4027. dbus-cpp, dbus-glib, debianutils, dhcp, dhcpcd, dhrystone,
  4028. dillo, directfb, directfb-examples, dmraid, dnsmasq, doom-wad,
  4029. dovecot, dovecot-pigeonhole, dropbear, dtv-scan-tables,
  4030. dvb-apps, dvbsnoop, ecryptfs-utils, eigen, ejabberd,
  4031. elementary, elfutils, enlightenment, erlang, espeak, eudev,
  4032. eventlog, exfat, exfat-utils, exiv2, expedite, faifa,
  4033. fakeroot, fastd, fbgrab, fetchmail, ffmpeg, findutils, fio,
  4034. firmware-imx, flann, flashrom, flite, flot, fmlib, freerdp,
  4035. freescale-imx, freetype, gauche, gawk, gcc, gcc-final, gcr,
  4036. gdb, gdk-pixbuf, geoip, gesftpserver, gettext, giflib, git,
  4037. glibc, glibmm, glog, gmp, gnupg, gnupg2, gnutls, gob2, gpsd,
  4038. gptfdisk, grep, gst1-libav, gst1-plugins-{bad,base,good,ugly},
  4039. gst-ffmpeg, gst-plugins-{bad,base,good,ugly}, gstreamer,
  4040. gstreamer1, guile, gvfs, gzip, harfbuzz, haserl, hiawatha,
  4041. hostapd, hplip, icu, ifupdown, imagemagick, imx-gpu-viv,
  4042. imx-kobs, imx-lib, input-tools, intel-microcode, iperf3,
  4043. ipmitool, iproute2, iprutils, ipsec-tools, ipset, iptables,
  4044. iputils, irda-utils, irssi, iucode-tool, jack2, janus-gateway,
  4045. jpeg-turbo, jquery-datetimepicker, jquery-keyboard,
  4046. jquery-sparkline, jquery-ui, jquery-ui-themes,
  4047. jquery-validation, json-c, kbd, kernel-module-imx-gpu-viv,
  4048. keyutils, kmod, knock, kodi, lcdproc, lcms2, leafnode2,
  4049. leafpad, libass, libatomic_ops, libbroadvoice, libbsd,
  4050. libcap-ng, libcdaudio, libcue, libcurl, libdrm, libecore,
  4051. libedbus, libedit, libedje, libeet, libefreet, libeina,
  4052. libeio, libelementary, libembryo, libepoxy, libethumb, libev,
  4053. libevas, libevas-generic-loaders, libevdev, libevent, libffi,
  4054. libfm, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  4055. libftdi, libfuse, libgail, libglew, libglib2, libgtk2,
  4056. libgtk3, libgudev, libhttpparser, libidn, libinput, libiscsi,
  4057. libjpeg, liblinear, libmbim, libmicrohttpd, libndp, libnspr,
  4058. libnss, liboauth, liboping, libpciaccess, libplist, libpng,
  4059. libraw, libraw1394, librsvg, libseccomp, libsecret,
  4060. libserialport, libsigc, libsigrok, libsigrokdecode,
  4061. libsndfile, libsoc, libsodium, libsoup, libssh2, libsvg,
  4062. libsvg-cairo, libtasn1, libtirpc, libtorrent, libungif,
  4063. libunwind, libupnpp, liburcu, libuv, libv4l, libva,
  4064. libva-intel-driver, libvips, libvncserver, libxml2, libxmlpp,
  4065. lightning, lighttpd, linknx, linux-firmware, linux-fusion,
  4066. linux-headers, liquid-dsp, lirc-tools, live555, lm-sensors,
  4067. lockdev, lshw, ltp-testsuite, ltrace, lttng-babeltrace,
  4068. lttng-libust, lttng-modules, lttng-tools, lua, luabitop,
  4069. luarocks, luv, lvm2, lxc, makedevs, mc, memcached, memtest86,
  4070. mesa3d, mesa3d-demos, mesa3d-headers, micropython,
  4071. micropython-lib, minicom, minidlna, mjpg-streamer, mke2img,
  4072. moarvm, modem-manager, mongoose, mongrel2, monkey, mono,
  4073. monolite, mosh, mosquitto, mpd, mplayer, msgpack, mtdev2tuio,
  4074. musepack, musl, mysql, nano, nasm, nbd, neard, netatalk,
  4075. netsnmp, nettle, net-tools, network-manager, nfs-utils, nginx,
  4076. nmap, nodejs, ntfs-3g, ntp, numactl, nut, nvidia-driver,
  4077. odhcp6c, ofono, ola, olsr, omniorb, opencv, opencv3, openipmi,
  4078. openldap, openntpd, openobex, openocd, openpgm,
  4079. open-plc-utils, openpowerlink, openssh, openssl, openswan,
  4080. openvpn, opkg, oprofile, opus, opusfile, p11-kit, package,
  4081. pango, pax-utils, pciutils, pcmanfm, perl, perl-db-file,
  4082. perl-io-socket-ssl, perl-libwww-perl, perl-net-dns, perl-uri,
  4083. perl-xml-libxml, php, php-ssh2, picocom, pinentry, pixman,
  4084. polarssl, popt, portaudio, pppd, procps-ng, proftpd, protobuf,
  4085. psmisc, ptpd2, pulseaudio, pulseview, pv, python, python3,
  4086. python-alsaaudio, python-can, python-cffi, python-cherrypy,
  4087. python-httplib2, python-jinja2, python-lxml, python-m2crypto,
  4088. python-mako, python-msgpack, python-psutil, python-pyasn,
  4089. python-pycparser, python-pydal, python-pyftpdlib,
  4090. python-pyroute2, python-pyxml, python-pyzmq, python-requests,
  4091. python-serial, python-setuptools, python-six, python-spidev,
  4092. python-tornado, python-twisted, python-web2py, python-webpy,
  4093. python-werkzeug, python-zope-interface, qemu, qhull, qpdf, qt,
  4094. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  4095. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  4096. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  4097. qt5serialport, qt5svg, qt5webchannel, qt5webkit,
  4098. qt5webkit-examples, qt5websockets, qt5x11extras,
  4099. qt5xmlpatterns, qt-webkit-kiosk, racehound, radvd, read-edid,
  4100. readline, redis, rpcbind, rpi-firmware, rpi-userland, rrdtool,
  4101. rsync, rsyslog, rtai, rtorrent, rt-tests, rubix, ruby, samba4,
  4102. sconeserver, setools, shairport-sync, sigrok-cli, skeleton,
  4103. smack, snowball-init, socat, sp-oops-extract, sqlite,
  4104. squashfs, squeezelite, squid, sredird, sshfs,
  4105. start-stop-daemon, strace, strongswan, stunnel, subversion,
  4106. sunxi-tools, swig, sysdig, syslog-ng, sysstat, systemd,
  4107. sysvinit, taglib, tcl, tcpreplay, thrift, ti-gfx, tinyalsa,
  4108. tor, torsmo, trace-cmd, transmission, tremor, triggerhappy,
  4109. trinity, tvheadend, tzdata, uboot-tools, uclibc, udisks,
  4110. udpcast, unionfs, upmpdcli, usb_modeswitch,
  4111. usb_modeswitch_data, ustr, util-linux, vala, valgrind,
  4112. vboot-utils, vde2, vlc, vnstat, webkit, webkitgtk24, weston,
  4113. wget, whetstone, whois, wine, wipe, wireless-regdb, wireshark,
  4114. wpa_supplicant, w_scan, x11r7, xapp_xbacklight, xapp_xcompmgr,
  4115. xapp_xinput, xapp_xkbcomp, xdriver_xf86-input-evdev,
  4116. xdriver_xf86-input-libinput, xdriver_xf86-input-synaptics,
  4117. xdriver_xf86-video-ati, xdriver_xf86-video-fbturbo,
  4118. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  4119. xfont_encodings, xfont_font-adobe-100dpi,
  4120. xfont_font-adobe-75dpi, xfont_font-adobe-utopia-100dpi,
  4121. xfont_font-adobe-utopia-75dpi, xfont_font-adobe-utopia-type1,
  4122. xfont_font-alias, xfont_font-arabic-misc,
  4123. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  4124. xfont_font-bh-lucidatypewriter-100dpi,
  4125. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  4126. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  4127. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  4128. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  4129. xfont_font-daewoo-misc, xfont_font-dec-misc,
  4130. xfont_font-ibm-type1, xfont_font-isas-misc,
  4131. xfont_font-jis-misc, xfont_font-micro-misc,
  4132. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  4133. xfont_font-misc-meltho, xfont_font-misc-misc,
  4134. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  4135. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  4136. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  4137. xfont_font-xfree86-type1, xfsprogs, xkeyboard-config, xl2tp,
  4138. xlib_libfontenc, xlib_libXi, xmlstarlet, xscreensaver,
  4139. xserver_xorg-server, xtables-addons, xvkbd, xz, yad, yasm,
  4140. ympd, zeromq, zic, znc, zsh,
  4141. New packages: acsccid, assimp, atkmm, autofs, bcm2835,
  4142. cairomm, cantarell, chocolate-doom, comix-cursors, cxxtest,
  4143. edid-decode, emlog, gcr, gtkmm3, hidapi, jquery-sidebar,
  4144. kernel-module-imx-gpu-viv, libasplib, libcroco, libdvbpsi,
  4145. libfreeglut, libgdiplus, libglfw, libhdhomerun, libnet,
  4146. libsoil, lldpd, luvi, mbedtls, minizip, miraclecast, mongodb,
  4147. mraa, netbsd-queue, netsniff-ng, nss-pam-ldapd,
  4148. obsidian-cursors, openal, openbox, pangomm,
  4149. python-backports-abc, python-beautifulsoup4, python-cbor,
  4150. python-click, python-cssselect, python-ecdsa, python-html5lib,
  4151. python-idna, python-ipaddress, python-mistune, python-netaddr,
  4152. python-paho-mqtt, python-paramiko, python-pyparted,
  4153. python-pysmb, python-pyudev, python-singledispatch,
  4154. python-smbus-cffi, python-urllib3, qt53d, rabbitmq-c, rfkill,
  4155. sbc, spi-tools, tpm-tools, trousers, ubus, unrar, unscd,
  4156. unzip, v4l2grab, xdriver_xf86-video-nouveau, xdotool, zbar
  4157. Removed packages: libungif, python-pyxml,
  4158. Issues resolved (http://bugs.uclibc.org):
  4159. #7886: gettext: link failure with locally-installed libxml2
  4160. #7892: systemd-journald is broken
  4161. #8066: nodejs crashes when built with gcc 4.9
  4162. #8296: nodejs 0.12.7 - npm crashes (seg core dump)
  4163. #8501: gunzip fails to uncompress files
  4164. #8541: fail to build host-fakeroot-1.20.2
  4165. #8546: build instructions for raspberry pi don't work
  4166. #8571: strace for ARC compile error
  4167. #8581: pciutils.mk PCIUTILS_MAKE_OPTS typo
  4168. #8616: Fail to build for raspberrypi_defconfig with big endian
  4169. #8621: sqlite package, properly enable readline
  4170. 2015.11, Released November 30th, 2015
  4171. Minor fixes.
  4172. Merged/seperate /usr handling is now also performed for
  4173. staging so cross-gdb / gdbserver can find the libraries.
  4174. Updated/fixed packages: autossh, conntrack-tools, dcron,
  4175. espeak, gcc, glmark2, gpsd, gstreamer1, libglib2, libsigsegv,
  4176. libsoc, libv4l, minidlna, mongrel2, opencv, polarssl,
  4177. rpi-userland, rubix, skeleton, tovid, uemacs, valgrind, yad,
  4178. zmqpp
  4179. Issues resolved (http://bugs.uclibc.org):
  4180. #8441: Invalid directory for X11 fonts in target (RPi2)
  4181. #8491: libglib2 2.46.1 not Building for armv5 on 2015.11-rc3
  4182. 2015.11-rc3, Released November 26th, 2015
  4183. Fixes all over the tree.
  4184. We have a new modern website!
  4185. Updated/fixed packages: apitrace, audiofile, autossh, bullet,
  4186. c-ares, collectd, conntrack-tools, cryptodev-linux, dropbear,
  4187. fastd, gmp, gpsd, gst-plugins-bad, gst-plugins-base,
  4188. gst-plugins-good, gst-plugins-ugly, gstreamer, gstreamer1,
  4189. guile, iodine, iproute2, jimtcl, kompexsqlite, libethumb,
  4190. libfreeimage, libgsasl, libgtk3, libxml2, localedef,
  4191. lttng-tools, macchanger, mongrel2, mpd, openntpd, openssl,
  4192. oprofile, pcre, qt5base, quagga, rpi-userland, sconeserver,
  4193. sdl, spidev_test, sqlite, strongswan, ustr, xapp_sessreg,
  4194. yajl, zmqpp
  4195. Issues resolved (http://bugs.uclibc.org):
  4196. #6872: gpsd: disabled on microblaze
  4197. #8321: invalid opcode error with minidlna and ffmpeg
  4198. #8336: Default systemd configuration fails to boot correctly in 2015-08
  4199. #8446: rpi-userland failed to build with glibc 2.22
  4200. 2015.11-rc2, Released November 19th, 2015
  4201. Fixes all over the tree.
  4202. LD_LIBRARY_PATH is no longer used to ensure host binaries find
  4203. their libraries, fixing issues on recent Fedora.
  4204. Toolchain fixes for powerpc e5500 / e6500. Fix for an issue
  4205. with ${TARGET}-cc after the move to use a toolchain wrapper
  4206. for the internal toolchain.
  4207. Appy-patches.sh now correctly applies all files listed in
  4208. series files.
  4209. Fixes for merged /usr handling when a custom skeleton is used.
  4210. Updated/fixed packages: axfsutils, boost, busybox, dhcp,
  4211. directfb, dropbear, ebtables, fastd, ffmpeg, gauche, gcc,
  4212. gettext, gst1-plugins-bad, hostapd, ibrdtnd, libcurl,
  4213. libecore, libgudev, libnss, libpng, libserial, libssh2,
  4214. libuecc, libxml2, linux-headers, liquid-dsp, ltris,
  4215. lua-periphery, minidlna, mongrel2, mpd, mpg123, mplayer,
  4216. mysql, opencv, opencv3, package, perl-file-util, php-ssh2,
  4217. polarssl, pulseaudio, python-protobuf, qemu, qt5base, ranger,
  4218. ruby, skeleton, slang, squeezelite, strongswan, tovid, uclibc,
  4219. ushare, wine, wpa_supplicant, x265,
  4220. xdriver_xf86-video-siliconmotion, zxing-cpp
  4221. Issues resolved (http://bugs.uclibc.org):
  4222. #4790: Running udhcpc on a system with NFS root kills NFS
  4223. #8456: Building host-pkgconf on Fedora 23 fails due to..
  4224. 2015.11-rc1, Released November, 7th 2015
  4225. Fixes all over the tree and new features.
  4226. Architectures:
  4227. - Support for sparc64 added (internal toolchain with glibc
  4228. only).
  4229. - Support for mips32r6 and mips64r6 added.
  4230. - Support for Intel Quark X1000 CPU.
  4231. - Switch to EABIhf by default on ARM when a VFP is available.
  4232. Toolchains:
  4233. - glibc 2.22, gdb 7.10, use gdb 7.9 by default, musl 1.1.12,
  4234. uclibc-ng 1.0.8, host-gdb enabled on AArch64.
  4235. - The toolchain wrapper which was used only for external
  4236. toolchains is now also used for Buildroot internal
  4237. toolchains. This allowed to fix the ccache support, prepare
  4238. the way for top-level parallel build support and remove gcc
  4239. patches used to detect header/library path poisoning.
  4240. - Remove Analog Devices Blackfin toolchain 2012R2.
  4241. - Fix several Xtensa build failures by switching from
  4242. text-section-literals to auto-litpools.
  4243. - Enable MIPS64 support in uClibc-ng, use uClibc on ARC
  4244. rather than a specific fork.
  4245. - Linaro toolchains for ARM, ARMeb and AArch64 updated to
  4246. 2015.08. 2014.09 version is kept since 2015.08 only runs on
  4247. x86_64 hosts.
  4248. Bootloaders:
  4249. - Fix ARM64 support in U-Boot.
  4250. Defconfigs:
  4251. - Added: ARC HS38 VDK virtual boards, Avnet Microzed, Boundary
  4252. Devices Nitrogen SoloX, Freescale i.MX6 SoloX Sabre SD,
  4253. OLinuxino A20 Lime2, Qemu Sparc64, Qemu SuperH 4 big endian,
  4254. Synopsys AArch64 VDK virtual platform.
  4255. - Updated: calao_qil_a9260, calao_usb_a9g20_lpw, ci20,
  4256. cubieboad, freescale_imx6_*, imx53loco, imx6_vab820,
  4257. mpc8315erdb, qmx6, p1010rdb, qemu, raspberrypi,
  4258. raspberrypi2, riotboard, snps_axs10*, wandboard.
  4259. - Removed: at91rm9200df, at91sam9260dfc, at91sam9263ek,
  4260. calao_snowball_defconfig, gnublin, integrator926_defconfig.
  4261. Infrastructure:
  4262. - Support for fetching from Mercurial tags fixed.
  4263. - Introduce LINUX_NEEDS_MODULES, which allows to enforce
  4264. module support to be enabled in the kernel when a package
  4265. builds out-of-tree kernel modules (through the
  4266. pkg-kernel-module infrastructure or on its own).
  4267. - Improve the perl package infrastructure to automatically add
  4268. the dependency to the perl interpreter to target perl module
  4269. packages.
  4270. - Remove trailing slashes in <pkg>_SITE and addition of a
  4271. check to ensure such trailing slashes are no longer added.
  4272. - Extend the legal infrastructure to allow packages to declare
  4273. their actual source code. This is useful for packages for
  4274. which <pkg>_SOURCE points to pre-built binaries (as is the
  4275. case for external toolchains). The new <pkg>_ACTUAL_SOURCE
  4276. variable allows to point to the source code in such cases.
  4277. - Improved ccache support, thanks to the usage of a toolchain
  4278. wrapper for internal toolchain. Now a single cache directory
  4279. can be shared between different Buildroot builds.
  4280. - Addition of a 'graph-size' make targets, which generates a
  4281. PDF graph of per-package size of the root filesystem.
  4282. - Addition of <pkg>_EXCLUDES so that packages can request
  4283. certain parts of the source code tarball to not be
  4284. extracted. This feature is currently used by gcc and
  4285. toolchain-external.
  4286. - Packages can now use the <pkg>_PKGDIR variable, provided by
  4287. the package infrastructure, to reference their package
  4288. directory, instead of explicitly using package/<pkg>/.
  4289. Filesystems:
  4290. - Add high lz4 compression to squashfs.
  4291. - Simplification of shell profile files in the default
  4292. skeleton.
  4293. - Remove ftp user and /home/ftp from the skeleton, and let ftp
  4294. server packages create these when needed.
  4295. - Add support for /bin, /sbin and /lib to be symlinks to their
  4296. corresponding directories in /usr. This is enforced for
  4297. systemd configurations, and optional for other
  4298. configurations.
  4299. - Support for AXFS filesystem image generation added.
  4300. - New options to add extra space/inodes to ext2/3/4 images.
  4301. Updated/fixed packages:
  4302. adwaita-icon-theme, apache, apitrace, atk, audit, avahi,
  4303. barebox, bash, batctl, bind, binutils, bluez_utils, boost,
  4304. bridge-utils, cairo, ccache, chrony, clapack, cloog, cmake,
  4305. collectd, connman, conntrack-tools, coreutils, cpio,
  4306. cryptsetup, dbus, dbus-cpp, devmem2, dhcp, dhcpcd, dhcpdump,
  4307. dhrystone, dillo, directfb, directfb-examples, dmraid,
  4308. dos2unix, dovecot, dovecot-pigeonhole, drbd-utils, dropbear,
  4309. dropwatch, dtc, e2fsprogs, ebtables, efl, eigen, ejabberd,
  4310. elf2flt, elfutils, erlang, ethtool, eudev, evemu, exfat,
  4311. exfat-utils, expat, faifa, fbterm, fdk-aac, feh, ffmpeg, file,
  4312. flashrom, fping, freerdp, freescale-imx, freetype, gdk-pixbuf,
  4313. genimage, gettext, git, glib-networking, glmark2, gnupg2,
  4314. gnuradio, gnutls, gpsd, grep, grub2, gst1-imx, gst1-libav,
  4315. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  4316. gst1-plugins-ugly, gst1-validate, gst-fsl-plugins,
  4317. gst-plugins-bad, gstreamer1, guile, gvfs, harfbuzz, haveged,
  4318. hostapd, icu, imagemagick, impiutil, imx-gpu-viv, imx-vpu,
  4319. inadyn, intltool, iostat, iperf3, ipmiutil, iproute2,
  4320. iptables, iw, jpeg-turbo, jq, jsoncpp, kexec-lite, kmod, kodi,
  4321. kodi-audioencoder-flac, kodi-pvr-argustv, kodi-pvr-filmon,
  4322. kodi-pvr-hts, kodi-pvr-mythtv, kodi-pvr-pctv,
  4323. kodi-pvr-stalker, kodi-pvr-vbox,
  4324. kodi-visualisation-waveforhue, less, lftp, libbluray,
  4325. libcgroup, libconfuse, libcurl, libdcadec, libdrm, libevdev,
  4326. libffi, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  4327. libgcrypt, libglew, libglib2, libgtk3, libidn, liblinear,
  4328. liblockfile, libmicrohttpd, libnetfilter_conntrack, libnfs,
  4329. libnftnl, libnl, libnspr, libnss, libpcap, libpfm4, libpng,
  4330. libselinux, libserial, libsoup, libsoxr, libstrophe, libtasn1,
  4331. libtirpc, libtorrent, libupnpp, liburcu, libusb-compat, libuv,
  4332. libv4l, libva, libva-intel-driver, libxcb, lighttpd, links,
  4333. linux, linux-firmware, linux-fusion, linux-headers,
  4334. lirc-tools, localedef, lpeg, lsof, ltp-testsuite,
  4335. lttng-libust, lttng-tools, lua-periphery, luaposix, lvm2, lxc,
  4336. lz4, mdadm, mesa3d, mesa3d-headers, minicom, minidlna, moarvm,
  4337. modem-manager, mosquitto, mpd, mpdecimal, mpg123, mplayer,
  4338. mrouted, msmtp, mtd, mutt, nettle, network-manager, nfs-utils,
  4339. nftables, nginx, nodejs, noip, ntp, ofono, opencv3, openpgm,
  4340. openssl, openswan, openvpn, pango, parted, perl, perl-cross,
  4341. perl-crypt-openssl-random, perl-http-message,
  4342. perl-io-socket-ssl, perl-module-build, perl-mojolicious,
  4343. perl-netaddr-ip, perl-net-dns, perl-net-http, perl-net-ssleay,
  4344. perl-uri, perl-xml-libxml, php, picocom, pixman, pkgconf,
  4345. poco, polarssl, portaudio, portmap, postgresql, proftpd,
  4346. protobuf, protobuf-c, pulseaudio, python-configshell-fb,
  4347. python-networkmanager, python-numpy, python-pyparsing,
  4348. python-pypcap, python-rtslib-fb, python-spidev, python-urwid,
  4349. python-web2py, qemu, qt5base, redis, rngtools, rng-tools,
  4350. rpi-firmware, rpi-userland, rtmpdump, rtorrent, ruby, samba,
  4351. samba4, sane-backends, sconeserver, sdl, sed, setools,
  4352. shairport-sync, shared-mime-info, sland, smartmontools,
  4353. softether, spice-protocol, sqlcipher, sqlite, squid,
  4354. strongswan, stunnel, subversion, sudo, sunxi-tools,
  4355. supervisor, systemd, tar, targetcli-fb, tcpdump, tiff, tor,
  4356. tvheadend, tzdata, uboot-tools, udisks, unionfs, upmpdcli,
  4357. util-linux, vala, valgrind, vim, vlc, vorbis-tools, vsftpd,
  4358. vtun, wavpack, webkitgtk24, weston, whois, wireless-regdb,
  4359. wireshark, wpa_supplicant, xdriver_xf86-input-vmmouse,
  4360. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  4361. xdriver_xf86-video-sis, xlib_libXi, xorg-server,
  4362. xtables-addons, xterm, xz, zic, znc, zsh
  4363. New packages:
  4364. axfsutils, bitstream, check, dvblast, eventlog, fastd, gauche,
  4365. gmock, graphite2, gssdp, gupnp, gupnp-av, ibrcommon, ibrdtn,
  4366. ibrdtnd, ibrdtn-tools, imx-kobs, iqvlinux, irssi,
  4367. kompexsqlite, libbroadvoice, libcddb, libcodec2, libcrossguid,
  4368. libg7221, libhttpparser, libilbc, libldns, libmng,
  4369. libopenh264, libpam-radius-auth, libpam-tacplus, libsilk,
  4370. libsoundtouch, libssh, libuecc, libyuv, liquid-dsp, luv,
  4371. micropython, micropython-libs, python-pyratemp,
  4372. python-pyroute2, python-ranger, rapidxml, scrypt, sdl2,
  4373. sp-oops-extract, squeezelite, stress-ng, swupdate, syslog-ng,
  4374. x265, xdriver_xf86-video-fbturbo, xxhash, yad, zxing-cpp
  4375. Removed packages:
  4376. blackbox (was deprecated), divine (merged in directfb),
  4377. kobs-ng (replaced by imx-kobs), mediactl (merged in libv4l),
  4378. sawman (merged in directfb), schifra (marked broken since a
  4379. long time), texinfo (host variant only, no longer used), zxing
  4380. (replaced by zxing-cpp),
  4381. Issues resolved (http://bugs.uclibc.org):
  4382. #4099: cut utility from GNU coreutils works incorrect
  4383. #7772: libxml-parser-perl build failure: missing dependency
  4384. ExtUtils/MakeMaker
  4385. #7931: Default configuration for Cubieboard v1 is outdated
  4386. #8116: 2015.05-rc2 raspberrypi2_defconfig network interface
  4387. not coming up
  4388. #8246: X.org DRI2 build issue
  4389. #8256: pointing to /usr/bin/objcopy old version (x86) instead
  4390. of the generated one
  4391. #8266: mplayer build issue
  4392. #8281: pyrexc fails to run when path is too long
  4393. #8316: lttng-tools and lttng-babeltrace executables contain
  4394. bad RPATH pointing to host machine
  4395. #8331: kexec wants shutdown in /sbin, but systemd installs it
  4396. in /usr/sbin
  4397. #8361: Buildroot 2015.08.1 skeleton inittab overwritten by
  4398. busybox's version
  4399. #8366: libevent does not build
  4400. #8386: build failed with external toolchain
  4401. #8391: Node.js 0.12.7 fails to build on raspberry_pi defconfig
  4402. #8396: CCACHE initialization
  4403. #8401: gpsd 3.15 NMEA support
  4404. #8416: cups depends on BR2_DEPRECATED_SINCE_2015_05
  4405. #8421: util-linux installs systemd files in output/target/home/
  4406. 2015.08, Released August 31st, 2015
  4407. Minor fixes.
  4408. OpenCV 3.x package renamed to opencv3. OpenCV 2.4.x
  4409. reintroduced as opencv.
  4410. Updated/fixed packages: bootutils, canfestival, cppcms,
  4411. curlftpfs, dhcpdump, dropbear, erlang-p1-tls, exfat, gnuradio,
  4412. ipkg, libgudev, libmbim, libwebsock, linux-pam, lm-sensors,
  4413. ltrace, midori, network-manager, openssh, perl-file-listing,
  4414. perl-http-cookies, perl-http-daemon, perl-http-negotiate,
  4415. perl-www-robotrules, python-can, qt5base, qt5multimedia,
  4416. setools, sysvinit, tinyalsa, tn5250, tvheadend, uboot, vlc,
  4417. x264, xserver_xorg-server, zyre
  4418. 2015.08-rc2, Released August, 24th 2015
  4419. Fixes all over the tree.
  4420. Toolchain: fix gcc build on NIOS-II.
  4421. Infrastructure: add <fs>_POST_GEN_HOOKS mechanism to fix
  4422. hybrid ISO image generation.
  4423. Architectures: add arm1136j-s variant.
  4424. Updated/fixed packages: apitrace, audit, bcusdk, bdwgc,
  4425. beecrypt, boost, bwm-ng, cdrkit, c-icap, cifs-utils, clapack,
  4426. c-periphery, cpio, cramfs, czmq, dawgdic, dnsmasq, dosfstools,
  4427. dropbear, elfutils, empty, eudev, fan-ctrl, filemq, gnutls,
  4428. guile, haveged, imlib2, libcec, libepoxy, libev, libgpgme,
  4429. libiio, libnetfilter_queue, libnfnetlink, libpfm4, libpthsem,
  4430. librtas, libselinux, libsigsegv, libsodium, libv4l, lightning,
  4431. linux, lirc-tools, lrzsz, mono, mosh, mpd, msmtp, nbd,
  4432. netatalk, nodejs, ola, opencv, oprofile, php, poco,
  4433. postgresql, powertop, protobuf, protobuf-c, qt5base,
  4434. qt5quickcontrols, rapidjson, rng-tools, squid, sysdig,
  4435. sysstat, tftpd, tinc, tz, util-linux, webkitgtk24, weston,
  4436. wireshark, wvstreams, xdriver_xf86-input-synaptics, zyre.
  4437. Issues resolved (http://bugs.uclibc.org):
  4438. #8276: package/dropbear: symlink resolution incorrect
  4439. #8286: Error with buildroot
  4440. #8301: ldconfig parameter in Makefile
  4441. 2015.08-rc1, Released August, 5th 2015
  4442. Fixes all over the tree and new features.
  4443. Architectures:
  4444. - Refactor how the availability of an MMU is described.
  4445. - Minimal support for Cortex-M3
  4446. - Minimal support for AArch64 big-endian
  4447. Toolchains:
  4448. - Add CodeSourcery MIPS 2015.05, remove MIPS 2013.11
  4449. - Use uClibc-ng as the default uClibc version, instead of the
  4450. official uClibc, which hasn't done any release since 3+
  4451. years
  4452. - eglibc is now marked as deprecated
  4453. - GCC: gcc 4.9.x is now the default and was updated to 4.9.3,
  4454. support for gcc 5.x added.
  4455. - Binutils: use Binutils 2.24 as the default, 2.25.x series
  4456. bumped to 2.25.1, remove old Binutils 2.22.
  4457. - Update ARC toolchain components to 2015.06
  4458. - Add support for Fortran when building gcc
  4459. Bootloaders:
  4460. - Support for using the kconfig configuration system in
  4461. U-Boot
  4462. New Defconfigs:
  4463. - VIA VAB-820/AMOS-820
  4464. - OLimex OLinuxino A20 Lime
  4465. - Many new defconfigs for Atmel evaluation boards:
  4466. at91sam9rlek, at91sam9x5ek, sama5d3xek, sama5d4ek, sama5d4
  4467. Xplained Ultra, sama5d3 Xplained.
  4468. - ACME Systems Aria G25
  4469. - WarPboard
  4470. - Altera Cyclone 5 Development Board
  4471. - Xilinx zc706
  4472. - ARC AXS101 and AXS103 Software Development Platforms
  4473. - Significant updates to Raspberry Pi / Raspberry Pi 2
  4474. Infrastructure:
  4475. - Buildroot takes better care now of generating predictable
  4476. permissions in the target filesystem. However, existing
  4477. permissions on a custom skeleton or rootfs overlay will no
  4478. longer be preserved. Therefore, it is necessary to add a
  4479. permission table (BR2_ROOTFS_DEVICE_TABLE) to set the
  4480. required permissions.
  4481. - Add support for kconfig fragments.
  4482. - No longer pass --{enable,disable}-debug to autotools
  4483. packages depending on the value of
  4484. BR2_ENABLE_DEBUG. BR2_ENABLE_DEBUG now only controls
  4485. whether we build with -g or not.
  4486. - Support for extracting archives in .lzma in the generic
  4487. package infrastructure.
  4488. - Remove random-seed file from the default skeleton, since
  4489. seeding the entropy pool with a known seed makes more harm
  4490. than good.
  4491. - In the CVS download helper, add support to use a date as
  4492. the version.
  4493. - Add support for a per-package <pkg>_STRIP_COMPONENTS
  4494. variable, which packages can use to specify how many path
  4495. components should be stripped when extracting the tarball.
  4496. - Addition of a 'kernel-module' package infrastructure, which
  4497. simplifies the packaging of external kernel modules. Many
  4498. existing packages are converted to use it.
  4499. - Allow bootloaders to be implemented in $(BR2_EXTERNAL)
  4500. - Remove /etc/securetty from the default skeleton.
  4501. - Migration of sysV initscripts from the default skeleton to
  4502. a package called 'initscripts', installed only when Busbox
  4503. init or sysvinit are used.
  4504. - Migration of the skeleton logic to a proper 'skeleton'
  4505. package.
  4506. - Addition of a 'linux-tools' infrastructure in the 'linux'
  4507. package, to support building user-space tools bundled
  4508. within the Linux kernel sources, such as perf and cpupower.
  4509. - Usage of backticks instead of make $(shell ...) to execute
  4510. shell commands. This allows to delay the evaluation of such
  4511. commands when actually needed, and not when expanding the
  4512. variables. It is useful to make 'make printvars' less
  4513. noisy, and as a preparation to support top-level parallel
  4514. build.
  4515. - Libtool .la files are not mungled for all package types,
  4516. instead of being handled only for packages using the
  4517. autotools-package infrastructure.
  4518. - Add mechanism to allow packages to express a dependency on
  4519. gcc versions. This is needed for packages that use C++11 or
  4520. C11 support for example.
  4521. Important package updates:
  4522. - Complete rework of the matchbox packaging
  4523. - Lots of fixes in packages for compatibility with musl and
  4524. gcc 5.
  4525. - Hash files added to a large number of packages.
  4526. - Update a significant number of packages to use a new
  4527. hosting, after the announcement of Google Code and
  4528. Gitorious closing.
  4529. - Major packages needed for SELinux support have been merged,
  4530. but the support is not complete yet.
  4531. - Significant update of OpenCV to version 3.0, and addition
  4532. of lots of eatures.
  4533. - Significant update of all packages supporting the GPU and
  4534. VPU of i.MX ARM processors.
  4535. - Addition of systemd support in a significant number of
  4536. packages.
  4537. - Qt5 updated to 5.5.0
  4538. - Use modular X.org server by default instead of KDrive
  4539. Filesystems:
  4540. - Complete overhaul of the iso9660 support. Now allows to use
  4541. directly IS9660 as the root filesystem format and not only
  4542. an initrd, and supports Grub 2 and isolinux in addition to
  4543. Grub.
  4544. Updated packages: a10disp, agentpp, apache, at91bootstrap3,
  4545. audit, barebox, bc, bind, bmon, boost, btrfs-progs,
  4546. ca-certificates, can-utils, ccache, cloog, collectd, connman,
  4547. coreutils, c-periphery, cryptsetup, dado, dbus, dejavu,
  4548. dhcpcd, dnsmasq, dosfstools, dovecot, dovecot-pigeonhole,
  4549. e2fsprogs, ejabberd, erlang-p1-cache-tab, erlang-p1-sip,
  4550. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  4551. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml, ethtool,
  4552. eudev, evtest, exim, expect, explorercanvas, feh, ffmpeg,
  4553. file, flashrom, freescale-imx, freetype, gawk, gcc, gdb,
  4554. gettext, git, glib-networking, gnupg2, gnutls, gpsd, gptfdisk,
  4555. gpu-viv-bin-mx6q, gst-fsl-plugins, harfbuzz, hdparm, heimdal,
  4556. i2c-tools, imagemagick, imx-vpu, iproute2, ipset, isl, iw,
  4557. kodi, kodi-addon-xvdr, kodi-audioencoder-flac,
  4558. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  4559. kodi-audioencoder-wav, lftp, libass, libassuan, libcec,
  4560. libconfi, libcurl, libdrm, libevdev, libfreefare, libfslcodec,
  4561. libfslparser, libfslvpuwrap, libfuse, libglib2, libgpgme,
  4562. libgtk2, libgtk3, libical, libidn, libiio, libinput, libiscsi,
  4563. libllcp, libmicrohttpd, libnfc, libnss, libpcap, libpciaccess,
  4564. libpng, libserialport, libsigrok, libsoc, libtirpc, libubox,
  4565. libunistring, libupnp, libuv, libv4l, libva,
  4566. libva-intel-driver, libXrandr, lighttpd, linenoise, linux,
  4567. linux-firmware, linux-headers, live555, ltrace, lua,
  4568. lua-csnappy, lua-ev, luajit, lua-messagepack, luaperiphery,
  4569. lvm2, lxc, lzo, mesa3d, mesa3d-headers, midori, mmc-utils,
  4570. modem-manager, mono, mosquitto, mpd, mpd-mpc, mpfr, mpg123,
  4571. mtd, musl, nano, netperf, network-manager, nfs-utils, nginx,
  4572. nodejs, ntp, ola, opencv, openldap, openssh, openssl,
  4573. openswan, openvmtools, openvpn, opkg, orbit, orc, pcmanfm,
  4574. perl-cross, perl-encode-locale, perl-io-socket-ssl,
  4575. perl-mojolicious, perl-net-ssleay, perl-path-tiny, perl-uri,
  4576. perl-xml-libxml, php, pinentry, polarssl, postgresql,
  4577. pulseview, pure-ftpd, python, python-dpkt, python-lxml,
  4578. python-networkmanager, python-pyinotify, python-pypcap,
  4579. python-tornado, qextserialport, qt, qt5, rapidjson, redis,
  4580. rpcbind, rpi-firmware, rpi-userland, samba4, shairport-sync,
  4581. snmpp, sqlite, squid, strongswan, stunnel, sudo, sunxi-boards,
  4582. sunxi-mali, sysdig, sysstat, systemd, tcpdump, tiff, tmux,
  4583. tor, txheadend, tzdata, uboot, uclibc, ulogd, upmpdcli,
  4584. usb_modeswitch, usb_modeswitch_data, vala, vsftpd, wayland,
  4585. weston, whois, wireless-regdb, wireshark, x264, xapp_xvinfo,
  4586. xdriver_xf86-input-libinput, xdriver_xf86-input-vmmouse,
  4587. xdriver_xf86-video-cirrus, xdriver_xf86-video-geode,
  4588. xdriver_xf86-video-imx-viv, xdriver_xf86-video-mach64,
  4589. xdriver_xf86-video-neomagic, xdriver_xf86-video-r128,
  4590. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  4591. xdriver_xf86-video-vesa, xkeyboard-config, xlib_libfontenc,
  4592. xlib_libFS, xlib_libXaw, xlib_libxkbfile, xlib_libXrender,
  4593. xlib_libXt, xproto_kbproto, xproto_xproto, xproto_xrandrproto,
  4594. xscreensaver, xserver_xorg-server, xtables-addons, yaml-cpp,
  4595. zic.
  4596. New packages: angularjs, atf, audit, c-icap, c-icap-modules,
  4597. cpio, dawgdic, faketime, fcgiwrap, gflags, glog, initscripts,
  4598. jquery-datetimepicker, kodi-audioencoder-modplug,
  4599. kodi-audioencoder-nosefar, kodi-audioencoder-sidplay,
  4600. kodi-audioencoder-snesapu, kodi-audioencoder-stsound,
  4601. kodi-audioencoder-timidity, kodi-audioencoder-vgmstream,
  4602. kodi-platform, kodi-pvr-argustv, kodi-pvr-dvblink,
  4603. kodi-pvr-dvbviewer, kodi-pvr-filmon, kodi-pvr-hts,
  4604. kodi-pvr-iptvsimple, kodi-pvr-mediaportal-tvserver,
  4605. kodi-pvr-mythtv, kodi-pvr-nextpvr, kodi-pvr-njoy,
  4606. kodi-pvr-pctv, kodi-pvr-stalker, kodi-pvr-vbox,
  4607. kodi-pvr-vdr-vnsi, kodi-pvr-vuplus, kodi-pvr-wmc,
  4608. kodi-screensaver-asteroids, kodi-screensaver-biogenesis,
  4609. kodi-screensaver-crystalmorph, kodi-screensaver-greynetic,
  4610. kodi-screensaver-pingpong, kodi-screensaver-pyro,
  4611. kodi-screensaver-stars, kodi-visualisation-shadertoy,
  4612. kodi-visualisation-spectrum, kodi-visualisation-waveforhue,
  4613. kodi-visualisation-waveform, kvmtool, kyua, libfm,
  4614. libfm-extra, libplatform, librtas, libsodium, libsquish,
  4615. libucl, libump, linux-backports, lua-iconv, lutok, menu-cache,
  4616. moarvm, monkey, mono-gtksharp3, mosh, openipmi, python-can,
  4617. python-pycli, python-pydal, python-pyyaml, python-web2py,
  4618. qpid-proton, qt5webchannel, quazip, racehound, rtl8188eu,
  4619. rtl8821au, sepolgen, setools, skeleton, stm32flash,
  4620. webkitgtk24, xdriver_xf86-video-qxl, zynq-boot-bin.
  4621. Deprecated packages: webkitgtk, libgail, eglibc support in
  4622. glibc package.
  4623. Issues resolved (http://bugs.uclibc.org):
  4624. #4291: Segmentation fault with all binaries that use threads
  4625. when compiled with gcc 4.6
  4626. #6944: building toolchain for sh4 fails
  4627. #7592: Buildroot GCC: -lto requires plugin support in ranlib
  4628. #7628: Python SSL does not get built for Raspberry Pi
  4629. #7682: Missing dependencies for NFS
  4630. #7742: dhcp lacks important features when BR2_ENABLE_DEBUG
  4631. #7754: make: *** [/..../buildroot-2014.11/output/build/host-gcc-initial-4.8.3/.stamp_built] Error 2
  4632. #7946: libglib2-2.42.2 fails to build for sparc-buildroot-linux-gnu
  4633. #7956: glibc 2.20 and 2.21 fail to build for sh64-buildroot-linux-gnu
  4634. #7971: python-flask, python-werkzeug. No module named zlib
  4635. #7981: Target file system skeleton permissions hazard
  4636. #8006: rpcdebug in nfs-utils built for the host
  4637. #8036: alsa-lib headers problem that prevents to compile alsa
  4638. dependent projects
  4639. #8081: systemd init system: /tmp is not mode 1777
  4640. #8121: php opcache extension doesn't get installed
  4641. #8151: x86-64 make fails with ncurses 5.9
  4642. #8156: pkg-kconfig infra broken for *-update-{config, defconfig}
  4643. #8161: default /bin/sh symlink to busybox is full path and not relative
  4644. #8171: glamor missing
  4645. #8191: Request update support for the cubieboard series
  4646. #8201: Important security upgrades for node.js
  4647. 2015.05, Released May 31st, 2015
  4648. Minor fixes.
  4649. Updated/fixed packages: conntrack-tools, directfb, fio, flite,
  4650. gptfdisk, ipmiutil, iproute2, janus-gateway, keyutils, knock,
  4651. libelementary, libgcrypt, libgsasl, libjpeg, libstrophe,
  4652. lttng-libust, nbd, ncurses, nmap, php, postgresql, python,
  4653. python3, sconeserver, udpcast, upmpdcli
  4654. 2015.05-rc3, Released May 22nd, 2015
  4655. Several fixes, mainly related to static linking.
  4656. Updated/fixed packages: acl, alsa-utils, apr, armadillo, attr,
  4657. autoconf-archive, binutils, boost, czmq, dhcpcd, duma,
  4658. enlightenment, exim, fbterm, freerdp, gcc, gdk-pixbuf,
  4659. google-breakpad, gpsd, heirloom-mailx, hwloc, ipmiutil,
  4660. iproute2, jack2, jasper, kmod, lcdproc, leafnode2, libcap-ng,
  4661. libftdi1, libmatroska, libmemcached, libmodbus, libnftnl,
  4662. libsigrok, libupnpp, libuv, libxml-parser-perl, linux,
  4663. linux-headers, lirc-tools, lua-periphery, lxc, mongoose, mono,
  4664. mpg123, mosquitto, neardal, newt, ntp, ola, openldap, opencv,
  4665. php, postgresql, protobuf, pulseaudio, python-pyqt, qemu, qt,
  4666. qt5base, rpi-userland, rsyslog, snmppp, sqlite, tiff,
  4667. tinyxml2, uboot-tools, unionfs, ux5000-firmware, usbredir,
  4668. ushare, vpnc, vsftpd, wavpack, wireless_tools, wsapi,
  4669. wvstreams, xmlstarlet, zeromq, zmqpp
  4670. New packages: c-periphery
  4671. Issues resolved (http://bugs.uclibc.org):
  4672. #8106: mkfs.jffs2 uses the --pagesize parameter incorrectly
  4673. #8111: 2015.05.rc2 LIBFOO_CONF_OPTS not working
  4674. #8126: exim lacks plaintext and cram-md5 auth
  4675. 2015.05-rc2, Released May 11th, 2015
  4676. Minor fixes.
  4677. Toolchain: PR56780 backport to GCC 4.8.4 to fix GDB linking
  4678. issues. Context functions enabled for uClibc snapshot /
  4679. uClibc-NG.
  4680. Architectures: Endian handling symbol for Xtensa, binutils
  4681. fixes.
  4682. Infrastructure: Fix for kernel module stripping when
  4683. localversion contains spaces.
  4684. Updated/fixed packages: at, autoconf-archive, binutils,
  4685. cc-tool, cryptsetup, dstat, expedite, freerdp, giflib,
  4686. gnuchess, guile, ipmiutil, iproute2, mono, monolite, neard,
  4687. ola, poppler, postgresql, python-qt, qt, sqlite, valgrind,
  4688. xlib_libXfont
  4689. Issues resolved (http://bugs.uclibc.org):
  4690. #8086: Cannot select systemd as init with Linaro 2014.09...
  4691. 2015.05-rc1, Released May 4th, 2015
  4692. Fixes all over the tree and new features.
  4693. Architectures: Removed AVR32 support, deprecate SH64, added
  4694. support for steamroller, corei7-avx and core-avx2 x86
  4695. variants.
  4696. Toolchains: IPv6 and Largefile support now enforced for
  4697. uClibc. Corresponding Kconfig symbols removed.
  4698. External CodeSourcery AMD64 2014.05, MUSL-cross 1.1.6 added,
  4699. CS sh2, Xilinx microblaze v2/14.3 removed. Distro-class
  4700. external toolchains are now detected and blacklisted.
  4701. Internal toolchain support for Nios2 added, Blackfin
  4702. removed. Aarch64 and sh musl support. uClibc-ng support added.
  4703. Libatomic is now handled for internal and external
  4704. toolchains. Link time optimization (LTO) support.
  4705. New Defconfigs: Freescale i.MX28 EVK, i.MX31 PDK and SABRE
  4706. Auto, Raspberry Pi 2, RIoTboard,
  4707. Infrastructure: Hashes for a large number of packages have
  4708. been added. Missing hashes now stop the build unless
  4709. explicitly disabled.
  4710. Spaces and colons (:) are now supported in package
  4711. versions. Dependencies can now be listed for the patch step
  4712. (<PKG>_PATCH_DEPENDENCIES). Kconfig and Linux kernel
  4713. extensions infrastructure has been added.
  4714. Makedevs now has a recursive (r) option.
  4715. The variable containing the list of packages to build has been
  4716. renamed from TARGETS to PACKAGES.
  4717. Make external-deps / legal-info / source / source-check have
  4718. been reimplemented using the package infrastructure, so their
  4719. output/behaviour may differ from earlier (some packages were
  4720. not included in the past).
  4721. The old insecure DES password encoding is no longer supported.
  4722. U-Boot patch option now support direct references to patch
  4723. files and URLs in addition to directories of patches. The
  4724. i.MX28 SD format (u-boot.sd) is now supported.
  4725. Updated/fixed packages: agentpp, aircrack-ng, alsa-lib,
  4726. alsa-utils, apr-util, apr, atk, autossh, avahi, avrdude,
  4727. bcusdk, bdwgc, bind, binutils, bmon, boost, botan,
  4728. btrfs-progs, busybox, ca-certificates, cairo, can-utils,
  4729. canfestival, ccache, chrony, civetweb, clamav, cmake,
  4730. collectd, connman, copas, crda, cryptodev-linux, cryptsetup,
  4731. cups, czmq, dbus-cpp, dbus-glib, dbus-python, dbus, dfu-util,
  4732. dhcp, dhcpcd, dialog, dillo, dmraid, dnsmasq, dos2unix,
  4733. dosfstools, dovecot-pigeonhole, dovecot, dropbear, dropwatch,
  4734. dtv-scan-tables, dvdauthor, e2fsprogs, ecryptfs-utils,
  4735. libevas, elfutils, enscript, erlang, espeak, eudev, evemu,
  4736. exfat-utils, exim, f2fs-tools, feh, ffmpeg, fftw, flickcurl,
  4737. fltk, fluxbox, fmlib, fmtools, freeradius-client, freerdp,
  4738. gamin, gawk, gcc-final, gcc, gd, gdb, gengetopt, geoip, git,
  4739. glib-networking, gnu-efi, gnuchess, gnutls, gpsd, gptfdisk,
  4740. gpu-viv-bin-mx6q, gst-plugin-bad, gstreamer, gstreamer1,
  4741. gtest, gvfs, harfbuzz, haserl, haveged, hiawatha,
  4742. hicolor-icon-theme, hostapd, hplip, httping, i2c-tools, icu,
  4743. ifplugd, imagemagick, imlib2, iozone, iproute2, iptables,
  4744. iputils, irqbalance, iw, jack2, jhead, jimtcl, json-c, kexec,
  4745. kismet, kmod, kodi-audioencoder-flac,
  4746. kodi-audioencoder-vorbis, kodi-pvr-addons, kodi, ktap, lcms2,
  4747. libass, libatomic_ops, libbluray, libcap, libcgroup, libcurl,
  4748. libdrm, libdvbsi, libebml, libecore, libedit, liberation,
  4749. libev, libevas, libevdev, libftdi, libgcrypt, libglib2,
  4750. libgpgme, libgtk2, libgtk3, libiconv, libidn, libiio,
  4751. libinput, libiscsi, libksba, liblinear, libmatroska,
  4752. libmicrohttpd, libmodbus, libmpdclient, libnice, libnl,
  4753. libnspr, libnss, libpcap, libpciaccess, libphidget, libplayer,
  4754. libpthsem, libqmi, librsvg, libseccomp, libsigrok, libsoup,
  4755. libsrtp, libssh2, libtasn1, libtool, libunistring, liburcu,
  4756. libusb, libuv, libva-intel-driver, libva, libvncserver,
  4757. libvorbis, libvpx, libwebsockets, libxml2, libzip, lightning,
  4758. lighttpd, linknx, linphone, linux-firmware, linux-headers,
  4759. linux-pam, live555, ljsyscall, lmbench, lockdev, logrotate,
  4760. lpc3250loader, lpeg, lsof, lttng-libust, lttng-modules,
  4761. lttng-tools, lua, luacrypto, luafilesystem, luajit, luaposix,
  4762. luarocks, lvm2, lxc, make,
  4763. matchbox-{common,desktop,fakekey,keyboard,lib,startup-monitor,vm},
  4764. matchbox, mcelog, memcached, memstat, memtest86, mesa3d,
  4765. minidlna, mjpegtools, mjpg-streamer, modem-manager, mongoose,
  4766. monit, mono, monolite, mp4v2, mpc, mpd, mpdecimal, mpg123,
  4767. mplayer, musl, nano, nbd, ncftp, ncmpc, ncurses, ne10, neard,
  4768. neardal, net-tools, netatalk, netsnmp, network-manager, nginx,
  4769. nodejs, ntfs-3g, ntp, numactl, odhcp6c, ofono, open2300,
  4770. opencv, openldap, openntpd, openocd, openssh, openssl,
  4771. openswan, opentyrian, openvmtools, openvpn, oprofile, p11-kit,
  4772. pango, patch, patchelf, pciutils, pcre, perf, perl-gdgraph,
  4773. perl-io-socket-ssl, perl-json-tiny, perl-module-build,
  4774. perl-mojolicious, perl-net-ssleay, perl-path-tiny,
  4775. perl-xml-libxml, perl, phidgetwebservice, php-gnupg, php,
  4776. pkgconf, polarssl, poppler, popt, postgresql, powerpc-utils,
  4777. pppd, prboom, procps-ng, proftpd, psplash, ptpd2,
  4778. python-{cheetah,coherence,django,markdown,netifaces,pam,six},
  4779. python-tornado, python-twisted, python-zope-interface, python,
  4780. python3, qemu, qt, qt5, qt5base, qt5multimedia,
  4781. qt5xmlpatterns, qt5cinex, quagga, qwt, radvd, readline,
  4782. rng-tools, rpcbind, rpi-firmware, rpi-userland, rsync,
  4783. rsyslog, rtai, rtmpdump, ruby, sam-ba, samba, samba4,
  4784. sane-backends, sconeserver, shairport-sync, sigrok-cli, slang,
  4785. smcroute, snmppp, socat, socketcand, sofia-sip, sox,
  4786. spawn-fcgi, speex, sqlcipher, sqlite, squid, strace,
  4787. strongswan, stunnel, sudo, sunxi-boards, swig, sysstat,
  4788. systemd, tcpdump, tftpd, thrift, thttpd, ti-gfx, ti-utils,
  4789. tiff, tinyalsa, tn5250, transmission, trinity, tslib,
  4790. tvheadend, tzdata, uboot-tools, uclibc, ulogd, usb_modeswitch,
  4791. usbutils, ustr, util-linux, vala, valgrind, vlc, wayland,
  4792. webp, weston, wget, which, whois, wireless-regdb,
  4793. wireless_tools, wireshark, wpa_supplicant, wvstreams,
  4794. xapp_{bdftopcf,bitmap,fonttosfnt,fslsfonts},
  4795. xapp_{fstobdf,iceauth,mkfontscale,oclock,rgb,sessreg,setxkbmap},
  4796. xapp_{showfont,smproxy,twm,x11perf,xcalc,xclipboard,xcmsdb},
  4797. xapp_{xdbedizzy,xditview,xdpyinfo,xdriinfo,xedit,xev,xeyes},
  4798. xapp_{xf86dga,xfsinfo,xgamma,xgc,xhost,xinit,xinput,xkbcomp},
  4799. xapp_{xkbevd,xkbprint,xlsatoms,xlsfonts,xmag,xman,xmh,xmodmap},
  4800. xapp_xmore, xcb-util-image, xcb-util-keysyms,
  4801. xdata_xcursor-themes,
  4802. xdriver_xf86-input-{evdev,keyboard,synaptics,void},
  4803. xdriver_xf86-video-{ati,cirrus,geode,mach64,mga,neomagic},
  4804. xdriver_xf86-video-{r128,savage,siliconmotion,sis,tdfx},
  4805. xdriver_xf86-video-{trident,vmware,voodoo}, xenomai,
  4806. xfont_font-util, xkeyboard-config,
  4807. xlib_lib{ICE,X11,Xdmcp,Xfont,Xpm,XvMC},
  4808. xlib_lib{Xxf86vm,xshmfence,xtrans}, xproto_randrproto,
  4809. xproto_xproto, xserver_xorg-server, x11vnc, x264, xerces,
  4810. xorriso, xterm, xz, yaml-cpp, zeromq, zic, zmqpp
  4811. New packages: apache, autoconf-archive, batctl,
  4812. bitstream-vera, bullet, cc-tool, doxygen, drbd-utils,
  4813. dvdrw-tools, gnuradio, gst1-imx, hans, hwloc, ijs,
  4814. imx-usb-loader, inconsolata, iodine, iotop, ipmiutil, jsoncpp,
  4815. leveldb, libdcadec, libdri2, libfreeimage, libftdi1,
  4816. libsidplay2, lirc-tools, lua-periphery, mc, mesa3d-headers,
  4817. mosquitto, nvidia-driver, nvidia-tegra23{,-binaries,-codecs},
  4818. openjpeg, opusfile, perl-crypt-openssl-{random,rsa},
  4819. perl-db-file, perl-digest-{hmac,sha1},
  4820. perl-encode-{detect,locale}, perl-file-{listing,util},
  4821. perl-html-{parser,tagset}, perl-http-cookies,
  4822. perl-http-{daemon,date,message,negotiate}, perl-io-html,
  4823. perl-libwww-perl, perl-lwp-mediatypes, perl-mail-dkim,
  4824. perl-mailtools, perl-mime-base64, perl-net-{dns,http},
  4825. perl-netaddr-ip, perl-time-hires, perl-timedate, perl-uri,
  4826. perl-www-robotrules, powertop, pulseview,
  4827. python-{cherrypy,lxml,mako,pyqt,pyxml,sip,spidev,ws4py}, qpdf,
  4828. qt-webkit-kiosk, sl, softether, sysdig, tinyxml2, tor, tovid,
  4829. unixodbc, wf111, wine, libepoxy, xapp_xcompmgr,
  4830. xapp_xfindproxy, xcb-util-cursor, xcb-util-renderutil,
  4831. xdriver_xf86-input-libinput, xdriver_xf86-video-imx{,-viv},
  4832. xproto_xproxymanagementprotocol
  4833. Removed packages: gtk2-theme-hicolor
  4834. Deprecated packages: samba
  4835. Issues resolved (http://bugs.uclibc.org):
  4836. #7478: Multiple chosen python modules are not built due to...
  4837. #7508: Use of BR2_EXTERNAL and dependencies to existing packages
  4838. #7676: Package procps-ng installs binaries to nonsensical folder
  4839. #7724: Startx is not installed in the target
  4840. #7760: botan: wrong prefix in botan-1.10.pc
  4841. #7826: Building of cdparanoia
  4842. #7844: Lua with hard-float on MIPS by buildroot doesn't work
  4843. #7874: X.org configure error
  4844. #7941: glibc-2.20 fails to build for sparc-buildroot-linux-gnu
  4845. #7951: gcc 4.9.2 fails to build for sparc-buildroot-linux-gnu
  4846. #7961: Qt5 fails to build for xtensa-buildroot-linux-uclibc
  4847. #7976: mkuser script fails with: user already exists with...
  4848. #8011: When building only busybox and strace, strace fails...
  4849. #8016: collectd fails to build, network.c:171:19: error:...
  4850. #8041: error on building libcurl7.42.0
  4851. 2015.02, Released March 1st, 2015
  4852. Minor fixes.
  4853. Updated/fixed packages: civetweb, ding-libs,
  4854. directfb-examples, glibc, gnupg, gnupg2, gpm,
  4855. gst-plugins-good, gst1-plugins-good, freetype, libao, libevas,
  4856. libevent, libfribidi, libgcrypt, libgtk2, libshout, libsrtp,
  4857. libtheora, libupnpp, libxmlrpc, linux, make, opus, pinentry,
  4858. rpi-firmware, shared-mime-info, vlc, vorbis-tools,
  4859. xcb-util-keysyms
  4860. Removed packages: libgc
  4861. 2015.02-rc3, Released February 24th, 2015
  4862. Minor fixes.
  4863. Cmake and rebar (erlang) infrastructure fixes.
  4864. Updated/fixed packages: bind, btrfs-progs, busybox, e2fsprogs,
  4865. evtest, ffmpeg, fltk, gnutls, i2c-tools, imagemagick, libxcb,
  4866. make, mjpg-streamer, netsnmp, opentyrian, php, polarssl,
  4867. qt5base, samba, samba4, sudo, util-linux, xserver_xorg-server
  4868. 2015.02-rc2, Released February 15th, 2015
  4869. Minor fixes.
  4870. raspberrypi: fix kernel sha1 for DT variant.
  4871. Updated/fixed packages: dbus, dvdauthor, git, libsemanage,
  4872. libsepol, libssh2, mplayer, ntp, openvmtools, python3,
  4873. qt5base, qt5connectivity, xserver_xorg-server
  4874. 2015.02-rc1, Released February 8th, 2015
  4875. Fixes all over the tree and new features.
  4876. Static/shared library handling reworked. This is now a
  4877. tristate (shared only / shared and static / static
  4878. only). Default is now shared only to speed up the
  4879. build. BR2_PREFER_STATIC_LIB is now called BR2_STATIC_LIBS.
  4880. The toolchain (internal and external) will now warn when an
  4881. unsafe library or header path is used (such as /usr/include or
  4882. /usr/lib). If BR2_COMPILER_PARANOID_UNSAFE_PATH is enabled
  4883. under build options this instead becomes an error.
  4884. A installation path issue with the internal musl toolchain
  4885. support has been fixed so it is now possible to reuse it as an
  4886. external toolchain.
  4887. Architectures: Freescale E5500 and E6500 PowerPC support
  4888. added, deprecated MIPS 1/2/3/4 support removed.
  4889. New defconfigs: Freescale p2020ds, MIPS creator CI20,
  4890. Raspberrypi with DT, UDOO Quad.
  4891. 'make <foo>_defconfig' now saves the path to the defconfig in
  4892. the .config, so a 'make savedefconfig' automatically updates
  4893. it.
  4894. Infrastructure for packages using the Erland rebar tool has
  4895. been added.
  4896. Hashes for a large number of packages have been added. Hashes
  4897. are now checked for both target and host packages.
  4898. The system menu now has an option to automatically configure a
  4899. network interface through DHCP at bootup.
  4900. The default filesystem skeleton now uses a separate tmpfs for
  4901. /run instead of a symlink to /tmp/ for security reasons / to
  4902. protect against conflicts with user generated temporary files.
  4903. BR2_EXTERNAL is now exported to post-build and post-image
  4904. scripts.
  4905. New packages: bdwgc, benejson, blktrace, bootstrap, cgic,
  4906. ding-libs, dvdauthor, ejabberd, erlang-goldrush, erlang-lager,
  4907. erlang-p1-cache-tab, erlang-p1-iconv, erlang-p1-sip,
  4908. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  4909. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml,
  4910. erlang-p1-zlib, exiv2, freeradius-client, gengetopt, glmark2,
  4911. gpu-amd-bin-mx51, guile, host-qemu, ifupdown, iperf3,
  4912. janus-gateway, kodi, kodi-audioencoder-flac,
  4913. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  4914. kodi-audioencoder-wav, libcli, libiio, liblinear, libnice,
  4915. libselinux, libsemanage, libserialport, libsigro,
  4916. libsigrokdecode, libsrtp, liburiparser, libvips, libwebsock,
  4917. libz160, libzip, lightning, mcelog, memtest86, mjpegtools,
  4918. mjpg-streamer, mke2img, mpd-mpc, netsurf-buildsystem, odhcp6c,
  4919. openldap, python-alsaaudio, python-certifi, python-cheetah,
  4920. python-coherence, python-django, python-docopt, python-enum,
  4921. python-enum34, python-flask, python-gobject, python-httplib2,
  4922. python-ipaddr, python-itsdangerous, python-jinja,
  4923. python-markdown, python-markupsafe, python-networkmanager,
  4924. python-pam, python-psutil, python-pyftpdlib, python-pyinotify,
  4925. python-pysendfile, python-pyxb, python-requests, python-six,
  4926. python-twisted, python-webpy, python-werkzeug,
  4927. python-zope-interface, qt5cinex, sigrok-cli, sofia-sip,
  4928. start-stop-daemon, szip, triggerhappy, ustr, vnstat, xorriso,
  4929. xtables-addons
  4930. Removed packages (target): bison, distcc, gob2, m4
  4931. Issues resolved (http://bugs.uclibc.org):
  4932. #7556: make interactive CLI optional for nftables
  4933. #7730: Error while connecting Qt Cretaor to device
  4934. #7766: logrotate default gzip path is usually wrong
  4935. #7790: Invalid ext4 image generated by Buildroot
  4936. 2014.11, Released December 1st, 2014
  4937. Minor fixes.
  4938. Infrastructure: LD_LIBRARY_PATH handling tweak to ensure
  4939. current working directory isn't searched.
  4940. Updated/fixed packages: gd, gdb, libwebsockets, luajit, mono,
  4941. parted, shairport-sync, util-linux, xapp_bdftopcf,
  4942. xserver_xorg-server
  4943. 2014.11-rc3, Released November 28th, 2014
  4944. Fixes all over the tree.
  4945. System: File permissions of /etc/random-seed made more
  4946. restrictive.
  4947. Toolchain: Various fixes related to locale handling, a fix for
  4948. building the toolchain wrapper on MIPS.
  4949. Updated/fixed packages: bind, binutils. botan, btrfsprogs,
  4950. clamav, czmq, dhcp, dillo, dovecot, erlang, flac, gd, glibc,
  4951. gptfdisk, gst1-validate, heirloom-mailx, lame, libksba,
  4952. libllcp, libnspr, libpng, libshairplay, libtirpc, linux,
  4953. linux-headers, mpdecimal, mpg123, network-manager, nfstables,
  4954. nfs-utils, openssl, pcituils, qt, radvd, rtai, sqlcipher,
  4955. sstrip, tcpdump, uclibc, uemacs, ushare, wayland, weston,
  4956. xl2tp, xserver_xorg-server
  4957. Issues resolved (http://bugs.uclibc.org):
  4958. #7670: Fails to build mpc-1.0.2 on latest Cygwin
  4959. 2014.11-rc2, Released November 21st, 2014
  4960. Fixes all over the tree.
  4961. Inittab tweaks for shutdown handling (busybox and sysvinit).
  4962. Updated/fixed packages: aircrack-ng, botan, canfestival,
  4963. clamav, coreutils, czmq, dbus, dovecot, duma, e2fsprogs,
  4964. erlang, gcc, iputils, libcap, libgcrypt, libmemcached,
  4965. libssh2, libunwind, libv4l, linux-headers, mesa3d-demos, mutt,
  4966. mysql, ndisc6, nodejs, omniorb, perl-cross, php,
  4967. python-tornado, python3, qemu, qt5base, qt5webkit, rpm,
  4968. rt-tests, ruby, schifra, sdl_sound, shairport-sync, sysvinit,
  4969. tstools, tzdata, wireshark, x264
  4970. Issues resolved (http://bugs.uclibc.org):
  4971. #7646: strftime on datetime not works on python3
  4972. 2014.11-rc1, Released November 12th, 2014
  4973. Fixes all over the tree and new features.
  4974. Toolchains: Use -mcpu / -march instead of -mtune. Support
  4975. additional ARC and sparc variants. Updated Code sourcery
  4976. and Linaro external toolchains.
  4977. Defconfigs: Freescale iMX6DL SabreSD, Minnowboard MAX, QEMU
  4978. powerpc64 pseries added and a number of updates to the
  4979. existing configurations.
  4980. Infrastructure: Buildroot is now less noisy when built with
  4981. the silent option (make -s).
  4982. A number of package infrastructure variables have been renamed
  4983. from *_OPT to *_OPTS for constency. Buildroot will complain if
  4984. the old names are used to assist in updating out of tree
  4985. packages.
  4986. Fixes for host systems where bash isn't located in /bin, and
  4987. older systems not supporting mktemp --tmpdir.
  4988. Various cleanups of users/groups in the default skeleton.
  4989. There is now an option to choose what shell /bin/sh points to.
  4990. Documentation: Various updates to the user manual. The
  4991. asciidoc documentation handling has now been extended so it
  4992. can be used by (BR2_EXTERNAL) packages.
  4993. Updated/fixed packages: acl, acpid, agentpp, aircrack-ng,
  4994. alsa-lib, alsamixergui, alsa-utils, apitrace, apr, apr-util,
  4995. argus, arptables, at, atftp, atk, attr, audiofile, aumix,
  4996. automake, autossh, avahi, avrdude, axel, bandwidthd, bash,
  4997. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  4998. bluez_utils, bmon, boost, bootutils, bridge-utils,
  4999. btrfs-progs, busybox, bwm-ng, bzip2, ca-certificates, cairo,
  5000. ccache, ccid, ccrypt, cdrkit, cegui06, celt051, chrony,
  5001. cifs-utils, civetweb, cjson, clapack, classpath, cloog, cmake,
  5002. collectd, connman, copas, coreutils, coxpcall, cppcms, cppdb,
  5003. cppzmq, cramfs, crda, cryptsetup, ctorrent, cups, cvs, cwiid,
  5004. czmq, dash, dbus, dbus-cpp, dbus-glib, dbus-python, dejavu,
  5005. dhcp, dhcpcd, dhcpdump, dialog, dillo, directfb, distcc,
  5006. dmalloc, dmidecode, dmraid, dnsmasq, doc-asciidoc.mk,
  5007. dosfstools, dropbear, dropwatch, dstat, dtach, dtc, dvbsnoop,
  5008. e2fsprogs, ecryptfs-utils, ed, efl, eigen, elf2flt, elfutils,
  5009. enlightenment, enscript, erlang, espeak, ethtool, eudev,
  5010. evemu, evtest, exfat, exfat-utils, exim, expat, expect,
  5011. explorercanvas, faifa, fakeroot, fan-ctrl, fbdump,
  5012. fb-test-app, fetchmail, ffmpeg, file, filemq, findutils, flac,
  5013. flann, flickcurl, flite, fltk, fluxbox, fmc, fmlib,
  5014. fontconfig, foomatic-filters, freerdp, freescale-imx,
  5015. freetype, ftop, fxload, gamin, gcc, gd, gdb, gdk-pixbuf,
  5016. genimage, genpart, genromfs, geoip, gettext, giblib, git,
  5017. glibc, glib-networking, gmp, gmpc, gnu-efi, gnupg, gnupg2,
  5018. gnuplot, gnutls, google-breakpad, gpm, gpsd, gptfdisk,
  5019. gpu-viv-bin-mx6q, grantlee, grep, gsl, gst1-libav,
  5020. gst1-plugins-{bad,base,good,ugly}, gst-ffmpeg,
  5021. gst-fsl-plugins, gst-omx, gst-plugins-{bad,base,good,ugly},
  5022. gst-plugin-x170, gstreamer, gstreamer1, gtest, gtk2-engines,
  5023. gutenprint, gvfs, harfbuzz, haserl, haveged, hdparm, heimdal,
  5024. heirloom-mailx, hiawatha, hostapd, hplip, htop, httping,
  5025. hwdata, i2c-tools, icu, ifplugd, igh-ethercat, imagemagick,
  5026. imlib2, imx-lib, imx-vpu, inadyn, inotify-tools, input-tools,
  5027. intltool, iperf, iproute2, iprutils, ipsec-tools, ipset,
  5028. iptables, iputils, iw, jamvm, jansson, jasper, jimtcl, joe,
  5029. jpeg-turbo, jq, jquery-keyboard, jquery-mobile, jquery-ui,
  5030. jquery-ui-themes, jquery-validation, jsmin, json-c,
  5031. json-javascript, kbd, kexec, kexec-lite, keyutils, kismet,
  5032. kmod, knock, ktap, lame, lbase64, lbreakout2, lcdproc, lcms2,
  5033. lesstif, lftp, libaio, libao, libarchive, libargtable2,
  5034. libass, libassuan, libatasmart, libbluray, libbsd, libcap,
  5035. libcap-ng, libcdio, libcec, libcgicc, libcgroup, libcofi,
  5036. libconfig, libconfuse, libcurl, libdaemon, libdnet, libdrm,
  5037. libdvdnav, libecore, libedbus, libedit, libedje, libeet,
  5038. libelementary, libelf, libenca, libethumb, libevas,
  5039. libevas-generic-loaders, libevent, libexif, libeXosip2,
  5040. libffi, libftdi, libfuse, libgail, libgcrypt, libgeotiff,
  5041. libglade, libglib2, libgpgme, libgtk2, libhid, libidn,
  5042. libinput, libiscsi, libjson, libksba, liblockfile,
  5043. liblog4c-localtime, liblogging, libmad, libmatroska, libmbim,
  5044. libmemcached, libmicrohttpd, libmpdclient, libmpeg2, libndp,
  5045. libnfc, libnfs, libnftnl, libnl, libnspr, libnss, liboauth,
  5046. libogg, liboping, libosip2, libpcap, libpciaccess, libpfm4,
  5047. libplayer, libplist, libpng, libpthsem, libqmi, libqrencode,
  5048. libraw, libreplaygain, libroxml, librsvg, librtlsdr,
  5049. libsamplerate, libseccomp, libsecret, libshairplay, libsoc,
  5050. libsoup, libsoxr, libssh2, libstrophe, libsvg, libsvg-cairo,
  5051. libtasn1, libtheora, libtirpc, libtorrent, libubox, libuci,
  5052. libungif, liburcu, libusb, libuv, libv4l, libva,
  5053. libva-intel-driver, libvncserver, libvorbis, libvpx,
  5054. libwebsockets, libxcb, libxml2, libxml-parser-perl, libxmlrpc,
  5055. libxslt, lighttpd, linenoise, linknx, links, linphone,
  5056. linux-firmware, linux-fusion, linux-headers, linux-pam,
  5057. linux-zigbee, lite, live555, ljlinenoise, lmbench, lm-sensors,
  5058. localedef, lockdev, lockfile-progs, log4cxx, lpty, lrandom,
  5059. lrzsz, lshw, lsof, lsqlite3, ltp-testsuite, ltrace, ltris,
  5060. lttng-babeltrace, lttng-libust, lttng-modules, lttng-tools,
  5061. lua, luabitop, lua-coat, lua-coatpersistent, lua-csnappy,
  5062. lua-ev, luajit, luajson, lualogging, lua-messagepack,
  5063. lua-msgpack-native, luaposix, luarocks, luasec, luasocket,
  5064. luasql-sqlite3, lua-testmore, lunit, lvm2, lxc, lz4, lzlib,
  5065. lzma, m4, madplay, make, makedevs, Makefile.in,
  5066. matchbox-common, matchbox-desktop, matchbox-fakekey,
  5067. matchbox-keyboard, matchbox-lib, matchbox-panel,
  5068. matchbox-startup-monitor, matchbox-wm, mcrypt, mdadm,
  5069. media-ctl, mediastreamer, memcached, memstat, memtester,
  5070. mesa3d, metacity, midori, mii-diag, minidlna, mmc-utils,
  5071. modem-manager, mongoose, mongrel2, monit, mpc, mpd, mpdecimal,
  5072. mpfr, mpg123, mplayer, mrouted, msmtp, mtd, mtools, mtr,
  5073. musepack, musl, mutt, mxml, mysql, nano, nanocom, nbd, ncftp,
  5074. ncurses, ndisc6, ne10, neard, neon, netatalk, netperf,
  5075. netsnmp, nettle, net-tools, network-manager, newt, nfs-utils,
  5076. ngrep, nmap, nodejs, nss-mdns, ntfs-3g, ntp, numactl, nut,
  5077. nuttcp, ofono, ola, omap-u-boot-utils, omniorb,
  5078. on2-8170-modules, opencore-amr, opencv, openntpd, openobex,
  5079. openocd, openpowerlink, openssh, openssl, openswan,
  5080. opentyrian, opentyrian-data, openvpn, opkg, oprofile, opus,
  5081. opus-tools, orbit, orc, ortp, p11-kit, pango, parted,
  5082. pciutils, pcmanfm, pcre, pcsc-lite, perf, perl, perl-gd,
  5083. perl-gdgraph, perl-io-socket-ssl, perl-json-tiny,
  5084. perl-module-build, perl-mojolicious, perl-net-ssleay,
  5085. perl-path-tiny, perl-xml-libxml, perl-xml-parser, php,
  5086. php-geoip, php-gnupg, php-imagick, php-memcached, php-ssh2,
  5087. php-yaml, php-zmq, picocom, pifmrds, pinentry, pixman,
  5088. pkg-autotools.mk, pkg-cmake.mk, pkg-download.mk,
  5089. pkg-generic.mk, pkg-kconfig.mk, pkg-luarocks.mk, pkg-perl.mk,
  5090. pkg-python.mk, pkg-utils.mk, poco, polarssl, polkit, poppler,
  5091. popt, portaudio, portmap, postgresql, powerpc-utils, pppd,
  5092. pptp-linux, prboom, procps-ng, proftpd, protobuf, protobuf-c,
  5093. psmisc, ptpd2, pulseaudio, pv, pwgen, python, python3,
  5094. python-dialog, python-ipy, python-keyring, python-mad,
  5095. python-netifaces, python-numpy, python-protobuf, python-pyasn,
  5096. python-pyparsing, python-pyro, python-pyusb, python-serial,
  5097. python-setuptools, qdecoder, qemu, qextserialport, qjson, qt,
  5098. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  5099. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  5100. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  5101. qt5serialport, qt5svg, qt5webkit, qt5webkit-examples,
  5102. qt5websockets, qt5x11extras, qt5xmlpatterns, qtuio, quagga,
  5103. quota, qwt, radvd, rapidjson, rdesktop, redis, rings, rpcbind,
  5104. rpi-firmware, rpi-userland, rpm, rp-pppoe, rrdtool,
  5105. rsh-redone, rsync, rsyslog, rtai, rtmpdump, rt-tests, rubix,
  5106. ruby, samba, sam-ba, samba4, sane-backends, schifra,
  5107. sconeserver, scons, screen, sdl, sdl_gfx, sdl_image,
  5108. sdl_mixer, sdl_net, sdl_sound, sdl_ttf, sed, ser2net,
  5109. setserial, sg3_utils, shared-mime-info, simicsfs, sispmctl,
  5110. slang, slirp, smcroute, smstools3, snmppp,
  5111. snowball-hdmiservice, socat, socketcand, sox, spawn-fcgi,
  5112. speex, spice, spice-protocol, sqlcipher, sqlite, squashfs,
  5113. squid, sredird, startup-notification, strace, stress,
  5114. strongswan, stunnel, subversion, sudo, sunxi-boards,
  5115. sunxi-cedarx, swig, sylpheed, synergy, sysklogd, sysstat,
  5116. systemd, sysvinit, taglib, tar, tcl, tcllib, tcpdump,
  5117. tcpreplay, texinfo, tftpd, thrift, thttpd, tiff, ti-utils,
  5118. tn5250, torsmo, trace-cmd, transmission, tslib, tstools,
  5119. tvheadend, twolame, tz, uboot-tools, uclibc, udisks, ulogd,
  5120. upmpdcli, upx, urg, usb_modeswitch, usbmount, usbredir,
  5121. usbutils, util-linux, valgrind, vde2, vim, vlc, vo-aacenc,
  5122. vorbis-tools, vpnc, vsftpd, vtun, wayland, webkit, webp,
  5123. webrtc-audio-processing, weston, wget, whois, wireless-regdb,
  5124. wireshark, wpa_supplicant, wvstreams, x11r7, x11vnc,
  5125. xapp_xcalc, xapp_xdm, xapp_xdpyinfo, xapp_xf86dga, xapp_xfs,
  5126. xapp_xinit, xapp_xkbevd, xapp_xmh, xapp_xrandr, xapp_xsm,
  5127. xbmc, xbmc-pvr-addons, xcb-proto, xcursor-transparent-theme,
  5128. xdriver_xf86-input-mouse, xdriver_xf86-video-{ast,intel},
  5129. xdriver_xf86-video-vmware, xenomai, xerces,
  5130. xfont_font-adobe-{100,75}dpi,
  5131. xfont_font-adobe-utopia-{100dpi,75dpi,type1},
  5132. xfont_font-alias, xfont_font-arabic-misc,
  5133. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  5134. xfont_font-bh-lucidatypewriter-100dpi,
  5135. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  5136. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  5137. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  5138. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  5139. xfont_font-daewoo-misc, xfont_font-dec-misc,
  5140. xfont_font-ibm-type1, xfont_font-isas-misc,
  5141. xfont_font-jis-misc, xfont_font-micro-misc,
  5142. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  5143. xfont_font-misc-meltho, xfont_font-misc-misc,
  5144. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  5145. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  5146. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  5147. xfont_font-xfree86-type1, xfsprogs, xinetd, xkeyboard-config,
  5148. xlib_libdmx, xlib_libFS, xlib_libpciaccess, xlib_libSM,
  5149. xlib_libX11, xlib_libXaw, xlib_libXext, xlib_libXfont,
  5150. xlib_libXi, xlib_libXinerama, xlib_libXrandr, xlib_libXrender,
  5151. xlib_libXres, xlib_libXScrnSaver, xlib_libXt, xlib_libXv,
  5152. xlib_libXvMC, xlib_libXxf86dga, xlib_libXxf86vm, xmlstarlet,
  5153. xproto_xcmiscproto, xproto_xextproto, xscreensaver,
  5154. xserver_xorg-server, xterm, xz, zeromq, zlib, zlog, zmqpp,
  5155. znc, zsh, zxing
  5156. New packages: adwaita-icon-theme, am335x-pru-package,
  5157. bcache-tools, biosdevname, botan, canfestival, clamav,
  5158. cppunit, dos2unix, dovecot, dovecot-pigeonhole, getent, glm,
  5159. gst1-validate, hicolor-icon-theme, ipmitool, leafnode2,
  5160. libdvbcsa, libgtk3, libphidget, libshout, libunistring,
  5161. libupnpp, mesa3d-demos, modplugtools, mono, monolite, mp4v2,
  5162. netcat-openbsd, nginx, odhcploc, openvmtools,
  5163. phidgetwebservice, pps-tools, pure-ftpd,
  5164. python-configshell-fb, python-rtslib-fb, python-urwid, qlibc,
  5165. qt5location, shairport-sync, spidev_test, targetcli-fb,
  5166. tinyalsa, trinity, x264, yaml-cpp, ympd
  5167. Removed packages: libelf
  5168. Issues resolved (http://bugs.uclibc.org):
  5169. #261: New package: wxWidgets
  5170. #325: New package: ratpoison
  5171. #405: New package: OpenVZ tools
  5172. #1309: New package: rdiff-backup
  5173. #3427: New package: nginx
  5174. #3655: New package: libav
  5175. #3991: New Package: open-vm-tools (Vmware Tools)
  5176. #6878: dmraid: disabled on ARC
  5177. #6950: Full unicode support in ncurses
  5178. #7010: jamvm builds and runs fine under mips (be)
  5179. #7088: elfutils on Blackfin doesn't build
  5180. #7142: ecryptfs needs getent to run
  5181. #7280: CMake toolchain file uses the FORCE attribute on CMAKE_CXX_FLAGS
  5182. #7346: [2014.08rc3] vim-8ae50e3ef8bf.tar.gz can not be downloaded, ...
  5183. #7352: [2014.08-rc3] diffutils-3.3 failed on building
  5184. #7358: rpi-userland: linking with bcm_host doesn't give vc_dispmanx_*
  5185. #7364: monit builds a static application, even though BR2_PREFER_...
  5186. #7370: ngrep - requires --with-pcap-includes fully defined to find...
  5187. #7442: rootfs remount does not work as expected with sysvinit
  5188. #7448: Having export MACHINE="something" breaks glibc build on IMX6...
  5189. #7568: musl buildroot-toolchain does not put libgcc_s.so.1 into place
  5190. #7574: quota-4.01 fails to build statically
  5191. 2014.08, Released September 1st, 2014
  5192. Minor manual fixes/additions.
  5193. Updated/fixed packages: btrfs-progs, cmake, cppcms, exim,
  5194. lftp, libdaemon, libev, libgpgme, libiqrf, libnl, libplist,
  5195. libroxml, libwebsockets, mesa3d, mpd, mtdev2tuio, musepack,
  5196. perl-gd, php-geoip, php-gnupg, php-imagick, php-memcached,
  5197. php-ssh2, php-yaml, php-zmq, polarssl, ruby, systemd, taglib,
  5198. uboot-tools, upmpdcli, webkit, xapp_xfs, xapp_luit,
  5199. xscreensaver, yajl
  5200. Issues resolved (http://bugs.uclibc.org):
  5201. #7346: vim-8ae50e3ef8bf.tar.gz can not be downloaded, 404 not found
  5202. 2014.08-rc3, Released August 26th, 2014
  5203. Minor fixes.
  5204. User manual update / restructuring.
  5205. Updated/fixed packages: cairo, ecryptfs-utils, gettext,
  5206. gstreamer, gstreamer1, gutenprint, icu, imagemagick, jack2,
  5207. lbreakout2, libevas-generic-loaders, libftdi, libinput,
  5208. libtorrent, ltris, msgpack, ntp, php, procps-ng, pulseaudio,
  5209. thrift, tvheadend, usb_modeswitch, xmlstarlet,
  5210. Issues resolved (http://bugs.uclibc.org):
  5211. #7136: ecryptfs-utils needs gettext to run when glibc/eglibc...
  5212. #7322: libgomp dependency issue with imagemagick
  5213. #7328: Git dl of versions in x/y broken
  5214. 2014.08-rc2, Released August 18th, 2014
  5215. Fixes all over the tree.
  5216. User manual restructured / reworked.
  5217. Toolchain: Fix for C++ exceptions / pthread_exit() on
  5218. uClibc/glibc, C++-11 features with uClibc.
  5219. Updated/fixed packages: bandwidthd, bluez5_utils, empty,
  5220. espeak, fbv, ffmpeg, gd, gnupg2, gst1-plugin-good, iftop,
  5221. infozip, libcuefile, libeml, libnftl, localedef, ltrace,
  5222. matchbox, mpd, network-manager, nftables, ngrep, nut, openssl,
  5223. oprofile, perl, perl-net-ssleay, postgresql, pppd, procps-ng,
  5224. qt, subversion, synergy, systemd, tar, tftpd, webkit,
  5225. xapp_rstart, xbmc, xbmc-pvr-addons
  5226. Issues resolved (http://bugs.uclibc.org):
  5227. #7124: Use BR toolchain externally results a non-bootable...
  5228. #7208: Glibc C++ aplications crash if they use exceptions
  5229. #7250: Cannot build with -std=c++11
  5230. #7262: Generating locale en_US.UTF-8 fails on 64bit fedora..
  5231. #7286: systemd 215 doesn't build
  5232. 2014.08-rc1, Released August 8th, 2014
  5233. Fixes all over the tree and new features.
  5234. Architecture: Powerpc64 BE/LE added, AVR32 deprecated.
  5235. Improved altivec / SPE /atomic instructions
  5236. handling. Additional PowerPC CPU variants added.
  5237. Defconfigs: Atmel SAMA5D3, Congatec QMX6, Lego ev3, TS-5x00,
  5238. qemu-system-xtensa, qemu-aarch64-virt added. A number of
  5239. tweaks to existing ones. lpc32xx defconfigs removed.
  5240. Toolchain: Microblaze support for internal musl toolchain.
  5241. Default to GCC 4.8 for internal toolchain, remove deprecated
  5242. 4.3 and 4.6 versions.
  5243. External CodeSourcery / Linaro toolchain updates, option to
  5244. copy gconv libraries for external toolchains.
  5245. Infrastructure: graph-depends: misc fixes, transitive
  5246. dependencies are not drawn by default. Download handling is
  5247. now done using helper scripts. Integrity of downloads can now
  5248. be verified using sha* hashes. Subversion download now uses
  5249. peg revisions for robustness.
  5250. Legal-info: License info of local or overridden packages are
  5251. saved as well. Toolchain packages are also taken into account.
  5252. autotools: Static linking with libtool / v1.5 improvements.
  5253. Gettextize support, similar to autoreconf.
  5254. kconfig package infrastructure added.
  5255. Misc: Version selection for busybox dropped.
  5256. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  5257. alsamixergui, argus, armadillo, at, atftp, atk, avahi,
  5258. avrdude, axel, b43-firmware, b43-fwcutter, bandwidthd, bc,
  5259. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  5260. bmon, boa, bonnie, bootutils, bsdiff, btrfs-progs, bustle,
  5261. busybox, bwm-ng, bzip2, ca-certificates, cairo, can-utils,
  5262. ccache, ccrypt, chrony, cifs-utils, classpath, cloog, cmake,
  5263. collectd, connman, coreutils, cosmo, cppcms, cramfs, crda,
  5264. cryptodev-linux, cryptodev, ctorrent, cvs, dbus-cpp,
  5265. dbus-glib, dbus-python, dbus, dcron, dejavu, devmem2,
  5266. dfu-util, dhcp, dhcpcd, dhcpdump, dhrystone, dialog, dillo,
  5267. distcc, dmidecode, dmraid, dnsmasq, doom-wad, dropbear,
  5268. dropwatch, dsp-tools, dtv-scan-tables, dvb-apps, e2fsprogs,
  5269. e2tools, eeprog, eigen, elf2flt, elftosb, enlightenment,
  5270. enscript, espeak, ethtool, eudev, evemu, exim, expedite,
  5271. explorercanvas, ezxml, faifa, fan-ctrl, fconfig, feh,
  5272. fetchmail, ffmpeg, fftw, file, fio, fis, flann, flashrom,
  5273. flex, flot, fltk, fontconfig, freerdp, freescale-imx,
  5274. freetype, ftop, gcc, gd, gdb, genimage, genromfs, gettext,
  5275. giblib, glib-networking, glibc, gmp, gnupg, gnutls, gpm, gpsd,
  5276. gptfdisk, gpu-viv-bin-imx6q, gqview, grantlee, gst-ffmpeg,
  5277. gst-fsl-plugins, gst1-libav, gst1-plugins-bad,
  5278. gst1-plugins-ugly, gtk2-engines, gtk2-theme-hicolor, gtkperf,
  5279. gvfs, haserl, hdparm, hostapd, httping, i2c-tools, icu,
  5280. imagemagick, imx-lib, inadyn, inotify-tools, input-tools,
  5281. ipkg, iproute2, iputils, irda-utils, iw, jack2, jpeg, jquery,
  5282. jquery-keyboard, jquery-mobile, jquery-validation, jsmin, kbd,
  5283. kexec, kmod, knock, latencytop, lcdapi, leafpad, lesstif,
  5284. lftp, libaio, libarchive, libargtable2, libart, libatasmart,
  5285. libatomic_ops, libbsd, libcap-ng, libcec, libcgicc, libcgroup,
  5286. libconfuse, libcurl, libdrm, libdvdnav, libdvdread,
  5287. libeXosip2, libedit, liberation, libesmtp, libev, libevas,
  5288. libevdev, libevent, libfcgi, libffi, libfreefare, libfslcodec,
  5289. libfslparser, libfslvpuwrap, libgail, libgcrypt, libglade,
  5290. libglib2, libgpgme, libgtk2, libhid, libical, libiconv,
  5291. libiqrf, libjpeg, liblog4c-localtime, libmbus, libmicrohttpd,
  5292. libmms, libndp, libnftnl, libnl, libnspr, libnss, liboauth,
  5293. libpcap, libpng, libpthsem, libqmi, libraw, libraw1394,
  5294. librsvg, libsoc, libsoup, libsvgtiny, libsysfs, libtasn1,
  5295. libtirpc, libtorrent, libusb, libv4l, libwebsockets, libxcb,
  5296. libxml2, libyaml, links, linux-firmware, linux-fusion,
  5297. linux-headers, linux-pam, lite, live555, lm-sensors,
  5298. lockfile-progs, lpc3250loader, lshw, lsof, lsuio, ltrace,
  5299. ltris, lua-messagepack, luainterpreter, luajit, luaposix,
  5300. luarocks, lvm2, lxc, lz4, lzo, make, makedevs, mdadm,
  5301. mediastreamer, mesa3d, metacity, minidlna, mkpasswd,
  5302. modem-manager, mongoose, mpd, mpg123, msgpack, mtd, mtools,
  5303. mtr, musepack, musl, mysql, nano, nasm, nbd, ncurses, ndisc6,
  5304. netatalk, netplug, network-manager, nftables, ngircd, nodejs,
  5305. nss-mdns, ntp, nut, olsr, open2300, opencv, openntpd, openocd,
  5306. openpgm, openpowerlink, openssh, openssl, openswan, openvpn,
  5307. opkg, oprofile, opus-tools, orc, p910nd, pango, parted,
  5308. pax-utils, pcmanfm, perf, perl, perl-module-build, php,
  5309. pixman, pkgconf, poco, polarssl, popt, portmap, postgresql,
  5310. prboom, protobuf-c, proxychains-ng, psmisc, psplash, ptpd2,
  5311. python,
  5312. python-{bottle,dpkt,id3,mad,msgpack,nfc,pygame,pyzmq,simplejson},
  5313. python3, qhull, qt, qt5base, qt5connectivity, qt5declarative,
  5314. qt5graphicaleffects, qt5multimedia, qt5quickcontrols,
  5315. qt5sensors, qt5svg, qt5webkit, quagga, quota, radvd, rdesktop,
  5316. read-edid, rpcbind, rpi-firmware, rpi-userland, rpm,
  5317. rsh-redone, rsync, rt-tests, rtmpdump, rtorrent, rubix, ruby,
  5318. samba, samba4, sane-backends, sawman, sconeserver, setserial,
  5319. sg3_utils, shared-mime-info, smartmontools, smcroute, snappy,
  5320. socketcand, spawn-fcgi, sqlite, squashfs, squid, sredird,
  5321. startup-notification, statserial, strongswan, stunnel,
  5322. sunxi-mali, supervisor, synergy, sysklogd, sysprof, sysstat,
  5323. systemd, tcpdump, tcpreplay, texinfo, thrift, thttpd, ti-gfx,
  5324. ti-utils, tinyhttpd, torsmo, trace-cmd, transmission, tslib,
  5325. tstools, tvheadend, tzdata, uboot-tools, uclibc, udev,
  5326. udpcast, usb_modeswitch, usbmount, util-linux, valgrind, vim,
  5327. vlc, w_scan, wayland, webrtc-audio-processing, weston, wget,
  5328. wireless-regdb, wireless_tools, wireshark, wpa_supplicant,
  5329. xapp_{twm,xconsole,xcursorgen,xedit,xfs,xinit,xrandr},
  5330. xdriver_xf86-video-intel, xlib_lib{FS,ICE,Xext,Xfont,Xft,Xi},
  5331. xproto_fontsproto, xproto_inputproto, xserver_xorg-server,
  5332. x11vnc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons, xterm, xvkbd,
  5333. xz
  5334. New packages: flickcurl, fmc, fmlib, geoip, gnupg2,
  5335. google-breakpad, imx-vpu, isl, kexec-lite, libglew, libglu,
  5336. libinput, libksba, libmemcached, libmpdclient, librtlsdr,
  5337. libuv, libva, libva-intel-driver, linux-zigbee, memcached,
  5338. mpdecimal, ncmpc, opencore-amr, patchelf, perl-datetime-tiny,
  5339. perl-gd, perl-gdgraph, perl-gdtextutil, perl-io-socket-ssl,
  5340. perl-json-tiny, perl-mojolicious, perl-net-ssleay,
  5341. perl-path-tiny, perl-try-tiny, perl-xml-libxml,
  5342. perl-xml-namespacesupport, perl-xml-sax, perl-xml-sax-base,
  5343. php-geoip, php-memcached, pifmrds, pinentry, powerpc-utils,
  5344. procps-ng, pwgen, python-cffi, python-daemon, python-flup,
  5345. python-ipython, python-numpy, qt5enginio, qt5webkit-examples,
  5346. qt5websockets, simicsfs, sispmctl, sox, sshpass, tclap,
  5347. twolame, upmpdcli, whois, xlib_libxshmfence, xproto_dri3proto
  5348. Removed packages: procps
  5349. Issues resolved (http://bugs.uclibc.org):
  5350. #5750: Doing a Buildroot build from /usr doesn't work
  5351. #5900: config flags to the Xenomai build system
  5352. #6230: Cannot compile gcc without threads (uClibc-based)
  5353. #6626: procps Unknown HZ value! (XX) Assume 100
  5354. #7118: Package "thrift" requires atomic operations
  5355. #7154: Local uClibc config file gets overwritten using ...
  5356. #7160: host-xz not built
  5357. #7166: hostapd: segfault when using RT5370
  5358. #7172: Name collision of rpath token expansion and internal..
  5359. #7178: NTPd package cannot sync time without a proper ntp.conf
  5360. #7184: supervisord depends on libxml2 implicitly
  5361. #7196: Unable to build on UBUNTU13.10
  5362. #7268: python 2.7 compilation issue on a Debian/Ubuntu ...
  5363. 2014.05, Released May 31st, 2014
  5364. Minor fixes.
  5365. Minor manual fixes. U-Boot now defaults to spl/u-boot-spl.bin
  5366. for the spl file.
  5367. Updated/fixed packages: exim, glibc, gnutls, libfribidi,
  5368. qt5base, qt5webkit, sysklogd, thrift, u-boot
  5369. 2014.05-rc3, Released May 28th, 2014
  5370. Minor fixes.
  5371. Updated/fixed packages: acl, attr, connman, dosfstools,
  5372. dropbear, dvb-apps, exim, flite, gdb, httping, hwdata,
  5373. lesstif, libnss, libv4l, lttng-babeltrace, midori, monit,
  5374. mplayer, php, python2, rdesktop, rpi-userland, ruby, samba,
  5375. samba4, slang, xbmc
  5376. Issues resolved (http://bugs.uclibc.org):
  5377. #7100: license info for package 'acl' missing
  5378. #7106: license info for package 'attr' missing
  5379. #7112: license info for package 'hwdata'
  5380. 2014.05-rc2, Released May 21st, 2014
  5381. Fixes all over the tree.
  5382. Stripping using sstrip has been deprecated.
  5383. BR2_EXTERNAL can now also be used to implement custom
  5384. filesystem types.
  5385. The newly added BR2_GRAPH_DEPTH variable to limit the depth of
  5386. the generated dependency graph has been renamed to
  5387. BR2_GRAPH_DEPS_OPTS, so additional options can be supported in
  5388. the future.
  5389. The virtual package infrastructure will now error out early
  5390. if multiple packages providing the same virtual package has
  5391. been enabled (E.G. opengl). This change requires that the
  5392. packages explicitly declare what virtual package(s) they
  5393. provide.
  5394. Updated/fixed packages: acpid, armadillo, avahi, bellagio,
  5395. btrfs-progs, cairo, clapack, directfb, duma, ecryptfs-utils,
  5396. elfutils, eudev, fbgrab, fio, flann, fluxbox, gdb, gpm,
  5397. gpu-viv-bin-mx6q, gst1-plugins-good, gst-plugins-good,
  5398. imagemagick, iprutils, ipsec-tools, jack2, libdvdnav,
  5399. libdvdread, libnss, libunwind, linux-headers, lsof, lua,
  5400. luajit, matchbox-keyboard, mesa3d, mpd, mplayer, mtr, mysql,
  5401. netsnmp, nodejs, openpowerlink, openvpn, pciutils,
  5402. php-imagick, postgresql, pulseaudio, qt5quick1, rpi-userland,
  5403. rsyslog, samba, samba4, sane-backends, sunxi-mali, systemd,
  5404. ti-gfx, tstools, udev, webkit, wpa_supplicant, xbmc,
  5405. xlib_libXpm, xserver_xorg-server, zyre
  5406. Issues resolved (http://bugs.uclibc.org):
  5407. #5396: Boot hangs when starting samba if BR2_ENABLE_LOCALE...
  5408. #7016: Git issues in resulting buildroot tar
  5409. #7094: pciutils doesn't build on Blackfin
  5410. 2014.05-rc1, Released May 13th, 2014
  5411. Fixes all over the tree and new features.
  5412. Architectures: Support for MIPS o32 ABI on MIPS-64 targets has
  5413. been removed. Building o32 ELF files for MIPS64 is an exotic
  5414. configuration that nobody should be using. If o32 is required,
  5415. then is better if it's built for MIPS 32-bit cores so only
  5416. 32-bit instructions will be used leading to a more efficient
  5417. o32 usage.
  5418. Support for the ARM A12 variant and Intel corei7.
  5419. Configs: Minnowboard and Altera SoCkit added, QEMU updates.
  5420. Bootloaders: Grub2 and gummiboot support, syslinux support
  5421. extended.
  5422. Toolchains: GCC 4.9. Glibc 2.19. Support for the musl C
  5423. library for internal and external toolchains. 4.8-R3 support
  5424. for ARC, Internal toolchain support for Aarch64 and
  5425. Microblaze. Environment variable to control debug output of
  5426. toolchain wrapper renamed to BR2_DEBUG_WRAPPER to match the
  5427. other variables. Toolchain tuple vendor name can now be
  5428. customized. Updated external Linaro ARM/Aarch64
  5429. toolchains. Added external Linaro ARMEB toolchain.
  5430. A GDB gdbinit file is now generated for external toolchains to
  5431. automatically set the correct sysroot.
  5432. Kconfig handling for minimum kernel headers version required
  5433. for packages. Now packages needing specific kernel header
  5434. features can specify these requirements in Kconfig.
  5435. Infrastructure: Support for (but disabled as it leads to
  5436. unreproducible builds) toplevel parallel builds. See the
  5437. comment at the top of Makefile for details about how to enable
  5438. it and what the problems are if you want to test it.
  5439. Python package infrastructure extended to support Python 3.x
  5440. Perl and virtual package infrastructure support added.
  5441. PRE_*_HOOKS support for all build steps.
  5442. Updated/fixed packages: acpid, agentpp, aiccu, apr, avahi,
  5443. barebox, bash, beecrypt, bellagio, binutils, boost,
  5444. boot-wrapper-aarch64, bustle, busybox, ca-certificates, cairo,
  5445. ccache, ccid, cgilua, chrony, cifs-utils, civetweb, cmake,
  5446. collectd, connman, coreutils, coxpcall, cppcms, cppzmq, crda,
  5447. cryptodev, cryptsetup, cups, czmq, dbus, dhcpdump, directfb,
  5448. dmalloc, dmraid, dnsmasq, dosfstools, dsp-tools, dtc,
  5449. dvb-apps, ebtables, ecryptfs-utils, eigen, erlang, ethtool,
  5450. evemu, evtest, f2fs-tools, fdk-aac, feh, ffmpeg, file, filemq,
  5451. flac, flot, fmtools, fping, freetype, fswebcam, gcc, gd, gdb,
  5452. gettext, giblib, git, glibc, glibmm, glib-networking, gmp,
  5453. gnutls, gpm, gpsd, gpu-viv-bin-mx6q, grep, gst1-libav,
  5454. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  5455. gst1-plugins-ugly, gst-ffmpeg, gst-fsl-plugins, gst-omx,
  5456. gst-plugins-good, gstreamer1, gvfs, harfbuzz, haveged,
  5457. hostapd, htop, httping, ifplugd, iftop, igmpproxy,
  5458. imagemagick, imlib2, imx-lib, infozip, intltool, iproute2,
  5459. ipsec-tools, ipset, jansson, jpeg, jpeg-turbo, jquery,
  5460. jquery-keyboard, jquery-ui, jquery-ui-themes, json-glib,
  5461. json-javascript, kexec, kmod, lame, lbase64, lbreakout2,
  5462. lcdproc, lftp, libao, libatasmart, libatomic_ops, libcap,
  5463. libcdio, libcec, libcgicc, libcgroup, libcurl, libdrm,
  5464. libdvdnav, libdvdread, libegl, libeio, libenca, libesmtp,
  5465. libevas, libevdev, libfribidi, libfslcodec, libfslparser,
  5466. libfslvpuwrap, libgail, libgles, libglib2, libgtk2, libhid,
  5467. libjpeg, libmbim, libmicrohttpd, libmodplug, libnftnl,
  5468. libnspr, libogg, libopenmax, libopenvg, libpcap, libplayer,
  5469. libpng, libpthread-stubs, librsvg, libsigsegv, libsocketcan,
  5470. libsoup, libtasn1, libtool, libtpl, libunwind, liburcu,
  5471. libusb, libwebsockets, libxcb, libxml2, libxmlpp, libyaml,
  5472. lighttpd, linphone, linux-firmware, linux-headers, ljsyscall,
  5473. lmbench, lsof, ltp-testsuite, ltris, lttng-babeltrace,
  5474. lttng-libust, lttng-modules, lttng-tools, lua, lua-cjson,
  5475. luacrypto, lua-ev, luaexpat, luaexpatutils, luafilesystem,
  5476. luainterpreter, luajit, lua-msgpack-native, luaposix,
  5477. luarocks, luasec, luasocket, luasql-sqlite3, lvm2, macchanger,
  5478. memstat, mesa3d, metacity, minidlna, mmc-utils,
  5479. mobile-broadband-provider-info, modem-manager, mongrel2,
  5480. monit, mpd, mplayer, msmtp, mtd, mtools, mutt, mysql, nasm,
  5481. ncurses, ne10, netatalk, netsnmp, nettle, network-manager,
  5482. newt, nfs-utils, nmap, nodejs, ntfs-3g, ntp, nut, ofono, ola,
  5483. olsr, omniorb, opencv, opengl, openpgm, openssh, openssl,
  5484. openswan, openvpn, orbit, orc, p11-kit, pango, parted,
  5485. pciutils, pcre, pcsc-lite, perf, perl, perl-xml-parser, php,
  5486. picocom, pixman, pkgconf, poppler, popt, portmap, powervr,
  5487. pppd, pptp-linux, proftpd, protobuf, protobuf-c, ptpd2,
  5488. pulseaudio, python, python3, python-bottle, python-m2crypto,
  5489. python-netifaces, python-pyasn, python-pycrypto,
  5490. python-pygame, python-pysnmp, python-pysnmp-apps,
  5491. python-pysnmp-mibs, python-serial, python-setuptools,
  5492. qextserialport, qt, qt5, qt5base, qt5connectivity,
  5493. qt5declarative, qt5graphicaleffects, qt5imageformats,
  5494. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  5495. qt5sensors, qt5serialport, qt5svg, qt5webkit, qt5x11extras,
  5496. qt5xmlpatterns, qtuio, qwt, radvd, readline, rings,
  5497. rpi-firmware, rpi-userland, rsh-redone, rsync, rsyslog, rtai,
  5498. rtmpdump, rt-tests, ruby, samba, sconeserver, scons, sdl,
  5499. sdl_image, sdl_mixer, sg3_utils, slang, smstools3, snmppp,
  5500. socat, speex, sqlcipher, sqlite, squashfs, squid, strongswan,
  5501. stunnel, sunxi-boards, sunxi-mali, sunxi-tools, sylpheed,
  5502. syslinux, sysstat, systemd, taglib, tcl, tcllib, tcpreplay,
  5503. tidsp-binaries, ti-gfx, tmux, tvheadend, tzdata, uboot,
  5504. uboot-tools, uclibc, udev, udisks, ulogd, usb_modeswitch,
  5505. usb_modeswitch_data, usbmount, util-linux, valgrind, vlc,
  5506. webkit, weston, wget, wireshark, wpa_supplicant, wsapi,
  5507. w_scan, xapp_appres, xapp_bdftopcf, xapp_beforelight,
  5508. xapp_bitmap, xapp_editres, xapp_fslsfonts, xapp_fstobdf,
  5509. xapp_iceauth, xapp_ico, xapp_mkfontscale, xapp_rgb,
  5510. xapp_rstart, xapp_sessreg, xapp_showfont, xapp_twm,
  5511. xapp_viewres, xapp_xauth, xapp_xbacklight, xapp_xcalc,
  5512. xapp_xclock, xapp_xditview, xapp_xdpyinfo, xapp_xdriinfo,
  5513. xapp_xev, xapp_xfd, xapp_xfontsel, xapp_xfs, xapp_xfsinfo,
  5514. xapp_xgc, xapp_xhost, xapp_xinit, xapp_xkbutils, xapp_xkill,
  5515. xapp_xload, xapp_xlsclients, xapp_xlsfonts, xapp_xmag,
  5516. xapp_xman, xapp_xmessage, xapp_xmodmap, xapp_xprop,
  5517. xapp_xrandr, xapp_xrdb, xapp_xrefresh, xapp_xset,
  5518. xapp_xsetroot, xapp_xsm, xapp_xstdcmap, xapp_xvidtune,
  5519. xapp_xvinfo, xapp_xwd, xapp_xwininfo, xcb-util-wm,
  5520. xdriver_xf86-input-evdev, xdriver_xf86-input-joystick,
  5521. xdriver_xf86-input-keyboard, xdriver_xf86-input-mouse,
  5522. xdriver_xf86-input-synaptics, xdriver_xf86-input-vmmouse,
  5523. xdriver_xf86-video-ark, xdriver_xf86-video-ast,
  5524. xdriver_xf86-video-ati, xdriver_xf86-video-cirrus,
  5525. xdriver_xf86-video-dummy, xdriver_xf86-video-fbdev,
  5526. xdriver_xf86-video-geode, xdriver_xf86-video-glide,
  5527. xdriver_xf86-video-glint, xdriver_xf86-video-i128,
  5528. xdriver_xf86-video-intel, xdriver_xf86-video-mach64,
  5529. xdriver_xf86-video-mga, xdriver_xf86-video-neomagic,
  5530. xdriver_xf86-video-newport, xdriver_xf86-video-nv,
  5531. xdriver_xf86-video-openchrome, xdriver_xf86-video-r128,
  5532. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  5533. xdriver_xf86-video-sis, xdriver_xf86-video-tdfx,
  5534. xdriver_xf86-video-tga, xdriver_xf86-video-trident,
  5535. xdriver_xf86-video-vesa, xdriver_xf86-video-vmware,
  5536. xdriver_xf86-video-voodoo, xenomai, xerces, xl2tp, xlib_libFS,
  5537. xlib_xtrans, xproto_xproto, xserver_xorg-server,
  5538. xutil_util-macros, zeromq, zic, zmqpp, zyre
  5539. New packages: armadillo, btrfs-progs, clapack, cosmo, dado,
  5540. dbus-triggerd, dtv-scan-tables, e2tools, eudev, exim, expect,
  5541. fetchmail, flann, flite, gnu-efi, grub2, gummiboot, heimdal,
  5542. iprutils, iptraf-ng, jack2, jquery-mobile, libee, libestr,
  5543. libgc, libgl, liblogging, libndp, libsoxr, libstrophe,
  5544. libubox, libuci, libxmlrpc, ljlinenoise, lpeg, lpty, lrandom,
  5545. lsqlite3, lua-coat, lua-coatpersistent, lua-csnappy, luajson,
  5546. lualogging, lua-messagepack, lua-testmore, lunit, lzip, lzlib,
  5547. musl, nftables, opentyrian, opentyrian-data,
  5548. perl-module-build, php-gnupg, php-imagick, php-ssh2, php-yaml,
  5549. php-zmq, postgresql, python-libconfig, python-pypcap,
  5550. python-pyrex, qdecoder, qhull, samba4, smack, tz, tzdump, ucl,
  5551. upx, vo-aacenc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons,
  5552. yaffs2utils, zlog, znc
  5553. Removed packages: crosstool-ng, python-distutilscross, vala
  5554. Issues resolved (http://bugs.uclibc.org):
  5555. #6842: Checking external toolchain for eabihf
  5556. #6956: Packaging libsoxr
  5557. #6986: Make legal-info fails on uboot versions before 2014.01
  5558. #6992: Incorrect installation rights on external kernel module..
  5559. 2014.02, Released February 27th, 2014
  5560. Minor fixes.
  5561. Updated/fixed packages: cegui06, cppdb, e2fsprogs, gcc, gdb,
  5562. gst1-plugins-bad, gstreamer, gstreamer1, haserl, imagemagick,
  5563. libpng, libxml2, lua, luajit, luarock, ncftp, openswan,
  5564. pcsc-lite, qt5connectivity, ramsmp, strongswan, vlc
  5565. Issues resolved (http://bugs.uclibc.org):
  5566. #6938: mkuser script generates wrong password for new user in..
  5567. 2014.02-rc3, Released February 25th, 2014
  5568. Minor fixes.
  5569. Updated/fixed packages: aiccu, ala-lib, alsa-utils, binutils,
  5570. cairo, coreutils, dhcpcd, distcc, efl, evas, iputils, gdb,
  5571. gpsd, gst-fsl-plugins, icu, libcec, libcgi, libplayer,
  5572. libsecret, libsepol, libsigsegv, libtool, libv4l,
  5573. linux-headers, matchbox-lib, mpg123, ncftp, opencv, pcmanfm,
  5574. pixman, pv, qt, rt-tests, sawman, sconeserver, sdl, thrift,
  5575. tvheadend, util-linux, webkit, xscreensaver
  5576. Issues resolved (http://bugs.uclibc.org):
  5577. #4706: Removing .stamp_target_installed does not trigger...
  5578. #5030: busybox built fails if we use an override src dir...
  5579. #5420: Dbus and /var/run management
  5580. #5768: Not able to build ALSA-Lib for static build
  5581. #5774: Not able to build ALSA-Utils for static build
  5582. #6542: external python modules fail to compile to pyc if...
  5583. #6764: Support for kernel signed modules
  5584. #6794: Busybox compiled from buildroot hangs on pass from...
  5585. 2014.02-rc2, Released February 20th, 2014
  5586. Fixes all over the tree. Static linking / nommu fixes and
  5587. annotations for several packages.
  5588. Updated/fixed packages: boost, busybox, collectd, coreutils,
  5589. dropbear, elfutils, feh, gcc, gst1-libav, imagemagick, iozone,
  5590. jimtcl, kexec, libvncserver, lvm2, lxc, mplayer, netsnmp, nut,
  5591. opencv, python, python3, qtuio, systemd, thrift, transmission,
  5592. uclibc, vlc, webkit
  5593. Issues resolved (http://bugs.uclibc.org):
  5594. #5450: AT91SAM9260 Bootstrap compilation problem
  5595. #5582: libiconv 1.14 failed to build
  5596. #5624: When building directfb, BR2_TARGET_LDFLAGS not used by..
  5597. #5852: [2012.11] usb_modeswitch should depends of "BR2_PACK..
  5598. #6218: binutils-2.23.2/gas fails with undefined reference to..
  5599. #6236: binutils-2.23.2/bfd fails with undefined reference to..
  5600. #6470: If the build directory is a child of /usr, the build..
  5601. #6776: systemd error: static declaration of 'execvpe' follows..
  5602. #6818: toolchainfile.cmake has absolut path references
  5603. 2014.02-rc1, Released February 11th, 2014
  5604. Fixes all over the tree and new features.
  5605. Support for external packages/defconfigs (BR2_EXTERNAL). See
  5606. user manual for details.
  5607. Cleanup of environment variable names for consistency. The
  5608. download directory location override (BUILDROOT_DL_DIR) is now
  5609. called BR2_DL_DIR. Likewise the name of the current .config is
  5610. renamed from BUILDROOT_CONFIG to BR2_CONFIG. Please update
  5611. your post build scripts if you use this! BUILD_DIR is now also
  5612. exported to the post build/image scripts.
  5613. Toolchain: GCC 4.8 fix for ARM stack corruption, reverted
  5614. uClibc pread/pwrite backport as they cause issues on certain
  5615. architectures, new Linaro and Sourcery Codebench toolchains.
  5616. x86: Support for AMD Jaguar cores, SSE4.x, SH: SH2/SH3/SH3EB
  5617. variants removed, Microblaze: Internal toolchain support
  5618. Legal infrastructure: Info is now split between host and
  5619. target packages, large number of license annotations.
  5620. Lua: selection between lua 5.1 / 5.2, luarocks support
  5621. Python: package infrastructure, many new packages.
  5622. Defconfigs: Armadeus APF51 + Zedboard added, apf27, apf28,
  5623. beaglebone, microblaze, pandaboard, qemu, raspberry pi
  5624. updated.
  5625. Updated/fixed packages: aiccu, alsa-lib, alsa-utils,
  5626. am33x-cm3, aumix, autoconf, automake, barebox, bellagio,
  5627. berkeleydb, binutils, bison, blackbox, bluez_utils, boost,
  5628. bustle, busybox, cairo, can-utils, ccache, ccid, cgilua,
  5629. cifs-utils, civetweb, cmake, collectd, connman, copas,
  5630. coreutils, coxpcall, cppzmq, cramfs, crda, cryptodev-linux,
  5631. cryptsetup, cups, czmq, dhcpcd, dhcpdump, dhrystone, dialog,
  5632. dmraid, dnsmasq, dosfstools, dropbear, dropwatch, dtc, duma,
  5633. dvb-apps, e2fsprogs, eglibc, eigen, elf2flt, erlang, ethtool,
  5634. f2fs-tools, ffmpeg, file, filemq, fio, flashrom, flex,
  5635. fluxbox, fontconfig freerdp, freetype, gadgetfs-test, gawk,
  5636. gcc, gdb, gdbm, gettext, git, glibc, gnupg, gnutls, gob2,
  5637. gpsd, grep, grub, gst-ffmpeg, gst-plugins-good,
  5638. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  5639. gst1-plugins-ugly, gstreamer, gstreamer1, gtest, icu, iftop,
  5640. imagemagick, inadyn, infozip, iozone, iproute2, iptables, iw,
  5641. jpeg, jpeg-turbo, jq, kexec, kmod, knock, lbase64, lcdapi,
  5642. lftp, libcdaudio, libcgi, libcgicc, libcuefile, libcurl,
  5643. libdmtx, libdrm, libdvdnav, libdvdread, libegl, libevent,
  5644. libexif, libfcgi, libfreefare, libgles, libglib2, libllcp,
  5645. libmicrohttpd, libmpd, libnfc, libnl, libnss, libopenmax,
  5646. libopenvg, libpcap, libpfm4, libplayer, libpng, libqmi,
  5647. libreplaygain, libroxml, libsamplerate, libsexy, libsigsegv,
  5648. libsndfile, libsoc, libtasn1, libtorrent, libtpl, libupnp,
  5649. libusb, libusb-compat, libvorbis, libxcb, libxml2, libxmlpp,
  5650. libyaml, lighttpd, linknx, linux-firmware, linux-pam, live555,
  5651. lm_sensors, lmbench, lockdev, logrotate, lrzsz, ltrace, lua,
  5652. lua-ev, lua-msgpack-native, luabitop, luaexpat, luaexpatutils,
  5653. luafilesystem, luajit, luaposix, luasec, luasocket,
  5654. luasql-sqlite3, m4, matchbox, mdadm, minicom, mongrel2, mpc,
  5655. mpd, mpg123, mplayer, mtd, mysql, lvm2, mxml, ncurses, ne10,
  5656. neard, neardal, netsnmp, netstat-nat, network-manager, nodejs,
  5657. numactl, ofone, ola, olsr, omniorb, open2300, opencv,
  5658. openpowerlink, openssh, openssl, openvpn, oprofile, opus,
  5659. opus-tools, orbit, p11-kit, parted, pcre, pcsc-lite, perl,
  5660. php, poco, poppler, powervr, protobuf-c, psplash, python,
  5661. python-bottle,
  5662. python-{crc16,distutilscross,dpkt,id3,ipy,m2crypto,mad,meld},
  5663. python-{netifaces,nfc,protobuf,pygame,pyparsing,pyro,pyzmq},
  5664. python-{serial,setuptools}, qt, qt5base, qt5connectivity,
  5665. qt5declarative, qt5graphicaleffects, qt5jsbackend,
  5666. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  5667. qt5webkit, radvd, redis, rings, rng-tools, rpcbind,
  5668. rpi-firmware, rpi-userland, rt-tests, sam-ba, samba, sawman,
  5669. sconeserver, scons, sdl, sg3_utils, snappy, snmppp,
  5670. socketcand, spice, spice-protocol, sqlcipher, sqlite, squid,
  5671. sshfs, strace, subversion, sunxi-mali, supervisor, sysklogd,
  5672. sysprof, sysstat, systemd, sysvinit, taglib, tar, tcpdump,
  5673. ti-gfx, ti-utils, tinymembench, tn5250, trace-cmd,
  5674. transmission, tvheadend, tzdata, zxing, uboot, uboot-tools,
  5675. uclibc, udev, udpcast, ulogd, urg, usb_modeswitch_data,
  5676. util-linux, vala, valgrind, vorbis-tools, wavpack, wayland,
  5677. weston, wget, wireless-regdb, wireshark, wpa_supplicant,
  5678. wsapi, xavante, xapp_xdpyinfo, xapp_xrandr, xcb-proto,
  5679. xdriver_xf86-video-intel, xenomai, xkeyboard-config, xl2tp,
  5680. xlib_lib{FS,SM,X11},
  5681. xlib_libX{au,aw,composite,cursor,damage,ext,fixes,font,i},
  5682. xlib_libX{inerama,mu,pm,randr,render,res,t,tst,v,xf86dga},
  5683. xlib_libXxf86vm, xlib_libdmx, xlib_libfontenc,
  5684. xlib_libpciaccess, xlib_xtrans, xproto_dri2proto,
  5685. xproto_{glproto,inputproto,presentproto,randrproto,videoproto},
  5686. xproto_xextproto, xproto_xproto, xutil_util-macros,
  5687. xutil_makedepend, zic, zmqpp, zxing, zsh, zyre
  5688. New packages: apitrace, avrdude, c-ares, ca-certificates,
  5689. cwiid, dbus-cpp, evemu, fping, fswebcam, gpm, gst1-libav,
  5690. haveged, intel-microcode, iucode-tools, jasper, joe, ktap,
  5691. lbreakout2, libass, libbluray, libcdio, libenca, libevdev,
  5692. libmbim, libmodplug, libnfs, libnftnl, libplist, libshairplay,
  5693. libsocketcan, ljsyscall, log4cplus, ltris, luainterpreter,
  5694. luarocks, minidlna, mmc-utils, modemmanager, mtr, net-tools,
  5695. python-configobj, python-dialog, python-json-schema-validator,
  5696. python-keyring, python-msgpack, python-posix-ipc,
  5697. python-pyasn, python-pycrypto, python-pysnmp,
  5698. python-pysnmp-apps, python-pysnmp-mibs, python-pyusb,
  5699. python-simplejson, python-tornado, python-versiontools,
  5700. rtmpdump, rtptools, smcroute, smstools3, tcpreplay, thrift,
  5701. ti-uim, tinyxml, tmux, vlc, wmctrl, xconsole
  5702. Removed packages: autoconf, automake, ccache, cpanminus, lzma,
  5703. netkitbase, netkittelnet, pkg-config, squashfs3, ttcp, xstroke
  5704. Issues resolved (http://bugs.uclibc.org):
  5705. #65: new package: dbus c++ language bindings
  5706. #769: Update configuration menu for MIPS target
  5707. #2419: Add a bundle of Lua modules
  5708. #2629: Segmentation faults and division by zero in Grub on ext2
  5709. #3811: Added auto-mount for USB and SD Card (mdev) (for 2011.05)
  5710. #4339: Allow override of DL_DIR in extract step
  5711. #4363: Make sure that copied linux and busybox defconfig are...
  5712. #4454: There should be simple way to update image, when chang...
  5713. #5024: grub fails to build for x86_64 target architecture
  5714. #5066: New-Package: net-tools
  5715. #5072: ncurses: add ncurses-progs to target
  5716. #5294: uclibc build ignores target CFLAGS and LDFLAGS
  5717. #5366: Login doesn't work with util-linux versions of login/agetty
  5718. #5378: dropbear Makefile broken
  5719. #5390: System banner - change to empty doesn't remove /etc/issue
  5720. #5780: spurious build failure because it cannot remove ubinize.cfg
  5721. #5798: ncurses-5.9 fails to compile statically
  5722. #5810: Buildroot 2012.11: Additional GCC option "-msoft-float" ...
  5723. #6080: Git fetch caching
  5724. #6092: Bootable ISO image creation seems to have stopped working..
  5725. #6272: coreutils build fails
  5726. #6434: apply-patches.sh does not work recursively
  5727. #6446: eglibc doesn't install ldconfig to target
  5728. #6484: Add c-ares
  5729. #6596: Slow bootup if mdev is chosen
  5730. #6656: Build Qt5 with ccache
  5731. #6662: internal compiler error: Segmentation fault during making..
  5732. #6722: Usage of $($(PKG)_DIR_PREFIX) is an issue with linux package
  5733. #6752: genext2fs: e2fsck must run before tunefs -U random
  5734. #6770: openssl 1.0.1f fails with ccache
  5735. #6830: Qt5: no fonts are installed
  5736. #6848: Qt5: no text shown in simple QWidget / frame-buffer setup
  5737. #6854: Update to Qt 5.2.1
  5738. 2013.11, Released November 30th, 2013:
  5739. Minor fixes.
  5740. Updated/fixed packages: apr, binutils, dbus-python, dropwatch,
  5741. ecryptfs-utils, eglibc, gdb, gpsd, grantlee, hostapd,
  5742. iptables, qlibiscsi, libnspr, libnss, libpfm4, libtool,
  5743. lua-ev, lvm2, mplayer, qt, qt5, quagga, ruby, tinymembench,
  5744. tvheadend, util-linux, wpa_supplicant
  5745. Issues resolved (http://bugs.uclibc.org):
  5746. #1279: Buildroot compiled Busybox and Coreutils LFS issues
  5747. #2995: -fstack-protector-all causes ssh to SIGSEGV
  5748. #5570: Cannot compile software on the target machine
  5749. #6428: util-linux libmount segfaults with patch from buildroot
  5750. #6500: php fails to build for armel
  5751. #6554: gdb needs to dependents on host texinfo
  5752. #6692: GNU nano fails to compile for x86_64
  5753. #6704: wpa_supplicant: fix wrong path to executable file in D-Bus
  5754. 2013.11-rc3, Released November 26th, 2013
  5755. Fixes all over the tree.
  5756. Architecture: Mark MIPS I, II, III and IV as deprecated.
  5757. Updated/fixed packages: beecrypt, dbus, e2fsprogs, libcap-ng,
  5758. libglib2, libroxml, libsigsegv, libvncserver, lxc, mdadm,
  5759. mongoose, nut, ola, omniorb, openssl, pcre, php, poco,
  5760. protobuf-c, pv, qt5base, ruby, schifra, squid, sunxi-mail,
  5761. swig, ti-gfx, tinymembench, uclibc, udisks, vim
  5762. 2013.11-rc2, Released November 18th, 2013
  5763. Fixes all over the tree.
  5764. Defconfigs: qemu_arm_versatile, qemu_arm_nuri, sheevaplug:
  5765. Adjust kernel versions.
  5766. Toolchain: avr32: fix for modern kernel headers
  5767. Bootloader: Barebox updated to 2013.10.1
  5768. Updated/fixed packages: dhcp, e2fsprogs, gst1-plugins-bad,
  5769. libcurl, libvncserver, nano, pc, qt5base, squashfs, ttcp,
  5770. wayland, wvstreams
  5771. Issues resolved (http://bugs.uclibc.org):
  5772. #3601: DHCPD S80dhcp-server startup script issues
  5773. #6320: Fix kernel compile issue if BR2_LINUX_KERNEL_CUSTOM_GIT_VERS..
  5774. #6416: Xenomai package, patch alternative
  5775. #6590: directfb-examples build failed whit linaro toolchain
  5776. 2013.11-rc1, Released November 12th, 2013
  5777. Architectures: Nios-II support, MIPS arch handling fixes
  5778. Defconfigs: cubieboard2, freescale i.MX 6sololite evk,
  5779. sabre-sd, wandboard added, rpi renamed to raspberrypi_defconfig
  5780. Toolchain: glibc support, upstream uClibc fixes, uClibc 0.9.31
  5781. for avr32, crosstool-ng backend removed, external musl
  5782. toolchain support, gcc 4.8.2, updated Linaro external
  5783. toolchains. Fortran and objective-C support deprecated,
  5784. mudflap support
  5785. Bootloaders: U-Boot: u-boot.imx support, version bumps
  5786. Linux: use kmod instead of module-init-tools
  5787. System: default to devtmpfs for /dev
  5788. Infrastructure: Make 3.82 fixes, locales generation fixes, CVS
  5789. download support, post-rsync hooks
  5790. Fs: u-boot image support for cpio
  5791. Updated/fixed packages: aircrack-ng, alsamixergui, apr,
  5792. apr-util, atk, automake, bellagio, berkeleydb, bind, binutils,
  5793. bison, boost, busybox, can-utils, ccache, ccid, cgilua,
  5794. chrony, cifs-utils, cjson, collectd, connman, conntrack-tools,
  5795. copas, cppcms, cppzmq, czmq, dash, dbus, dhcpcd, diffutils,
  5796. directfb, dmidecode, dnsmaqs, docker, dosfstools, dropbear,
  5797. dropwatch, ebtables, eglibc, elf2flt, empty, enchant, erlang,
  5798. ethtool, fbgrab, fbv, fdk-aac, feh, ffmpeg, file, findutils,
  5799. fltk, fmtools, freetype, gdk-pixbuf, gettext, git,
  5800. glib-networking, gmp, gnupg, gnutls, gpu-viv-bin-mx6q, gsl,
  5801. gstreamer, gstreamer1, gst1-plugins-{bad,base,good,ugly},
  5802. gtest, gutenprint, hplip, i2c-tools, icu, ifplugd,
  5803. imagemagick, iozone, iproute2, ipset, iptables, iw, jamvm,
  5804. jansson, jpeg-turbo, kismet, kmod, lcms2, libassuan, libcap,
  5805. libcap-ng, libcdaudio, libcec, libcue, libcurl, libdrm,
  5806. libedit, libevas, libevent, libfreefare, libfuse,
  5807. libgpg-error, libiconv, liblog4c-localtime, libmicrohttpd,
  5808. libmnl, libmodbus,
  5809. libnetfilter_{acct,conntrack,cthelper,cttimeout,log,queue},
  5810. libnfnetlink, libnl, libpng, libqmi, libqrencode, libroxml,
  5811. libsecret, libsigsegv, libsoup, libtirpc, libunwind, libusb,
  5812. libvpx, lighttpd, linphone, linux-pam, lmbench,
  5813. lockfile-progs, log4cxx, logrotate, logsurfer, ltp-testsuite,
  5814. ltrace, luacrypto, luaposix, lvm2, m4, matchbox-lib,
  5815. media-ctl, mediastreamer, minicom, minidlna, mongoose, monit,
  5816. mpc, mpd, mpg123, mplayer, mrouted, mtdev, mutt, mysql_client,
  5817. nano, ncftp, ndisc6, neard, neardal, neon, net-snmp, netatalk,
  5818. netcat, netkitbase, netperf, netplug, nettle, nfacct,
  5819. nfs-utils, ngircd, ngrep, noip, nuttcp, olsr, openssh, opkg,
  5820. oprofile, opus-tools, orc, ortp, pciutils, pcre, pcsc-lite,
  5821. perf, perl, perl-cross, php, picocom, pkgconf, polarssl,
  5822. poppler, pppd, proftpd, protobuf, proxychains-ng, pulseaudio,
  5823. pv, qemu, qt, qt5base, qt5webkit, quagga, radvd, redis,
  5824. rpi-{firmware,userland}, rrdtool, rsync, rtorrent, ruby,
  5825. samba, scons, screen, sdl_sound, ser2net, setserial,
  5826. smartmontools, socat, socketcand, sqlcipher, sqlite, squid,
  5827. stress, strongswan, stunnel, sudo, syslinux, systemd,
  5828. sysvinit, tcl, ti-gfx, time, transmission, tremor, tslib,
  5829. tstools, tvheadend, tzdata, uboot-tools, uclibc, udpcast,
  5830. uemacs, ulogd, usb_modeswitch{,_data}, util-linux, vala,
  5831. valgrind, vde2, vorbus-tools, vpnc, vsftpd, vtun, wayland,
  5832. webkit, webp, webrtc-audio-processing, weston, wget,
  5833. wireshark, wsapi, xavante, xdriver_xf86-video-geode, xenomai,
  5834. xinetd, xlib_libpthread-stubs, xl2tp, xmlstarlet,
  5835. xserver_xorg-server, xz, zeromq, zic, zmqpp
  5836. New packages: aiccu, autossh, bc, civetweb, cppdb, cryptsetup,
  5837. duma, eigen, harfbuzz, igmpproxy, iputils, jq, knock, kobs-ng,
  5838. lesstif, libcgroup, libsepol, libsoc, libssh2, luasec, luasql,
  5839. lxc, nut, ola, omniorb, openpowerlink, orbit, p910nd, psplash,
  5840. python-crc16, python-ipy, python-pyzmq, qt5sensors,
  5841. qt5serialport, qt5x11extras, snmppp, subversion, tcping,
  5842. trace-cmd, xscreensaver, zsh
  5843. Removed packages: module-init-tools
  5844. Issues resolved (http://bugs.uclibc.org):
  5845. #1138: Buildroot fails to build packages if BR2_GCC_SHARED_LIBGCC=y
  5846. #5408: qt build failure with Sourcery CodeBench ARM 2010.09
  5847. #5630: makefile error with toolchain helpers.mk
  5848. #5672: htop: remove X11 stuff
  5849. #5678: linux.mk: linux-menuconfig fails
  5850. #5696: python3 installation is too large, patches from python2 needed
  5851. #5978: Erlang does not build for arm in 2013.02-rc3
  5852. #6392: Extended ARM uImage kernel options
  5853. #6404: Buildroot's coreutils 'uname -p' reports 'Unknown' on recent..
  5854. #6428: util-linux libmount segfaults with patch from buildroot
  5855. #6452: eglibc from Linaro 2013.07 not copied to target correctly
  5856. #6566: PHP segfault when crosscompiled to mips64 - patch included
  5857. #6572: [PowerPC] Buildroot uses wrong external toolchain libraries..
  5858. #6578: udisks package broken
  5859. #6602: ebtables 64 bit kernel + 32 bit userland alignment error..
  5860. #6608: ebtables missing ethertypes - fix included
  5861. #6620: Sysvinit package missing killall5 and symlinks - patch included
  5862. #6632: CMake use host pkg-config
  5863. #6638: pkgconf doesn't download
  5864. #6644: "all" target doesn't work in out-of-tree builds
  5865. #6650: Segmentation fault when trying to build latest buildroot
  5866. #6668: iptables limit module alignment problem on mips64
  5867. 2013.08, Released August 31th, 2013:
  5868. Minor fixes.
  5869. Documentation build fixed.
  5870. Updated/fixed packages: ltrace, strongswan
  5871. 2013.08-rc3, Released August 29th, 2013:
  5872. Fixes all over the tree.
  5873. External toolchain lib32/lib64 handling, ABI name for EABIhf,
  5874. misc fixes for generatelocales, apply-patches and module
  5875. stripping.
  5876. Top level menu names reordered and renamed for clarity.
  5877. Updated/fixed packages: acl, attr, bash, dbus, directfb,
  5878. dvb-apps, kexec, kmod, libbsd, linux-fusion, mesa3d, minidlna,
  5879. openssh, openssl, pulseaudio, python-setuptools, qt5,
  5880. qt5webkit, redis, strongswan, sunxi-mali
  5881. Issues resolved (http://bugs.uclibc.org):
  5882. #6464: dbus-daemon-launch-helper needs setuid
  5883. 2013.08-rc2, Released August 16th 2013:
  5884. Documentation improvements.
  5885. External toolchains fixes.
  5886. Updated/fixed packages: aircrack-ng, bash, boost, cairo,
  5887. cppcms, eglibc, ffmpeg, gcc, git, gnupg, imagemagick, libcec,
  5888. libffi, libgcrypt, linux, linux-headers, ltrace, netatalk,
  5889. opencv, opengl, readline, samba, strongswan, sunxi-cedarx,
  5890. uclibc, udev, wayland, webkit, zeromq.
  5891. Issues resolved (http://bugs.uclibc.org):
  5892. #6440: typo in ffmpeg makefile
  5893. 2013.08-rc1, Released August 5th, 2013:
  5894. Architectures:
  5895. - improved support for floating point on ARM and Thumb/Thumb2
  5896. - support for ARM OABI removed
  5897. Toolchains:
  5898. - support added for Sourcery CodeBench ARM and MIPS 2013.05
  5899. - Linaro ARM and Aarch64 toolchains updated
  5900. - support added for the Arago ARMv5 and ARMv7 toolchains
  5901. - gcc 4.8.x version bumped
  5902. - support for installing both FDPIC and FLAT libraries on
  5903. Blackfin
  5904. - support for uClibc 0.9.31 removed,
  5905. - convert the internal toolchain backend to use the package
  5906. infrastructure
  5907. - support added for eglibc in the internal toolchain backend
  5908. - toolchain components for the ARC architecture updated and
  5909. gdb for ARC added.
  5910. - support for Blackfin in the internal toolchain fixed
  5911. Defconfigs: beaglebone_defconfig updated, new defconfig for
  5912. CubieBoard, for Olimex mx233 Olinuxino, for Calao Systems
  5913. TNY-A9G20-LPW.
  5914. A number of packages have been fixed to use the
  5915. <pkg>_CONFIG_SCRIPTS mechanism to get their <pkg>-config shell
  5916. script installed and modified properly. Licensing informations
  5917. has been added to a number of packages.
  5918. Use XZ tarballs for a number of packages.
  5919. Noticeable package changes/additions:
  5920. - The glib2/libgtk2/webkit stack has been updated to recent
  5921. versions.
  5922. - Support for Gstreamer 1.x has been added.
  5923. - OpenGL support for TI OMAP platforms has been added.
  5924. - OpenGL support for Allwinner platforms has been added.
  5925. - OpenMAX support for RasberryPi has been added.
  5926. Updated/fixed packages: acl, attr, autoconf, avahi, barebox,
  5927. bind, binutils, busybox, bwm-ng, bzip2, cifs-utils, colletctd,
  5928. cpanminus, cups, curl, dash, dbus, dhcp, directfb,
  5929. directfb-examples, dnsmasq, dosfstools, dropbear, dtc,
  5930. e2fsprogs, ed, efl, enlightenment, erlang, ethtool, fbgrab,
  5931. fftw, firmware-imx, flot, fltk, freetype, gawk, gdk-pixbuf,
  5932. gettext, gmp, gnutls, gsl, gutenprint, gvfs, gzip, haserl,
  5933. hiawatha, httping, icu, imagemagick, imlib2, imx-lib,
  5934. intltool, iozone, ipset, iptables, jquery, jquery-keyboard,
  5935. jquery-sparkline, kmod, less, libart, libcdaudio, libcgicc,
  5936. libesmtp, libftdi, libfuse, libglib2, libgtk, libgtk2, libidn,
  5937. libiqrf, liblog4c-localtime, libnspr, libnss, libpcap,
  5938. libroxml, libserial, libsigsev, libsoup, libtool, libtpl,
  5939. libvncserver, libxml2, linphone, lm_sensors, logrotate,
  5940. ltrace, lttng, luafilesystem, luajit, minicom, monit, mpg123,
  5941. mtd, mutt, mxml, neard, netatask, netsnmp, nettle,
  5942. network-manager, nodejs, nss-mdns, openssh, openswan, openvpn,
  5943. opkg, opus, pcre, perl-cross, php, pixman, poco, polarssl,
  5944. pulseaudio, pv, python, python3, qt, qt5, qt5declarative,
  5945. qt5jsbackend, qt5quick1, readline, rpi-firmware, ruby, samba,
  5946. sane-backends, sconeserver, sdl_image, sdparm, ser2net,
  5947. socketcand, sqlite, squid, strace, tcl, tcpdump, tinyhttpd,
  5948. tvheadend, tzdata, uboot, udpcast, usb_modeswitch,
  5949. usb_modeswitch_data, usbutils, webkit, wireshark, wvstreams,
  5950. xapp_luit, xapp_xmodmap, xenomai, xfsprogs, xlib_libX11, zic,
  5951. zlib.
  5952. New packages: a10disp, aespipe, am33x-cm3, cppcms, dhcpcd,
  5953. dropwatch, dtc, ecryptfs-utils, eglibc, elf2flt, fdk-aac,
  5954. gcc-final, gcc-initial, gcc-intermediate, git,
  5955. gpu-viv-bin-mx6q, gst1-plugins-bad, gst1-plugins-base,
  5956. gst1-plugins-good, gst1-plugins-ugly, gst-omx,
  5957. gst-plugin-x170, gstreamer1, jimtcl, lbase64, libassuan,
  5958. libbsd, libcec, libdvbsi, libedit, libgpgme, libqmi,
  5959. libqrencode, libsvg, libsvg-cairo, libunwind, libvpx,
  5960. linux-headers, lockdev, luabitop, luacrypto, lua-ev,
  5961. luaexpatutils, msgpack, ocrad, on2-8170-libs,
  5962. on2-8170-modules, p11-kit, pax-utils, ptpd, ptpd2,
  5963. python-pyro, ramspeed/smp, snappy, strongswan, sunxi-boards,
  5964. sunxi-cedarx, sunxi-mali, sunxi-tools, ti-gfx, tinymembench,
  5965. tree, tstools, uclibc, w_scan.
  5966. Issues resolved (http://bugs.uclibc.org):
  5967. #4718: python (built for powerpc) distutils has paths to host
  5968. compiler toolchain
  5969. #5516: appended device tree blobs on uImage fails
  5970. #6302: Versions of packages retrieved from github.com are wrong
  5971. #6308: dosfstools download link is wrong
  5972. #6326: Dropbear: Add options to allow better config for
  5973. different target devices (e.g. routers)
  5974. #6338: Wrong download link for minicom package
  5975. #6344: Wrong handling of license text files with same name and
  5976. different directory
  5977. #6374: gnutls package broken if linux cryptodev module
  5978. selected
  5979. #6410: omap3_beagle has uimage error load address error
  5980. 2013.05, Released May 31th, 2013:
  5981. Minor fixes.
  5982. External toolchain wrapper fix for if host/usr/bin is placed
  5983. in the patch.
  5984. Updated/fixed packages: acpid, at91bootstrap, czmq, elf2flt,
  5985. flex, jamvm, kmod, libplayer, libtirpc, libv4,
  5986. lttng-babeltrace, opengl, qt5jsbackend, udpcast, wvstreams
  5987. Issues resolved (http://bugs.uclibc.org):
  5988. #4868: Buildroot compile failure for toolchain/gdb-7.4/intl/reloc...
  5989. #4988: flex and m4 problems
  5990. #5912: obsolete CVS files
  5991. 2013.05-rc3, Released May 25th, 2013:
  5992. Minor fixes.
  5993. Updated/fixed packages: aircrack-ng, bellagio, boost, crda,
  5994. dvb-apps, flot, libatomic_ops, libeXosip2, libosip2, libxml2,
  5995. mongrel2, poco, portaudio, pptp-linux, tvheadend, urg, weston,
  5996. wireshark
  5997. 2013.05-rc2, Released May 15th, 2013:
  5998. Fixes all over the tree.
  5999. Default number of parallel jobs is now number of CPUs + 1.
  6000. Defconfigs: Add Telit EVK-PRO3, AT91SAM9260-EK Nand flash.
  6001. Updated/fixed packages: aircrack-ng, busybox, cairo,
  6002. classpath, curlftpfs, czmq, dbus, f2fs-tools, fan-ctrl,
  6003. filemq, gst-plugin-bad, gutenprint, hplip, json-c,
  6004. libatomic_ops, libcurl, libdrm, libglib2, libnspr, libnss,
  6005. libsha1, libsigsegv, libxcb, linknx, linux-pam, lttng-modules,
  6006. lttng-tools, matchbox-lib, mcookie, mesa3d, neon, pixman,
  6007. pulseaudio, python-nfc, qt5imageformats, quota, openssl,
  6008. sconeserver, strace, sylpheed, wvstreams,
  6009. xapp_{appres,bdftopcf,beforelight,bitmap,edires,fonttosfnt},
  6010. xapp_{fslsfonts,fstobdf,iceauth,ico,listres,luit,mkfontdir},
  6011. xapp_{mkfontscale,oclock,rgb,rstart,scripts,sessreg,setxkbmap},
  6012. xapp_{showfont,smproxy,twm,viewres,x11perf,xauth,xbacklight},
  6013. xapp_x{biff,calc,clipboard,clock,cmsdb,cursorgen,dbedizzy,ditview},
  6014. xapp_x{dm,dpyinfo,driinfo,edit,ev,eyes,f86dga,fd,fontsel,fs,fsinfo},
  6015. xapp_x{gamma,gc,host,input-calibrator,input,kbcomp,kbevd,kbprint},
  6016. xapp_x{kbutils,kill,load,logo,lsatoms,lsclients,lsfonts,mag,man},
  6017. xapp_x{message,mh,modmap,more,pr,prop,randr,rdb,refresh,set,setmode},
  6018. xapp_x{setpointer,setroot,sm,stdcmap,vidtune,vinfo,wd,wininfo,wud},
  6019. xcb-util, xcursor-transparent-theme, xdata_xbitmaps,
  6020. xdata_xcursor-themes,
  6021. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synaptics},
  6022. xdriver_xf86-input-{tslib,vmmouse,void},
  6023. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,fbdev,geode,glide},
  6024. xdriver_xf86-video-{glint,i128,intel,mach64,mga,neomagic,newport},
  6025. xdriver_xf86-video-{nv,openchrome,r128,savage,siliconmotion,sis},
  6026. xdriver_xf86-video-{tdfx,tga,trident,v4l,vesa,vmware,voodoo,wsfb},
  6027. xfont_encodings, xfont_font-adobe-{100,75}dpi,
  6028. xfont_font-utopia-{100dpi,75dpi,type1},
  6029. xfont_font-{alias,arabic-misc,bh-100dpi,bh-75dpi},
  6030. xfont_font-bh-lucidatypewriter-{100,75}dpi, xfont_font-bh-{ttf,type1},
  6031. xfont_font-bitstream-{100dpi,75dpi,type1}, xfont_font-cronyx-cyrillic,
  6032. xfont_font-{cursor,daewoo,dec,isas,jis,micro}-misc,
  6033. xfont_font-ibm-type1, xfont_font-misc-{cyrillic,ethiopic,meltho,misc},
  6034. xfont_font-{mutt,schumacher}-misc,
  6035. xfont_font-{screen-cyrillic,sony-misc,sun-misc,util},
  6036. xfont_font-winitzki-cyrillic, xfont_font-xfree86-type1,
  6037. xlib_lib{FS,ICE,SM,X11,XScrnSaver,Xau,Xaw,Xcomposite,Xcursor},
  6038. xlib_libX{damage,dmcp,ext,fixes,font,ft,i,inerama,mu,pm,randr},
  6039. xlib_libX{render,res,t,tst,v,vMC,xf86dga,xf86vm},
  6040. xlib_lib{dmx,fontenc,pciaccess,pthread-stubs,xkbfile}, xlib_xtrans,
  6041. xproto_{applewm,bigreqs,composite,damage,dmx,dri2,fixes}proto,
  6042. xproto_{fontcache,font,gl,input,kb,randr,record,render}proto,
  6043. xproto_{resource,scrnsaver,video,windowswm,xcmisc,xext}proto,
  6044. xproto_{xf86bigfont,xf86dga,xf86dri,xf86vidmode,xinerama,x}proto,
  6045. xserver_xorg-server, xutil_{makedepend,util-macros}
  6046. Readded Packages: xapp_xinit
  6047. Issues resolved (http://bugs.uclibc.org):
  6048. #5054: amd64: cannot find init - due to missing /lib64 folder
  6049. 2013.05-rc1, Released May 8th, 2013:
  6050. Architectures: ARC support, Blackfin support, FLAT binary
  6051. format, ARM: Drop old CPU variants, add fa526/626, Marvell PJ4
  6052. Toolchains: Add new Microblaze external toolchains, Linaro
  6053. ARM/Aarch64 updates, GCC 4.6.4 / 4.7.3 / 4.8.0 added to
  6054. internal toolchain, default to GCC 4.7.x. Internal
  6055. Crosstool-ng backend deprecated.
  6056. Defconfigs: Add Atmel at91sam9g45m10ek, freescale mpc8315erdb
  6057. & p1010rdb, Armadeus apf27 / apf28, Openblocks A6, Raspberry
  6058. pi, gnublin board.
  6059. FS: LZO and XZ compression methods, extra ubifs options,
  6060. ext2 rev 0/1 and ext3/4 support.
  6061. Patch handling: apply-patches now has .patch.xz support,
  6062. Patch logic reworked as discussed during Febrary dev days:
  6063. http://elinux.org/Buildroot:DeveloperDaysFOSDEM2013
  6064. <pkg>-rsync now excludes version control files.
  6065. linux: uImage load address for ARM multiplatform kernels
  6066. Infrastructure for multiple OpenGL / ES / EGL / OpenVG
  6067. providers, similar to how libjpeg / libjpeg-turbo is handled.
  6068. Infrastructure for packages to add system users.
  6069. kconfig: updated to 3.9-rc2, support make olddefconfig
  6070. Updated/fixed packages: alsa-lib, alsa-utils, apr, apr-util,
  6071. argp-standalone, at, at91bootstrap, audiofile, aumix, avahi,
  6072. bash, blackbox, bind, binutils, bison, boost, bridge-utils,
  6073. busybox, ccache, cifs-utils, cmake, collectd, connman,
  6074. conntrack-tools, cpanminus, crosstool-ng, diffutils, directfb,
  6075. directfb-examples, divine, dmalloc, dnsmasq, dosfstools,
  6076. dropbear, e2fsprogs, ebtables, eeprog, erlang, ethtool,
  6077. fb-test-app, fbset, feh, ffmpeg, file, flex, flot, foomatic,
  6078. fxload, gd, gdb, gdisk, genimage, gettext, gmp, gnuchess,
  6079. gnutls, gob2, gperf, gpsd, gstreamer, haserl, hiawatha, htop,
  6080. httping, icu, inotify-tools, intltool, iproute2, ipset,
  6081. iptables, iw, jpeg, jquery, jquery-{sparkline,validation},
  6082. json-c, kbd, kexec, kismet, kmod, lcdproc, libarchive,
  6083. libatasmart, libcap, libconfig, libconfuse, libcurl, libdrm,
  6084. libeet, libev, libevas, libeXosip2, libffi, libfribi, libfuse,
  6085. libgcrypt, libglib2, libgtk2, libid3tag, libmicrohttpd,
  6086. libnetfilter_acct, libnetfilter_conntrack, libnl, libpcap,
  6087. libplayer, libsigc, libv4l, libxcb, linenoise, linux-pam,
  6088. lm_sensors, ltp-testsuite, luajit, lzop, madplay, make, mdadm,
  6089. mediastreamer, memtester, mesa3d,
  6090. mobile-broadband-provider-info, monit, mpd, mpfr, mpg123,
  6091. mrouted, msmtp, nbd, ncurses, ndisc6, neard, neardal, neon,
  6092. netperf, netsnmp, nettle, nfacct, ntfs-3g, ofono, olsr,
  6093. omap-u-boot-utils, openssh, openssl, openswan, openvpn,
  6094. oprofile, orc, patch, pciutils, pcre, perl, php, poco,
  6095. polarssl, proftpd, psmisc, pulseaudio, python,
  6096. python-{bottle,netifaces,serial,setuptools}, qt, quagga,
  6097. quota, radvd, rpi-firmware, rpi-userland, rt-tests, sam-ba,
  6098. samba, sawman, sdl, ser2net, smartmontools, socat, socketcand,
  6099. speex, squid, stress, stunnel, sudo, syslinux, sysstat,
  6100. sysvinit, tcl, tcprelay, tinyhttpd, tslib, tvheadend,
  6101. uboot-tools, udev, ulogd, util-linux, vala, vtun, webkit,
  6102. xapp_{iceauth,luit,makefontscale,sessreg,setxkbmap,smproxy},
  6103. xapp_{xauth,xcmsdb,xdpyinfo,xev,xgamma,xhost,xinput,xkbcomp},
  6104. xapp_{xkbevd,xlsatoms,xlsclients,xmodmap,xpr,xprop,xrandr,xrdb},
  6105. xapp_{xset,xwd,xwininfo}, xcb-{proto,util},
  6106. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synptics},
  6107. xdriver_xf86-input-{tslib,vmmouse,void},
  6108. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,geode,glide,glint},
  6109. xdriver_xf86-video-{i128,intel,mach64,mga,neomagic,newport},
  6110. xdriver_xf86-video-{openchrome,r128,savage,siliconmotion,sis},
  6111. xdriver_xf86-video-{tdfx,trident,vesa,vmware,wsfb}, xenomai,
  6112. xfont, xinetd, xkeyboard-config, xlib_lib{FS,ICE,SM,X11},
  6113. xlib_libX{scrnSaver,au,aw,cursor,dmcp,ext,fixes,font,ft,i},
  6114. xlib_libX{inerama,mu,pm,randr,res,tst,v,vMC,xf86dga,xf86vm},
  6115. xlib_lib{dmx,fontenc,pciaccess,xkbfile}, xlib_xtrans,
  6116. xproto_{applevm,bigreqs,dri2,fonts,gl,input,kbd,record}proto,
  6117. xproto_{resource,scrnsaver,xcmisc,xext,x}proto,
  6118. xserver_xorg-server, xutil_makedepend, xz, zeromq
  6119. New packages: aircrack-ng, bcusdk, chrony, crda,
  6120. cryptodev-linux, cppzmq, czmq, dtach, enscript, exfat,
  6121. exfat-utils, f2fs-tools, fan-ctrl, filemq, foomatic-filters,
  6122. genimage, genpart, glibmm, gnuplot, gtest, gutenprint, hplip,
  6123. iozone, jansson, jhead, jquery-keyboard, jquery-ui,
  6124. jquery-ui-themes, json-glib, json-javascript, lcms2, libpfm4,
  6125. libpthsem, libserial, libsigsegv, libtasn1, libwebsockets,
  6126. libxkbcommon, libxml++, linknx, log4cxx, mongoose, mongrel2,
  6127. mtools, ne10, nmap, nodejs, openobex, openpgm, poppler,
  6128. protobuf-c, python-m2crypto, python-thrift, qjson, qt5base,
  6129. qt5declarative, qt5graphicaleffects, qt5imageformats,
  6130. qt5jsbackend, qt5multimedia, qt5quick1, qt5script, qt5svg,
  6131. qt5webkit qt5xmlpatterns, rapidjson, redis, swig, texinfo,
  6132. tzdata, urg, ussp-push, wayland, webp, weston, wireless-regdb,
  6133. wireshark, wvdial, wvstreams, xcb-util-image, xcb-util-wm,
  6134. xcursor-transparent-theme, zic, zmqpp, zyre
  6135. Removed packages: microperl, ocf-linux, xapp_xinit,
  6136. xapp_xplsprinters, xapp_xprehashprinterlist,
  6137. xfont_font-bitstream-speedo,
  6138. xlib_lib{Xfontcache,XprintAppUtil,XprintUtil,Xp,oldX,xkbui},
  6139. xproto_{print,xf86rush}proto
  6140. Deprecated packages: vala
  6141. Issues resolved (http://bugs.uclibc.org):
  6142. #1291: Add support for Faraday 526 arm processor (fa526)
  6143. #2683: cups does not install correctly to target
  6144. #3313: mesa3d fails to build
  6145. #5186: initramfs/cpio should support lzo compression
  6146. #5636: agetty - cannot get controlling tty error - need updated...
  6147. #5906: collectd client headers not exported
  6148. #5966: bison unnecessarily required as build dependency
  6149. #6140: --enable-fileinfo not applied for php package
  6150. #6164: openvpn usage of ip tool from Busybox
  6151. 2013.02, Released February 28th, 2013:
  6152. Misc manual updates.
  6153. Updated/fixed packages: busybox, collectd, flashbench,
  6154. libgtk2, libupnp, mii-diag, quota
  6155. 2013.02-rc3, Released February 26th, 2013
  6156. Minor fixes.
  6157. Updated/fixed packages: conntrack-tools, dialog,
  6158. enlightenment, haserl, keyutils, libfif, libmad,
  6159. linux-firmware, linux-fusion, matchbox-desktop, matchbox-wm,
  6160. ruby, spawn-fcgi, vtun
  6161. Issues resolved (http://bugs.uclibc.org):
  6162. #5960: fusion.ko driver does not install to target rootfs
  6163. 2013.02-rc2, Released February 19th, 2013
  6164. Fixes all over the tree.
  6165. Various manual updates and fixes.
  6166. Updated/fixed packages: busybox, collectd, gesftpserver,
  6167. glib-networking, gnutls, inotify-tools, libcurl, libffi,
  6168. libglib2, libtorrent, libvorbis, neard, network-manager,
  6169. ntfs-3g, openssl, qt, rpi-userland, rtorrent, thttpd, vim.
  6170. Issues resolved (http://bugs.uclibc.org):
  6171. #5906: collectd client headers not exported
  6172. 2013.02-rc1, Released February 10th, 2013
  6173. Toolchain: Crosstool-ng 1.17.0, default to GCC 4.6.3, target
  6174. libraries install fixed. Add Linaro ARM
  6175. 2012.11/2012.12/2013.01, AArch64 12.11/12.12/13.01. Sourcery
  6176. CodeBench MIPS 2012.03/09. Infrastructure to warn about
  6177. missing 32bit support for binary toolchains. Toolchain wrapper
  6178. is now relocatable. Add GDB 7.5.1 / Remove 6.8 / 7.0 /
  6179. 7.1. Deprecate uClibc 0.9.31.
  6180. Architecture: Xtensa fixes, add missing powerpc variants, arm
  6181. 1136jf-s rev1, add A5/A15, neon support toggle, OABI
  6182. deprecated. Sparc: drop old unused variants
  6183. Bootloaders: At91bootstap: fix upstream URL, Barebox: add
  6184. 2012.12/2013.01/2013.02, remove 2012.08/09/10, lzop fixes,
  6185. environment image support, U-Boot: add 2013.01.01
  6186. Linux: fix appended dtb handling for v3.8+ kernels, support
  6187. multiple device trees
  6188. Defconfigs: calao USB-A9260, snowball, QEMU PPC440 on ML507
  6189. board, QEMU ARM Exynos4210, Kernel version in QEMU defconfigs
  6190. updated, at91rm9200df: misc fixes. Lock kernel headers to
  6191. match kernel.
  6192. Infrastructure: Git download fixes. Toolchain make target
  6193. renamed from 'cross' to 'toolchain'. Eclipse integration
  6194. support. Option to set root password, post image scripts,
  6195. config scripts handling.
  6196. Updated/fixed packages: alsa-lib, argp-standalone, argus,
  6197. arptables, atk, audiofile, axel, beecrypt, bind, bison,
  6198. bluez_utils, boost, cairo, can-utils, bmon, boa, busybox,
  6199. cairo, ccache, cdrkit, cifs-utils, cjson, cmake, collectd,
  6200. connman, coreutils, cpanminus, cups, dbus, dhcp, dialog,
  6201. diffutils, directfb, distcc, divine, dnsmasq, docker,
  6202. dosfstools, dstat, e2fsprogs, ebtables, ed, empty, ethtool,
  6203. expedite, fbset, fbv, ffmpeg, flex, fltk, fluxbox, freetype,
  6204. gadget-test, gawk, gdb, genext2fs, gettext, giblib,
  6205. glib-networking, gmp, gmpc, gnupg, gnutls, gpsd,
  6206. gst-plugins-{bad,base,good}, gstreamer, gzip, haserl, hdparm,
  6207. heirloom-mailx, hiawanta, hostapd, icu, imagemagick, imlib2,
  6208. inadyn, infozip, iproute2, ipset, iptables, iw, jpeg, jquery,
  6209. jquery-sparklines, jqeury-validation, kismet, kmod, lame,
  6210. libao, libcap, libcurl, libdvdnav, libdvdread, libecore,
  6211. libedbus, libedje, libeet, libefreet, libeina, libeio,
  6212. liberation, libelementary, libembryo, libethumb, libev,
  6213. libevas, libffi, libfribidi, libfuse, libgcrypt, libglib2,
  6214. libgpg-error, libgtk2, libhid, libidn, libmicrohttpd, libmpd,
  6215. libnl, libnspr, libnss, libogg, libpcap, libplayer, libpng,
  6216. libroxml, librsvg, libseccomp, libsigc, libsndfile, libungif,
  6217. libupnp, liburcu, libusb-compat, libvncserver, libvorbis,
  6218. libxml2, libxslt, lighttpd, links, linux-firmware,
  6219. linux-fusion, ltp-testsuite, ltrace,
  6220. lttng-{babel,libust,modules,tools}, lvm2, lua, luajit, lzop,
  6221. matchbox-{desktop,lib}, mdadm, metacity, midori, minicom, mpd,
  6222. mpfr, mplayer, mtd, mysql_client, ncurses, neon, netatalk,
  6223. networkmanager, nspr, ntfs-3g, nuttcp, ofone, olsr, openssl,
  6224. openvpn, opkg, oprofile, opus, opus-tools, orc, ortp, pango,
  6225. pciutils, pcmanfm, pcre, pcsc-lite, perl, php, pixman,
  6226. pkgconf, polarssl, pptp-linux, proxychains, pulseaudio,
  6227. python, python3, qemu, qextserialport, qt, quagga, radvd,
  6228. readline, rng-tools, rt-tests, rubix, ruby, sam-ba, samba,
  6229. sane-backends, sconeserver, scons, screen, sdl, sdl_gfx,
  6230. sdl_mixer, sdl_ttf, sdparm, sed, ser2net, smartmontools,
  6231. speex, sqlite, squid, sshfs, strace, sudo, sylpheed, tn5250,
  6232. taglib, tar, torsmo, transmission, tslib, uboot-tools, ulogd,
  6233. usb_modeswitch, util-linux, valgrind, vim, vsftpd, wavpack,
  6234. webkit, wipe, wireless_tools, wpa_supplicant, xapp_xinit,
  6235. xapp_xinput-calibrator, xapp_xman, xapp_xmh, xlib_libX11,
  6236. xlib_libXdmcp, xlib_libXft, xlib_libpthread-stubs,
  6237. xlib_xtrans, xproto_xcmiscproto, xproto_xextproto,
  6238. xserver_xorg-server, xstroke, xvkbd, xz
  6239. New packages: b43-firmware, b43-fwcutter, bustle,
  6240. cache-calibrator, cegui06, celt051, classpath, curlftpfs,
  6241. dvb-apps, dvbsnoop, elfutils, enlightenment, firmware-imx,
  6242. flashbench, gd, gesftpserver, gst-fsl-plugins, httping, iftop,
  6243. imx-lib, jamvm, jpeg-turbo, keyutils, libatasmart, libcofi,
  6244. libebml, libevas-generic-loaders, libfslcodec, libfslparser,
  6245. libfslvpuwrap, libgsasl, libiscsi, libmatroska, libmcrypt,
  6246. libmhash, libqwt, libseccomp, libsha1, linenoise, mcrypt,
  6247. media-ctl, ncdu, neard, neardal, nettle, perf, polkit,
  6248. proxychains, python-bottle, python-pyparsing, rpi-firmware,
  6249. rpi-userland, sg3_utils, slirp, snowball-hdmiservice, spice,
  6250. spice-protocol, tcllib, tvheadend, udisks, usbredir
  6251. ux500-firmware, vde2, xcb-utils-keysyms, yavta,
  6252. zd1211-firmware
  6253. Removed packages: customize, xdriver_xf86-input-{acecad,aiptek},
  6254. xdriver_xf86-video-{apm,chips,i740,rendition,s3,s3virge,sisusb},
  6255. xdriver_xf86-video-sun{cg14,cg3,cg6,ffb,leo,tcx},
  6256. xdriver_xf86-video-{tsend,xgi,xgixp}
  6257. Deprecated packages: xstroke
  6258. Issues resolved (http://bugs.uclibc.org):
  6259. #4237: building shared openssl w/-Os fails due to gcc bug
  6260. #5690: python3 does not obey to BR2_PACKAGE_PYTHON3_PYC_ONLY=y
  6261. #5602: python3 should install a "python" symbolic link
  6262. #5846: Extra slash added to last slash in URL
  6263. 2012.11.1, Released January 3rd, 2013:
  6264. Toolchain: Fixed non-largefile builds on recent Ubuntu
  6265. versions.
  6266. Arch: fix missing x86/generic handling, Build for Xtensa with
  6267. longcalls option.
  6268. Updated/fixed packages: dosfstools, qt
  6269. 2012.11, Released December 2nd, 2012:
  6270. Git shallow clone fix for older git version.
  6271. Updated/fixed packages: ctuio, libtool
  6272. Issues resolved (http://bugs.uclibc.org):
  6273. #5726: List all the available hook points
  6274. 2012.11-rc2, Released November 30th, 2012:
  6275. Minor fixes around the tree.
  6276. Various manual updates and fixes.
  6277. Add checks for legacy features.
  6278. Updated/fixed packages: acpid, alsa-lib, arptables, binutils,
  6279. busybox, ccache, cjson, cramfs, directfb, flex, fluxbox, gdb,
  6280. hiawatha, igh-ethercat, imagemagick, imlib2, lcdproc,
  6281. libdaemon, libecore, libhid, libmad, libpcap, libsigc, libusb,
  6282. linux-fusion, matchbox, ocf-linux, owl-linux, python, rrdtool,
  6283. scons, strace, sylpheed
  6284. Issues resolved (http://bugs.uclibc.org):
  6285. #5732: Error : package/alsa-lib/alsa-lib.mk
  6286. 2012.11-rc1, Released November 17th, 2012
  6287. Fixes all over the tree and new features.
  6288. Defconfigs: use u-boot 2012.10 on at91 and beaglebone,
  6289. sheevaplug + qemu: bump kernel version, add qemu-mips64-malta
  6290. + nitrogen6x defconfigs.
  6291. Bootloaders: add u-boot 2012.07/10, ais target format, add
  6292. barebox 2012.08/09/10/11, linker overlap issue fix for
  6293. at91bootstrap, mxs-bootlets updated for new Barebox versions.
  6294. Toolchains: binutils 2.23.1, gcc 4.7.2, default to gcc 4.6.x,
  6295. Codebench arm/sh/x86 2012.03/09, Linaro 2012.08/09/10.
  6296. Libtirpc support for modern glibc variants. Toolchain on
  6297. target has been deprecated.
  6298. Initial Aarch64 support, Xtensa support re-added.
  6299. Infrastructure: Use shallow git clone when possible, use
  6300. tarballs rather than git URLs for github. Moved to pkgconf
  6301. rather than pkg-config. System directory added, default
  6302. skeleton/device tables moved. More than 1 post-build script
  6303. can now be used. output/target now contains a
  6304. THIS_IS_NOT_YOUR_ROOT_FILESYSTEM warning, to help people
  6305. understand how to (not) use it.
  6306. Manual has been reworked and extended.
  6307. Legal-info: Lots of package annotations, CSV file fixes,
  6308. _LICENSE / _REDISTRIBUTE splitup, per-package hooks.
  6309. Updated/fixed packages: acpid, alsa-lib, alsa-utils,
  6310. alsamixergui, attr, autoconf, automake, bash, bind, binutils,
  6311. bison, blackbox, bluez-utils, busybox, cairo, can-utils,
  6312. cifs-utils, cjson, cmake, collectd, connman, conntrack-tools,
  6313. coreutils, cups, cvs, dbus, dhcp, directfb, dmalloc, dnsmasq,
  6314. dropbear, e2fsprogs, ethtool, fbdump, feh, fftw, file,
  6315. flashrom, fluxbox, gdb, gdisk, gdk-pixbuf, genext2fs, gettext,
  6316. gnutls, gpsd, gqview, grep, gsl, gst-plugins-{bad,good},
  6317. hdparm, hiawatha, hostapd, input-tools, iproute2, ipset,
  6318. iptables, iw, json-c, kexec, kmod, lcdproc, leafpad, less,
  6319. libcurl, libdrm, libdvdnav, libdvdread, libffi, libfuse,
  6320. libglib2, libhid, liblockfile, libmad, libmbus, libmnl,
  6321. libnetfilter_{acct,conntrack,cthelper,cttimeout,queue},
  6322. libnfc, libnfc-llcp, libnfnetlink, libnl, libnspr, libnss,
  6323. libpcap, libplayer, libtool, libtorrent, liburcu, libv4l,
  6324. libxcb, libxml2, libxslt, links, linux-firmware, lm-sensors,
  6325. lmbench, lockfile-progs, logrotate, lshw, lsof,
  6326. lttng-babeltrace, lttng-tools, lua, luajit, mesa3d, microperl,
  6327. mii-diag, module-init-tools, mpc, mpd, mpg123, mplayer,
  6328. mtd-utils, mysql_client, nbd, ncurses, netatalk, netkitbase,
  6329. netkittelnet, netsnmp, newt, nfs-utils, openntpd, openssh,
  6330. openssl, opkg, patch, pciutils, pcre, php, poco, polarssl,
  6331. popt, portmap, pppd, procps, pulseaudio, python, python-nfc,
  6332. python-protobuf, qt, quota, rp-pppoe, rtorrent, sam-ba, samba,
  6333. scons, sdl_gfx, smartmontools, sqlite, squid, strace, sudo,
  6334. sylpheed, tcpdump, tremor, ttcp, tiff, unionfs,
  6335. usb_modeswitch, usbutils, util-linux, vala, valgrind, vpnc,
  6336. vsftpd, webkit, wget, which, wpa_supplicant, x11vnc, xapp_*,
  6337. xdriver_*, xenomai, xfont_*, xinetd, xl2tp, xlib_*, xlsclient,
  6338. xproto_*, xserver_xorg-server, xutil_util-macros, xz, zeromq
  6339. New packages: arptables, at91bootstrap3, boot-wrapper-aarch64,
  6340. ccid, cpanminus, cpuload, erlang, evtest, fb-test-apps,
  6341. fxload, gdbm, gnupg, googlefontdirectory, grantlee, gsl,
  6342. lcdapi, liblo, liblog4c-localtime, libtirpc, linux-pam,
  6343. lua-msgpack-native, macchanger, mtdev, mtdev2tuio, nfacct,
  6344. opus, opus-tools, pcsc-lite, perl, pkgconf, python-meld3,
  6345. python3, qemu, qextserialport, qtuio, rpcbind, schifra,
  6346. sconeserver, supervisor, time, ulogd, usb_modeswitch_data,
  6347. yasm
  6348. Deprecated packages: netkitbase, netkittelnet
  6349. Issues resolved (http://bugs.uclibc.org):
  6350. #807: [PATCH] samba - make iconv and smbd optional
  6351. #3049: binutils have a sysroot bug in ld
  6352. #5330: update vsftpd to 3.0.0
  6353. #5486: libglib2 build fails on: libs/libglib-2.0.so: undefined...
  6354. #5666: Fails to build python 2.7.2 for 2440 arm
  6355. 2012.08, Release August 31th, 2012
  6356. Updated/fixed packages: microperl, cups, luajit, rrdtool,
  6357. prboom, oprofile.
  6358. Added license information for: sqlite.
  6359. Changed the source URLs of all packages located on Sourceforge
  6360. in order to use the automatic mirror selection URL
  6361. downloads.sourceforge.net, and get rid of the
  6362. BR2_SOURCEFORGE_MIRROR option.
  6363. 2012.08-rc3, Released August 25th, 2012
  6364. Updated/fixed packages: libglib2, netsnmp, freetype, libfuse,
  6365. libpng, x11vnc, zlib, gpsd, ifplugd, bash, distcc.
  6366. Added license informations for: barebox, grub, syslinux,
  6367. uboot, xloader, yajl, zlib, zxing, alsa-lib, alsa-utils,
  6368. faad2, nano, fbdump, rsync, librsync, fontconfig,
  6369. inotify-tools,
  6370. 2012.08-rc2, Released August 15th, 2012
  6371. Updated/fixed packages: imagemagick, sudo, crosstool-ng.
  6372. Added license informations for: mxml, nanocom, empty, expat,
  6373. lua, lucjson, xinetd, cjson, luaexpat, lmbench, bwm-ng,
  6374. input-event-daemon, luajit, cgilua, copas, coxpcall,
  6375. luafilesystem, luasocket, rings, wsapi, xavante, libtpl,
  6376. avahi, busybox, libfcgi, ifplugd, libcgicc, libcurl,
  6377. libdaemon, libdnet, libgpg-error, libpcap, libpng, lighttpd,
  6378. mtd, openssl, psmisc, socat, spawn-fcgi.
  6379. Fixes to Microblaze external toolchains
  6380. configuration. Improvements of the pkg-stats
  6381. script. Out-of-tree fix for the graph-depends script.
  6382. Kernel headers version bump.
  6383. 2012.08-rc1, Released August 1st, 2012
  6384. Fixes all over the tree and new features.
  6385. Integration of a legal information reporting infrastructure,
  6386. which allows to generate detailed informations about the
  6387. licenses and source code of all components of a system
  6388. generated by Buildroot. License information will progressively
  6389. be added on packages.
  6390. Default configuration files added for Calao-systems USB-A9263
  6391. and Calao-systems USB-A9G20-LPW.
  6392. External toolchains update: allow download of a custom
  6393. toolchain, add Linaro 2012.05 and 2012.06 for ARM, add
  6394. Blackfin toolchain 2012R1-BETA1, add Sourcery CodeBench MIPS
  6395. 2011.09.
  6396. Allow the restriction of downloads to the primary site only.
  6397. This is useful for project developers who want to ensure that
  6398. the project can be built even if the upstream tarball
  6399. locations disappear.
  6400. Add a 'System configuration' choice to select between 3
  6401. different init systems: Busybox init, SysV init and Systemd
  6402. init.
  6403. Cleanups to the package infrastructure. The visible change to
  6404. developers is that $(eval $(call AUTOTARGETS)) is now $(eval
  6405. $(autotools-package)), and similarly for other package
  6406. infrastructures and host packages. Refer to the documentation
  6407. for details.
  6408. By default, automatic detection of the number of compilation
  6409. jobs to use, depending on the number of CPUs available.
  6410. Improvements to generate systems with static libraries only
  6411. (infrastructure and package fixes).
  6412. Add proper support in the Linux kernel package to generate
  6413. Device Tree Blobs or combined Device Tree / Kernel
  6414. images. This will be useful on Microblaze, PowerPC and ARM,
  6415. which are architectures making extensive use of the Device
  6416. Tree.
  6417. Updated/fixed packages: audiofile, autoconf, automake, axel,
  6418. barebox, bash, beecrypt, berkeleydb, bind, bison, bluez_utils,
  6419. bonnie, boost, busybox, bsdiff, bwm-ng, bzip2, cifs-utils,
  6420. cgilua, cmake, connman, conntrack-tools, crosstool-ng, cups,
  6421. dbus, dhcp, dnsmasq, e2fsprogs, eeprog, ethtool, faad2, fbv,
  6422. ffmpeg, freetype, gmp, gnutls, gob2, gpsd, grep,
  6423. gst-plugins-base, gst-plugins-good, gzip, hiawatha, hostapd,
  6424. htop, icu, igh-ethercat, imagemagick, input-tools, iostat,
  6425. iproute2, ipset, iptables, iw, kmod, less, libcap, libgci,
  6426. libconfig, libcurl, libelf, libevas, libeXosip2, libexif,
  6427. libfuse, libidn, libmad, libmbus, libmnl,
  6428. libnetfilter-conntrack, libnl, libnspr, libnss, libogg,
  6429. libosip2, libpcap, libpng, libroxml, liburcu, libusb, libxml2,
  6430. libxslt, lighttpd, linux, ltrace, lttng-libust, lttng-modules,
  6431. lttng-tools, lua, m4, memtester, midori, mii-diag,
  6432. module-init-tools, mpfr, mpg123, mrouted, msmtp, mtd, mxml,
  6433. mysql_client, nasm, nbd, ncurses, nfs-utils, opencv, openocd,
  6434. openssl, pciutils, php, polarssl, portaudio, pppd,
  6435. pthread-stubs, pulseaudio, qt, quagga, quota, radvd, rpm,
  6436. rrdtool, samba, sam-ba, scons, sdl_gfx, sdl_sound, speex,
  6437. sqlite, squashfs, squid, sudo, synergy, syslinux, systemd,
  6438. tar, tcpdump, tcpreplay, udev, usbutils, valgrind, wget,
  6439. wpa_supplicant, wsapi, xavante, xserver_xorg-server, zlib
  6440. New packages: cjson, collectd, dfu-util, dmidecode, elftosb,
  6441. fbterm, flashrom, freerdp, inadyn, libfreefare,
  6442. libnetfilter_cttimeout, libnfc, libnfc-llcp, liboping,
  6443. libtorrent, linphone, logsurfer, lshw, luacjson, luaexpat,
  6444. luajit, mediastreamer, mobile-broadband-provider-info, monit,
  6445. mxs-bootlets, nanocom, nss-mdns, ofone, omap-u-boot-utils,
  6446. opkg, ortp, owl-linux, python-id3, python-nfc, quota,
  6447. ramspeed, rtorrent, sound-theme-borealis,
  6448. sound-theme-freedesktop, sysprof, webrtc-audio-processing,
  6449. xinetd, zxing
  6450. Issues resolved (http://bugs.uclibc.org):
  6451. #1315: Allow use of older external toolchains without sysroot
  6452. support [won't fix]
  6453. #5276: Hiawatha needs to manage IPV6 if so [fixed]
  6454. #5360: buildroot fails when building "host-libglib2 2.30.2
  6455. Building" [won't fix, upstream problem]
  6456. #5384: Can't build packages relying on gets on newer glibc
  6457. [fixed]
  6458. 2012.05, Released May 30th, 2012:
  6459. Updated/fixed packages: busybox, netsnmp, pptp-linux
  6460. 2012.05-rc3, Released May 25th, 2012:
  6461. Minor fixes around the tree.
  6462. Infra: Fix for DOWNLOAD macro when using primary mirrors with
  6463. scp targets.
  6464. Toolchain: Kernel headers 3.2.18 / 3.3.7.
  6465. Updated/fixed packages: binutils, bison, busybox, cifs-utils,
  6466. gnuchess, gpsd, iperf, libmpeg2, mtd, ntfs-3g, oprofile,
  6467. xserver-xorg
  6468. 2012.05-rc2, Released May 18th, 2012:
  6469. Fixes all over the tree.
  6470. Toolchain: uClibc: Use 0.9.33.2, Crosstool-ng: fix gperf
  6471. dependency, disable decimal floats support, Linux 3.2.17 /
  6472. 3.3.6 kernel headers. Fix sysroot copy handling for toolchains
  6473. without C++ support.
  6474. Updated/fixed packages: apr, apr-util, ccache, dnsmasq,
  6475. heirloom-mailx, gdb, ndisc6, opencv, openssl, socat, vala
  6476. 2012.05-rc1, Released May 10th, 2012:
  6477. Fixes all over the tree and new features.
  6478. Use /etc/os-release for version info rather than
  6479. /etc/br-version.
  6480. CMake toolchain file moved to $HOST_DIR/usr/share/buildroot.
  6481. Apply-patches.sh: cleanups, archived patches handling fixes,
  6482. support series files.
  6483. Defconfigs: beaglebone, mx53qsb, pandaboard, qemu configs for
  6484. arm-vexpress/microblaze/ppc-mpc88544ds, use 3.2.x for
  6485. atngw100, use 3.3.x for qemu configs.
  6486. Menu structure: Libraries moved out of multimedia section
  6487. Atom processor support. Prescott fix, blackfin ABI fix,
  6488. Microblaze architecture support (using ext toolchain). Cleanup
  6489. architecture names, deprecate Xtensa support.
  6490. Toolchain: Add GCC 4.4.7, 4.6.3, 4.7.0. uClibc 0.9.33.1,
  6491. default to uClibc 0.9.33.x, enable
  6492. UCLIBC_SUPPORT_AI_ADDRCONFIG by default, static and 64bit
  6493. fixes for external toolchains, linaro ext toolchains, new
  6494. sourcery codebench ext toolchains, GDB 7.4.1, crosstool-ng
  6495. 1.15.2.
  6496. Bootloaders: U-Boot: add 2012.04.01, SPL and u-boot.img
  6497. support. Barebox: add 2012.04, remove 2011.12.
  6498. Updated/fixed packages: alsa-lib, alsa-utils, at, atk, avahi,
  6499. barebox, berkeleydb, bind, bluez_utils, boost, busybox,
  6500. can-utils, ccache, cifs-utils, coreutils, cups, dbus, dhcp,
  6501. directfb, dnsmasq, doom-wad, dosfstools, e2fsprogs, expat,
  6502. fakeroot, feh, ffmpeg, file, fis, freetype, gamin, gawk,
  6503. gdk-pixbuf, gettext, giblib, glib-networking, gmp, gnutls,
  6504. gpsd, grep, gstreamer, gst-plugins-{bad,base,good,ugly},
  6505. haserl, hdparm, imagemagick, iproute2, iptable, iw, kexec,
  6506. kmod, lame, libaio, libarchive, libatomic_ops, libconfig,
  6507. libcurl, libdvdnav, libdvdread, libedbus, libethumb, libffi,
  6508. libfuse, libglib2, libgtk2, libhid, libmad, libmbus, libmpeg2,
  6509. libnl, libplayer, libpng, libsigc, libsoup, libupnp, liburcu,
  6510. libusb, libusb-compat, libxml2, libxml-parser-perl, libxslt,
  6511. lighttpd, linux-firmware, linux-fusion, lite, lsof, ltrace,
  6512. lttng-libust, lua, m4, makedevs, microperl, mpd, mpfr, mpg123,
  6513. mrouted, mtd, mysql_client, nbd, ncftp, ncurses, neon,
  6514. netsnmp, network-manager, nfs-utils, ngrep, ntfs-3g, openntpd,
  6515. openssh, openssl, parted, pango, pcre, php, pixman, poco,
  6516. psmisc, pulseaudio, python, qt, quagga, radvd, rpm, rsync,
  6517. ruby, samba, sam-ba, sane-backends, sawman, screen, sdl_net,
  6518. smartmontools, speex, sqlite, squashfs3, squid, sshfs, sudo,
  6519. syslinux, sysstat, taglib, tcpdump, tftp-hpa, transmission,
  6520. tiff, tinyhttpd, uboot-tools, udev, uemacs, unionfs, usbutils,
  6521. util-linux, vala, valgrind, vim, vsftpd, wget, wipe,
  6522. wpa_supplicant, xdriver_xf86-{input-vmmouse,video-fbdev},
  6523. xfsprogs, zlib
  6524. New packages: apr, apr-util, audiofile, bellagio,
  6525. conntrack-tools, empty, fmtools, glib-networking,
  6526. heirloom-mailx, hiawatha, latencytop, lcdproc, libcap-ng,
  6527. libdmtx, libfcgi, libnetfilter_conntrack, libnfnetlink,
  6528. libtpl, localedef, minicom, msmtp, ndisc6, netatalk,
  6529. ocf-linux, openswan, parted, polarssl, protobuf, read-edid,
  6530. socketcand, stress, systemd, ushare, zeromq
  6531. Deprecated packages: ttcp
  6532. Removed packages: ntfsprogs
  6533. Issues resolved (http://bugs.uclibc.org):
  6534. #2353: [lua] fix build with 2010.08-rc1
  6535. #2503: Microperl fails build on MIPSel or with Fedora13.x86_64
  6536. #2557: [PATCH] mkfs.xfs complains about missing libxfs.so.0
  6537. #2881: Can't build project statically with external toolchain
  6538. #3751: MIPS: fix BR2_GCC_TARGET_ABI for MIPS n64
  6539. #4808: ccache may build against wrong zlib
  6540. #4880: New package lcdproc
  6541. #4886: New package protobuf
  6542. #4892: build fails on ltp-testsuite-20101031/testcases/kernel/fs/...
  6543. #4898: * make: [target-finalize] Error 1 (ignored)*
  6544. #4985: Qt 4.7.4 build crashes with Linux 2.6.29
  6545. #4970: udev 181 fails to build if kernel version 3.3 is selected
  6546. #5018: dialog broken: exits with assert in uClibc
  6547. #5102: qt package moc, uic, rcc read from wrong place
  6548. #5144: Patch to fix ixon bug in uemacs
  6549. #5198: Line graphics output is broken in GNU Screen
  6550. #5204: Missing terminfo file(s) for GNU screen terminal type
  6551. 2012.02, Released February 29th, 2012:
  6552. Updated/fixed packages: libecore
  6553. 2012.02-rc3, Released February 27th, 2012:
  6554. Fixes all over the tree.
  6555. Automatic host dependencies handling for cmake packages
  6556. fixed. Customize package deprecated as using a post-build
  6557. script is nowadays the preferred way of adding extra stuff to
  6558. the rootfs.
  6559. Linux-headers 3.0.x / 3.2.x stable version bumped.
  6560. QEMU defconfigs updated to 3.2.x kernels and readme fixed.
  6561. Updated/fixed packages: dropbear, ffmpeg, libpng
  6562. 2012.02-rc2, Released February 19th, 2012:
  6563. Fixes all over the tree.
  6564. Toolchain: uClibc: Added upstream post-0.9.33 fixes, Bump
  6565. linux-headers 3.0.x / 3.2.x stable versions.
  6566. Documentation: Added makedev / <pkg>_DEVICES /
  6567. <pkg>_PERMISSIONS documentation.
  6568. Updated/fixed packages: busybox, ffmpeg, gst-dsp, libecore,
  6569. libvncserver, mxml, python.
  6570. 2012.02-rc1, Released February 12th, 2012:
  6571. Fixes all over the tree and new features.
  6572. Toolchain: Default to GCC 4.5.x, add binutils 2.22. Java
  6573. support removed, Powerpc SPE ABI support. GDB ELF support fix,
  6574. GDB 7.4, crosstool-NG 1.13.4.
  6575. Gentargets: scp and mercurial support.
  6576. Autotools: derive host dependencies from target by default.
  6577. Packages can now declare device table snippets.
  6578. Host utilities menu with commonly used host tools.
  6579. defconfigs: qemu configs for x86-64, mips and sparc, at91
  6580. defconfigs now use modern U-Boot / mainline Linux, added
  6581. lpc3250 defconfigs.
  6582. uClibc: remove 0.9.30, backport unshare() support, add
  6583. 0.9.32.1 / 0.9.33, use same config for ctng.
  6584. Bootloaders: U-Boot: add 2011.12, remove 2010.xx versions,
  6585. Barebox: add 2012.01/02, remove 2011.10/11, LPC32xx
  6586. bootloaders added.
  6587. Various manual updates. Release tarballs now contain generated
  6588. manual in text/html/pdf formats.
  6589. Buildroot now calls the stop function of scripts in
  6590. /etc/init.d at shutdown.
  6591. Updated/fixed packages: atk, avahi, barebox, bash, beecrypt,
  6592. bind, binutils, bison, bluez_utils, bzip2, busybox, cairo,
  6593. ccache, cdrkit, coreutils, cramfs, dbus, dbus-glib, dialog,
  6594. diffutils, dmalloc, dropbear, e2fsprogs, ebtables, ed,
  6595. ethtool, expat, ffmpeg, file, fis, flex, fluxbox, fontconfig,
  6596. freetype, gawk, grep, gst-dsp, gst-ffmpeg, gst-plugins-base,
  6597. hdparm, hostapd, htop, i2c-tools, icu, iproute2, ipsec-tools,
  6598. ipset, iptables, iw, jpeg, kismet, lame, libcap, libcgi,
  6599. libev, libeXosip2, libffi, libftdi, libgpg-error, libgtk2,
  6600. libidn, libmms, libmnl, libmodbus, libnl, libogg, libosip,
  6601. libpcap, libpng, libraw1394, libroxml, libusb, libusb-compat,
  6602. libv4l, libvorbis, libxcb, libxml-parser-perl, libxslt,
  6603. lighttpd, links, lm-sensors, lua, m4, module-init-tools, mpc,
  6604. mesa3d, mpd, mpfr, mplayer, mtd-utils, nano, nbd, ncurses,
  6605. netperf, netsnmp, ntp, opencv, openocd, openssl, openvpn, orc,
  6606. pciutils, pcre, pixman, pkg-config, poco, popt, proftpd,
  6607. python, python-serial, qt, ruby, samba, sdl, sdparm,
  6608. squashfs3, sshfs, sqlite, squid, sudo, syslinux, tcl, tcpdump,
  6609. ti-utils, tiff, tremor, uboot, uboot-tools, udev, usbmount,
  6610. util-linux, vala, valgrind, vsftpd, wpa_supplicant,
  6611. xapp_{bdftopcf,mkfontdir,mkfontscale,xkbcomp,xcursorgen,xinit},
  6612. xapp_xinput, xapp_xman, xcb-util, xdm, xenomai,
  6613. xf86-video-sis, xfont_{encodings,font-util},
  6614. xlib_lib{fontenc,X11,Xau,Xcursor,Xdmcp,Xfixes,Xfont,Xrender},
  6615. xlib_libxkbfile, xterm, xutil_makedepend, yajl
  6616. New packages: boost, connman, dstat, expedite, explorercanvas,
  6617. feh, flot, giblib, igh-ethercat, imlib2, jquery,
  6618. jquery-sparklines, jquery-validation, jsmin, kmod, libecore,
  6619. libedbus, libedje, libeet, libeina, libelementary, libesmtp,
  6620. libethumb, libevas, libical, libmbus, liboauth, liburcu,
  6621. libvncserver, linux-firmware,
  6622. lttng-{babeltrace,libust,modules,tools}, NetworkManager,
  6623. open2300, python-distutilscross, python-dpkt,
  6624. python-netifaces, python-pygame, python-setuptools, rt-tests,
  6625. sam-ba, sane-backends, sqlcipher, transmission, unionfs,
  6626. xf86-input-tslib, xinput-calibrator
  6627. Issues resolved (http://bugs.uclibc.org):
  6628. #743: Add Transmission bit torrent option to buildroot
  6629. #755: Add Boost libraries as a package
  6630. #2299: Add crypto support to libsoup
  6631. #2617: Pixman 0.19.2 & Cairo 1.10.0
  6632. #3403: libgpg-error: bump to version 1.10
  6633. #3409: libgpg-error: download from gnupg.org
  6634. #3421: nano: make tiny flag optional
  6635. #3691: New EFL packages
  6636. #4664: Cannot patch AT91Bootstrap
  6637. #4700: setlocalversion not working for combination svn/ubuntu 11.10...
  6638. #4760: Qt: add host-pkg-config to dependency-list
  6639. 2011.11, Released November 30th, 2011:
  6640. Fixes all over the tree.
  6641. Bump kernel headers / default Linux version to 3.1.4.
  6642. Updated/fixed packages: ruby
  6643. 2011.11-rc3, Released November 26th, 2011:
  6644. Fixes all over the tree.
  6645. Toolchain: Fix gdb dependencies for external toolchains,
  6646. adjust uClibc patches so they don't confuse modern versions of
  6647. patch, bump crosstool-ng, kernel headers and linux versions.
  6648. Updated/fixed packages: busybox, freetype, mplayer, opencv,
  6649. php, rsyslog, ruby, thttpd, xapp_xf86dga
  6650. Issues resolved (http://bugs.uclibc.org):
  6651. #4357: Prevent patch commands from accessing source control
  6652. #4369: Fix permissions on untared lsof archive
  6653. 2011.11-rc2, Released November 18th, 2011:
  6654. Fixes all over the tree and new features.
  6655. Updated asciidoc documentation
  6656. Toolchain: Bumped 3.x stable kernel headers, use wget in
  6657. crosstool-ng as well, bump crosstool-ng version, gdb fixes,
  6658. uClibc sparc fix.
  6659. Updated/fixed packages: distcc, file, gst-plugins-bad, libxcb,
  6660. mplayer, newt, qt, rpm, rrdtool, tar, tftpd
  6661. Issues resolved (http://bugs.uclibc.org):
  6662. #3355: mplayer fails to build
  6663. #4021: uClibc: undefined reference to `__GI___errno_location'
  6664. #4297: Qt's qmake uses wrong pkg-config
  6665. 2011.11-rc1, Released November 11th, 2011:
  6666. Fixes all over the tree and new features.
  6667. Moved misc scripts and support stuff to support/. Renamed
  6668. patch-kernel.sh to support/scripts/apply-patches.sh.
  6669. Documentation: Moved to asciidoc format, make targets to
  6670. generate text/html/pdf/epub output added.
  6671. Defconfigs: Qemu configs updated to 3.1 kernel and readmes
  6672. added.
  6673. Bootloaders: Add support for custom git tree / tarballs for
  6674. barebox, similar to how it's handled for u-boot. Clean up
  6675. menuconfig options.
  6676. Toolchain: Update external codesourcery toolchain download
  6677. URLs after Codesourcery got bought by Mentor, add x86
  6678. toolchain, update toolchain versions and optimize toolchain
  6679. sysroot copying. Fix uClibc 0.9.32 builds for e500 PPC,
  6680. updated GDB versions / download URLs. Binutils
  6681. libbfd/libopcodes static/dynamic linking fix. GCC 4.6.2 added,
  6682. use ctng-1.13.0.
  6683. Package infrastructure: Support for local packages /
  6684. overrides, package dir / name arguments dropped from
  6685. {GEN,AUTO,CMAKE}TARGETS.
  6686. Linux: Kernel extensions infrastructure support, Xenomai +
  6687. RTAI support.
  6688. Updated/fixed packages: acpid, bind, busybox, dash, dbus,
  6689. dbus-glib, directfb, dnsmasq, drystone, e2fsprogs, ethtool,
  6690. fakeroot, fbdump, file, freetype, fuse, gamin, gmp, gmpc,
  6691. gnutls, gob2, gst-plugins-{base,bad,good,ugly}, gstreamer,
  6692. hostapd, ifplugd, imagemagick, intltool, ipsec-tools, ipset,
  6693. iptables, iw, jpeg, kexec, leafpad, less, libargtable2, libao,
  6694. libconfuse, libcuefile, libcurl, libdaemon, libevent,
  6695. libglib2, libiconv, libmpd, libreplaygain, libroxml,
  6696. libsamplerate, libsndfile, libsoup, libsvgtiny, libtool,
  6697. libxcb, lighttpd, links, linux-fusion, lite, lrzsz, lsof, lzo,
  6698. lzop, makedevs, mcookie, mpg123, mpd, mpfr, mtd, musepack,
  6699. mutt, mysql_client, ncftp, ncurses, neon, netcat, netsnmp,
  6700. ntfs-3g, ntfsprogs, ntp, openntpd, openssh, openssl, oprofile,
  6701. orc, pciutils, psmisc, python, qt, quagga, radvd, rpm, rsync,
  6702. samba, sawman, sdl_sound, smartmontools, sqlite, squid,
  6703. stunnel, sudo, sylpheed, sysstat, taglib, tar, tcpreplay,
  6704. tslib, usbutils, util-linux, valgrind, wget, whetstone, which,
  6705. wpa-supplicant, xdata_xcursor-themes, xmlstarlet, xterm
  6706. New packages: bluez-utils, cifs-utils, fftw, fluxbox, json-c,
  6707. libev, libftdi, libgeotiff, libmodbus, libplayer, live555,
  6708. ngrep, noip, opencv, openocd, picocom, poco, portaudio,
  6709. pulseaudio, pv, rtai, vala, xenomai.
  6710. Removed packages: liboil, sfdisk, swfdec, webif
  6711. Issues resolved (http://bugs.uclibc.org):
  6712. #505: live555: new package
  6713. #507: Enable live and tv options in MPlayer-1.0rc2
  6714. #531: let e2fsprogs package to export headers to staging dir if needed
  6715. #1171: Linuxthreads new cannot find sysdep.h
  6716. #1357: Add bluez to buildroot system
  6717. #2107: New package: input-event-daemon
  6718. #2599: New package: orc (Oil Runtime Compiler)
  6719. #2605: gstreamer: Update to 0.10.30
  6720. #2677: introducing util-linux-ng as replacement for util-linux
  6721. #2917: Qt: Add declarative module
  6722. #3145: jffs2 image generation fails
  6723. #3271: netperf-2.4.5 fails to compile
  6724. #3331: xdata_xcursor-themes depends on xcursorgen
  6725. #3343: Add file:// download SITE_METHOD
  6726. #3391: Add support for specifying an external kernel tree
  6727. #3631: Error while compiling with Xorg
  6728. #3709: oprofile doesn't build for mipsel
  6729. #3925: midori not getting compile
  6730. #4045: Add support for downloading i386 toolchains from codesourcery
  6731. #4165: lrzsz-fix-symlink-at-rebuild.patch
  6732. #4171: makedevs-unused-but-set-variable.patch
  6733. #4183: Codesourcery toolchain download site has changed
  6734. #4231: libneon.so: undefined reference to `SSL_SESSION_cmp'
  6735. #4381: Add option to lighttpd to enable Lua support
  6736. #4387: Make sure that dest dir exists before installing mtd files
  6737. 2011.08, Released August 31th, 2011:
  6738. Fixes all over the tree.
  6739. Toolchain: Fix codesourcery 2009q3 ARM download, Linux 3.0.4
  6740. kernel headers.
  6741. Updated/fixed packages: ipset, python
  6742. 2011.08-rc2, Released August 29th, 2011:
  6743. Fixes all over the tree.
  6744. Toolchain: crosstool-NG 1.12.1, use binutils 2.21 on
  6745. mips/sh/older uClibc, disallow uClibc 0.9.32 on avr32/sh
  6746. (broken).
  6747. Defconfigs: kernel updates, fix mini2440 serial port config,
  6748. remove old arm toolchain configs.
  6749. Bootloaders: Fix grub patching, add barebox-{n,x,menuconfig}
  6750. targets similar to linux/busybox.
  6751. Updated/fixed packages: barebox, directfb, libsoup,
  6752. libxml-parser-perl, mtd, ncurses, python, ti-utils, udev,
  6753. usbmount, util-linux, xfont_font-misc-misc
  6754. Issues resolved (http://bugs.uclibc.org):
  6755. #3685: ncurses installation hangs due to old version of tic
  6756. #4093: Grub fails to install bz2 patch after conversion to...
  6757. 2011.08-rc1, Released August 4th, 2011:
  6758. Fixes all over the tree and new features.
  6759. Toolchain: uClibc 0.9.32 / NPTL support, 0.9.29 removed,
  6760. ext-toolchain-wrapper improvements, improved non-MMU
  6761. support. GCC 4.3.6 / 4.6.1.
  6762. GENTARGETS infrastructure extended to cover bootloaders and
  6763. Linux kernel as well. Options to retrive Linux/U-Boot from a
  6764. custom git repo instead of upstream tarballs.
  6765. Support for Linux 3.x and release candidate tarballs.
  6766. X-Loader bootloader for omap added.
  6767. Make source/external-deps now also works for external
  6768. toolchains / crosstool-ng backend.
  6769. Updated/fixed packages: autoconf, berkeleydb, bind, binutils,
  6770. bmon, bridge-utils, busybox, cmake, dbus, dbus-glib,
  6771. e2fsprogs, ethtool, ffmpeg, gst-plugins-{bad,base,good,ugly},
  6772. gvfs, hostapd, iproute2, iptables, iw, jpeg, lame, libarchive,
  6773. libdnet, libdrm, libgcrypt, libgtk2, libmpeg2, libpng,
  6774. libsoup, lighttpd, linux-fusion, lzo, midori, mtd-utils,
  6775. nfs-utils, openvpn, oprofile, orc, pkg-config, proftpd, qt,
  6776. ruby, samba, sdl, shared-mime-info, sudo, sqlite, squid,
  6777. synergy, udev, usbmount, usbutils, util-linux, valgrind,
  6778. webkit, xorg-xserver, xz, zlib
  6779. New packages: acl, attr, ebtables, gnutls, inotify-tools,
  6780. ipset, libargtable2, libiqrf, libmnl, libnspr, libnss,
  6781. libroxml, libyaml, live555, mxml, orc, rsyslog, sredird,
  6782. statserial, stunnel, ti-utils, uboot-tools, yajl
  6783. Deprecated packages: liboil, swfdec
  6784. Removed packages: hal
  6785. Issues resolved (http://bugs.uclibc.org):
  6786. #3559: libnspr: Add new package
  6787. #3595: patch to add libroxml
  6788. #3565: libnss: Add new package
  6789. #3583: xfonts_font-adobe-100dpi fails due to missing map file
  6790. #3649: [PATCH] Add mapdir to existing pkg-config patch
  6791. #3907: 2011.05 - Qt 4.7.3 not building on ARM
  6792. #3961: Nfs-utils: Remove SUSv3-function index
  6793. #3985: "help" target's defconfig list needs sort
  6794. #3997: bump libroxml to v2.1.0
  6795. 2011.05, Released May 27th, 2011:
  6796. Updated/fixed packages: makedevs
  6797. 2011.05-rc2, Released May 24th, 2011:
  6798. Fixes all over the tree.
  6799. Toolchain: Code sourcery ARM 2009q1 download URL fixed /
  6800. 2009q3 external toolchains added. Crosstool-NG bumped to
  6801. 1.11.3, eglic/glibc configuration fixes. Linux kernel 2.6.38.x
  6802. bumped to 2.6.38.7.
  6803. Updated/fixed packages: bind, fakeroot, kbd, psmisc, qt
  6804. 2011.05-rc1, Released May 18th, 2011:
  6805. Fixes all over the tree and new features.
  6806. External toolchain improvements: We now build a binary
  6807. toolchain wrapper and install it into HOST_DIR/usr/bin, which
  6808. enforces the correct compiler arguments, making an external
  6809. toolchain as easy to use outside of Buildroot as the internal
  6810. ones are. This also brought a cleanup of CFLAGS, making the
  6811. Buildroot build output easier to read.
  6812. Rootfs device handling improvements: Choice between static
  6813. /dev, devtmpfs and devtmpfs with either mdev or udev.
  6814. Toolchain: More preconfigured codesourcery external
  6815. toolchains, improved Crosstool-NG support, fix for GCC
  6816. snapshot versions, GCC 4.4.6 / 4.5.3, experimental GCC 4.6.0
  6817. support, target-GCC fixes, uClibc fixes, 0.9.32-rc3 support.
  6818. Bootloaders: U-boot 2011.03, Barebox 2011.05.0
  6819. Linux: support for custom kernel image targets, E.G. for
  6820. powerpc builds with embedded device trees.
  6821. Misc fixes for qemu defconfigs, ensuring correct serial
  6822. terminal setup out of the box.
  6823. Misc gentarget / autotools handling fixes.
  6824. Updated/fixed packages: alsa-lib, alsa-utils, alsamixergui,
  6825. atk, avahi, bind, bison, busybox, copas, dbus-glib, dhcp,
  6826. dhcpdump, dnsmasq, dropbear, ethtool, fakeroot, ffmpeg, file,
  6827. gamin, gnuconfig, gst-ffmpeg, gst-plugins-good, gtk2-engines,
  6828. haserl, hostapd, icu, imagemagick, iproute2, iw, kismet, less,
  6829. libcap, libdnet, libglade, libglib2, libgtk2, libnl, libpng,
  6830. libxml2, libxml2, libxslt, lighttpd, lockfile-progs, makedevs,
  6831. midori, mpg123, mpc, mpd, mpfr, mplayer, mtd-utils, ncurses,
  6832. netsnmp, openssh, openssl, openvpn, pango, pkg-config, popt,
  6833. procps, proftpd, qt, quagga, readline, rsync, samba, sdl,
  6834. socat, squashfs, squid, sudo, tslib, udev, usbutils, webkit,
  6835. wpa_supplicant, xerces, xfont_font-misc-misc, xlib_libX11,
  6836. xlib_libXfont, xlib_xtrans, xorg-server, xterm, xz
  6837. New packages: bonnie++, can-utils, gdisk, htop,
  6838. input-event-daemon, libexif, libraw, libv4l, ngircd
  6839. Removed packages: festival
  6840. Issues resolved (http://bugs.uclibc.org):
  6841. #2131: Add OpenMP support to the toolchain
  6842. #3379: New Package: bonnie++
  6843. #3445: Not working openssl-10.0.0d on 386sx
  6844. #3451: fakeroot package: wrong FAKEROOT_SITE variable
  6845. #3457: alsamixergui: broken URL
  6846. #3475: Calling sync on large filesystems when not always necessary
  6847. #3511: make busybox-menuconfig does not download busybox package
  6848. #3541: Quotes in the top Makefile:217 break buildroot/kernel config...
  6849. #3571: u-boot: fw_printenv does not build
  6850. #3643: popt source url is not responding
  6851. #3733: dropbear: make zlib optional
  6852. #3757: Buildroot can't build mplayer with libmad
  6853. 2011.02, Released February 28th, 2011:
  6854. Fixes all over the tree.
  6855. Updated/fixed packages: alsamixergui, avahi, ffmpeg, icu, mpd,
  6856. nuttcp, qt, slang, squashfs, sylpheed, synergy, xerces
  6857. Deprecated packages: devmem2, webif
  6858. Issues resolved (http://bugs.uclibc.org):
  6859. #2911: Qt: Disable qt3support-option, if gui-module isn't selected
  6860. #3259: Unable to build webkit (on arm)
  6861. #3295: slang fails to build on mipsel
  6862. #3325: ffmpeg fails to build
  6863. 2011.02-rc2, Released February 24th, 2011:
  6864. Fixes all over the tree.
  6865. Festival packages marked as broken. Unless someone steps up
  6866. to support them, they will be removed during the 2011.05
  6867. development cycle.
  6868. Updated/fixed packages: atk, avahi, bind, cairo, dbus,
  6869. enchant, fakeroot, gmpc, gpsd, gvfs, iperf, jpeg, libarchive,
  6870. libcgicc, libdaemon, libdrm, libevent, libgail, libglib2,
  6871. libgpg-error, libmicrohttpd, librsvg, libsoup, libxcp,
  6872. makedevs, matchbox-fakekey, matchbox-startup-monitor, mdadm,
  6873. metacity, mpd, nasm, nfs-utils, olsr, openssl, popt,
  6874. pthread-stubs, quagga, rpm, samba, sdl, sdl_gfx, sdl_image,
  6875. sdl_mixer, sdl_sound, sdl_ttf, squashfs, synergy, taglib,
  6876. tcpreplay, tiff, wpa_supplicant, xcb-util,
  6877. xdriver_xf86-input-{acepad,aiptek,evdev,joystick,keyboard},
  6878. xdriver_xf86-input-{mouse,synaptics,void},
  6879. xdriver_xf86-video-{chips,dummy,geode,glide,intel,nv,wsfb},
  6880. xlib_lib{ICE,SM,XScrnSaver,Xau,Xcursor,Xdmcp,Xi,Xinerama},
  6881. xlib_lib{Xrandr,Xt,Xtst,Xxf86dga,Xxf86vm,dmx,fontenc,pciaccess},
  6882. xserver_xorg-server, xz
  6883. Removed packages: ace_of_penguins, vlc
  6884. Issues resolved (http://bugs.uclibc.org):
  6885. #3205: Failing chmod when running "make" in buildroot (openssl)...
  6886. #3277: quagga fails to build with SNMP support
  6887. #3283: See why nfs-utils needs fakeroot, and convert to autotools
  6888. #3307: synergy fails to build due to missing XTest library
  6889. 2011.02-rc1, Released February 14th, 2011:
  6890. Fixes all over the tree and new features.
  6891. External toolchain improvements: clarification of the options,
  6892. and introduction of the toolchain profile concept, for
  6893. well-known toolchains. Buildroot is now capable of
  6894. automatically downloading and extracting well-known toolchains
  6895. (for the moment, CodeSourcery ARM, PowerPC, MIPS and SuperH
  6896. toolchains are supported). Crosstool-NG backend updated and
  6897. improved.
  6898. Complete rework of how hardware boards are supported.
  6899. Each board now only has a single defconfig file, and all
  6900. board-specific options have been removed. See
  6901. docs/buildroot.html#board_support for details.
  6902. Added support for the following boards: Mini2440, Qemu ARM
  6903. Versatile, Qemu MIPSel Malta, Qemu PowerPC G3beige, Qemu SH4
  6904. r2d and Qemu x86. The Qemu boards support allows to easily
  6905. build systems that are known to work under Qemu.
  6906. Initial support for Blackfin processors.
  6907. Staging directory moved into $(O)/host/usr/<tuple>/sysroot, in
  6908. preparation for support of SDK. For the same reason, the
  6909. toolchain binaries (cross-compiler and other related tools)
  6910. are now installed in $(O)/host/usr/bin/. The cross pkg-config
  6911. now also automatically returns correct values for cross
  6912. compilation, without needing any environment variables to be
  6913. set.
  6914. Ccache support reworked. Now used for both host and target
  6915. compilation, and cache is stored in ~/.buildroot-ccache.
  6916. Toolchain: uClibc 0.9.32-rc2, several components moved to
  6917. normal AUTOTARGET packages.
  6918. Generic cmake infrastructure, similar to the existing
  6919. GENTARGETS/AUTOTARGETS.
  6920. Support for bzr downloads, next to the existing git/svn support.
  6921. Kconfig infrastructure rebased against 2.6.38-rc3, bringing
  6922. misc fixes. 'xconfig' now uses Qt4 rather than Qt3.
  6923. EXT2 file system size handling improved, UBI image support, fs
  6924. configuration options cleanup, U-Boot/Barebox version bumps.
  6925. Updated/fixed packages: alsa-utils, at, autoconf, automake,
  6926. bash, binutils, bison, busybox, bzip2, cdrkit, cloop, cmake,
  6927. coreutils, cups, dbus, dbus-python, dhcp, directfb,
  6928. direcfb-examples, dmalloc, dnsmasq, dosfstools, e2fsprogs, ed,
  6929. fbset, ffmpeg, findutils, flac, freetype, gdk-pixbuf, gmp,
  6930. grep, gperf, gst-ffmpeg, gst-plugins-bad, gst-plugins-base,
  6931. gst-plugins-good, gst-plugins-ugly, gstreamer, gvfs, hdparm,
  6932. hostapd, i2c-tools, icu, imagemagick, input-tools, iproute2,
  6933. iptables, iw, jpeg, kexec, libaio, libart, libcap, libconfig,
  6934. libfuse, libglib2, libidn, libmad, libogg, libpcap, libpng,
  6935. libsndfile, libtheora, libtool, libusb-compat, libvorbis,
  6936. libxcb, libxml2, libxslt, links, linux-fusion, lm-sensors,
  6937. lsof, ltp-testsuite, ltrace, lvm2, lzo, m4, makedevs,
  6938. memtester, mesa3d, mii-diag, mpc, mpfr, mpg123, mplayer,
  6939. mrouted, mtd-utils, nano, netperf, netplug, ntfs-3g, ntp,
  6940. openssh, openssl, openvpn, oprofile, pango, patch, pciutils,
  6941. php, pkgconfig, portmap, psmisc, python, qt, rsync, ruby,
  6942. sawman, screen, sdl_gfx, sdl_sound, smartmontools, socat,
  6943. sqlite, squid, sshfs, sstrip, sysklogd, sysstat, sysvinit,
  6944. tar, tcpdump, tslib, udev, usbutils, vim, vtun, webkit, wipe,
  6945. x11vnc, xapp_xlogo, xcb-proto, xfont_font-util,
  6946. xkeyboard-config, xlib_libX11, xz, zlib
  6947. New packages: dhrystone, dsp-tools, faad2, fbgrab, gst-dsp,
  6948. gst-omapfb, irda-utils, lame, libao, libcue, libcuefile,
  6949. libffi, libhid, libreplaygain, libsamplerate, libsigc++,
  6950. lsuio, mpd, musepack, python-mad, python-serial, rsh-redone,
  6951. sdparm, tidsp-binaries, vorbis-tools, wavpack, whetstone,
  6952. xl2tp, xmlstarlet
  6953. Removed packages: hotplug, l2tp, libfloat, microcom,
  6954. ng-spice-rework
  6955. Issues resolved (http://bugs.uclibc.org):
  6956. #267: The make target: cross fails because toolchain_build_...
  6957. #415: Berkeley DB: mut_pthread.o: relocation R_X86_64_32 against...
  6958. #561: ltp-testsuite failed to install
  6959. #1447: Installing gfortran on PowerPC
  6960. #1651: Build fail caused by ccache in module-init-tools
  6961. #1681: Cross-compiled binaries shouldn't be installed into staging
  6962. #1723: [PATCH] axel: convert to generic package infrastructure and...
  6963. #1735: [PATCH] mplayer: convert to autotools infrastructure
  6964. #2551: [PATCH] native toolchain in the target filesystem fails
  6965. #2623: buildroot-snapshot-20100922 fails when compiling development...
  6966. #2647: makedevs package lacks support for 16-bit major/minor numbers
  6967. #2371: QT MYSQL Module does not build when MySQL installed on the host
  6968. #2839: compile fails in various packages with a odd message "error:...
  6969. #2887: tar "buffer overflow detected" error
  6970. #2893: Broken "make source" with external toolchain
  6971. #2905: Qt: Speed up compilation, if gui-module isn't selected
  6972. #2929: genext2fs: couldn't allocate a block (no free space)
  6973. #2935: Ntpdate isn't installed
  6974. #2965: Broken linkage to xkbcomp (blocking X server startup)
  6975. #2983: xlib_libX11 build failed
  6976. #3007: kexec doesn't build: Missing regdef.h file
  6977. #3085: Init scripts are not compatible with sysVinit (when busybox...
  6978. #3103: make external-deps wants to download gcc-.tar.bz2 when...
  6979. #3109: abnormal `make busybox-menuconfig`
  6980. #3115: How about board specific makefiles?
  6981. #3169: python patch has typo, aborts build in scenario
  6982. #3181: dhcp.mk copies S80dhcp-server to etc/init.d, not etc/init.d/
  6983. 2010.11, Released November 30th, 2010:
  6984. Fixes all over the tree.
  6985. Updated/fixed packages: libgcrypt, qt, squid, sysstat, tcpdump,
  6986. xserver-xorg
  6987. Issues resolved (http://bugs.uclibc.org):
  6988. #2773: squid with openssl support needs openssl on the host
  6989. #2857: OBJDUMP definition is missing from TARGET_CONFIGURE_OPTS
  6990. 2010.11-rc2, Released November 25th, 2010:
  6991. Fixes all over the tree.
  6992. Add support for LEON Sparc architecture variants. Fix make
  6993. source/external-deps for host packages.
  6994. Updated/fixed packages: bash, bind, busybox, dialog, gpsd,
  6995. libglib2, libcurl, libmad, lrzsz, midori, module-init-tools,
  6996. mtd-utils, openssh, openssl, pciutils, php, qt, sqlite,
  6997. sysstat, webkit, zlib
  6998. Issues resolved (http://bugs.uclibc.org):
  6999. #759: Sysstat build broken without libintl
  7000. #2479: host-module-init-tools 3.11 fails to build
  7001. #2725: Buildroot overrides kernel config
  7002. #2785: mtd-utils build fails due to missing libmtd
  7003. #2791: Added PHP-Process Control to the PHP-Package
  7004. #2797: pciutils dependencies on zlib not taken into account
  7005. #2809: failed to compile libglib2
  7006. #2821: [PATCH] Patch for JavaScriptCore in QtWebKit module
  7007. #2827: qt-4.7.0-pthread_getattr_np.patch invalid for qt 4.6...
  7008. #2833: Failed to compile webkit without X11
  7009. 2010.11-rc1, Released November 8th, 2010:
  7010. Fixes all over the tree and new features.
  7011. Kconfig infrastructure rebased against 2.6.36-rc1, bringing
  7012. misc fixes + nconfig and savedefconfig targets.
  7013. Toolchain: ARM cortex A9 support, experimental crosstool-ng
  7014. backend, GCC 4.5.x.
  7015. Fs: Squashfs 4.1 with lzo support
  7016. Old-style package hooks (*_HOOK_POST_*) removed. Use the more
  7017. generic new-style ones instead.
  7018. Download handling reworked and support for git/svn downloads
  7019. added.
  7020. Removed experimental shared config.cache support, as it is
  7021. too unreliable.
  7022. A convenience Makefile wrapper is created when using
  7023. out-of-tree building, similar to how it is done for the kernel.
  7024. Alpha, Cris, IA64 and Sparc64 architecture support removed.
  7025. New packages: argp-standalone, gdk-pixbuf, gpsd, gst-ffmpeg,
  7026. libmpeg2, kbd, librsvg, nuttcp, rng-tools, rrdtool, xz
  7027. Updated/fixed packages: acpid, alsa-lib, argus, at, autoconf,
  7028. automake, avahi, axel, beecrypt, berkeleydb, bind, bmon, boa,
  7029. bootutils, bridge-utils, bsdiff, busybox, cvs, dbus, directfb,
  7030. dmraid, docker, dosfstools, dropbear, e2fsprogs, ethtool,
  7031. expat, ezxml, fbset, fconfig, ffmpeg, freetype, gadgetfs-test,
  7032. gamin, gawk, genext2fs, gperf, gst-plugins-base,
  7033. gst-plugins-ugly, gtk2-themes, gtkperf, gvfs, haserl, hdparm,
  7034. hostapd, hwdata, ifplugd, imagemagick, iperf, ipsec-tools,
  7035. iproute2, iptables, iw, jpeg, kexec, kismet, less, libcgi,
  7036. libcurl, libdaemon, libdnet, liberation, libevent, libeXosip2,
  7037. libglade, libgtk2, libiconv, libidn, libintl, libmms, libmpd,
  7038. libnl, liboil, libosip2, libpcap, libpng, libtool, libungif,
  7039. libxml2, libxslt, lighttpd, lite, lm-sensors, lockfile-progs,
  7040. logrotate, m4, matchbox, mdadm, mesa3d, metacity, mplayer,
  7041. mtd-utils, mysql_client, nano, nbd, ncftp, neon, netperf,
  7042. netsnmp, ng-spice-rework, ntfsprogs, ntp, openntpd, openssh,
  7043. openssl, openvpn, oprofile, pango, patch, pcre, php,
  7044. pkg-config, portmap, pppd, pptp-linux, prboom, proftpd, radvd,
  7045. rdesktop, readline, rp-pppoe, ruby, qt, quagga, samba, sawman,
  7046. sdl_mixer, sdl_sound, sed, setserial, shared-mime-info, slang,
  7047. speex, sqlite, squashfs, startup-notification, strace,
  7048. sylpheed, sysstat, taglib, tcpdump, thttpd, tiff, tn5250,
  7049. torsmo, tslib, udev, udpcast, usbmount, usbutils, vsftpd,
  7050. vtun, which, wireless-tools, wpa_supplicant, xapp_twm,
  7051. xapp_xbacklight, xapp_xcursorgen, xapp_xinit, xapp_xinput,
  7052. xapp_xmore,
  7053. xdriver_xf86-input-{acecad,aiptek,evdev,joystick,keyboard},
  7054. xdriver-xf86-input-{mouse,synaptics,vmmouse,void},
  7055. xdriver-xf86-video-{apm,ark,ast,ati,chips,cirrus,dummy,fbdev},
  7056. xdriver-xf86-video-{geode,glide,glint,i128,i740,intel,mach64},
  7057. xdriver-xf86-video-{mga,neomagic,newport,nv,openchrome,r128},
  7058. xdriver-xf86-video-{rendition,s3,s3virge,savage,siliconmotion},
  7059. xdriver-xf86-video-{sis,sisusb,suncg3,suncg6,suncg14,sunffb},
  7060. xdriver-xf86-video-{sunleo,suntcx,tdfx,tga,trident,v4l,vesa},
  7061. xdriver-xf86-video-{vmware,voodeo,wsfb,xgi,xgixp},
  7062. xkeyboard-config, xlib_libX11, xserver_xorg-server, xstroke,
  7063. xterm, xvkbd, zlib
  7064. Deprecated packages: hotplug, lzma, ng-spice-rework, sfdisk
  7065. Removed packages: dillo, libglib12, libgtk12, microwin,
  7066. pcmcia
  7067. Issues resolved (http://bugs.uclibc.org):
  7068. #901: new package: gpsd
  7069. #2389: Generate a Makefile wrapper in $(O)
  7070. #2461: wireless_tools: install shared library if needed
  7071. #2521: Can't compile sdl_mixer, mikmod.h can't be found
  7072. #2533: xserver_xorg-server: Enable glx, if mesa3d is built
  7073. #2563: [PATCH] cairo: Expose the configure option to disable some...
  7074. #2581: libmms: Update to 0.6, and patch to work on architectures...
  7075. #2707: Can't compile linux kernel using buildroot + crosstool-ng
  7076. #2731: Build order
  7077. #2737: buildroot configuration tool crashing when the path exceeds...
  7078. #2767: Build for lsof broken in buildroot-2010.08
  7079. 2010.08: Released August 31th, 2010:
  7080. Fixes all over the tree.
  7081. Updated/fixed packages: atk, xstroke
  7082. Removed packages: lxdoom
  7083. 2010.08-rc2, Released August 30th, 2010:
  7084. Fixes all over the tree.
  7085. Mark the combination of uClibc 0.9.31, gcc 4.2.x, C++ and
  7086. locale support as broken. Remove deprecated GCC 4.2.[1-3]
  7087. versions.
  7088. Mark CRIS architecture as deprecated, as it is discontinued
  7089. upstream.
  7090. Marked shared config.cache as experimental and disabled by
  7091. default as it is known to break with certain package
  7092. combinations.
  7093. Toolchain: fixed gcc 4.2.x build after uClibc NPTL support got
  7094. added.
  7095. fs: old-style squashfs for big endian archs fixed.
  7096. Updated/fixed packages: busybox, gst-plugins-base,
  7097. imagemagick, kismet, libgail, libglib2, libgtk2, lua,
  7098. luafilesystem, lzo, ncurses, netcat, pango, php, pppd,
  7099. proftpd, qt, samba, startup-notification, swfdec, sysvinit,
  7100. util-linux
  7101. Removed packages: stunnel
  7102. Issues resolved (http://bugs.uclibc.org):
  7103. #635: util-linux fails to build in 2009.08
  7104. #2239: netcat package installs its binary to target as avr32-linux...
  7105. #2395: libglib2-2.24.1 and libxml2-2.7.7 fails build on MIPS because...
  7106. #2443: Initramfs: Don't overwrite $(TARGET_DIR)/init if it exists
  7107. #2449: Minor fixes for squashfs makefile and correct PowerPC e500 ...
  7108. 2010.08-rc1, Released July 30th, 2010:
  7109. Fixes all over the tree and new features.
  7110. Toolchain: GCC 4.3.5, older 4.3.x versions removed. GCC 4.1.2
  7111. and non-sysroot support removed. Added support for (snapshot)
  7112. NPTL in uClibc, 0.9.28.3 removed,
  7113. Bootloaders: Various cleanups, moved to boot/, added Barebox,
  7114. removed yaboot. Support building u-boot from custom tarball,
  7115. u-boot 2010.06.
  7116. New GTK-based configurator, usable using 'make gconfig'.
  7117. Java packages marked as broken. Unless someone steps up to
  7118. support this, they will be removed during the 2010.11
  7119. development cycle.
  7120. Alpha, IA64 and Sparc64 architectures marked as deprecated.
  7121. GTK+ on DirectFB has also been marked as deprecated, as it is
  7122. not supported in recent GTK+ versions, and more and more
  7123. packages depends on the new versions.
  7124. Unless someone steps up to support them, they will be removed
  7125. during the 2010.11 development cycle.
  7126. New packages: cgilua, copas, coxpcall, ffmpeg, libsvgtiny,
  7127. libgail, luafilesystem, luasocket, rings, wsapi, xavante, xterm
  7128. Updated/fixed packages: alsa-lib, alsamixergui, at, atk,
  7129. avahi, berkeleydb, bash, blackbox, busybox, bzip2, cairo,
  7130. cdrkit, cmake, dash, dhcp, dialog, diffutils, distcc, dmalloc,
  7131. dnsmasq, dropbear, e2fsprogs, fbv, file, flex, fontconfig,
  7132. gawk, gmpc, gnuchess, gst-plugins-base, gst-plugins-good,
  7133. gstreamer, gzip, icu, intltool, iostat, ipsec-tools, iptables,
  7134. iw, libart, libcgi, libcurl, libdrm, libeXosip, libfuse,
  7135. libglib2, libgpg-error, libiconv, libidn, liblockfile, libpng,
  7136. libsoup, lighttpd, links, linux-fusion, lmbench, lrzsz,
  7137. ltrace, make, midori, module-init-tools, mplayer,
  7138. mysql_client, nbd, ncurses, neon, netcat, netperf, netsnmp,
  7139. ntfsprogs, openssl, oprofile, pango, php, qt, quagga, samba,
  7140. setserial, sdl, sdl_mixer, sdl_sound, sdl_ttf, speech-tools,
  7141. sqlite, squashfs, swfdec, tftpd, thttpd, tn5250, tremor,
  7142. usbutils, webif, webkit, wireless_tools, xerces,
  7143. xkeyboard-config, xserver_xorg-server, xvkbd, zlib
  7144. Removed packages: modutils, portage, rxvt
  7145. Deprecated packages: dillo, libglib12, libgtk12, microwin, pcmcia
  7146. Issues resolved (http://bugs.uclibc.org):
  7147. #321: alsa-lib uses host include files for python which breaks ...
  7148. #361: linux kernel configuration choice works incorrectly
  7149. #387: Tremor not installed to toolchain
  7150. #401: new package: ffmpeg
  7151. #475: uImage target for U-boot failed generating
  7152. #543: ATK requires X11 on DirectFB target
  7153. #575: webkit: Buildroot Libtool Patch Fails
  7154. #583: build fails with external x86_64 toolchain
  7155. #729: sstrip creates corrupted headers
  7156. #829: Webkit r44552 needs libXt
  7157. #835: Package Dataflashboot-1.05 does not compile with buildroot...
  7158. #847: Compiling target-gcc v4.4 fails with "libc.so.0: cannot open...
  7159. #859: Add (head of) nptl branch to list of uClibc versions
  7160. #949: compile with debug info
  7161. #955: Grub fails to build with External Toolchain
  7162. #1051: Webkit doesn't compile (Linuxthreads new, x86)
  7163. #1213: Move .config into output directory
  7164. #1225: Buildroot fails to account for "nof" subdirectory (no float...
  7165. #1231: (sparc) Linux kernel fails to build
  7166. #1261: The getline() in output/build/linux-2.6.28/scripts/unifdef.c...
  7167. #1339: Busybox needs -fno-strict-aliasing to compile cleanly
  7168. #1393: neon config fails libxml/parser.h: libxml2 requires, but not ...
  7169. #1405: WebKit fails to build because pthread_getattr_np is not impl...
  7170. #1675: GMP Error during buildroot make process
  7171. #1741: external toolchain linking error
  7172. #1753: lmbench: convert to generic package infrastructure
  7173. #1771: Fakeroot and the target/generic/device_table.txt create bad...
  7174. #1807: LZMA 4.32.7, Required header file(s) are missing
  7175. #1813: xkeyboard-config fails to build because of intltool problem
  7176. #1879: Bump iptables to 1.4.8
  7177. #1885: Add a bunch of lua modules
  7178. #1897: Bump libusb to 1.0.7
  7179. #1903: Bump tn5250 to 0.17.4 and migrate to autotargets
  7180. #1909: netperf-2.4.5 fails to build because of undeclared SOCK_DCCP
  7181. #1927: Bump file to 5.03 and migrate to autotargets
  7182. #1933: Bump gawk to 3.1.8 and migrate to autotargets
  7183. #1945: PHP: add sqlite3 dependency when using external lib
  7184. #1951: Bump openssl to 0.9.8o
  7185. #1957: Bump sqlite to 3.6.23.1
  7186. #1975: Package removal/deprecation
  7187. #1981: zlib: bump to 1.2.5
  7188. #1987: intltool: Fix spelling mistake
  7189. #1993: Bump bash to 4.1.7(1) and migrate to autotargets
  7190. #1999: Typo in path checking
  7191. #2005: Bump dnsmasq to 2.55 and migrate to gentargets
  7192. #2035: ipsec-tools-0.7.2 fails to build with gcc-4.4.x
  7193. #2038: Bump ncurses to 5.7
  7194. #2095: make gconfig: undefined reference to symbol 'dlsym@@GLIBC_2.2.5'
  7195. #2101: blackbox depends on locale support
  7196. #2119: Tries to build kernel, although disabled in config
  7197. #2125: libXfont build fail
  7198. #2143: buildroot compiler generates segfaulting statically linked exe..
  7199. #2149: xterm build failure
  7200. #2155: Compression lzo don't set for ubifs
  7201. #2161: [SECURITY] Update libpng to 1.2.44
  7202. #2167: Bump busybox to 1.17.0, convert to gentargets, drop 1.12, ...
  7203. #2181: pixman can't apply pixman-0.10.0-no-tests.patch
  7204. #2191: linux-fusion build fail
  7205. #2221: Qt does not compile (dependencies not taken into account?)
  7206. #2233: Atmel atstk target skeletons have /etc/mtab as a file, not ...
  7207. #2245: Netcat does not work due to incorrect assumptions about signed..
  7208. #2251: directory output/build after make *_defconfig not found
  7209. #2257: Convert netsnmp package to autotargets
  7210. #2263: Bump samba to 3.3.13
  7211. #2269: setserial causes make error
  7212. 2010.05, Released May 30th, 2010:
  7213. Fixes all over the tree.
  7214. Updated/fixed packages: coreutils, hal, libcap,
  7215. lockfile-progs, ncftp, xserver_xorg-server
  7216. Issues resolved (http://bugs.uclibc.org):
  7217. #1789: binutils fails to build for i386
  7218. #1843: Fix libcap build failure
  7219. #1855: XORG Keyboard driver fails to compile
  7220. 2010.05-rc3, Released May 27th, 2010:
  7221. Fixes all over the tree.
  7222. Updated/fixed packages: aumix, atk, avahi, bmon, busybox, cairo,
  7223. cdrkit, dbus-glib, dbus-python, docker, enchant, fltk, gamin,
  7224. gettext, gmpc, gob2, grep, gstreamer, gst-plugins-bad,
  7225. gst-plugins-base, gvfs, hal, iconv, icu, iperf, libcgicc,
  7226. libdvdnav, libdvdread, libglade, libglib2, libgtk2, libidn,
  7227. libmms, libmpd, libpcap, libsoup, lmbench, lsof, ltrace, lvm2,
  7228. make, metacity, microperl, mtd-utils, mutt, nbd, netsnmp,
  7229. ntfsprogs, ntp, olsr, pango, pciutils, pcmanfm, php,
  7230. pkg-config, psmisc, qt, samba, shared-mime-info, squashfs,
  7231. squashfs3, sshfs, startup-notification, swfdec, sylpheed,
  7232. uemacs, util-linux, valgrind, vpnc, vsftpd, webkit, xstroke
  7233. Issues resolved (http://bugs.uclibc.org):
  7234. #75: arm buildroot "unrecognized option" error
  7235. #699: Buildroot fails to copy libstdc++ to target when using external...
  7236. #1693: NTP trys IPV6 even if not configured error: 'IPV6_MULTICAST...
  7237. #1729: alsamixergui fails to build
  7238. #1801: Avahi-autoipd doesn't create TARGET_DIR/var/lib
  7239. #1819: pciutils small bugs
  7240. #2065: Internal toolchain: bump gcc 4.3.x series to 4.3.5
  7241. 2010.05-rc2, Released May 11th, 2010:
  7242. Fixes all over the tree.
  7243. Updated/fixed packages: busybox, customize, gawk, gnuchess,
  7244. hal, hostapd, less, libgcrypt, libnl, libxcb, linux-fusion,
  7245. ltp-testsuite, mplayer, netplug, pciutils, php, sed,
  7246. shared-mime-info usb_modeswitch, usbutils, vlc wpa_supplicant,
  7247. xapp_bdftopcf, xapp_mkfontdir, xdriver_xf86-video-openchrome,
  7248. xfont_encodings, xlib_libX11, xlib_libXfont, xlib_xtrans,
  7249. xproto_fontcacheproto, xproto_fontsproto, xvkbd
  7250. Removed packages: vice
  7251. Issues resolved (http://bugs.uclibc.org):
  7252. #849: "customize" package copies files to wrong place in target tree
  7253. #985: Bump usb_modeswitch package to 1.1.0
  7254. #1135: Package customize. Wrong copying
  7255. #1525: Package hal deletes a whole <target>/etc/rc.d directory
  7256. #1531: libxcb 1.5 build fails, due to missing xcbgen Python module
  7257. #1669: Busybox failed to compile when using an external toolchain
  7258. #1699: Fix usbutils dependencies and bump
  7259. #1705: Fix pciutils broken cross compiling
  7260. #1717: External toolchain fixes for hostapd & wpa_supplicant
  7261. 2010.05-rc1, Released May 3rd, 2010:
  7262. Cleaned up / restructured package menu.
  7263. Toolchain: uClibc 0.9.30.3 / 0.9.31, older 0.9.30.x removed.
  7264. 2.6.33 kernel headers, binutils 2.20.1, GCC 4.4.4,
  7265. removed broken nios2 support, ppc e300cX/e500mc support,
  7266. improved external toolchain support, GDB 7.x support.
  7267. X.org updated to 7.5.
  7268. New packages: cdrkit, cramfs, genext2fs, genromfs,
  7269. libatomic_ops, librsync, libusb-compat, lmbench, netperf,
  7270. squashfs, squashfs3, squid
  7271. Updated/fixed packages: alsa-utils, argus, autoconf, bison,
  7272. busybox, bzip2, directfb, dnsmasq, dosfstools, e2fsprogs,
  7273. eeprog, fakeroot, fbv, findutils, freetype, haserl, hostapd,
  7274. iperf, iptables, iw, less, libaio, libcgi, libcgicc, libdrm,
  7275. libgcrypt, libglib2, libid3tag, libmad, liboil, libosip2,
  7276. libpng, libraw1394, libsysfs, libxml2, libxslt, linux-fusion,
  7277. ltrace, lua, lzma, madplay, makedevs, matchbox, mdadm,
  7278. memstat, mesa3d, mtd-utils, nano, ncurses, openssl, patch,
  7279. pciutils, php, pixman, portage, pppd, pthread-stubs, python,
  7280. qt, radvd, samba, setserial, smartmontools, tar, tslib,
  7281. udpcast, usb_modeswith, vtun, wget, xdata_xcursor-themes,
  7282. xdriver_xf86-video-intel, xkeyboard-config, xlib_libX11,
  7283. xlib_libXaw, xlib_libXfont, xlib_libXfontcache,
  7284. xlib_libXxf86misc, xlib_libXtst, xlib_libpciaccess,
  7285. xproto_dri2proto, xproto_eviext, xproto_fontcacheproto,
  7286. xproto_xf86miscproto, xserver_xorg-server
  7287. Removed packages: xapp_xtrap, xlib_libXTrap, xlib_libXevie,
  7288. xlib_libXxf86misc, xxproto_evieext, proto_trapproto,
  7289. xproto_xf86miscproto
  7290. Issues resolved (http://bugs.uclibc.org):
  7291. #513: Add new squid package
  7292. #661: lmbench: new package
  7293. #719: Add lua option to haserl
  7294. #800: [PATCH] iperf update to 2.0.4
  7295. #803: [PATCH] lua - add shared library patch and config option for...
  7296. #805: [PATCH] mdadm - version update
  7297. #817: integrator926_defconfig uses unsupported uboot board name
  7298. #851: Add option to specify --sysroot value for external toolchain
  7299. #1093: Upgrade libusb to v1.0.3 and add new libusb-compat
  7300. package for compatibility with old packages that expect
  7301. the pre-1.0 API.
  7302. #1105: Add new netperf package
  7303. #1111: Bump wget to 1.12 and migrate to Makefile.autotools.in
  7304. #1117: Bump nano to 2.2.3 and migrate to Makefile.autotools.in
  7305. #1123: Bump less to 436 and migrate to Makefile.autotools.in
  7306. #1129: Bump memstat to 0.8 and migrate to Makefile.package.in
  7307. #1189: Wrong u-boot configuration name for integrator926 target
  7308. #1219: kernel headers not correctly installed into toolchain/staging
  7309. #1267: Wrong BR2_EXTRA_VERSION
  7310. #1273: BR2_INET_IPV6 does not enable IPv6 in pppd
  7311. #1303: Add librsync package
  7312. #1321: Busybox link fails due to lack of --sysroot option
  7313. #1327: mtd-utils compile failure due to lack of --sysroot in CFLAGS
  7314. #1345: Bump pppd to 2.4.5 and convert to Makefile.autotools.in
  7315. #1369: cannot build radvd (flex problem)
  7316. #1387: xlib_libX11-1.3.2 can't find libjpeg
  7317. #1411: [SECURITY] Update openssl package to 0.9.8n
  7318. #1417: Bump iptables to 1.4.7
  7319. #1423: Bump e2fsprogs to 1.41.11
  7320. #1429: [SECURITY] Update php to 5.2.13
  7321. #1441: Add binutils 2.20.1
  7322. #1447: Package installation on target with debug symbols is broken
  7323. #1459: Misc QA fixes
  7324. #1489: radvd update to 1.6
  7325. #1513: Enable powerpc e300c2, e300c3 and e500mc optimization
  7326. #1537: dev entries not created anymore
  7327. #1555: Fix default uclibc-0.9.31 configuration
  7328. #1561: [SECURITY] Update samba to 3.3.12
  7329. #1567: openssl0.9.8n fails to compile
  7330. #1573: Alsa-utils alsactl/init/* not installed to target
  7331. #1591: portmap fails to compile
  7332. #1615: Convert eeprog package to gentargets
  7333. #1645: Bump hostapd package to 0.7.2
  7334. 2010.02, Release February 26th, 2010:
  7335. Fixes all over the tree.
  7336. Updated/fixed packages: avahi, busybox, cramfs, ipsec-tools, libcgicc,
  7337. libgtk2, libraw1394, madplay, netsnmp, pango, squashfs, sylpheed, qt,
  7338. xfont_font-util
  7339. Removed packages: hostap, openmotif, xpdf
  7340. Issues resolved (http://bugs.uclibc.org):
  7341. #165: openmotif does not build
  7342. #1147: Remove obsolete hostap package
  7343. #1183: make source fails to download gmp, mpfr and patches
  7344. 2010.02-rc2, Released February 23th, 2010:
  7345. Fixes all over the tree and new features.
  7346. New packages: intltool
  7347. Updated/fixed packages: ace_of_penguins, alsa-lib, alsa-utils, argus,
  7348. at, automake, ccache, dosfstools, e2fsprogs, flex, gob2, gmpc,
  7349. gst-plugins-good, imagemagick, iw, kexec, libeXosip, libgtk2,
  7350. libpcap, libpng, libsoup, libxcb, libxml-parser-perl, libxml2,
  7351. libxslt, lvm2, matchbox, mplayer, rsync, rubix, shared-mime-info,
  7352. tcl, webkit, xapp_mkfontscale, xfont_encodings, xfont_font-util,
  7353. xlib_libfontenc, xproto_trapproto, zlib
  7354. Removed package: xboard
  7355. Issues resolved (http://bugs.uclibc.org):
  7356. #335: atk looks for the path to the gnome library on the host
  7357. #355: Please update WebKit - it doesn't compile!
  7358. #453: libglib2 autoreconf
  7359. #457: e2fsprogs link problem
  7360. #459: libgtk2 autoreconf
  7361. #469: build of libgtk2 for host incorrectly assumes that X.org ...
  7362. #671: Bash fails to build when building buildront on Ubuntu 9.04
  7363. #711: WebKit host dependencies problems
  7364. #821: cp: illegal operation
  7365. #1039: Not compiled on ubuntu karmic
  7366. #1069: [PATCH] The AT91BOOTSTRAP makefile contains a typo
  7367. 2010.02-rc1, Released February 9th, 2010:
  7368. Fixes all over the tree and new features.
  7369. Generalized autotools infrastructure to be usable for
  7370. non-autotools packages, see package/Makefile.package.in for
  7371. details.
  7372. Cleaned up avr32 toolchain config, external source-based
  7373. toolchain support is gone.
  7374. Dependency checks: Also check for makeinfo, only print output
  7375. on errors.
  7376. Toolchain: uClibc 0.9.30.2, gcc 4.4.3
  7377. New packages: libcdaudio, libdvdnav, libdvdread, hostapd, ser2net,
  7378. tcpreplay
  7379. Updated/fixed packages: alsa-lib, alsa-utils, at, autoconf, bash,
  7380. bind, binutils, bootutils, busybox, dbus, directfb, dnsmasq,
  7381. e2fsprogs, gstreamer, gperf, gst-plugins-bad, gvfs, fbdump, flex,
  7382. hal, iptables, iw, jpeg, kismet, libfuse, libglib2, liboil, libpcap,
  7383. libungif, libxml2, libxslt, lighttpd, mesa, mpg123, mtd-utils, nbd,
  7384. neon, netstat-nat, newt, openvpn, pcre, php, qt, rdesktop, readline,
  7385. rpm, sawman, sdl, sdl_ttf, sqlite, sshfs, tremor, u-boot,
  7386. usb_modeswitch, usbutils, webkit, wpa_supplicant, xfsprogs, zlib
  7387. Removed package: asterisk, openswan
  7388. Issues resolved (http://bugs.uclibc.org):
  7389. #515: tcpreplay: new package
  7390. #553: Wrong DirectFB ps2mouse limitation
  7391. #559: mesa3d build fails
  7392. #679: Autoconf cannot find M4
  7393. #739: New/updated hostapd package
  7394. #749: Bump usbutils package to version 0.86
  7395. #751: Kernel 2.6 snapshot fetch fail
  7396. #753: Bump lighttpd package to 1.4.25
  7397. #757: U-Boot: mkimage cannot be installed using external toolchain
  7398. #761: Add binutils 2.20 to toolchain options
  7399. #763: [SECURITY] Update pcre to 7.9
  7400. #765: Add buildroot branding to gcc
  7401. #767: Bump iw package to 0.9.18
  7402. #773: [SECURITY] Update bind to 9.5.2-P1
  7403. #795: Minor edits to fix typos, grammar, spelling, usage in documen...
  7404. #813: Drop not very useful generic package selection options ...
  7405. #823: Editor backup files (~) is copied from the target_skeleton
  7406. #827: Bump mtd-utils package to version 1.2.0
  7407. #841: Build error
  7408. #913: Bump iptables to 1.4.6
  7409. #919: Bump usb_modeswitch package to 1.0.7
  7410. #925: Bump wpa_supplicant package to 0.6.10
  7411. #931: Bump kismet package to 2010-01-R1
  7412. #937: Bump openvpn package to 2.1.1
  7413. #943: Bump sqlite package to 3.6.22
  7414. #961: Bump dnsmasq to 2.52
  7415. #967: Bump netstat-nat to 1.4.10
  7416. #973: Bump iw to 0.9.19
  7417. #1003: DHCP options disabled with busybox-1.16.0
  7418. #1009: [SECURITY] Bump php to 5.2.12
  7419. #1015: [SECURITY] Bump bind to 9.5.1-P2
  7420. #1027: Busybox flash commands conflict with those from mtd-utils
  7421. #1063: [SECURITY] Update lighttpd to 1.4.26
  7422. 2009.11, Released December 1st, 2009:
  7423. Additional fixes and cleanups.
  7424. Updated/fixed packages: alsamixergui, autoconf, coreutils, fltk,
  7425. microperl, ncurses, vim
  7426. Issues resolved (http://bugs.uclibc.org):
  7427. #707: Cant configure fltk-1.1.7. configure: error: Configure could ...
  7428. 2009.11-rc2, Released November 29th, 2009:
  7429. Additional fixes and cleanups.
  7430. Updated/fixed packages: busybox, dbus, fltk, gvfs, ltrace
  7431. 2009.11-rc1, Released November 23rd, 2009:
  7432. Fixes all over the tree and new features.
  7433. Cleaned up / Simplified build directory layout. Refer to
  7434. docs/buildroot.html#using for details.
  7435. Target defconfig files moved to configs/ and listed in 'make help'
  7436. output.
  7437. Fixed *clean targets. Now clean removes everything generated,
  7438. so you can do a fresh rebuild. Distclean furthermore removes
  7439. kbuild tools and .config, bringing the source tree back in a
  7440. pristine state.
  7441. Toolchain: ARM cortex A8 support, GCC 4.4.2, sensible default
  7442. soft / hardfloat setting for architecture, ensure target-ldd
  7443. gets installed.
  7444. New packages: divine, gvfs, libarchive, libmicrohttpd,
  7445. sdl_sound, swfdec, sysstat
  7446. Updated/fixed packages: alsa-lib, alsamixergui, autoconf, bootutils,
  7447. busybox, gcc, directfb, dnsmasq, e2fsprogs, festival, gamin, gperf,
  7448. gqview, gstreamer, gst-plugins-bad, gst-plugins-base, gst-plugins-good,
  7449. imagemagick, ipkg, iptables, iw, kernel-headers, kismet, leafpad,
  7450. libelf, libevent, libglib2, libidn, liblockfile, libmad, libpcap,
  7451. libupnp, libuuid, libxml2, lighttpd, ltrace, lua, lzma, magiccube4d,
  7452. matchbox, mdadm, nbd, ncftp, ncurses, netkittelnet, netsnmp,
  7453. ng-spice-rework, ntfs-3g, openntp, openssl, pcmanfm, php, psmisc,
  7454. python, quagga, radvd, rpm, rsync, rubix, samba, sawman, sdl, sdl_image,
  7455. shared-mime-info, sfdisk, spawn-fcgi, speech-tools, sqlite, squashfs,
  7456. synergy, syslinux, sysklogd, target-binutils, tcpdump, torsmo, u-boot,
  7457. udpcast, util-linux, valgrind, vsftpd, wipe, wpa-supplicant, x11vnc,
  7458. xdata_xcursor-themes, xboard, xfsprogs, xstroke, zlib[5~
  7459. Removed package: mdnsresponder, mpatrol, gcc 3.4.6 + 4.0.4, vice
  7460. Issues resolved (http://bugs.uclibc.org):
  7461. #301: allow to install libsmbclient
  7462. #303: add gvfs package
  7463. #477: Add sdl_sound package
  7464. #487: Make kismet package sexier
  7465. #511: New package usb_modeswitch
  7466. #527: misc fixes for dnsmasq package
  7467. #565: libevent: Bump version and clean up makefile
  7468. #587: Use iptables multipurpose binaries and bump to 1.4.4
  7469. #593: Missing early check for patch(1)
  7470. #597: (REOP) Selecting busybox in buildroot's config clobbers ar ...
  7471. #609: libmicrohttpd: New package
  7472. #615: python: Don't delete .py files unless asked
  7473. #617: netkit/inetd requires RPC and fails to build if RPC is disabled
  7474. #619: netkittelnet requires netkitbase to install, but there's no ...
  7475. #645: allow to build nbd-server with NBD package
  7476. #653: [SECURITY] Update php package to version 5.2.11
  7477. #655: Update sqlite package to version 3.6.18
  7478. #657: Bug in imagemagick-clean target
  7479. #663: Add option for NAND flash with 512B Page and 16 kB erasesize ...
  7480. #665: [PATCH] Samba package
  7481. #667: [PATCH] e2fsprogs
  7482. #683: SDL-dfb does not select directfb
  7483. #701: make install problem with unstripped binaries
  7484. #703: [SECURITY] Update openssl package to 0.9.8l
  7485. #705: Bump spawn-fcgi package to 1.6.3
  7486. #709: Bump lighttpd package to 1.4.24
  7487. #713: Migrate openntpd package to Makefile.autotools.in
  7488. #715: Bump libidn package to 1.15 and other fixes
  7489. #717: Bump dnsmasq to 2.51 and introduce new IDN option
  7490. #731: Bump iw package to 0.9.17
  7491. 2009.08, Released August 31th, 2009:
  7492. Additional fixes and cleanups.
  7493. Updated/fixed packages: ctorrent, saveconfig/getconfig,
  7494. sdl_net, util-linux.
  7495. Issues resolved (http://bugs.uclibc.org):
  7496. #529: util-linux doesn't find headers and include libs correctly
  7497. #557: Build ctorrent with SSL support if available
  7498. 2009.08-rc3, Released August 26th, 2009:
  7499. Additional fixes and cleanups.
  7500. Updated/fixed packages: alsa-utils, berkeleydb, busybox, dbus,
  7501. directfb, enchant, kernel headers.
  7502. Issues resolved (http://bugs.uclibc.org):
  7503. #471: Allow directfb compilation with debug
  7504. #541: Removal of CVS directories in target filesystem broken
  7505. #547: berkeleydb: Update config.{sub, guess}
  7506. #549: enchant: Fix dependencies.
  7507. #569: Fix alsa-utils build for x86 on x86-64
  7508. 2009.08-rc2, Released August 6th, 2009:
  7509. Additional fixes and new features.
  7510. New packages: libuuid, gcc 4.3.4.
  7511. Updated/fixed packages: busybox, classpath, gzip, ipsec-tools,
  7512. jamvm, libusb, microperl, neon, popt, sed, webkit.
  7513. Fixed issue with 'make oldconfig'
  7514. Issues resolved (http://bugs.uclibc.org):
  7515. #525: sed broken with external toolchain
  7516. #537: Fix gzip build with recent glibc
  7517. 2009.08-rc1, Released August 2nd, 2009:
  7518. Fixes all over the tree and new features.
  7519. Improvement of external toolchain support:
  7520. - Support for glibc toolchains.
  7521. - The toolchain configuration announced to Buildroot is
  7522. verified against the real toolchain configuration.
  7523. - Fixes, documentation.
  7524. Cleanup X.org support: clarified configuration options, and
  7525. removed mandatory dependency on useless libraries such as
  7526. libXt or libXaw.
  7527. New QT-based configurator, usable using 'make xconfig'.
  7528. Support for the Xtensa architecture.
  7529. Toolchain: GCC 4.4.1, 2.6.30 kernel headers, removed < 2.6.26
  7530. headers.
  7531. New packages: bmon, ctorrent, dosfstools, enchant,
  7532. gst-plugins-bad, iw, libmms, libnl, netstat-nat, ntfsprogs,
  7533. sdl_gfx, spawn-fcgi.
  7534. Updated packages: bind, busybox, coreutils, sqlite, directfb,
  7535. expat, gamin, gnuconfig, haserl, ipsec-tools, classpath,
  7536. libcurl, libglib2, liblockfile, libpng, libsoup, libxml2,
  7537. lighttpd, ltp-testsuite, lvm2, matchbox, memstat,
  7538. gst-plugins-good, gstreamer, libogg, libvorbis, mplayer,
  7539. neon, openssl, pciutils, php, qt, ruby, sawman, webkit,
  7540. wpa-supplicant, xdriver_xf86-input-synaptics,
  7541. xdriver_xf86-video-intel, xlib_libXfont, xlib_libXft,
  7542. xlib_libXt, xproto_xproto, xserver-xorg, xutil_makedepend,
  7543. xutil_util-macros.
  7544. Issues resolved (http://bugs.uclibc.org):
  7545. #83: liblockfile fails to compile due to eaccess redefinition
  7546. #163: Xtensa architecture port
  7547. #171: xorg-server / kernel headers 2.6.26 - vm86.c compilation issue
  7548. #241: device mapper + lvm2: build together
  7549. #243: ctorrent: new package
  7550. #247: ntfsprogs: new package
  7551. #271: Library 'libgcc_s.so.1' not installed in search path
  7552. #287: New package libnl
  7553. #289: New package iw
  7554. #331: Update MPlayer to version 1.0rc2
  7555. #333: Bump sqlite package to 3.6.15
  7556. #349: update libsoup to version 2.26.2
  7557. #357: New package netstat-nat
  7558. #359,#413: Upgrade openvpn to Makefile.autotools.in
  7559. #367: linux kernel compile error for arm926t
  7560. #369: Add SDL_gfx package
  7561. #373: Support for building gstreamer without libxml
  7562. #379: update DirectFB to version 1.4.0
  7563. #383: gst-plugins-good: Allow soup plugin to be configured
  7564. #385: neon: Fix pkgconfig dependency
  7565. #387: Tremor not installed to toolchain
  7566. #389: New package bmon
  7567. #391: gstreamer: Bump version to 0.10.23
  7568. #393: gst-plugins-base: Bump version to 0.10.23
  7569. #395: gst-plugins-bad: New package
  7570. #403: Error while building iso9660 image
  7571. #409: Bump php package to 5.2.10
  7572. #411: ipsec-tools: Bump version to 0.7.2
  7573. #417: New package spawn-fcgi
  7574. #419: Bump lighttpd package to 1.4.23
  7575. #421: toolchain: Clean up toolchain locale support menu
  7576. #427: webkit: Update to WebKit svn r44552
  7577. #437: ltp-testsuite: Bump version to 20090630
  7578. #451: Upgrade from unmaintained dosfstools-2.11 to dosfstools-3.0.3
  7579. #467: DirectFB 1.4.1
  7580. #473: memstat_0.5.tar.gz has install with -D and that fails "make"
  7581. #491: libxml2: Bump version to 0.7.3
  7582. #495: Bump bind package to 9.5.1-P3 (security)
  7583. #497: OpenSSL RSA key generation hangs on x86_64
  7584. #509: Bump sqlite package to 3.6.16
  7585. #523: pciutils broken with external toolchain
  7586. #533: Update gamin to 0.1.10 to fix compilation
  7587. 2009.05, Released June 1st, 2009:
  7588. Fixes for dropbear & diffutils, bump linux-advanced 2.6.29.x
  7589. version and marked ubifsroot as broken.
  7590. 2009.05-rc3, Released May 27th, 2009:
  7591. Fixes for toolchain (gcc arm pr37436), stable kernel versions,
  7592. busybox, curl, libusb, readline, python and strace.
  7593. Issues resolved (http://bugs.uclibc.org):
  7594. #345: libcurl package needs a urandom fix
  7595. 2009.05-rc2, Released May 19th, 2009:
  7596. Fixes for toolchain (gcc w/softfloat on ppc, 3.4.6 buildfix
  7597. for newer hosts), stable kernel versions, busybox, cups,
  7598. dmraid, docker, mesa3d, rsync and updated defconfigs.
  7599. xserver marked as broken on AVR32 and atngw100-expanded
  7600. config removed.
  7601. Issues resolved (http://bugs.uclibc.org):
  7602. #167: metacity does not build
  7603. #295: gamin installs python support even if python is disabled
  7604. #323: gen_matypes fails to execute during build of Mesa when us...
  7605. 2009.05-rc1, Released May 5th, 2009:
  7606. Fixes all over the tree, further conversion of packages to
  7607. Makefile.autotools.in and we now build host versions of
  7608. packages where needed for build time dependencies instead of
  7609. relying on the correct versions being available on the build
  7610. host. Ancient toolchain / busybox versions have furthermore
  7611. been removed as announced in the 2009.02 release notes.
  7612. New packages: flac, gob2, lzop, taglib, wpa_supplicant
  7613. Updated packages: avahi, bind, binutils, busybox, dbus, dbus-glib,
  7614. directfb, dnsmasq, freetype, gcc, gmp, gstreamer, iptables, kernel
  7615. headers, kexec, libglib2, libpng, libsndfile, lua, mpfr, ntfs-3g,
  7616. openssl, php, qtopia4, rsync, samba, sqlite, tar, uboot, uclibc,
  7617. util-linux, xorg7, xerces
  7618. Issues resolved (http://bugs.uclibc.org):
  7619. #5,#77,#141,#143: Convert php package to Makefile.autotools.in
  7620. and a ton of other improvements
  7621. #19: page.h missing by util-linux
  7622. #37: update libglib2 to version 2.18.4
  7623. #61: tslib puts staging_dir into pkgconfig file
  7624. #69: tar refuses to build
  7625. #71,#175: ./wchar.h:41:12: error: empty filename in #include
  7626. #73: Bump openssl package to the latest version
  7627. #81: New package wpa_supplicant
  7628. #99: new package: flac
  7629. #101: update gstreamer packages
  7630. #105,#313: menuconfig segfaults on tinyx if wchar is not
  7631. selected
  7632. #107: convert libvorbis to Makefile.autotools.in
  7633. #109: Make pppd package avoid bsd err
  7634. #111: binutils 2.17 fails to build when texinfo >= 4.10
  7635. #133: Modify ncurses5-config to get correct include path
  7636. #137: Bump php to version 5.2.9
  7637. #139: Bump sqlite to 3.6.11 and convert to
  7638. Makefile.autotools.in
  7639. #145: Bump bind package to 9.5.1-P1 (security)
  7640. #147: buildroot toolchain fails to build w/binutils-2.19.1
  7641. #151: openssl package trivial fixes
  7642. #161: vim fails on patching with errors in configure.patch
  7643. #169: blackbox-0.70.1 does not build
  7644. #177: xdriver_xf86-input-keyboard does not build
  7645. #179: Upgrade dropbear to Makefile.autotools.in
  7646. #181: Update to Xorg 7.4
  7647. #187: ntfs-3g: could not build cross
  7648. #191: alsa-lib ARM binaries always built with EABI
  7649. #213: Bump wpa_supplicant package to version 0.6.9
  7650. #217: Bump openssl package to 0.9.8k (security)
  7651. #219: Toolchain build fails on m4
  7652. #225: m4 macros are out of place
  7653. #233: make ipv6 optional in iptables
  7654. #237: ncftp: convert to Makefile.autotools.in
  7655. #239: ntfs-3g: convert to Makefile.autotools.in
  7656. #245: lzop: new package
  7657. #271: Bump bind package to 9.5.1-P2 (security)
  7658. #277: Bump sqlite package to 3.6.16
  7659. #279: update libglib2 to version 2.20.1
  7660. #281: update DirectFB to version 1.2.8
  7661. #283: add taglib
  7662. #285: compilation of samba fails if IPV6 support is missing
  7663. #293: update samba to version 3.3.3
  7664. #299: add shared-mime-info package
  7665. #307: make openssl package respect build flags