CHANGES 316 KB

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