CHANGES 328 KB

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