CHANGES 270 KB

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