CHANGES 260 KB

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