CHANGES 345 KB

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