CHANGES 289 KB

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