CHANGES 280 KB

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