CHANGES 357 KB

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