CHANGES 308 KB

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