CHANGES 385 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782
  1. 2020.08.1, released October 12th, 2020
  2. Important / security related fixes.
  3. Fixes for various compilation issues with GCC 10.x.
  4. meson: Correct SDK cross-compilation.conf file when
  5. per-package builds were used to build SDK.
  6. systemd: Use /run rather than /var/run for PID files in units.
  7. Toolchain: use Secure-PLT rather than BSS-PLT for PowerPC 32.
  8. Fakeroot scripts (BR2_ROOTFS_POST_FAKEROOT_SCRIPT) are now run
  9. after all finalization hooks (including pre-rootfs) to ensure
  10. they can override any late configuration done by packages.
  11. support/script/pycompile: Rework logic to ensure .pyc files
  12. contain absolute target paths, fixing code inspection at
  13. runtime when executed with cwd != '/'.
  14. support/scripts/setlocalversion: Correct Mercurial output to
  15. match behaviour with Git.
  16. support/scripts/apply-patches.sh: Use patch
  17. --no-backup-if-mismatch, so we no longer blindly have to
  18. remove *.orig files after patching, fixing issues with
  19. packages containing such files.
  20. fs/jffs2: Now correctly handles xattrs
  21. Updated/fixed packages: acpica, afboot-stm32, alsa-utils,
  22. apparmor, bandwidthd, barebox, bash, bison, brotli,
  23. cifs-utils, cups, dhcpcd, dhcpdump, docker-cli, docker-engine,
  24. ecryptfs-utils, efl, fail2ban, fbterm, ffmpeg, fontconfig,
  25. freetype, gcc, gdb, ghostscript, gnupg2, gnutls, go, gqview,
  26. gst1-plugins-base, gst1-plugins-ugly, ipmitool, jbig2dec,
  27. kexec, lcdproc, libcamera, libhtp, libnetconf2, libraw,
  28. libssh, libxml2, libxml-parser-perl, libzip, linux-headers,
  29. live555, localedef, ltp-testsuite, lua, matchbox, memcached,
  30. memtester, mesa3d, meson, minidlna, mongodb, mongrel2, motion,
  31. mraa, mtd, musepack, neardal, netatalk, netperf, netsniff-ng,
  32. nginx, nodejs, nss-pam-ldapd, open-plc-utils, openswan,
  33. opentyrian, openvmtools, php, postgresql, python,
  34. python-aenum, python-cycler, python-engineio, python-fire,
  35. python-pymodbus, python-scapy, python-semver,
  36. python-sentry-sdk, python-socketio, python-texttable,
  37. python-tinyrpc, python-txtorcon, python3, qt5base, quagga,
  38. read-edid, redis, rsh-redone, runc, samba4, socketcand,
  39. strace, supertux, suricata, systemd, ti-utils, trinity,
  40. uclibc, usb_modeswitch, vlc, vsftpd, wampcc,
  41. wayland-protocols, wireguard-linux-compat, wireshark, wlroots,
  42. wolfssl, w_scan, xerces, xfsprogs, xdriver-xf86-video-ati,
  43. xserver_xorg-server, ympd, zeromq, zlib-ng, zstd
  44. Issues resolved (http://bugs.uclibc.org):
  45. #12911: usb_modeswitch installation race condition
  46. #13236: Can't compile linux 5.4.8 (with gcc 10 on host)
  47. 2020.08, released September 1st, 2020
  48. Various fixes.
  49. Updated/fixed packages: am33x-cm3, avahi, bluez-tools,
  50. busybox, chocolate-doom, collectd, dhcp, docker-cli, domoticz,
  51. gobject-introspection, graphite2, haproxy, ibm-sw-tpm2,
  52. imagemagick, libeXosip2, libressl, lxc, mbedtls, menu-cache,
  53. mongodb, mosquitto, nvidia-driver, paho-mqtt-c, pixz,
  54. postgresql, python-django, rtty, squid, stress-ng, systemd,
  55. trousers, uclibc, wireshark, wolfssl, zbar
  56. 2020.08-rc3, released August 28th, 2020
  57. Fixes all over the tree.
  58. Infrastructure: Ensure RPATH entries that may be needed for
  59. dlopen() are not dropped by patchelf.
  60. Toolchain: Drop old GCC 6 based external Sourcery AMD64
  61. toolchain.
  62. Updated/fixed packages: assimp, davfs2, dillo, glibc,
  63. gnuradio, hostapd, ibm-sw-tpm2, ipmitool, json-c, libroxml,
  64. linux, mender, netopeer2, openal, openjpeg, python-matplotlib,
  65. ripgrep, shadowsocks-libev, trousers, xlib_libX11,
  66. xserver_xorg-server
  67. Issues resolved (http://bugs.uclibc.org):
  68. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  69. 2020.08-rc2, released August 24th, 2020
  70. Fixes all over the tree, including a number of fixes for
  71. compilation with GCC-10.
  72. Toolchain: Disallow building uClibc-ng for RISC-V 64-bit,
  73. because of issues with a missing __riscv_flush_icache()
  74. implementation.
  75. Defconfigs: CI20: Use mainline Linux and U-boot. Update
  76. Microchip sama5d27_wlsom1_ek_mmc_dev to use bluez5-utils
  77. instead of (the removed) legacy bluez-utils
  78. Updated/fixed packages: 18xx-ti-utils, aircrack-ng, apache,
  79. atest, bandwidthd, bellagio, bind, bird, bluez-alsa, boost,
  80. c-periphery, capnproto, chrony, collectd, cpio, cvs,
  81. dieharder, domoticz, dovecot, dovecot-pigeonhole, drbd-utils,
  82. dump1090, efl, elixir, f2fs-tools, feh, fluidsynth, fping,
  83. gdbm, gdk-pixbuf, ghostscript, gst1-plugins-bad,
  84. gstreamer1-editing-services, htop, ibm-sw-tpm2, ifplugd,
  85. iftop, igd2-for-linux, ima-evm-utils, iprutils, iputils,
  86. keepalived, kmsxx, libabseil-cpp, libcamera, libcurl,
  87. libfuse3, libnss, librtlsdr, libubox, libunwind, live555,
  88. lttng-tools, luabitop, mender-artifact, minizip,
  89. mjpg-streamer, mpd, mpv, mtd, ncftp, open-lldp, openal,
  90. opencv, opencv3, openfpgaloader, optee-os, owfs, php,
  91. pistache, prosody, pulseview, python-decorator,
  92. python-gunicorn, python-rpi-gpio, python-spidev,
  93. python3-decorator, python3-mako, python3-pyselftools, qt5,
  94. qt5webengine, rauc, redis, ripgrep, rtl8188eu, rtl8821au,
  95. setools, smstools3, supertux, tftpd, tpm2-abrmd,
  96. wpa_supplicant, xen, xlib_libX11, xserver_xorg-server
  97. New packages: python3-cython, python3-pycryptodomex
  98. Issues resolved (http://bugs.uclibc.org):
  99. #12876: nodejs fails to build when host-icu has been built before
  100. #13111: python-gunicorn: missing dependency on python-setuptools
  101. #13121: wpa_supplicant fails to build without libopenssl enabled
  102. #13146: raspberrypi3_defconfig: "Inappropriate ioctl for device"..
  103. #13156: package live555 new license
  104. #13166: python-rpi-gpio: does not work against aarch64, unint..
  105. 2020.08-rc1, released August 6th, 2020
  106. Toolchain:
  107. - GCC 10.x added, GCC 9.x is the default
  108. - binutils 2.34 added, binutils 2.33 is the default, binutils
  109. 2.31 removed
  110. - glibc updated to 2.31
  111. - ARC toolchain components updated to 2020.03-release.
  112. - Enable uClibc-ng usage for RISC-V 64-bit
  113. Infrastructure:
  114. - qmake-package was fixed to be compatible with
  115. BR2_PER_PACKAGE_DIRECTORIES
  116. - complete rewrite of the Gitlab CI Yaml configuration file,
  117. now generated directly by the Gitlab CI pipeline itselfs
  118. Misc:
  119. - cargo and cargo-bin packages removed, as cargo is now part
  120. of Rust itself
  121. Filesystem: ubinize configuration files can now use
  122. BINARIES_DIR to refer to the $(O)/images directory.
  123. New packages: bitwise, earlyoom, fuse-overlayfs, gloox,
  124. kodi-pvr-octonet, kodi-pvr-zattoo, libabseil-cpp, libcutl,
  125. libnids, libnpupnp, libodb, libodb-boost, libodb-mysql,
  126. libodb-pgsql, mbpfan, netopeer2, odb, parprouted,
  127. python-colorzero, python-gpiozero, python-pybind, python-yatl,
  128. python3-decorator, qt5quicktimeline, resiprocate, ttyd,
  129. unclutter-xfixes, urandom-scripts,
  130. New defconfigs: bananapi_m2_zero, freescale_imx8mnevk,
  131. globalscale_espressobin, imx6ullevk,
  132. microchip_sama5d27_wlsom1_ek, rock_pi_4, rock_pi_n10
  133. Removed packages: cargo, cargo-bin,
  134. kodi-peripheral-steamcontroller
  135. Issues resolved (http://bugs.uclibc.org):
  136. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_DIRECTORIES
  137. #12946: Grub: Decompressor is too big.
  138. #12986: Mtools: Error converting to codepage 850
  139. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  140. #13011: Incorrect selection of gcc version
  141. #13021: Minor code error when building granite-0.4.1
  142. #13026: rpi-firmware: must not rename start files
  143. #13046: Optimize for fast -Ofast is not compliant
  144. #13081: host-e2fsprogs attempts to create udev rules.d on build host if not exists
  145. #13101: BR audit2allow support
  146. 2020.05.3, released October 12th, 2020
  147. Important / security related fixes.
  148. meson: Correct SDK cross-compilation.conf file when
  149. per-package builds were used to build SDK.
  150. systemd: Use /run rather than /var/run for PID files in units.
  151. Toolchain: use Secure-PLT rather than BSS-PLT for PowerPC 32.
  152. Fakeroot scripts (BR2_ROOTFS_POST_FAKEROOT_SCRIPT) are now run
  153. after all finalization hooks (including pre-rootfs) to ensure
  154. they can override any late configuration done by packages.
  155. support/script/pycompile: Rework logic to ensure .pyc files
  156. contain absolute target paths, fixing code inspection at
  157. runtime when executed with cwd != '/'.
  158. support/scripts/setlocalversion: Correct Mercurial output to
  159. match behaviour with Git.
  160. support/scripts/apply-patches.sh: Use patch
  161. --no-backup-if-mismatch, so we no longer blindly have to
  162. remove *.orig files after patching, fixing issues with
  163. packages containing such files.
  164. Updated/fixed packages: alsa-utils, apparmor, avahi,
  165. bandwidthd, barebox, bash, bison, brotli, busybox, cifs-utils,
  166. cryptsetup, cups, dhcpcd, dhcpdump, docker-cli, docker-engine,
  167. ecryptfs-utils, efl, fail2ban, freetype, gcc, gdb,
  168. ghostscript, gnutls, go, graphite2, gst1-plugins-base,
  169. gst1-plugins-ugly, imagemagick, ipmitool, jbig2dec, libhtp,
  170. libraw, libssh, libxml2, libxml-parser-perl, linux-headers,
  171. localedef, lua, mbedtls, memcached, mesa3d, meson, minidlna,
  172. mongodb, nginx, nodejs, nss-pam-ldapd, openvmtools,
  173. paho-mqtt-c, php, postgresql, python, python-aenum,
  174. python-django, python-engineio, python-fire, python-pymodbus,
  175. python-scapy, python-semver, python-sentry-sdk,
  176. python-socketio, python-texttable, python-tinyrpc,
  177. python-txtorcon, python3, qt5base, rsh-redone, runc, samba4,
  178. strace, supertux, suricata, systemd, uclibc, usb_modeswitch,
  179. vlc, vsftpd, wayland-protocols, wireguard-linux-compat,
  180. wireshark, wlroots, wolfssl, xserver_xorg-server, ympd,
  181. zeromq, zstd
  182. Issues resolved (http://bugs.uclibc.org):
  183. #12911: usb_modeswitch installation race condition
  184. #13251: cryptsetup does not work on branch 2020.02 following..
  185. 2020.05.2, released August 29th, 2020
  186. Important / security related fixes.
  187. Infrastructure: Ensure RPATH entries that may be needed for
  188. dlopen() are not dropped by patchelf.
  189. BR_VERSION_FULL/setlocalversion (used by make print-version
  190. and /etc/os-release): Properly handle local git tags
  191. Updated/fixed packages: apache, assimp, at91bootstrap3, bind,
  192. boost, busybox, capnproto, cegui, chrony, collectd, cpio,
  193. cryptsetup, cups, cvs, dbus, docker-engine, domoticz, dovecot,
  194. dovecot-pigeonhole, dropbear, efl, elixir, f2fs-tools, ffmpeg,
  195. gd, gdk-pixbuf, ghostscript, glibc, gnuradio, grub2,
  196. gst1-plugins-bad, gstreamer1-editing-services, hostapd,
  197. ibm-sw-tpm2, iputils, jasper, json-c, libcurl, libressl,
  198. libwebsockets, linux, live555, mesa3d, mongodb, mosquitto,
  199. mpv, nodejs, opencv, opencv3, openfpgaloader, openjpeg,
  200. patchelf, perl, php, postgresql, prosody, python-django,
  201. python-gunicorn, python-matplotlib, ripgrep, rtl8188eu,
  202. rtl8821au, ruby, shadowsocks-libev, squid, systemd,
  203. tpm2-abrmd, tpm2-tools, trousers, uboot, webkitgtk, wireshark,
  204. wolfssl, wpa_supplicant, wpewebkit, xen, xlib_libX11,
  205. xserver_xorg-server
  206. Issues resolved (http://bugs.uclibc.org):
  207. #12876: nodejs fails to build when host-icu has been built before
  208. #13111: python-gunicorn: missing dependency on python-setuptools
  209. #13121: wpa_supplicant fails to build without libopenssl enabled
  210. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  211. #13156: package live555 new license
  212. 2020.05.1, released July 25th, 2020
  213. Important / security related fixes.
  214. Toolchain:
  215. - Make external toolchain version check also work for
  216. toolchains configured with --with-gcc-major-version-only
  217. - Do not handle SOURCE_DATE_EPOCH in toolchain wrapper if the
  218. compiler supports it, fixing an issue with precompiled
  219. headers
  220. - Ensure debug libs from external toolchains are not installed
  221. into target if debugging is disabled
  222. Download:
  223. - Correct reproducibility issue in handling of git submodules
  224. for older git versions.
  225. - Fix file locking over NFS
  226. fs: Ensure cpio archive element order is reproducible
  227. Br2-external: Fix error reporting for invalid br2-external trees
  228. Per-package:
  229. - Fix an issue with python3 sysconfig data not getting
  230. correctly expanded
  231. - Fix per-package building for packages using the qmake
  232. infrastructure
  233. Updated/fixed packages: a10disp, asterisk, bind, brltty,
  234. cdrkit, clamav, cryptodev-linux, dbus, docker-cli,
  235. docker-engine, dvb-apps, e2fsprogs, exim, exiv2, freerdp, gdb,
  236. gdk-pixbuf, gerbera, gnutls, go, granite, grub2, gssdp,
  237. gst1-plugins-good, gst1-plugins-ugly, gupnp, intel-microcode,
  238. iproute2, irrlicht, iwd, jq, kodi, libcamera, libcec,
  239. libconfuse, libcurl, libevdev, libhttpserver, libmicrohttpd,
  240. libnss, libressl, libvncserver, libxml2, libxmlrpc, lxc,
  241. mbedtls, mediastreamer, mesa3d, meson, minizip, mongodb,
  242. mtools, mutt, nano, network-manager, nghttp2, ngircd, nodejs,
  243. ntp, open-plc-utils, open2300, openjdk-bin, openssh,
  244. oracle-mysql, paho-mqtt-c, pango, php, poco, prosody, putty,
  245. python-greenlet, python-urllib3, python-validators, python3,
  246. readline, redis, rpi-firmware, rtl8821au, samba4, sdl2,
  247. sqlite, squid, strace, sunxi-mali-mainline-driver, syslog-ng,
  248. systemd, tcpreplay, tinydtls, upmpdcli, upx, vlc, webkitgtk,
  249. wireguard-linux-compat, wireshark, wpebackend-fdo, wpewebkit,
  250. x11vnc, znc, zstd
  251. Issues resolved (http://bugs.uclibc.org):
  252. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_..
  253. #12946: Grub: Decompressor is too big.
  254. #12986: Mtools: Error converting to codepage 850
  255. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  256. #13011: Incorrect selection of gcc version
  257. #13021: Minor code error when building granite-0.4.1
  258. #13026: rpi-firmware: must not rename start files
  259. #13031: nodejs: RangeError at new ArrayBuffer()
  260. #13046: Optimize for fast -Ofast is not compliant
  261. 2020.05, released June 1st, 2020
  262. Various fixes.
  263. Updated/fixed packages: arm-trusted-firmware, gcc, mp4v2, fmc,
  264. fmlib, glib-networking, libusb-compat, linux, qt5webengine,
  265. sysrepo, wampcc, xen
  266. 2020.05-rc3, released May 29th, 2020
  267. Fixes all over the tree.
  268. Infrastructure: Support checking download hashes for packages
  269. coming from Subversion.
  270. Defconfigs: Increase boot partition size to 64MB for Freescale
  271. boards to allow space for bigger kernels.
  272. Updated/fixed packages: audit, bind, dovecot, efl, erlang,
  273. ffmpeg, fio, gerbera, gnupg, leveldb, lrzip, ltrace, matio,
  274. mesa3d, mp4v2, prosody, qemu, qt5declarative, speexdsp,
  275. systemd, tremor, uboot-tools, unbound, wireshark
  276. Removed packages: wiringpi
  277. Issues resolved (http://bugs.uclibc.org):
  278. #12361: Init system (systemd) kills login on Raspberry Pi Zero
  279. #12686: recipe for target 'install_dev' failed (libcrypto.so..)
  280. 2020.05-rc2, released May 22nd 2020
  281. Fixes all over the tree.
  282. U-Boot: Support building with Python 3.x instead of Python
  283. 2.x. Since U-Boot 2020.01, various U-Boot build scripts use
  284. Python 3.x instead of Python 2.x, so add an option to pull in
  285. host-python3 rather than host-python. Also fix a number of
  286. defconfigs to use this new option.
  287. Updated/fixed packages: apparmor, binutils, bison, brltty,
  288. c-icap, cegui, checkpolicy, clamav, crda, cvs, docker-cli,
  289. docker-engine, domoticz, elf2flt, exfatprogs, fakeroot,
  290. ffmpeg, freerdp, gcc, glibc, gnuconfig, irrlicht, kmod,
  291. libexif, libpam-tacplus, libssh2, libv4l, libvncserver,
  292. localedef, lrzip, mariadb, matchbox, mbuffer, mesa3d,
  293. mesa3d-headers, meson, netsniff-ng, openldap, openocd,
  294. optee-os, p7zip, paho-mqtt-c, php, piglit, pigz,
  295. python-argon2-cffi, python-attrs, python-future,
  296. python-markdown, python-pycryptodomex, python-pyqt5, qt5base,
  297. rpi-firmware, rustc, squashfs, squid, stella, suricata,
  298. systemd, uacme, uclibc, util-linux, vboot-utils
  299. New packages: python3-pyelftools
  300. Removed packages: ezxml, mtdev2tuio, python-pycrypto
  301. Issues resolved (http://bugs.uclibc.org):
  302. #10551: PowerPC SPE and Musl
  303. #12256: package tar is outdated (1.29 is 3 years old)
  304. #12271: python-iptables runtime dependencies
  305. #12321: host-generic-package: PKG_DL_OPTS not used for host package
  306. #12391: CMake-based host package fails to include output/host/include
  307. #12431: ethernet no detected on nanopi neo 2
  308. #12521: RISCV RV32IA selected, RV64GC output
  309. #12586: avahi failure
  310. #12596: host-e2fsprogs: tune2fs incompatibility on older glibc..
  311. #12611: ntp hash is not matching with upstream 4.2.8p13
  312. #12626: PHP missing header files within 2020.02
  313. #12631: glibc support Power-PC SPE
  314. #12656: bison fails to relocate with relocate-sdk.sh
  315. #12661: cups problems in buildroot
  316. #12686: recipe for target 'install_dev' failed (libcrypto.so:..
  317. #12691: host-rust build fails
  318. #12761: Buildroot fails when building GCNano binaries for the STM..
  319. #12786: Systemd spawns two getty processes when the getty port..
  320. #12806: There are multiple issues in buildroot that faults cups..
  321. #12826: nodejs-12.16.1: error: 'uv_sleep' was not declared in..
  322. #12831: RPI-firmware package: DTB-overlay dependency
  323. #12836: libunwind: package does not show up in menuconfig for..
  324. #12841: util-linux/sfdisk 2.35.1 fails on sector-size header
  325. #12866: should we be disabling bash executable path caching?
  326. #12886: GMP built in wrong order (?)
  327. #12891: QEMU, libvirt-bin, qemu-kvm Package Support required
  328. #12901: GStreamer doesn't build on 2020-05 rc1 with GObject..
  329. #12906: qt PrefixPath is wrong on 2020.05-rc1
  330. #12921: nodejs-12.16.1: error: overriding 'virtual icu_65::..
  331. 2020.05-rc1, released May 7th 2020
  332. Addition of support for gobject-introspection: both the
  333. gobject-introspection package itself, but also introspection
  334. support was enabled in a number of other packages.
  335. Support for Qt 5.6 was dropped as its support was dropped
  336. upstream, only one version of Qt is supported at the moment:
  337. Qt 5.14.2.
  338. Addition of support for the apparmor Linux security module, by
  339. adding the necessary user-space packages.
  340. Addition of a qmake package infrastructure, now used by most
  341. Qt-related packages.
  342. The Luarocks package infrastructure has been extended to
  343. support build host packages.
  344. The package infrastructure was improved to allow each package
  345. to indicate the Linux kernel configuration options it needs.
  346. Addition of support for generating filesystem images using the
  347. EROFS filesystem.
  348. The logic that calculates the list of files installed by each
  349. package was reworked to be compatible with the top-level
  350. parallel build functionality.
  351. Addition of a package for a pre-compiled ARM32 bare-metal
  352. toolchain, which can be used to build ARM32 code in ARM64
  353. configurations, such as firmware/bootloader code.
  354. The Qemu defconfigs are now boot-tested in Qemu as part of the
  355. Gitlab continuous integration.
  356. Toolchain: gcc 9.x bumped to 9.3.0, gcc 8.x bumped to 8.4.0,
  357. gdb bumped to 8.3.1.
  358. New packages: apcupsd, apparmor, arm-gnu-a-toolchain, bearssl,
  359. belle-sip, belr, cage, chartjs, erofs-utils, exfatprogs,
  360. gobject-introspection, ibm-sw-tpm2, imx-seco, jbig2dec,
  361. libapparmor, libiberty, libfuse3, libtextstyle, libudfread,
  362. libuhttpd, libuwsc, lua-lyaml, matio, mbuffer, netdata,
  363. openfpgaloader, perl-i18n, perl-locale-maketext-lexicon,
  364. perl-lwp-protocol-https,
  365. perl-mojolicious-plugin-authorization,
  366. perl-mojolicious-plugin-cspheader,
  367. perl-mojolicious-plugin-i18n,
  368. perl-mojolicious-plugin-securityheader, perl-mozilla-ca,
  369. perl-path-class, pistache, pkcs11-helper, prelink-cross,
  370. python-argon2-cffi, python-canopen, python-cbor2,
  371. python-filelock, python-flatbuffers, python-greenlet,
  372. python-modbus-tk, python-pyalsa, python-pysftp, python-regex,
  373. python-snappy, rtty, tinyproxy, udev-gentoo-scripts, unbound,
  374. vuejs, wlroots.
  375. New defconfigs: freescale_imx6ullevk, freescale_imx8qmmek,
  376. nanopi_neo4, nanopi_r1, nitrogen8mm, nitrogen8mn, olpc_xo1,
  377. olpc_xo175, roc_rk3399_pc, stm32mp157a_dk1, zynq_qmtech
  378. Issues resolved (http://bugs.uclibc.org):
  379. #10386: Add an option to put all compiled executables that
  380. show up on target/ in staging/ as well
  381. #11866: iniramfs file system fails to boot using Grub on EFI x86_64
  382. #12666: Doesn't pick up a custom bash profile
  383. #12696: Uboot 2020.01 Problem loading Linux kernel on Nano PI NEO
  384. #12701: [patch] wpa_supplicant must depend on openssl
  385. #12711: host-localedef 2.30-20 fails to compile on fedora 32 (gcc 10.0.1)
  386. #12716: bio.h not found
  387. #12726: systemctl preset-all failed for ctrl-alt-del.target
  388. #12731: rtl8188eu not buildung for banana pi M1 (glib, systemd, 4.18.12)
  389. #12746: "sysdig" package description points to
  390. http://sysdig.org, which bounces to malware site
  391. #12751: OpenJdk package installation issues on target
  392. #12796: Update OpenSSL to Version 1.1.1g to patch CVE-2020-1967
  393. #12811: bootstrap stuck and no login prompt
  394. 2020.02.6, released September 5th, 2020
  395. Important / security related fixes.
  396. Fix a 2020.02.5 build regression in busybox when systemd (and
  397. not less) are enabled because of missing infrastructure.
  398. Updated/fixed packages: alsa-utils, avahi, busybox, cups,
  399. docker-cli, graphite2, imagemagick, libeXosip2, mbedtls,
  400. nvidia-driver, paho-mqtt-c, python-django, systemd, uclibc,
  401. usb_modeswitch, wolfssl
  402. Issues resolved (http://bugs.uclibc.org):
  403. #12911: usb_modeswitch installation race condition
  404. 2020.02.5, released August 29th, 2020
  405. Important / security related fixes.
  406. Infrastructure: Ensure RPATH entries that may be needed for
  407. dlopen() are not dropped by patchelf.
  408. BR_VERSION_FULL/setlocalversion (used by make print-version
  409. and /etc/os-release): Properly handle local git tags
  410. Updated/fixed packages: apache, at91bootstrap3, bind, boost,
  411. busybox, capnproto, chrony, collectd, cpio, cryptsetup, cups,
  412. cvs, dbus, docker-engine, domoticz, dovecot,
  413. dovecot-pigeonhole, dropbear, efl, elixir, f2fs-tools, ffmpeg,
  414. gd, gdk-pixbuf, ghostscript, glibc, grub2, gst1-plugins-bad,
  415. hostapd, iputils, jasper, json-c, libcurl, libwebsockets,
  416. linux, live555, mesa3d, mosquitto, mpv, nodejs, opencv,
  417. opencv3, openjpeg, patchelf, perl, php, postgresql,
  418. python-django, python-gunicorn, python-matplotlib, ripgrep,
  419. rtl8188eu, rtl8821au, ruby, shadowsocks-libev, squid,
  420. tpm2-abrmd, tpm2-tools, trousers, uacme, webkitgtk, wireshark,
  421. wolfssl, wpa_supplicant, wpewebkit, xen, xlib_libX11,
  422. xserver_xorg-server
  423. Issues resolved (http://bugs.uclibc.org):
  424. #12876: nodejs fails to build when host-icu has been built before
  425. #13111: python-gunicorn: missing dependency on python-setuptools
  426. #13121: wpa_supplicant fails to build without libopenssl enabled
  427. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  428. #13156: package live555 new license
  429. 2020.02.4, released July 26th, 2020
  430. Important / security related fixes.
  431. Toolchain:
  432. - Make external toolchain version check also work for
  433. toolchains configured with --with-gcc-major-version-only
  434. - Do not handle SOURCE_DATE_EPOCH in toolchain wrapper if the
  435. compiler supports it, fixing an issue with precompiled
  436. headers
  437. - Ensure debug libs from external toolchains are not installed
  438. into target if debugging is disabled
  439. Download:
  440. - Correct reproducibility issue in handling of git submodules
  441. for older git versions.
  442. - Fix file locking over NFS
  443. fs: Ensure cpio archive element order is reproducible
  444. Br2-external: Fix error reporting for invalid br2-external trees
  445. Per-package:
  446. - Fix an issue with python3 sysconfig data not getting
  447. correctly expanded
  448. - Fix per-package building for packages using the qmake
  449. infrastructure
  450. Updated/fixed packages: a10disp, asterisk, bind, cdrkit,
  451. checkpolicy, clamav, dbus, docker-cli, docker-engine,
  452. dvb-apps, e2fsprogs, exim, exiv2, freerdp, gnutls, go, grub2,
  453. gssdp, gst1-plugins-good, gst1-plugins-ugly, gupnp,
  454. intel-microcode, iproute2, irrlicht, iwd, jq, kodi, libcamera,
  455. libconfuse, libcurl, libglib2, libhttpserver, libmicrohttpd,
  456. libopenssl, libvncserver, libxml2, libxmlrpc, lxc, mbedtls,
  457. mesa3d, meson, mongodb, mtools, mutt, nghttp2, ngircd, nodejs,
  458. ntp, open-plc-utils, open2300, openjdk-bin, openssh,
  459. oracle-mysql, paho-mqtt-c, pcre, php, poco, prosody, putty,
  460. python-twisted, python-urllib3, python-validators, python3,
  461. qt5xmlpatterns, redis, rpi-firmware, rtl8821au, samba4, sdl2,
  462. sqlite, squid, syslog-ng, systemd, tcpreplay, tinydtls,
  463. upmpdcli, upx, vlc, webkitgtk, wireguard-linux-compat,
  464. wireshark, wpebackend-fdo, wpewebkit, zstd
  465. Issues resolved (http://bugs.uclibc.org):
  466. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_..
  467. #12946: Grub: Decompressor is too big.
  468. #12986: Mtools: Error converting to codepage 850
  469. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  470. #13011: Incorrect selection of gcc version
  471. #13026: rpi-firmware: must not rename start files
  472. #13031: nodejs: RangeError at new ArrayBuffer()
  473. #13046: Optimize for fast -Ofast is not compliant
  474. 2020.02.3, released June 3rd, 2020
  475. Important / security related fixes.
  476. Fix various build issues of host packages on hosts using GCC
  477. 10.
  478. Updated/fixed packages: arm-trusted-firmware, audit, bind,
  479. binutils, bison, clamav, crda, dovecot, dtc, efl, elf2flt,
  480. erlang, fakeroot, ffmpeg, fmc, fmlib, freerdp, gcc, git,
  481. glib-networking, gnupg, leveldb, libexif, libssh2,
  482. libusb-compat, linux-headers, lrzip, ltrace, mariadb, mesa3d,
  483. mp4v2, openldap, openocd, perl, php, prosody,
  484. python-pycryptodomex, python-pyqt5, qemu, rpi-firmware, rustc,
  485. speexdsp, sysrepo, systemd, tremor, vboot-utils, wireshark,
  486. xen
  487. Removed packages: python-pycrypto
  488. Issues resolved (http://bugs.uclibc.org):
  489. #12361: Init system (systemd) kills login on Raspberry Pi Zero
  490. #12656: bison fails to relocate with relocate-sdk.sh
  491. #12671: leveldb won't detect that snappy is present (static..
  492. #12691: host-rust build fails
  493. #12831: RPI-firmware package: DTB-overlay dependency
  494. 2020.02.2, released May 12th, 2020
  495. Important / security related fixes.
  496. Musl: Disallow on PPC64 cores without AltiVec support
  497. (E.G. e5500).
  498. fs/cpio: Correctly handle booting with 'console='
  499. release: Ensure temporary .br2-external.* files are not
  500. included in the release tarball
  501. Defconfigs: Fix various mistyped config options, or config
  502. options where the dependencies were no longer met.
  503. Updated/fixed packages: apache, azure-iot-sdk-c, binutils,
  504. boinc, c-ares, cvs, docker-cli, docker-containerd,
  505. docker-engine, domoticz, e2fsprogs, efl, evtest, exim, ffmpeg,
  506. freerdp, gcc, gflags, glibc, gnuconfig, haproxy, imx-gpu-2d,
  507. irrlicht, jpeg kodi-pvr-vuplus, libarchive, libcoap,
  508. libfpm-extra, libglib2, libhtp, libid3tag, libinput, libmad,
  509. libopenssl, libsepol, libssh, libv4l, libvncserver, libwpe,
  510. localedef, mariadb, matchbox, mbedtls, mc, mesa3d-headers,
  511. meson, midori, msgpack, netsnmp, nginx, ogre, openjdk,
  512. openldap, openvpn, p7zip, paho-mqtt-c, php, polkit, python,
  513. python-attrs, python-crossbar, python-dpkt, python-flask,
  514. python-future, python-iptables, python-jedi, python-markdown2,
  515. python3, qemu, qpdf, qt5, samba4, squashfs, squid, strongswan,
  516. suricata, tzdata, util-linux, vlc, wget, webkitgtk,
  517. wireguard-linux-compat, wireshark, wpebackend-fdo, wpewebkit,
  518. zic
  519. Issues resolved (http://bugs.uclibc.org):
  520. #11866: initramfs file system fails to boot using Grub on EFI x86_64
  521. #12271: python-iptables runtime dependencies
  522. #12726: systemctl preset-all failed for ctrl-alt-del.target
  523. #12751: OpenJdk package installation issues on target
  524. #12796: Update OpenSSL to Version 1.1.1g to patch CVE-2020-1967
  525. #12811: bootstrap stuck and no login prompt
  526. #12841: util-linux/sfdisk 2.35.1 fails on sector-size header
  527. 2020.02.1, released April 10th, 2020
  528. Important / security related fixes.
  529. core: Also fixup /lib references in libtool .la files, similar
  530. to how it is done for /usr/*.
  531. Various fixes for builds with per-package target/host
  532. directories.
  533. toolchain: Fix kernel headers validation check for external
  534. toolchains. Fix make 4.3+ compatibility in external toolchain
  535. logic.
  536. fs/initramfs: fix show-info so it also shows the usual
  537. rootfs-related variables.
  538. Updated/fixed packages: arm-trusted-firmware, barebox-aux,
  539. bluez5_utils, bubblewrap, busybox, civetweb, cog, collectd,
  540. ffmpeg, gcc, gnutls, gssdp, gvfs, haproxy, hiredis, hostapd,
  541. kmscube, kodi-screensaver-rsxs, libical, libinput, libexif,
  542. libopenssl, libsndfile, linux, linux-tools, llvm, localedef,
  543. mcrypt, mesa3d, meson, monit, nftables, ntp, opencv3,
  544. oprofile, php, pinentry, polkit, pure-ftpd, python-pyyaml,
  545. qt5, quagga, radvd, rcw, redis, rocksdb, samba4, screen,
  546. sdbusplus, swupdate, sysdig, sysklogd, syslinux, syslog-ng,
  547. tor, tslib, uacme, util-linux, vala, vlc,
  548. wireguard-linux-compat, wireguard-tools, wireshark,
  549. wpa_supplicant, xserver_xorg-server
  550. Issues resolved (http://bugs.uclibc.org):
  551. #12711: host-localedef 2.30-20 fails to compile on fedora 32
  552. #12746: "sysdig" package description points to http://sysdig.org, ..
  553. 2020.02, released March 8th, 2020
  554. Various fixes.
  555. br2-external: Fix compatibility with make 4.3+
  556. Updated/fixed packages: bash, bcm2835, binutils, cups,
  557. erlang-p1-acme, fbgrab, gr-osmosdr, gst1-plugins-base,
  558. gst1-validate, gstreamer1, guile, jhead, libdrm, libevdev,
  559. libinput, libnss, libsndfile, libvncserver, linux-firmware,
  560. mesa3d, nodejs, openjdk-bin, openvmtools, optee-test, patch,
  561. php, piglit, pppd, python-django, qemu, qt5base, ruby,
  562. ser2net, swupdate, thrift, zziplib
  563. Removed packages: classpath, jamvm
  564. Issues resolved (http://bugs.uclibc.org):
  565. #12606: fbgrab location has changed
  566. 2020.02-rc3, released March 2nd, 2020
  567. Fixes all over the tree.
  568. Infrastructure: Rework file list handling to fix race
  569. conditions when building with per-package target and host
  570. directories and top-level parallel builds.
  571. Updated/fixed packages: aufs, binutils, blktrace, brltty,
  572. cairo, dnsmasq, docker-compose, elf2flt, exim, exiv2, git,
  573. kodi-inputstream-adaptive, libarchive, libcgroup, libgdiplus,
  574. libssh2, libvncserver, libvorbis, linknx, linux-firmware, lxc,
  575. lz4, mosquitto, openjpeg, openrc, poco, proftpd, pure-ftpd,
  576. python3, python-multidict, python-setuptools-scm-git-archive,
  577. qpdf, qt5tools, rdesktop, rocksdb, shellinabox, squid,
  578. suricata, swig, systemd, taglib, util-linux, wireshark, zsh
  579. Issues resolved (http://bugs.uclibc.org):
  580. #12571: ltp-testsuite : Build failure
  581. #12576: 2020.02-RC1: error while loading shared libraries: ...
  582. #12581: 2020.02-rc1 glibc failing to build on fedora 31
  583. 2020.02-rc2, released February 26th, 2020
  584. Fixes all over the tree.
  585. Toolchain: Ensure strong SSP can only be enabled if the
  586. (external) toolchain supports it.
  587. Fix a race condition related to creating the output/staging
  588. symlink on systems with coreutils < 8.27.
  589. Drop support for the (end of life) Qt 5.6 variant.
  590. Updated/fixed packages: at, armadillo, audiofile, bash,
  591. busybox, erlang, fail2ban, fluidsynth, ipsec-tools, jpeg-turbo,
  592. kvm-unit-tests, libftdi1, libinput, libsvgtiny, libtomcrypt,
  593. libupnpp, libxml2, linux-tools, luv, mbedtls, mesa3d, minicom,
  594. openvmtools, php, qt5, qt5webengine, qwt, radvd, rcw,
  595. sdbusplus, systemd, tpm2-tss, vorbis-tools
  596. Issues resolved (http://bugs.uclibc.org):
  597. #12581: 2020.02-rc1 glibc failing to build on fedora 31
  598. 2020.02-rc1, released February 18th, 2020
  599. Fixes all over the tree and new features.
  600. Add experimental support for building with a per-package
  601. target and host directory. This still has some rough edges,
  602. but brings a number of advantages:
  603. - Packages will only be able to access the explicitly listed
  604. dependencies and not any other packages that happen to be
  605. built before, ensuring correct dependency information in
  606. Buildroot.
  607. - Possibility for top-level parallel builds, speeding up
  608. builds on multicore machines.
  609. Core: Ensure package-file-lists data is correct after
  610. incremental builds as well.
  611. Architecture: Add support for ARC-HS38 with 64bit multiplier
  612. variant, allow building glibc for big endian ARC, handle 16KB
  613. MMU page size for ARC in toolchain wrapper.
  614. Toolchain: Add binutils 2.33.1, GCC 7.5.0, Arm 9.2-2019.12
  615. toolchains, ARC 2019.09 toolchain. Allow using custom kernel
  616. headers newer than what is known by Buildroot.
  617. pkg-stats: Support for CVE vulnerability reporting by
  618. comparing to NVD database.
  619. Reproducible builds: The go -trimpath option is now used to
  620. get rid of absolute build paths, __FILE__ and __BASE_FILE__
  621. defines are now handled in the toolchain wrapper.
  622. Systemd: Build host variant and use systemctl to automatically
  623. enable unit files rather than manually managing symlinks.
  624. Util-linux: Ensure that hwclock is built without GPLv3
  625. code. Notice that builds with hwclock has contained
  626. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  627. New defconfigs: Beelink GS1, Raspberrypi4 64bit
  628. New packages: alura, avro-c, bubblewrap, cctz, cereal,
  629. cpuburn-arm, elixir, erlang-base64url, erlang-idna,
  630. erlang-jose, erlang-p1-acme, erlang-p1-mqtree,
  631. erlang-p1-yconf, fluid-soundfont, fluidsynth, gcnano-binaries,
  632. gensio, glslsandbox-player, libargon2, libmodsecurity,
  633. libpam-nfc, libtelnet, lua-codegen, lua-livr, lua-livr-extra,
  634. lua-rotas, lua-silva, mfoc, network-manager-openvpn,
  635. nginx-modsecurity, perl-crypt-openssl-aes,
  636. perl-math-prime-util, pipewire, ptm2human, python-aenum,
  637. python-aiohttp-debugtoolbar, python-aiohttp-mako,
  638. python-aiologstash, python-aiosignal, python-aiozipkin,
  639. python-async-lru, python-avro, python-bunch, python-crontab,
  640. python-dnspython, python-entrypoints, python-esptool,
  641. python-frozenlist, python-future, python-gitdb, python-janus,
  642. python-lockfile, python-logstash, python-nested-dict,
  643. python-pbr, python-pyaes, python-pydantic, python-smmap2,
  644. python-sockjs, python-zc-lockfile, raspi-gpio, rocksdb,
  645. sdbusplus, spidermonkey, thermald, ti-sgx-libgbm, tinyssh,
  646. tio, umtprd, weston-imx, wireguard-linux-compat,
  647. wireguard-tools, xdg-dbus-proxy
  648. Removed packages: bluez_utils, celt051, erlang-p1-iconv, fis,
  649. gadgetfs-test, libplayer, gstreamer, gst-ffmpeg,
  650. gst-fsl-plugins, gst-omapfb, gst-plugins-bad,
  651. gst-plugins-base, gst-plugins-good, gst-plugins-ugly,
  652. perl-digest-md5, perl-mime-base64, perl-net-ping,
  653. python-scapy3k, wireguard
  654. Issues resolved (http://bugs.uclibc.org):
  655. #11906: the new version of mesa3d cannot support etnaviv when..
  656. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  657. #12121: PyQt5.QtSerialPort and other modules not being built
  658. #12256: package tar is outdated (1.29 is 3 years old
  659. #12286: Can't import gobject in python 3.8
  660. #12376: python-scapy3k is deprecated
  661. #12386: carriage return issue when "make menuconfig"
  662. #12441: qt5webengine build error: asm/errno.h: No such file or..
  663. #12446: Buildroot fails to finish installing packages
  664. #12456: qtvirtualkeyboard: No such file or directory
  665. #12461: libglib2 build files with deep directory structure
  666. #12481: minicom fails when output directory path contains "m4"
  667. #12501: libnss-3.49.1: ld error: multiple definition of `gcm_..
  668. #12526: host-nodejs 12.14.1: configure fail: AttributeError: ..
  669. #12536: Linux-Headers extracting failure
  670. #12546: Ninja 1.10 build Error
  671. 2019.11.3, released April 10th, 2020
  672. Important / security related fixes.
  673. core: Fix compatibility with make 4.3+. Also fixup /lib
  674. references in libtool .la files, similar to how it is done for
  675. /usr/*.
  676. toolchain: Fix kernel headers validation check for external
  677. toolchains.
  678. fs/initramfs: fix show-info so it also shows the usual
  679. rootfs-related variables.
  680. Updated/fixed packages: barebox-aux, bluez5_utils, busybox,
  681. civetweb, cog, collectd, ffmpeg, gcc, gnutls, gssdp, gvfs, haproxy,
  682. hiredis, hostapd, kmscube, libical, libopenssl, libsndfile,
  683. linux-tools, llvm, monit, ntp, php, pure-ftpd, radvd, redis,
  684. samba4, screen, sysdig, syslinux, syslog-ng, tor, uacme,
  685. util-linux, vala, vlc, wpa_supplicant, xserver_xorg-server
  686. Issues resolved (http://bugs.uclibc.org):
  687. #12746: "sysdig" package description points to http://sysdig.org, ..
  688. 2019.11.2, released March 16th, 2020
  689. Important / security related fixes.
  690. Core: Ensure package-file-lists data is correct after
  691. incremental builds as well.
  692. Fix a race condition related to creating the output/staging
  693. symlink on systems with coreutils < 8.27.
  694. Toolchain: ARC tools bumped to arc-2019.09.
  695. Br2-external: Fix patch handling when external linux-extension
  696. packages are used. Fix compatibility with make 4.3+
  697. Util-linux: Ensure that hwclock is built without GPLv3
  698. code. Notice that builds with hwclock has contained
  699. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  700. Updated/fixed packages: armadillo, at, bcm2835, binutils,
  701. blktrace, bluez-alsa, bootstrap, brltty, busybox, cairo,
  702. clamav, cog, cups, czmq, dnsmasq, docker-containerd, dovecot,
  703. dovecot-pigeonhole, e2fsprogs, elf2flt, eudev, exim, exiv2,
  704. fbgrab, gettext-tiny, glibc, go, grep, gst1-validate, guile,
  705. imagemagick, jhead, jpeg-turbo, kvm-unit-tests, lapack,
  706. libarchive, libcgroup, libdrm, libevent, libexif, libftdi1,
  707. libgdiplus, libjpeg, libsigrok, libsndfile, libssh2,
  708. libsvgtiny, libvncserver, libvorbis, libxml2, libxslt, linknx,
  709. lxc, lz4, mariadb, mbedtls, meson, mongoose, mosquitto, musl,
  710. ncurses, nodejs, ntfs-3g, ogre, opencv3, openjdk, openjpeg,
  711. openrc, openswan, openvmtools, optee-test, patch, php, piglet,
  712. postgresql, pppd, proftpd, pure-ftpd, python-django,
  713. python-pyqt5, python-setuptools-scm-git-archive, python3,
  714. qemu, qt5base, qt5tools, qt5virtualkeyboard, qt5webengine,
  715. qwt, rdesktop, ruby, runc, samba4, shellinabox,
  716. skeleton-init-openrc, smartmontools, spdlog, sqlcipher, squid,
  717. suricata, swig, swupdate, sysklogd, taglib, thrift,
  718. ti-cgt-pru, uclibc, util-linux, vorbis-tools, webkitgtk,
  719. wireshark, wpebackend-fdo, wpewebkit, xen,
  720. xserver_xorg-server, zeromq, zsh, zziplib
  721. Issues resolved (http://bugs.uclibc.org):
  722. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  723. #12331: meson issue
  724. #12456: qtvirtualkeyboard: No such file or directory
  725. #12461: libglib2 build files with deep directory structure
  726. #12481: minicom fails when output directory path contains "m4"
  727. #12606: fbgrab location has changed
  728. 2019.11.1, released January 12th, 2020
  729. Important / security related fixes.
  730. Infrastructure: kconfig: Fix reconfigure logic, python: Ensure
  731. correct compiler and linker flags are used for compiled code
  732. utils/scanpypi: Remind users to update DEVELOPERS
  733. Defconfigs: imx6-sabresd: Fix the Qt5 display names,
  734. imx8: Drop extra copy of U-Boot DTB
  735. Updated/fixed packages: acsccid, bitcoin, boost, busybox,
  736. cc-tool, cmocka, cpio, cups, dante, dialog, dillo, docker-cli,
  737. docker-containerd, docker-engine, easy-rsa, ebtables,
  738. ecryptfs-utils, efl, ffmpeg, gdb, git, glibc, gnupg2, go,
  739. gpsd, grpc, gst1-plugins-bad, iputils, jasper,
  740. kf5-kcoreaddons, leveldb, libarchive, libfribi, libgit2,
  741. libkrb5, libp11, librsvg, libssh, libtomcrypt, libuio, libv4l,
  742. lirc-tools, log4cplus, lrzip, lvm2, mali-t76x,
  743. matchbox-desktop, mender-grubenv, mmc-utils, mosquitto,
  744. nodejs, ntp, openipmi, opencv3, openpowerlink, openrc, pango,
  745. perl-sys-cpu, pimd, postgresql, pulseaudio, python-brotli,
  746. python-coherence, python-crc16, python-django, python-dpkt,
  747. python-gobject, python-pyasn-modules, python-pypcap,
  748. python-pyqt5, python-subprocess32, python3, qpdf,
  749. qt-webkit-kiosk, qt5virtualkeyboard, qt5webengine, quota,
  750. rabbitmq-c, rauc, rpcbind, rtl8821au, runc, rygel, samba4,
  751. sdl2, setserial, snort, spidev_test,
  752. sunxi-mali-mainline-driver, syslog-ng, sysrepo, tcllib, tftpd,
  753. usbmount, w_scan, wavpack, wsapi, wsapi-fcgi, wsapi-xavante,
  754. x265, xserver_xorg-server, ytree, zip
  755. Issues resolved (http://bugs.uclibc.org):
  756. #12121: PyQt5.QtSerialPort and other modules not being built
  757. #12286: Can't import gobject in python 3.8
  758. 2019.11, released December 1st, 2019
  759. Various fixes.
  760. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  761. <pkg>_DL_OPTS by default, just like it is done for a number of
  762. other package variables.
  763. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  764. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  765. the (rare) case where the .py files are needed at runtime
  766. rather than .pyc.
  767. Updated/fixed packages: am33x-cm3, bind, collectd, go, gob2,
  768. gst1-plugins-bad, haproxy, jasper, jpeg-turbo, libdrm,
  769. libftdi, libftdi1, libnss, libselinux, libstrophe, lzma,
  770. minicom, network-manager, nodejs, oniguruma, opencv3,
  771. openvmtools, perl-gdgraph, perl-gdtextutil, prosody,
  772. python-cchardet, systemd, tiff, wolfssl,
  773. Issues resolved (http://bugs.uclibc.org):
  774. #11416: check-uniq-files staging issue
  775. #12146: Oprofile runtime issue
  776. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  777. #12171: Python-opencv needs config.py and config-3.7.py to run..
  778. #12196: duma package
  779. #12211: host-nodejs 10.15.3 package fail to build
  780. #12316: tzdata fails to install with empty "default local time"
  781. #12326: network-manager build fails with missing glib error
  782. #12366: Gstreamer1 gst1-plugins-bad do not compile with RPI-Userland
  783. 2019.11-rc3, released November 24th, 2019
  784. Fixes all over the tree.
  785. Updated/fixed packages: asterisk, clamav, domoticz, faifa,
  786. gerbera, kmod, kvm-unit-tests, libupnp18, linux-serial-test,
  787. lsof, ltp-testsuite, lxc, mesa3d, mesa3d-headers, perl, php,
  788. postgresql, qemu, rauc, redis, rpcbind, spice, spice-protocol,
  789. systemd, tftpd, waylandpp, webkitgtk, zip
  790. 2019.11-rc2, released November 16th, 2019
  791. Fixes all over the tree.
  792. Toolchain: ARC tools bumped to arc-2019.09-rc1, ensure
  793. external toolchain kernel headers version check correctly stop
  794. the build on mismatch
  795. Meson: Fix generation of global cross-compilation.conf
  796. Download: Also use the package download method for extra
  797. downloads from the same site, so it does not get confused by
  798. URLs containing '+'
  799. Defconfigs: Fix boot issue for beaglebone
  800. Updated/fixed packages: bird, chrony, connman, dhcp, domoticz,
  801. dropwatch, dtc, elf2flt, gettext-tiny, glog, intel-microcode,
  802. ipsec-tools, jailhouse, kodi, libfribi, libmbim, libressl,
  803. libsigrokdecode, libsvgtiny, linux-serial-test, ltp-testsuite,
  804. lvm2, lxc, mariadb, mesa3d, minizip, ndisc6, neardal, ninja,
  805. ofono, openvmtools, oracle-mysql, qt5wayland, safeclib, socat,
  806. sudo, systemd, wpewebkit, xserver_xorg-server
  807. 2019.11-rc1, released November 5th, 2019
  808. Fixes all over the tree and new features.
  809. Dependencies: Gcc/g++ 4.8 or newer is now required on the
  810. build host.
  811. Ensure host has JSON::PP perl module installed if
  812. webkitgtk/wpewebkit packages are enabled as it is needed
  813. during their build process.
  814. Toolchain: Add support for the D programming language (GCC
  815. 9.x, Glibc).
  816. GCC 9.x updated to 9.2.0, Glibc updated to 2.30, Musl updated
  817. to 1.1.24, uClibc-ng updated to 1.0.32, ARC toolchain updated
  818. to arc-2019.09-eng002.
  819. Musl: Add a patch to add support for
  820. sched_{get,set}scheduler() and sched_{get,set}param() for
  821. compatibility.
  822. Generate check-headers program under BUILD_DIR rather than
  823. /tmp to fix issues with distributions mounting /tmp noexec.
  824. Also copy libssp.so for external toolchains if SSP
  825. to handle toolchains providing SSP support in libssp rather
  826. than in the C library
  827. New defconfigs: Beaglebone AI, FriendlyARM Nanopi NEO Plus2,
  828. Libre Computer "La Frite", QEMU Armv7-A with trustzone/OP-TEE,
  829. STM32MP157 Discovery Kit
  830. Arch: RISC-V: Default to a sensible floating point ABI based
  831. on the selected ISA extensions rather than always defaulting
  832. to ILP32/64
  833. Graph-size: Package sizes are now shown in human readable form
  834. (Kib/Mib/Gib) rather than always in Kib. Binary (KB/MB/GB)
  835. format can be selected using the --binary option. The cut-off
  836. limit for classifying packages as "other" is now configurable
  837. using the --size-limit option.
  838. Br2-external: Linux kernel extensions can now also be provided
  839. in an external tree by adding packages under
  840. linux/linux-ext-*.mk. See the manual for details.
  841. Fakeroot now works correctly under Microsoft Windows 10
  842. Services for Linux, which does not provide SYSV IPC support
  843. The check-uniq-files logic which would complain if multiple
  844. packages would touch the same files has been removed as it
  845. causes issues in certain situations (when packages are
  846. rebuilt) and the issue is no longer considered a problem for
  847. toplevel parallel builds as those will use a per-package
  848. staging/target directory.
  849. With this removed, Python is no longer required for a basic
  850. build (only for optional scripts).
  851. support/scripts/genimage.sh will no longer make a copy of
  852. TARGET_DIR, speeding up post-build/image scripts.
  853. The runtime test logic now uses Python 3.x.
  854. A 'v' prefix has been dropped from the <pkg>_SOURCE variable
  855. for a number of packages to match the version numbers used by
  856. https://release-monitoring.org
  857. New packages: caps, collectl, dav1d, fstrcmp, ima-evm-utils,
  858. jitterentropy-library, kodi-vfs-rar, kodi-vfs-sftp, libavl,
  859. libhttpserver, libmspack, libnetconf2, libolm, libyang,
  860. linux-serial-test, lrzip, mdevd, minimodem, musl-fts, netifrc,
  861. ogre, openlayers, python-aioredis, python-asgiref,
  862. python-backports-functools-lru-cache, python-bluezero,
  863. python-brotli, python-channels, python-channels-redis,
  864. python-colorlog, python-daphne, python-django-enumfields,
  865. python-jaraco-functools, python-kiwisolver, python-msgfy,
  866. python-rpi-ws281x, python-setuptools-scm-git-archive,
  867. python-simplelogging, python-soupsieve, python-sqliteschema,
  868. python-sqlparse, python-tqdm, python-webencodings, qt5webview,
  869. restclient-cpp, ripgrep, snmpclitools, sunwait, sysrepo,
  870. uacme, utf8proc, uvw, ytree
  871. Removed packages: alljoyn, alljoyn-base, alljoyn-tcl-base,
  872. devmem2, eventlog, kodi-audiodecoder-opus,
  873. kodi-screensaver-planestate, kodi-visualisation-waveforhue,
  874. python-pysnmp-apps, riscv-pk, ustr
  875. Issues resolved (http://bugs.uclibc.org):
  876. #9881: systemd-resolved not setting resolv.conf link
  877. #10171: devmem2 w (word) is 8 bytes in x86 64 systems
  878. #10586: musl gcc has ifunc enabled when musl doesn't support it
  879. #10806: Allow nfs-utils to use ipv6
  880. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  881. #11411: check-uniq-files target issue
  882. #11766: Console (getty) issues with systemd
  883. #11781: mariadb build error
  884. #12031: Build of cups-filters fails while linking, apparently due..
  885. #12116: console prompt does not appear after login
  886. #12141: eudev package is missing "render" and "kvm" groups
  887. #12181: dropbear: norootlogin (-w) no longer works when PAM is enabled
  888. #12186: Raspberry Pi Zero-W build fails on newer kernel versions
  889. #12191: cmake BUILDDIR
  890. #12241: Permission denied while running "make"
  891. #12261: sudo versions prior to 1.8.28 are affected.
  892. #12276: make clean/distclean does not remove BR2_DL_DIR and BR2_HOST_DIR
  893. #12281: Custom configuration fails to build (based on raspberrypi3_..
  894. 2019.08.3, released December 7th, 2019
  895. Important / security related fixes.
  896. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  897. <pkg>_DL_OPTS by default, just like it is done for a number of
  898. other package variables
  899. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  900. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  901. the (rare) case where the .py files are needed at runtime
  902. rather than .pyc.
  903. Fix <pkg>-reconfigure handling for packages using the kconfig
  904. infrastructure.
  905. Toolchain: ensure external toolchain kernel headers version
  906. check correctly stop the build on mismatch
  907. Deconfigs: beaglebone: fix boot issue
  908. Updated/fixed packages: am33x-cm3, asterisk, bind, chrony,
  909. clamav, cmocka, collectd, connman, dhcp, dropwatch, faifa,
  910. gettext-tiny, gob2, haproxy, intel-microcode, ipsec-tools,
  911. jailhouse, jasper, jpeg-turbo, kodi, kvm-unit-tests, libftdi,
  912. libftdi1, libnss, libressl, libstrophe, libsvgtiny, lvm2,
  913. lzma, mariadb, minicom, mosquitto, neardal, ninja, nodejs,
  914. oniguruma, openvmtools, oracle-mysql, perl-gdgraph,
  915. perl-gdtextutil, php, postgresql, prosody, python-cchardet,
  916. python-django, qt5wayland, rabbitmq, rauc, redis, rpcbind,
  917. socat, spice, spice-protocol, tftpd, tiff, webkitgtk
  918. New packages: libmspack
  919. Issues resolved (http://bugs.uclibc.org):
  920. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  921. #12171: Python-opencv needs config.py and config-3.7.py to run..
  922. #12211: host-nodejs 10.15.3 package fail to build
  923. #12316: tzdata fails to install with empty "default local time"
  924. 2019.08.2, released November 9th, 2019
  925. Important / security related fixes.
  926. Toolchain: Also copy libssp.so for external toolchains if SSP
  927. to handle toolchains providing SSP support in libssp rather
  928. than in the C library
  929. Download: Also use the package download method for extra
  930. downloads from the same site, so it does not get confused by
  931. URLs containing '+'
  932. Fakeroot now works correctly under Microsoft Windows 10
  933. Services for Linux, which does not provide SYSV IPC support
  934. utils/test-pkg: ensure to exit with an error upon failure
  935. Updated/fixed packages: asterisk, azmq, binutils,
  936. cups-filters, domoticz, dtc, duma, elf2flt, eudev, exfat,
  937. exfat-utils, fakeroot, fdk-aac, file, freerdp, gcc, gd,
  938. ghostscript, go, gpsd, grpc, gst1-plugins-base, gvfs, icu,
  939. intel-microcode, kvm-unit-tests, libfribidi, libnspr, libnss,
  940. libopenssl, libpcap, libpciaccess, librsvg, libseccomp,
  941. libsigrok, libtorrent, libunwind, libva, linux-tools,
  942. lua-sdl2, lxc, minizip, mjpegtools, mongoose, mono, nbd,
  943. nfs-utils, php, piglit, python, python-autobahn,
  944. python-pysnmp-apps, python-tornado, python3, qemu, qt5base,
  945. ruby, safeclib, samba4, sdl_mixer, sox, sudo, suricata,
  946. systemd, tcpdump, unscd, util-linux, vdr-plugin-vnsiserver,
  947. vtun, wireshark, xvisor, yaffs2utils
  948. Issues resolved (http://bugs.uclibc.org):
  949. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  950. #12261: sudo versions prior to 1.8.28 are affected
  951. 2019.08.1, released October 3rd, 2019
  952. Important / security related fixes.
  953. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  954. Use default console settings
  955. Dependencies: Ensure host has JSON::PP perl module installed
  956. if webkitgtk/wpewebkit packages are enabled as it is needed
  957. during their build process.
  958. Toolchain: Generate check-headers program under BUILD_DIR
  959. rather than /tmp to fix issues with distributions mounting
  960. /tmp noexec.
  961. Updated/fixed packages: asterisk, augeas, axel, bind, bwm-ng,
  962. cups, cups-filters, docker-cli, docker-engine, docker-proxy,
  963. e2fsprogs, eudev, exim, expat, gcc, go, haveged, ifplugd, joe,
  964. kf5-extra-cmake-modules, kf5-modemmanager-qt,
  965. kf5-networkmanager-qt, libcamera, libcurl, libgcrypt,
  966. libglib2, libgpg-error, libnspr, libnss, libopenssl,
  967. logrotate, luksmeta, mariadb, mbedtls, mongodb, mosquitto,
  968. ncurses, nfs-utils, nghttp2, nodejs, openvmtools, php,
  969. protobuf, putty, qemu, samba4, snort, swupdate,
  970. systemd-bootchart, thttpd, uclibc, unzip, util-linux,
  971. wireshark
  972. Issues resolved (http://bugs.uclibc.org):
  973. #10806: Allow nfs-utils to use ipv6
  974. #11781: mariadb build error
  975. #12031: Build of cups-filters fails while linking, apparently due..
  976. #12141: eudev package is missing "render" and "kvm" groups
  977. #12241: Permission denied while running "make"
  978. 2019.08, released September 1st, 2019
  979. Various fixes.
  980. Defconfigs: Removed nanopc t4, nanopi m4 and neo4, pine64
  981. rockpro64 and raxda rock pi4 as they rely on a ARM32 toolchain
  982. on the build host to build ATF. These defconfigs will be added
  983. back once a package providing such toolchain is
  984. available. Also dropped ts4800 defconfig as it does not build
  985. with GCC >= 8.x.
  986. Updated/fixed packages: libxcb, php, python-numpy, webkitgtk,
  987. wpewebkit, xfont_font-util
  988. Issues resolved (http://bugs.uclibc.org):
  989. #12156: buildroot-2019.08-rc3 does not build for Pi Zero W
  990. 2019.08-rc3, released August 28th, 2019
  991. Fixes all over the tree.
  992. Updated/fixed packages: clamav, dovecot, dovecot-pigeonhole,
  993. gcc, intel-microcode, libmicrohttpd, libmodplug, mpg123,
  994. nginx, openldap, python, qemu, samba4, squid, strace, vlc
  995. Issues resolved (http://bugs.uclibc.org):
  996. #11686: fbdev_drv.so: undefined symbol: shadowUpdatePackedWeak,..
  997. 2019.08-rc2, released August 20th, 2019
  998. Fixes all over the tree.
  999. Compile fixes for a number of defconfigs.
  1000. Updated/fixed packages: apache, autofs, batctl, batman-adv,
  1001. bind, collectd, cwiid, dahdi-linux, dahdi-tools, daq,
  1002. dehydrated, dhcp, dtc, efl, enlightenment, evtest, giflib,
  1003. gnutls, go, gst-plugins-bad, gst-plugins-base,
  1004. gst1-plugins-bad, gst1-plugins-base, gst1-rtsp-server, gtkmm3,
  1005. gupnp, harfbuzz, imagemagick, lftp, libbsd, libcpprestsdk,
  1006. libdnet, libfm, libgit2, libgtk2, libgtk3, libpri, librsvg,
  1007. libss7, libssh2, libwpe, lua-cqueues, metacity, micropython,
  1008. mpd, mpg123, musl, mpv, openblas, openbox, opencv, pango,
  1009. pcmanfm, piglit, pigpio, pinentry, postgresql, qemu, qt5base,
  1010. qt5enginio, qt5multimedia, qt5serialbus, quagga, quazip,
  1011. rrdtool, rygel, samba4, stellarium, tcpreplay, ti-gfx, vte,
  1012. wampcc, wilink-bt-firmware, wireless-regdb, wpebackend-fdo,
  1013. xscreensaver
  1014. Removed packages: libamcodec, odroid-mali, odroid-scripts
  1015. Issues resolved (http://bugs.uclibc.org):
  1016. #9481: NetworkManager/Ping unable to resolve domains
  1017. #10566: php.mk is missing option --with-pgsql
  1018. #10861: Package batman_adv Makefile is missing include header direct..
  1019. #11641: linux kernel .config timestamp always out of date fixed with..
  1020. #11671: russian locale ru_RU:145: LC_TIME: syntax error
  1021. #11701: recuuring of usr and in bin shortcuts are created
  1022. #11741: pigpio does not build host-pigpio
  1023. #11876: automount using host mount/umount
  1024. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  1025. #11921: dahdi fails to build
  1026. #11936: libcpprestsdk should install to staging
  1027. #11946: wilink-bt-firmware: moved from github to http://git.ti.com/ti-bt
  1028. #11961: libpri build failure
  1029. #12086: dhcp shared libraries not installed to target
  1030. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  1031. #12106: daq: build fails if libdumbnet-dev is installed in the host
  1032. #12126: vc4 has neon as hard dependency
  1033. 2019.08-rc1, released August 9th, 2019
  1034. Fixes all over the tree and new features.
  1035. toolchain: ARC toolchain updated to 2019.03 (binutils 2.32.51
  1036. / GCC 8.3.1 / glibc 2.29), ARM AAarch64/ARM toolchains updated
  1037. to 2019.03. Add GCC 9.1.0, remove GCC 4.9 and 6.5, add GDB
  1038. 8.3, remove GDB 7.12 and 8.0.1, default to GDB 8.2, GCC
  1039. 8.3.0. Musl updated to 1.1.23, bringing support for RISC-V 64.
  1040. Architectures: Internal toolchain support for C-SKY, support
  1041. for ARC HS48 v3.1 and HS38 with Quad MAC & FPU, support for
  1042. ARM A76, A76/A55 big.LITTLE, emag, neoverse-N1, phecda and
  1043. tsv110.
  1044. Filesystems: Pass extra pax options to tar for binary
  1045. reproducibility. Build host-cpio for the --reproducible option
  1046. support when BR2_REPRODUCIBLE is enabled. Genimage updated to
  1047. version 11, bringing GPT support.
  1048. Br2-external: Add support for injecting additional options to
  1049. the list of preconfigured external toolchains and libjpeg and
  1050. openssl providers using files under provides/. See the manual
  1051. for details.
  1052. Ensure custom <pkg>_OVERRIDE_SRCDIR_RSYNC_EXCLUSIONS are
  1053. passed before the standard exclusions so they are not ignored
  1054. by rsync when using override-srcdir.
  1055. Gnuconfig updated to 2019-05-28, adding C-SKY support.
  1056. test-pkg: Correct long option handling and clean output dir
  1057. after a successful build to save disk space.
  1058. support/testing: Emulate a machine with 256MB RAM to fix
  1059. issues with certain tests running out of memory, use
  1060. virtio-rng to provide needed entrophy.
  1061. pkg-stats: support outputting in JSON format with --json for
  1062. easier post processing. The classic HTML output is still
  1063. available with --html. Parallelize access to
  1064. release-monitoring.org to speed up runtime.
  1065. Drop non-conventional version prefix/suffix/separators for
  1066. packages for better compatibility with release-monitoring.org
  1067. Packages:
  1068. Init systems: Add basic openrc support and
  1069. <pkg>_INSTALL_INIT_OPENRC variable in the infrastructure to
  1070. install openrc service scripts if enabled.
  1071. busybox: Build each applet as a separate binary when SELinux
  1072. is enabled for more finegrained policy control. Use daemon
  1073. mode for mdev rather than legacy hotplug.
  1074. linux: Workaround -Werror related build failure on powerpc,
  1075. by forcing CONFIG_PPC_DISABLE_WERROR on.
  1076. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  1077. partition is available before mounting.
  1078. New defconfigs: HiFive Unleashed, I.MX8MM EVK and Pico, Nanopi
  1079. m4 and neo4, Nanopc t4, Olimex A33 olinuxino, Pine64
  1080. Rockpro64, PowerPC mac99, QEMU C-SKY 610/807/810/860 virt,
  1081. Raspberry Pi 4, Raxda rock pi4, Solidrun Clearfog GT-8K
  1082. Removed defconfigs: Odroid C2
  1083. New packages: bitcoin, c-capnproto, fatcat, ifmetric, jack1,
  1084. jailhouse, libubootenv, luasyslog, mender-grubenv,
  1085. murata-cyw-fw, openrc, piglit, python-colorama, python-cycler,
  1086. python-hiredis, python-ifaddr, python-inflection,
  1087. python-iptables, python-matplotlib, python-periphery,
  1088. python-pycairo, python-redis, python-termcolor,
  1089. python-tinyrpc, python-txdbus, skeleton-init-openrc, spdlog,
  1090. sshguard, stellarium, zziplib
  1091. Removed packages: xapp_mkfontdir
  1092. Issues resolved (http://bugs.uclibc.org):
  1093. #11096: Upgrade from glibc 2.26 to 2.27 broke some locales...
  1094. #11271: utils/check-package fails with exception depending on..
  1095. #11991: [numpy] segfault when compiling for RPi3 64bits
  1096. #12016: Grub fails to boot bzImage after upgrade to 2019.05
  1097. #12046: Can’t login as root user after upgrading to buildroot..
  1098. #12051: package/dhcp installs libtool wrapper scripts on tar...
  1099. #12076: Patchelf can link against an incompatible libc++ ver...
  1100. 2019.05.3, Released October 3rd, 2019
  1101. Important / security related fixes.
  1102. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  1103. Use default console settings
  1104. Dependencies: Ensure host has JSON::PP perl module installed
  1105. if webkitgtk/wpewebkit packages are enabled as it is needed
  1106. during their build process.
  1107. Toolchain: Generate check-headers program under BUILD_DIR
  1108. rather than /tmp to fix issues with distributions mounting
  1109. /tmp noexec.
  1110. Updated/fixed packages: asterisk, augeas, bind, bwm-ng, cups,
  1111. cups-filters, docker-cli, docker-engine, docker-proxy,
  1112. e2fsprogs, eudev, exim, expat, gcc, go, haveged, ifplugd,
  1113. iptables, joe, kf5-extra-cmake-modules, kf5-modemmanager-qt,
  1114. kf5-networkmanager-qtlibcamera, libcurl, libgcrypt,
  1115. libgpg-error, libnftl, libnspr, libnss, libopenssl,
  1116. libtorrent-rasterbar, luksmeta, mariadb, mbedtls, mongodb,
  1117. mosquitto, ncurses, nfs-utils, nghttp2, nodejs, openvmtools,
  1118. php, protobuf, putty, qemu, samba4, swupdate,
  1119. systemd-bootchart, thttpd, uclibc, unzip, util-linux,
  1120. wireshark
  1121. Issues resolved (http://bugs.uclibc.org):
  1122. #10806: Allow nfs-utils to use ipv6
  1123. #11781: mariadb build error
  1124. #12031: Build of cups-filters fails while linking, apparently due..
  1125. #12141: eudev package is missing "render" and "kvm" groups
  1126. #12241: Permission denied while running "make"
  1127. 2019.05.2, Released September 3rd, 2019
  1128. Important / security related fixes.
  1129. Filesystems: Pass extra pax options to tar for binary
  1130. reproducibility.
  1131. Updated/fixed packages: apache, arm-trusted-firmware,
  1132. asterisk, atk, autofs, batctl, batman-adv, berkeleydb,
  1133. busybox, bzip2, clamav, cloop, cmake, collectd, connman-gtk,
  1134. dahdi-linux, dahdi-tools, daq, dehydrated, dhcp, dovecot,
  1135. dovecot-pigeonhole,, elfutils, evtest, exim, expect, giflib,
  1136. git, glib-networking, glibc, gnupg2, gnutls, go,
  1137. gst1-rtsp-server, gtkperf, gupnp-tools, gvfs, imagemagick,
  1138. imx-uuc, intel-microcode, json-glib, lftp, libbsd, libcurl,
  1139. libgit2, libgtk2, libgtk3, libmodplug, libnss, libpri,
  1140. libshout, libss7, libssh2, libvips, libxcb, linux-headers,
  1141. mdadm, mesa3d, metacity, mpg123, mosquitto, musl, nginx,
  1142. oniguruma, openblas, opencv3, openjdk, openjdk-bin, openldap,
  1143. openvmtools, pcmanfm, php, pigpio, postgresql, prboom,
  1144. proftpd, proj, python, python-django, python-idna,
  1145. python-numpy, python-urllib3, python3, qemu, qt5, qt5base,
  1146. qt5enginio, quagga, rygel, squid, subversion, tcpreplay,
  1147. unzip, vlc, vte, webkitgtk, wireless-regdb, xen,
  1148. xfont_font-util, xlib_libICE, xlib_libXfont, xlib_libXfont2,
  1149. yad, zeromq
  1150. Issues resolved (http://bugs.uclibc.org):
  1151. #11741: pigpio does not build host-pigpio
  1152. #11876: automount using host mount/umount
  1153. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  1154. #11921: dahdi fails to build
  1155. #11961: libpri build failure
  1156. #12086: (dhcpd-missing-libs) - dhcp shared libraries not installed to..
  1157. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  1158. #12106: daq: build fails if libdumbnet-dev is installed in the host
  1159. #12126: vc4 has neon as hard dependency
  1160. 2019.05.1, Released July 7th, 2019
  1161. Important / security related fixes.
  1162. arch: x86: Fix typo breaking 'core-avx2' variant
  1163. linux: Workaround -Werror related build failure on powerpc,
  1164. by forcing CONFIG_PPC_DISABLE_WERROR on.
  1165. support/testing: Emulate a machine with 256MB RAM to fix
  1166. issues with certain tests running out of memory.
  1167. test-pkg: Correct long option handling and clean output dir
  1168. after a successful build to save disk space.
  1169. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  1170. partition is available before mounting.
  1171. Updated/fixed packages: barebox, busybox, bzip2, davfs2,
  1172. dialog, docker-cli, docker-engine, exim, expat, faad2,
  1173. haveged, irssi, libcamera, libcdaudio, libcurl, libglib2,
  1174. libressl, libsecret, lmbench, meson, monit, php, postgresql,
  1175. psplash, python-django, qt5base, tvheadend, webkitgtk,
  1176. xserver_xorg-server, znc
  1177. 2019.05, released June 2nd, 2019
  1178. Various fixes.
  1179. Toolchain: Ensure pre-built Andes toolchains can only be
  1180. selected when x86 32bit support is available on the host.
  1181. Disallow PowerPC SPE ABI for GCC >= 8.x, as it is no longer
  1182. supported.
  1183. Infra: pkg-config: Use a dedicated timestamp file rather than
  1184. .config as that gets touched by linux-4.19+, causing repeated
  1185. builds.
  1186. Add C-SKY support to our config.sub (gnuconfig)
  1187. Updated/fixed packages: dosfstools, botan, brotli, dropbear,
  1188. flare-engine, gst1-plugins-bad, libhtp, libnss, libopenssl,
  1189. linuxptp, matchbox-panel, mender, mutt, netsurf,
  1190. network-manager, opencv3, openjdk, openmpi, php,
  1191. python-cython, qt5multimedia, qtwayland, qt5webkit-examples,
  1192. supertux, suricata, tpm2-totp, v4l2loopback, wireshark,
  1193. wpewebkit
  1194. 2019.05-rc3, released May 25th, 2019
  1195. Fixes all over the tree.
  1196. check-bin-arch: Ignore /usr/lib/grub, similar to how /lib/grub
  1197. is ignored.
  1198. check-package: Warn about utf-8 characters in .mk files
  1199. Linux: Default to 5.1.x series
  1200. Updated/fixed packages: assimp, atop, chocolate-doom, cjson,
  1201. ddrescue, dhcp, ffmpeg, gerbera, glibmm, gpsd, gst-ffmpeg,
  1202. intel-microcode, jasper, keepalived, kismet, libcpprestsdk,
  1203. libcurl, libssh2, libupnp18, luarocks, mono-gtksharp3, opus,
  1204. postgresql, pcsc-lite, python, tslib, webkitgtk,
  1205. wpebackend-fdo, wpewebkit
  1206. 2019.05-rc2, released May 15th, 2019
  1207. Fixes all over the tree.
  1208. Updated/fixed packages: bind, bullet, ca-certificates,
  1209. collectd, cracklib, dhcp, gdb, libinput, libtorrent-rasterbar,
  1210. linknx, lynx, mono, netsurf, optee-os, postgresql, qt5enginio,
  1211. qt5multimedia, rpm, samba4, sqlite, strace, uclibc, woff2
  1212. Issues resolved (http://bugs.uclibc.org):
  1213. #11841: grub-efi.cfg not used when building EFI disk image
  1214. 2019.05-rc1, Released May 8th, 2019
  1215. Fixes all over the tree and new features.
  1216. Architecture: Andes 32-bit (nds32) support added.
  1217. Only build host-lzip / host-xz when really needed by packages,
  1218. not just when not available on the build host.
  1219. Toolchain: Glibc bumped to 2.29, musl bumped to 1.1.22,
  1220. binutils 2.32 added, 2.28/2.29 removed, default changed to
  1221. 2.31.1.
  1222. fs: Set FAKEROOTDONTTRYCHOWN environment variable to not
  1223. forward {f,l,}chown calls to libc when running under fakeroot
  1224. to fix issues when building in restricted environments
  1225. (E.G. user namespace with bubblewrap).
  1226. Linux: Also build default make target to ensure extra files
  1227. like the gdb scripts enabled by CONFIG_GDB_SCRIPTS are also
  1228. built. Notice: This may mean that extra host utilities like
  1229. uboot-mkimage are needed.
  1230. Infrastructure: show-info and <pkg>-show-info make targets
  1231. added to output package metadata in JSON format for external
  1232. use.
  1233. pkg-generic: Only tweak .la files needing it to ensure they
  1234. are not included in subsequent package file lists.
  1235. test-pkg: Generate a basic package config if none is
  1236. specified.
  1237. Gettext-tiny package added as an lightweight replacement for
  1238. GNU gettext for situations where NLS support is not needed.
  1239. New defconfigs: Andes AE3XX, Freescale imx8mpico / imx8qxpmek
  1240. / T2080 QDS RDB, Licheepi zero, Orangepi R1
  1241. Removed defconfigs: Olimx A20 Olinuxino Lime legacy
  1242. New packages: bats-core, bayer2rgb-neon, brickd, cog, dacapo,
  1243. enet, gettext-tiny, gli, gst1-plugins-bayer2rgb-neon,
  1244. imx-sc-firmware, intel-mediadriver, intel-mediasdk, libcamera,
  1245. libhtp, libp11, libwpe, lua-binaryheap, lua-gd, lua-lunitx,
  1246. mender-artifact, most, oniguruma, openjdk, openjdk-bin,
  1247. opensbi, optee-benchmark, optee-client, optee-examples,
  1248. optee-os, optee-test, paho-mqtt-cpp, python-aioblescan,
  1249. python-aioconsole, python-aiohttp-cors, python-aiomonitor,
  1250. python-backcall, python-jedi, python-parso, python-pyjwt,
  1251. python-terminaltables, suricata, tpm2-totp, uftp,
  1252. wpebackend-fdo, wpewebkit
  1253. Removed packages: libump, lunit, sunxi-mali
  1254. Issues resolved (http://bugs.uclibc.org):
  1255. #11716: Typo on website, saying latest release is 2018.2.11
  1256. #11756: package/syslinux: MBR's don't fit because of binutils..
  1257. #11761: Building custom kernel 5.1-rc3 or later breaks on objtool
  1258. #11816: Only selected coreutils binaries are installed
  1259. 2019.02.11, released April 9th, 2020
  1260. Important / security related fixes.
  1261. core: Fix compatibility with make 4.3+. Also fixup /lib
  1262. references in libtool .la files, similar to how it is done for
  1263. /usr/*.
  1264. toolchain: Fix kernel headers validation check for external
  1265. toolchains.
  1266. Updated/fixed packages: barebox-aux, bluez5_utils, busybox,
  1267. civetweb, collectd, ffmpeg, gcc, gnutls, gvfs, haproxy,
  1268. hiredis, kmscube, libical, libopenssl, libsndfile,
  1269. linux-tools, ntp, php, pure-ftpd, screen, sysdig, tor,
  1270. util-linux, vala, vlc, xserver_xorg-server
  1271. Issues resolved (http://bugs.uclibc.org):
  1272. #12746: "sysdig" package description points to http://sysdig.org, ..
  1273. 2019.02.10, released March 16th, 2020
  1274. Important / security related fixes.
  1275. Core: Ensure package-file-lists data is correct after
  1276. incremental builds as well.
  1277. Fix a race condition related to creating the output/staging
  1278. symlink on systems with coreutils < 8.27.
  1279. Br2-external: Fix compatibility with make 4.3+
  1280. Util-linux: Ensure that hwclock is built without GPLv3
  1281. code. Notice that builds with hwclock has contained
  1282. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  1283. Updated/fixed packages: armadillo, at, binutils, blktrace,
  1284. bootstrap, busybox, cairo, cups, czmq, dnsmasq,
  1285. docker-containerd, dovecot, dovecot-pigeonhole, e2fsprogs,
  1286. eudev, exim, exiv2, fbgrab, grep, gst1-validate, guile,
  1287. imagemagick, jhead, kvm-unit-tests, lapack, libcgroup,
  1288. libftdi1, libjpeg, libsigrok, libsndfile, libssh2, libsvgtiny,
  1289. libvncserver, libvorbis, libxml2, libxslt, linux, lz4,
  1290. mariadb, mbedtls, meson, mfgtools, mongoose, ncurses, ntfs-3g,
  1291. opencv3, openjpeg, openswan, openvmtools, patch, php,
  1292. postgresql, pppd, proftpd, pure-ftpd, python-django,
  1293. python-pyqt5, python3, qemu, qt5base, qt5webengine, qwt,
  1294. rdesktop, ruby, runc, samba4, shellinabox, smartmontools,
  1295. sqlcipher, squid, swupdate, sysklogd, taglib, thrift,
  1296. ti-cgt-pru, uboot, util-linux, vorbis-tools, webkitgtk,
  1297. wireshark, xen, xserver_xorg-server, zeromq, zsh
  1298. Issues resolved (http://bugs.uclibc.org):
  1299. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  1300. #12331: meson issue
  1301. #12461: libglib2 build files with deep directory structure
  1302. #12606: fbgrab location has changed
  1303. 2019.02.9, released January 12th, 2020
  1304. Important / security related fixes.
  1305. pkg-python infrastructure: Ensure correct compiler and linker
  1306. flags are used for compiled code
  1307. utils/scanpypi: Remind users to update DEVELOPERS
  1308. Updated/fixed packages: busybox, cc-tool, cpio, cups, dante,
  1309. dillo, docker-cli, docker-containerd, docker-engine, easy-rsa,
  1310. ecryptfs-utils, efl, git, glibc, gnupg2, gst1-plugins-bad,
  1311. kf5-kcoreaddons, libarchive, libgit2, libkrb5, librsvg,
  1312. libssh, libtomcrypt, libuio, lirc-tools, lvm2,
  1313. matchbox-desktop, nodejs, ntp, opencv3, openpowerlink,
  1314. python-django, python-ecdsa, python-pyasn-modules,
  1315. python-pyqt5, python-subprocess32, python3, qpdf, runc, rygel,
  1316. samba4, sdl2, wavpack, xserver_xorg-server, zip
  1317. Issues resolved (http://bugs.uclibc.org):
  1318. #12121: PyQt5.QtSerialPort and other modules not being built
  1319. 2019.02.8, released December 7th, 2019
  1320. Important / security related fixes.
  1321. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  1322. <pkg>_DL_OPTS by default, just like it is done for a number of
  1323. other package variables
  1324. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  1325. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  1326. the (rare) case where the .py files are needed at runtime
  1327. rather than .pyc.
  1328. Fix <pkg>-reconfigure handling for packages using the kconfig
  1329. infrastructure.
  1330. Toolchain: ensure external toolchain kernel headers version
  1331. check correctly stop the build on mismatch
  1332. Deconfigs: beaglebone: fix boot issue
  1333. Updated/fixed packages: am33x-cm3, asterisk, bind, chrony,
  1334. clamav, collectd, connman, faifa, gob2, haproxy,
  1335. intel-microcode, ipsec-tools, jasper, jpeg-turbo, kodi,
  1336. kvm-unit-tests, libftdi, libftdi1, libnss, libstrophe,
  1337. libsvgtiny, lvm2, lzma, mariadb, minicom, neardal, nodejs,
  1338. opencv3, openvmtools, oracle-mysql, perl-gdgraph,
  1339. perl-gdtextutil, php, postgresql, prosody, python-django,
  1340. rabbitmq-c, rauc, redis, rpcbind, socat, spice,
  1341. spice-protocol, tftpd, tiff, webkitgtk
  1342. New packages: libmspack
  1343. Issues resolved (http://bugs.uclibc.org):
  1344. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  1345. #12171: Python-opencv needs config.py and config-3.7.py to run..
  1346. #12211: host-nodejs 10.15.3 package fail to build
  1347. #12316: tzdata fails to install with empty "default local time"
  1348. 2019.02.7, Released November 10th, 2019
  1349. Important / security related fixes.
  1350. support/testing: use a kernel with HW_RANDOM_VIRTIO to work
  1351. around issues with lack of entrophy
  1352. Toolchain: Also copy libssp.so for external toolchains if SSP
  1353. is enabled to handle toolchains providing SSP support in
  1354. libssp rather than in the C library
  1355. Download: Also use the package download method for extra
  1356. downloads from the same site, so it does not get confused by
  1357. URLs containing '+'
  1358. Fakeroot now works correctly under Microsoft Windows 10
  1359. Services for Linux, which does not provide SYSV IPC support
  1360. utils/test-pkg: ensure to exit with an error upon failure
  1361. Updated/fixed packages: asterisk, azmq, cups-filters,
  1362. domoticz, duma, elf2flt, eudev, exfat, exfat-utils, fakeroot,
  1363. file, freerdp, gd, ghostscript, go, gvfs, intel-microcode,
  1364. kvm-unit-tests, libarchive, libnspr, libnss, libopenssl,
  1365. libpcap, libpciaccess, librsvg, libseccomp, libsigrok,
  1366. libtorrent, libunwind, linux-tools, lua-sdl2, lxc, minizip,
  1367. mjpegtools, mongoose, php, python, python-pysnmp-apps,
  1368. python3, qemu, qt5base, ruby, safeclib, samba4, sdl_mixer,
  1369. sox, sudo, systemd, tcpdump, unscd, util-lkinux, vtun, xvisor,
  1370. yaffs2utils
  1371. Issues resolved (http://bugs.uclibc.org):
  1372. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  1373. #12261: sudo versions prior to 1.8.28 are affected
  1374. 2019.02.6, Released October 3rd, 2019
  1375. Important / security related fixes.
  1376. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  1377. Use default console settings
  1378. Dependencies: Ensure host has JSON::PP perl module installed
  1379. if webkitgtk/wpewebkit packages are enabled as it is needed
  1380. during their build process.
  1381. Toolchain: Generate check-headers program under BUILD_DIR
  1382. rather than /tmp to fix issues with distributions mounting
  1383. /tmp noexec.
  1384. Updated/fixed packages: asterisk, augeas, bind, bwm-ng, cups,
  1385. cups-filters, docker-cli, docker-engine, docker-proxy,
  1386. dropbear, e2fsprogs, eudev, exim, expat, gcc, go, ifplugd,
  1387. haveged, iptables, joe, kf5-extra-cmake-modules,
  1388. kf5-modemmanager-qt, kf5-networkmanager-qt, libcurl,
  1389. libgcrypt, libgpg-error, libnftl, libnspr, libnss, libopenssl,
  1390. luksmeta, mariadb, mbedtls, mongodb, mosquitto, ncurses,
  1391. nfs-utils, nghttp2, nodejs, openvmtools, php, protobuf, putty,
  1392. qemu, qt5base, samba4, swupdate, systemd-bootchart, thttpd,
  1393. uclibc, unzip, util-linux, wireshark
  1394. Issues resolved (http://bugs.uclibc.org):
  1395. #10806: Allow nfs-utils to use ipv6
  1396. #11781: mariadb build error
  1397. #12031: Build of cups-filters fails while linking, apparently due..
  1398. #12141: eudev package is missing "render" and "kvm" groups
  1399. #12181: dropbear: norootlogin (-w) no longer works when PAM is enabled
  1400. #12241: Permission denied while running "make"
  1401. 2019.02.5, Released September 2nd, 2019
  1402. Important / security related fixes.
  1403. Filesystems: Pass extra pax options to tar for binary
  1404. reproducibility.
  1405. Updated/fixed packages: apache, arm-trusted-firmware,
  1406. asterisk, atk, autofs, batctl, batman-adv, berkeleydb, brotli,
  1407. busybox, bzip2, clamav, cloop, cmake, collectd, connman-gtk,
  1408. cryptopp, dahdi-linux, dahdi-tools, daq, dehydrated, dovecot,
  1409. dovecot-pigeonhole,, elfutils, evtest, exim, expect, giflib,
  1410. git, glib-networking, glibc, gnupg2, gnutls, go,
  1411. gst1-rtsp-server, gtkperf, gupnp-tools, gvfs, imagemagick,
  1412. imx-uuc, intel-microcode, json-glib, lftp, libbsd, libcurl,
  1413. libgit2, libgtk3, libmodplug, libnss, libpri, libshout,
  1414. libss7, libssh2, libvips, libxcb, linux-headers, mdadm,
  1415. mesa3d, metacity, mpg123, mosquitto, musl, nginx, openblas,
  1416. opencv3, openldap, openvmtools, pcmanfm, php, pigpio,
  1417. postgresql, prboom, proftpd, proj, python, python-django,
  1418. python-idna, python-numpy, python-urllib3, python3, qemu, qt5,
  1419. qt5base, qt5enginio, quagga, rygel, squid, subversion,
  1420. tcpreplay, unzip, vlc, vte, webkitgtk, weston, wireless-regdb,
  1421. xen, xfont_font-util, xlib_libICE, xlib_libXfont,
  1422. xlib_libXfont2, yad, zeromq
  1423. Issues resolved (http://bugs.uclibc.org):
  1424. #11741: pigpio does not build host-pigpio
  1425. #11876: automount using host mount/umount
  1426. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  1427. #11921: dahdi fails to build
  1428. #11961: libpri build failure
  1429. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  1430. #12106: daq: build fails if libdumbnet-dev is installed in the host
  1431. #12126: vc4 has neon as hard dependency
  1432. 2019.02.4, Released July 10th, 2019
  1433. Important / security related fixes.
  1434. arch: x86: Fix typo breaking 'core-avx2' variant, add Westmere
  1435. variant.
  1436. linux: Workaround -Werror related build failure on powerpc,
  1437. by forcing CONFIG_PPC_DISABLE_WERROR on.
  1438. support/testing: Emulate a machine with 256MB RAM to fix
  1439. issues with certain tests running out of memory.
  1440. test-pkg: Correct long option handling and clean output dir
  1441. after a successful build to save disk space.
  1442. Ensure custom <pkg>_OVERRIDE_SRCDIR_RSYNC_EXCLUSIONS are
  1443. passed before the standard exclusions so they are not ignored
  1444. by rsync when using override-srcdir.
  1445. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  1446. partition is available before mounting.
  1447. Updated/fixed packages: barebox, bzip2, davfs2, dbus, dialog,
  1448. docker-cli, docker-engine, expat, faad2, ffmpeg, freeswitch,
  1449. gerbera, haveged, irssi, libcdadio, libgit2, libglib2,
  1450. libsecret, libvncserver, lmbench, logrotate, mariadb, meson,
  1451. mongoose, monit, mpd, openblas, php, postgresql, psplash,
  1452. python, python-django, python3, qt5base, samba4, taglib,
  1453. tvheadend, vlc, webkitgtk, xserver_xorg-server, znc
  1454. 2019.02.3, Released June 7th, 2019
  1455. Important / security related fixes.
  1456. Infra: pkg-config: Use a dedicated timestamp file rather than
  1457. .config as that gets touched by linux-4.19+, causing repeated
  1458. builds.
  1459. check-bin-arch: Also ignore /usr/lib/grub to support merged
  1460. /usr setups, similar to how /lib/grub is ignored.
  1461. gnuconfig/config.sub: Add C-SKY architecture support.
  1462. Updated/fixed packages: assimp, atftp, atop, botan, busybox,
  1463. ca-certificates, chocolate-doom, cjson, coreutils, cracklib,
  1464. ddrescue, dhcp, docker-cli, docker-containerd, docker-engine,
  1465. dosfstools, dovecot, dovecot-pigeonhole, dropbear, exim,
  1466. ffmpeg, flare-engine, gcc, gdb, gerbera, glibmm, go, gpsd,
  1467. gst-ffmpeg, gst1-plugins-bad, gst1-plugins-base, imagemagick,
  1468. intel-microcode, jasper, kf5-kcoreaddons, kismet, libcurl,
  1469. libglib2, libnss, libopenssl, libsigrok, libssh2, libupnp18,
  1470. linuxptp, luajit, lynx, matchbox-panel, mender,
  1471. netcat-openbsd, netsurf, nfs-utils, opus, orc, owfs,
  1472. pcsc-lite, php, popt, postgresql, python, python-cython,
  1473. python-django, python-ply, qt5enginio, rpm, runc, samba4,
  1474. sqlite, subversion, supertux, systemd, tslib, uclibc,
  1475. v4l2loopback, webkitgtk, woff2
  1476. Issues resolved (http://bugs.uclibc.org):
  1477. #11816: Only selected coreutils binaries are installed
  1478. #11841: grub-efi.cfg not used when building EFI disk image
  1479. #11911: systemd v240 memory leak in systemd-journald
  1480. 2019.02.2, Released April 29th, 2019
  1481. Important / security related fixes.
  1482. Only build host-lzip / host-xz when really needed by packages,
  1483. not just when not available on the build host.
  1484. fs: Set FAKEROOTDONTTRYCHOWN environment variable to not
  1485. forward {f,l,}chown calls to libc when running under fakeroot
  1486. to fix issues when building in restricted environments
  1487. (E.G. user namespace with bubblewrap).
  1488. Linux: Also build default make target to ensure extra files
  1489. like the gdb scripts enabled by CONFIG_GDB_SCRIPTS are also
  1490. built. Notice: This may mean that extra host utilities like
  1491. uboot-mkimage are needed.
  1492. Defconfigs: ASUS tinker and Amarula vyasa rk3822: Support
  1493. larger kernel images, Atmel SAM5D27, SAM5D2,3,4 xplained:
  1494. Increase rootfs size to fit utilities, Raspberry Pi 64bit:
  1495. Include overlays in sdcard image
  1496. Updated/fixed packages: android-tools, apache, bind, binutils,
  1497. busybox, civetweb, cjson, copas, davfs2, docker-cli,
  1498. docker-containerd, docker-engine, dovecot, dovecot-pigeonhole,
  1499. freerdp, gerbera, ghostscript, git, gnutls, go, gst-omx,
  1500. gst1-plugins-base, gst1-plugins-ugly, haproxy, hostapd,
  1501. ipsec-tools, libfreefare, libfuse, libkrb5, libpng, libxml2,
  1502. libxslt, linknx, linux, linux-firmware, linux-tools, live555,
  1503. lldp, lrzsz, lynx, madplay, make, minicom, mongodb, msmtp,
  1504. musl, mutt, neon, netsnmp, numactl, opus, perl, php,
  1505. postgresql, pure-ftpd, python-urllib3, python3, qt5base,
  1506. rapidxml, rpm, rsyslog, ruby, runc, samba4, sane-backends,
  1507. softether, stunnel, sysklogd, syslinux, syslog-ng,
  1508. systemd-bootchart, thttpd, thrift, tiff, tor, tpm2-tools,
  1509. tpm2-tss, webkitgtk, yaffs2utils, wget, wpa_supplicant, wsapi,
  1510. xapp_xfd, xapp_xload, xlib_libXpm, xserver_xorg-server, xz,
  1511. znc
  1512. Issues resolved (http://bugs.uclibc.org):
  1513. #11756: package/syslinux: MBR's don't fit because of binutils..
  1514. #11761: Building custom kernel 5.1-rc3 or later breaks on objtool
  1515. 2019.02.1, Released March 29th, 2019
  1516. Important / security related fixes.
  1517. pkg-generic: Only tweak .la files needing it to ensure they
  1518. are not included in subsequent package file lists.
  1519. test-pkg: Generate a basic package config if none is
  1520. specified.
  1521. Updated/fixed packages: asterisk, avahi, bash, beecrypt,
  1522. binutils, busybox, clamav, cups, efl, eigen, fetchmail, file,
  1523. flashrom, fltk, gerbera, git, glibc, gnuradio, go,
  1524. gst-plugins-bad, intel-gmmlib, jq, kexec, kf5-modemmanager-qt,
  1525. leveldb, libcurl, libdrm, libftdi1, libglib2, libiio, libpcap,
  1526. libseccomp, libssh2, log4cplus, lvm2, mariadb, mender,
  1527. mongodb, mosquitto, musl, nodejs, ntp, openjpeg, owfs, php,
  1528. pure-ftpd, putty, python-aiojobs, qt5webkit, rdesktop, samba4,
  1529. sunxi-tools, supertux, swupdate, tpm2-abrmd, tpm2-tss,
  1530. wavemon, wireshark, vsftpd, xapp_xdm, xen,
  1531. xdriver_xf86-video-fbdev, xlib_libXdmcp
  1532. Issues resolved (http://bugs.uclibc.org):
  1533. #11716: Typo on website, saying latest release is 2018.2.11
  1534. 2019.02, released March 4th, 2019
  1535. Minor fixes.
  1536. Libressl support added for Qt 5.6 as a replacement for
  1537. openssl, as 5.6 is not compatible with openssl 1.1.x.
  1538. Updated/fixed packages: cutelyst, devmem2, gqrx,
  1539. gst-plugins-bad, libraw, libsoxr, qt5base, runc, systemd, tor
  1540. 2019.02-rc3, released March 1st, 2019
  1541. Fixes all over the tree.
  1542. Openssl support dropped from Qt 5.6, as it isn't compatible
  1543. with openssl 1.1.x.
  1544. Toolchain: GCC 8.x updated to 8.3.0, fixing a number of
  1545. issues.
  1546. Dependencies: Require CMake 3.8 or newer to fix compilation
  1547. issue with certain packages. If not available, host-cmake will
  1548. instead be built.
  1549. Printvars: Fix performance regression since 2018.02
  1550. Scanypi: Correctly handle underscores in python package names.
  1551. Updated/fixed packages: botan, clamav, cryptopp, i2pd,
  1552. ibrcommon, iproute2, libcpprestsdk, libssh, lua-curl,
  1553. luaexpat, qt5base, runc, stress-ng, syslinux, systemd,
  1554. upmpdcli, zbar
  1555. Issues resolved (http://bugs.uclibc.org):
  1556. #9966: util-linux-2.30/.stamp_built' failed
  1557. #11696: possible typo in board/pc/post-build.sh
  1558. 2019.02-rc2, released February 23th, 2019
  1559. Fixes all over the tree.
  1560. Removed zynq_zybo defconfig, as it hasn't seen any update
  1561. since it was added in 2016, and uses a U-Boot version not
  1562. compatible with openssl-1.1.x.
  1563. Linux: Ignore user supplied downloadable hashes, as no hash
  1564. checksums are available for those.
  1565. Updated/fixed packages: bind, cryptopp, docker-containerd,
  1566. dtc, efivar, gdb, imagemagick, ipmiutil, libcpprestsdk,
  1567. libcurl, libgpiod, libid3tag, libv4l, log4cplus, luvi,
  1568. madplay, mender, mosquitto, poco, postgresql, proftpd,
  1569. pulseaudio, python-django, qemu, qt5base, qwt, rabbitmq-c,
  1570. reaver, safeclip, stress-ng, swupdate, syslog-ng, systemd,
  1571. tor, unzip, xenomai
  1572. Issues resolved (http://bugs.uclibc.org):
  1573. #11501: compile sdl2 with enable wayland
  1574. #11681: .. unable to initialize decompress status for section..
  1575. 2019.02-rc1, released February 13th, 2019
  1576. Fixes all over the tree and new features.
  1577. Dependencies:
  1578. Require Python >= 2.7 as it is needed for E.G. building
  1579. libglib2.
  1580. Ensure GNU gzip is used for reproducible tarballs (instead of
  1581. pigz)
  1582. Infrastucture:
  1583. Ensure the PLATFORM and OS environment variables are not set,
  1584. as they cause build issues for some packages.
  1585. The package list infrastructure now correctly handles packages
  1586. installing files with old mtime.
  1587. Add a config option to force all optional host utilities to be
  1588. built, even if suitable versions are available on the build
  1589. machine.
  1590. graph-build-time: Also show time spent downloading
  1591. Download: fixes for SSH/SCP support
  1592. Ensure user provided permissions override permissions from
  1593. packages.
  1594. SDK: Fix handling of relative symlinks (targets starting with
  1595. '.' or '..')
  1596. BR2_SYSTEM_DEFAULT_PATH setting to customize the default path
  1597. for processes.
  1598. The custom skeleton logic will now populate the needed /bin,
  1599. /lib, /sbin directories/symlinks if not present. Merged /usr
  1600. can now be used with a custom skeleton.
  1601. Rootfs overlays can now override symbolic links from
  1602. packages. This was disabled to ensure the correct symbolic
  1603. links are present when merged /usr is used. Instead validate
  1604. that the rootfs overlays do not include invalid /bin, /sbin
  1605. and /lib entries.
  1606. The waf infrastructure now support the <pkg>_SUBDIR variable,
  1607. similar to the other package types.
  1608. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  1609. Various improvements to the meson infrastructure.
  1610. Luarocks: A Buildroot addon has been added to automate
  1611. creating a Buildroot package from luarocks, similar to
  1612. scancpan and scanpypi.
  1613. scanpypi: protect against zip-slip vulnerability in zip/tar
  1614. handling
  1615. check-package: fix Python 3 support
  1616. get-developers: Fix behaviour when called from elsewhere than
  1617. the toplevel directory.
  1618. pkg-stats: Show latest upstream version of each package, based
  1619. on data from release-monitoring.org
  1620. kconfig: Fix for make linux-menuconfig / uboot-menuconfig from
  1621. a clean tree when ccache is enabled.
  1622. Default to sha256 password encoding, drop md5 support.
  1623. Architecture:
  1624. Support for RISC-V 32bit architecture, ARM A55, 75 and Saphira
  1625. variants, MIPS support for mips32r3, mips64r3 and Marvell
  1626. Octeon II/III variants.
  1627. Toolchain:
  1628. ARC toolchain 2018.09, ARM 8.2-2018.11, Codescape IMG/MTI MIPS
  1629. 2018.09-02, MUSL 1.1.21, GCC 6.5.0 / 7.4.0, GDB 8.2.1
  1630. Packages:
  1631. openssl: Bump to 1.1.1x series, bringing TLSv1.3 support and
  1632. long term support.
  1633. fftw: Split into fftw-{single,double,long-double,quad}
  1634. packages for the different data precision options.
  1635. libcurl: Now has explicit TLS backend selection options.
  1636. linux: Support building device tree blobs with the -@ option
  1637. for device tree overlays.
  1638. weston: The weston-imx i.MX variant is now used when
  1639. imx-gpu-viv is enabled
  1640. pkgconf: Update to 1.5.3, which brings support for
  1641. --define-prefix (used by GStreamer)
  1642. Add host-python3-setuptools package to handle host python
  1643. packages needing python3 with setuptools support.
  1644. New defconfigs: Aarch64 EFI, Orangepi one plus, Orangepi lite
  1645. 2, QEMU RISC-V 32bit virt, Rock64
  1646. New packages: brcm-patchram-plus, clinfo, cunit, docker-cli,
  1647. erlang-p1-eimp, exempi, fail2ban, fftw-double,
  1648. fftw-double-long, fftw-quad, fftw-single, gerbera, grpc,
  1649. gst1-shark, intel-gmmlib, iwd, kf5-kcoreaddons, libeastl,
  1650. libpackagekite, libtorrent-rasterbar, lua-std-debug,
  1651. lua-std-normalize, mini-snmpd, netsurf, pamtester, pcm-tools,
  1652. python-aiodns, python-aiohttp, python-aiohttp-jinja2,
  1653. python-aiohttp-remotes, python-aiohttp-security,
  1654. python-aiohttp-session, python-aiohttpd-sse, python-aiojobs,
  1655. python-cchardet, python-pycares, python-sentry-sdk,
  1656. python-wtforms, python3-setuptools, rcw, rtc-tools, shim,
  1657. utp_com, vmtouch, websocketpp
  1658. Removed packages: fftw, lua 5.2.x, luacrypto, perl-time-hires,
  1659. python-pyqt, qt, qtuio, tn5250
  1660. Issues resolved (http://bugs.uclibc.org):
  1661. #10851: Patch to handle numpad Enter key properly
  1662. #11066: x11r7 X11 S40xorg leads to a black screen on QEMU x86..
  1663. #11126: Bash Shell Programming using Buildroot
  1664. #11426: pps-tools bash dependency
  1665. #11476: stdio2.h error invalid use of __builtin_va_arg_pack
  1666. #11536: dt-utils building fails with glibc 2.28
  1667. #11546: open-vm-tools with glibc 2.28
  1668. #11566: Fix init script
  1669. #11576: Unable to start apache with event MPM on raspberry pi 3
  1670. #11591: [pkgconf 1.5.3] xserver OpenGL support is missing
  1671. #11606: libjpeg has no Config.in
  1672. #11616: 2018.02.09 fails to build libzlib with full RELRO..
  1673. #11656: Custom device tree and u-boot boot.scr not integrated..
  1674. #11666: Touchscreen with (Py)Qt5 should use tslib instead of evdev
  1675. 2018.11.4, Released March 28th, 2019
  1676. Important / security related fixes.
  1677. Updated/fixed packages: avahi, beecrypt, binutils, botan,
  1678. busybox, clamav, cups, devmem2, efl, fetchmail, file, fltk,
  1679. gcc, gdb, git, go, gst-plugins-bad, iproute2, jq,
  1680. kf5-modemmanager-qt, leveldb, libopenssl, libraw, libseccomp,
  1681. libsoxr, libssh2, mariadb, mosquitto, nodejs, ntp, openjpeg,
  1682. perl, php, putty, qt5webkit, rdesktop, runc, samba4, swupdate,
  1683. systemd, tor, vsftpd, wireshark, xapp_xdm, xen, xlib_libXdmcp
  1684. 2018.11.3, Released February 23th, 2019
  1685. Important / security related fixes.
  1686. Ensure the PLATFORM and OS environment variables are not set,
  1687. as they cause build issues for some packages.
  1688. The package list infrastructure now correctly handles packages
  1689. installing files with old mtime.
  1690. Linux: Skip hash checks for user supplied downloadable
  1691. patches, as no hash checksums are available for those.
  1692. scanpypi: protect against zip-slip vulnerability in zip/tar
  1693. handling
  1694. Download: fixes for SSH/SCP support
  1695. SDK: Fix handling of relative symlinks (targets starting with
  1696. '.' or '..')
  1697. Updated/fixed packages: bind, dhcpcd, docker-compose,
  1698. docker-containerd, docker-engine, dovecot, dovecot-pigeonhole,
  1699. dtc, efivar, ghostscript, gnuradio, imagemagick, jpeg-turbo,
  1700. libarchive, libb64, libcurl, libgeotiff, libgpiod, libid3tag,
  1701. libupnp18, log4cplus, madplay, meson, mosquitto, openssh, php,
  1702. poco, postgresql, proftpd, pulseaudio, python, python-django,
  1703. python3, qt5base, reaver, runc, sg3_utils, sqlcipher,
  1704. swupdate, systemd, unzip, webkitgtk, xenomai
  1705. 2018.11.2, Released January 30th, 2019
  1706. Important / security related fixes.
  1707. Defconfigs: Fixes for imx6slevk, imx7dsabresd, imx8mqevk, Lego
  1708. EV3, QEMU AArch64-virt
  1709. Download: Fix scp download handling
  1710. check-package: fix Python 3 support
  1711. get-developers: Fix behaviour when called from elsewhere than
  1712. the toplevel directory.
  1713. kconfig: Fix for make linux-menuconfig / uboot-menuconfig from
  1714. a clean tree when ccache is enabled.
  1715. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  1716. Updated/fixed packages: acpica, apache, apr, avrdude, cargo,
  1717. cc-tool, dash, dhcpdump, dmalloc, docker-containerd, efivar,
  1718. fwts, glibc, gnuchess, gnupg2, go, leveldb, libarchive,
  1719. libassuan, libftdi1, libgpg-error, libhttpparser, libkcapi,
  1720. libmad, libsndfile, libsquish, liburiparser, libwebsock,
  1721. libxml2, lighttpd, llvm, lm-sensors, lua-msgpack-native, lxc,
  1722. mariadb, mbedtls, meson, mosquitto, netatalk, nodejs, odhcp6c,
  1723. openresolv, openssh, pango, patchelf, php, python-django,
  1724. python-numpy, python-pyyaml, rauc, rp-pppoe, s6-networking,
  1725. samba4, sdl_sound, shairport-sync, sqlite, subversion,
  1726. sunxi-cedarx, swupdate, systemd, tcpreplay, tekui, tmp2-abrmd,
  1727. tpm2-tools, tpm2-tss, udisks, unixodbc, usb_modeswitch,
  1728. webkitgtk, wireshark, wolfssl, xapp_rgb, xenomai, xerces
  1729. Issues resolved (http://bugs.uclibc.org):
  1730. #11576: Unable to start apache with event MPM on raspberry pi 3
  1731. 2018.11.1, Released December 20th, 2018
  1732. Important / security related fixes.
  1733. defconfigs: Fixes for bananapi m2 ultra, ci20
  1734. Download wrapper: Fix for urlencode handling
  1735. Updated/fixed packages: asterisk, docker-compose,
  1736. docker-engine, dt-utils, gnutls, go, grub, libbsd, libcurl,
  1737. libpgpme, libiscsi, liblo, libmpd, libopenssl, liboping,
  1738. libpam-tacplus, libpjsip, linux-firmware, liquid-dsp,
  1739. lua-cqueue, luvi, lxc, lynx, nginx, nodejs, openzwave, php,
  1740. pps-tools, proftpd, prosody, sdl2_net, squashfs, swupdate,
  1741. uclibc, vtu, webkitgtk, wine, xen
  1742. New packages: docker-cli
  1743. Issues resolved (http://bugs.uclibc.org):
  1744. #11426: pps-tools bash dependency
  1745. #11536: dt-utils building fails with glibc 2.28
  1746. 2018.11, Released December 1st, 2018
  1747. Minor fixes.
  1748. Updated/fixed packages: c-ares, quagga, squid
  1749. 2018.11-rc3, released November 30th, 2018
  1750. Fixes all over the tree.
  1751. Defconfigs: Fixes for Armadeus APF27, imx6sabre, Olimex A20
  1752. olinuxino lime legacy, Orangepi zero plus 2, PC, Riotboard.
  1753. graph-depends: Fix for package names starting with a non-alpha
  1754. character.
  1755. Updated/fixed packages: alsa-utils, botan, dante, domoticz,
  1756. dtc, freetype, gauche, gcc, gdb, ghostscript, glibc,
  1757. imx-usb-loader, libbsd, libid3tag, libkrb5, libmicrohttpd,
  1758. libopenssl, libsoxr, linux, motion, msgpack, mtd,
  1759. perl-net-ssleay, php, popt, python-numpy, qt5declarative,
  1760. samba4, shadowsocks-libev, stress-ng, systemd, usb_modeswitch,
  1761. webkitgtk, valgrind, weston, xfsprogs
  1762. 2018.11-rc2, released November 21th, 2018
  1763. Fixes all over the tree.
  1764. fs: Drop intermediate tarball from the filesystem handling to
  1765. fix an issue with xattrs handling related to fakeroot. Ensure
  1766. tarball target includes xattrs.
  1767. download: Fix confusion in git submodule handling if dl/ is a
  1768. symlink.
  1769. genrandconfig: Fix missing newline in BR2_WGET handling,
  1770. causing the following line to be ignored. This would affect
  1771. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  1772. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  1773. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  1774. show-build-order: Also include the dependencies of
  1775. rootfs-common.
  1776. Fix a number of build issues in packages for the recently
  1777. merged RISC-V architecture support.
  1778. Updated/fixed packages: dt-utils, easydbus, elfutils,
  1779. flare-engine, flatcc, glibc, gstreamer, gstreamer1, imx-uuc,
  1780. libassuan, libcorrect, libiscsi, libkrb5, libmicrohttpd,
  1781. libnftnl, libnspr, libnss, libsemanage, libsigsegv, libv4l,
  1782. ltp-testsuite, luv, luvi, make, ncmpc, netplug, openocd,
  1783. prosody, qemu, rpm, sconeserver, shadowsocks-libev,
  1784. supertuxcart, syslinux, systemd, trace-cmd, uclibc,
  1785. uclibc-ng-test, vtun, webkitgtk, weston, wireshark, xen,
  1786. xlib_libfontenc
  1787. Issues resolved (http://bugs.uclibc.org):
  1788. #11086: download/git submodule breaks on symlinked dl folder
  1789. #11216: Capabilities not applied to filesystem
  1790. 2018.11-rc1, released November 9th, 2018
  1791. Fixes all over the tree and new features.
  1792. Architecture: RISC-V support (64bit) added.
  1793. Toolchain: Glibc bumped to 2.28. Fortran support for external
  1794. toolchains. ARM (Linaro) toolchains updated to 8.2-2018.08.
  1795. Hardening flags (RELRO) are now handled by the toolchain
  1796. wrapper instead of explicitly through CFLAGS/LDFLAGS, fixing a
  1797. number of issues.
  1798. Filesystems: Support for creating btrfs and f2fs filesystems
  1799. added.
  1800. Add a number of patches to fix build errors for host utilities
  1801. on modern distributions using glibc-2.28.
  1802. mkusers: Ensure existing group members are preserved when a
  1803. group is reprocessed.
  1804. printvars: Fix issue with exceeding shell command line length
  1805. limits for certain setups.
  1806. Workaround added for incompatibility issues between host-dtc
  1807. and older U-Boot and Linux kernel versions.
  1808. Detect and reject build paths containing '@', as this confuses
  1809. a number of packages, including GCC.
  1810. utils/diffconfig: Make it work for (non-Buildroot) config
  1811. files not using the BR2_ prefix.
  1812. New defconfigs: Amarula a64-relic, Bananapi m2 ultra, Embest
  1813. riotboard, Hardkernel Odroid XU-4, QEMU riscv64-virt.
  1814. olimex_a20_olinuxion_lime_mali is renamed to _legacy.
  1815. OpenCL infrastructure support added, similar to how OpenGL is
  1816. handled.
  1817. Linux-headers: Support for kernel headers from a custom
  1818. tarball / git repo added.
  1819. New packages: bird, bluez5_utils-headers, btrfs-progs,
  1820. checksec, davici, duktape, ell, haproxy, libclc, libcorrect,
  1821. libopencl, libopenresolv, nss-myhostname,
  1822. perl-apache-logformat-compiler, perl-appconfig,
  1823. perl-astro-suntime, perl-class-inspector, perl-class-load,
  1824. perl-class-method-modifiers, perl-class-std,
  1825. perl-class-std-fast, perl-cookie-baker, perl-data-dump,
  1826. perl-data-optlist, perl-data-uuid, perl-data-manip,
  1827. perl-dbd-mysql, perl-dbi, perl-devel-globaldestruction,
  1828. perl-devel-stacktrace, perl-devel-stacktrace-ashtml,
  1829. perl-device-serialport, perl-dist-checkconflicts,
  1830. perl-exporter-tiny, perl-file-sharedir, perl-file-slurp,
  1831. perl-filesys-notify-simple, perl-hash-multivalue,
  1832. perl-http-entity-parser, perl-http-headers-fast,
  1833. perl-http-multipartparser, perl-io-interface,
  1834. perl-io-socket-multicast, perl-json-maybexs, perl-mime-tools,
  1835. perl-module-implementation, perl-module-runtime, perl-moo,
  1836. perl-number-bytes-human, perl-package-stash, perl-params-util,
  1837. perl-plack, perl-posix-strftime-compiler, perl-role-tiny,
  1838. perl-streams-buffered, perl-sub-exporter-progressive,
  1839. perl-sub-install, perl-sub-quote, perl-sys-cpu,
  1840. perl-sys-meminfo, perl-sys-mmap, perl-time-parsedate,
  1841. perl-type-tiny, perl-www-form-urlencoded, perl-x10, pigpio,
  1842. python-async-timeout, python-falcon, python-fire,
  1843. python-mimeparse, python-multidict, python-passlib,
  1844. python-pigpio, python-pip, python-ply, python-py,
  1845. python-pyasn1, python-pyasn1-modules, python-pycryptodomex,
  1846. python-pyhamcrest, python-pysmi, python-scapy, python-semver,
  1847. python-serial-asyncio, python-typing, python-uvloop,
  1848. pythonwrapt, python-yarl, python-zeroconf, riscv-pk, sedutil,
  1849. spandsp, tini, waffle, xapian
  1850. Removed packages: bootutils, dsp-tools, expedite, gst-dsp,
  1851. xloader
  1852. Issues resolved (http://bugs.uclibc.org):
  1853. #11116: Buildroot should set PYTHON_EGG_CACHE instead of writing ..
  1854. #11156: In python3 module 'socket' has no attribute 'AF_BLUETOOTH'
  1855. #11166: Erlang bad argument on valid uint64 when crosscompiled on..
  1856. #11206: zlib: fails to build with Linaro toolchain, BR2_RELRO_FULL..
  1857. #11241: ACPID shouldn't depend on BR2_x86_64 || BR2_i386
  1858. #11251: Util scanpypi failes when package change - to _ in tar file
  1859. #11266: qt5base-5.11.1 does not compile with musl, complains about..
  1860. #11286: python-rpi-gpio only should depend on BR2_arm || BR2_aarch64
  1861. #11321: Latest master fails to build readline with RELRO FULL
  1862. #11326: sysvinit fails to build in latest GIT master
  1863. #11331: Internal application no longer builds with latest GIT master
  1864. #11336: nfs-utils fails to build in latest GIT master
  1865. #11351: build root-2018-08, linaro aarch64 compile error
  1866. #11376: mdmon binary missing
  1867. #11391: Valgind availability on ARM
  1868. #11396: uboot environment image checksum invalid if target is big endian
  1869. #11421: GCC error message for ARM Cortex-A9/ARM.V7
  1870. #11451: Can't find libmpfr.so.4 when using external toolchain on ubuntu..
  1871. #11481: Docs: Is external.desc required?
  1872. 2018.08.4, Released December 20th, 2018
  1873. Important / security related fixes.
  1874. Defconfigs: Fixes for ci20, orangepi zero plus 2
  1875. Download wrapper: Fix for urlencode handling
  1876. Updated/fixed packages: c-ares, dante, docker-compose,
  1877. domoticz, freetype, ghostscript, gnutls, libcurl, libgpgme,
  1878. libid3tag, libiscsi, libmpd, libopenssl, liboping, libpjsip,
  1879. linux-firmware, liquid-dsp, luvi, lynx, msgpack, nginx,
  1880. nodejs, php, popt, pps-tools, prosody, python-numpy,
  1881. python-requests, samba4, sdl2_net, squashfs, swupdate,
  1882. systemd, uclibc, vte, webkitgtk, wine, xfsprogs
  1883. Issues resolved (http://bugs.uclibc.org):
  1884. #11426: pps-tools bash dependency
  1885. 2018.08.3, Released November 26th, 2018
  1886. Important / security related fixes.
  1887. fs: Drop intermediate tarball from the filesystem handling to
  1888. fix an issue with xattrs handling related to fakeroot. Ensure
  1889. tarball target includes xattrs.
  1890. download: Fix confusion in git submodule handling if dl/ is a
  1891. symlink.
  1892. toolchain: Only allow enabling stack protection on
  1893. architectures with control flow integrity (CFI) support. Only
  1894. allow FORTIFY_SOURCE support on gcc >= 6.
  1895. genrandconfig: Fix missing newline in BR2_WGET handling,
  1896. causing the following line to be ignored. This would affect
  1897. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  1898. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  1899. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  1900. show-build-order: Also include the dependencies of
  1901. rootfs-common.
  1902. Defconfigs: Fixes for Armadeus APF27, imx6sabre, Olimex A20
  1903. olinuxino lime legacy, Orangepi zero plus 2.
  1904. graph-depends: Fix for package names starting with a non-alpha
  1905. character.
  1906. Updated/fixed packages: attr, audit, bind, brotli, busybox,
  1907. dtc, easydbus, elfutils, flare-engine, flatcc, gauche, gcc,
  1908. giflib, gpsd, lcdproc, libcurl, libiscsi, libkcapi, libnfs,
  1909. libnspr, libnss, libsemanage, liburiparser, lighttpd,
  1910. lua-curl, mariadb, mmc, mosquitto, mysql, ncmpc, neardal,
  1911. netplug, network-manager, nfs-utils, nginx, openocd, openswan,
  1912. p11-kit, postgresql, prosody, qemu, qt, rpm, ruby, samba4,
  1913. squid, supertuxkart, systemd, tar, trace-cmd, traceroute,
  1914. twolame, uclibc, usb_modeswitch, vtun, webkitgtk, weston,
  1915. xdriver_xf86-video-geode, xlib_libfontenc, xserver_xorg-server
  1916. Issues resolved (http://bugs.uclibc.org):
  1917. #11086: download/git submodule breaks on symlinked dl folder
  1918. #11481: Docs: Is external.desc required?
  1919. 2018.08.2, Released October 25th, 2018
  1920. Important / security related fixes.
  1921. Workaround added for incompatibility issues between host-dtc
  1922. and older U-Boot and Linux kernel versions.
  1923. Detect and reject build paths containing '@', as this confuses
  1924. a number of packages, including GCC.
  1925. utils/get-developers: Add -e option for use with git
  1926. send-email.
  1927. utils/diffconfig: Make it work for (non-Buildroot) config
  1928. files not using the BR2_ prefix.
  1929. u-boot: Fix for environment image handling on big endian
  1930. systems.
  1931. Updated/fixed packages: binutils, ca-certificates,
  1932. cups-filters, dtc, erlang, file, freetype, gcc, git, gvfs,
  1933. jasper, leveldb, libarchive, libssh, live555, ljlinenoise,
  1934. mariadb, mongoose, netsnmp, nmap, nodejs, ntp, open-plc-utils,
  1935. poco, psmisc, ptpd2, python-enum34, qemu, qt, qt5base,
  1936. setools, spice, spice-protocol, tinc, ustr, wireshark,
  1937. Issues resolved (http://bugs.uclibc.org):
  1938. #11396: uboot environment image checksum invalid if target is big endian
  1939. 2018.08.1, Released October 7th, 2018
  1940. Important / security related fixes.
  1941. Add a number of patches to fix build errors for host utilities
  1942. on modern distributions using glibc-2.28.
  1943. mkusers: Ensure existing group members are preserved when a
  1944. group is reprocessed.
  1945. printvars: Fix issue with exceeding shell command line length
  1946. limits for certain setups.
  1947. Updated/fixed packages: acpid, android-tools, apache,
  1948. arp-scan, bandwidthd, bind, brltty, clamav, connman, cppcms,
  1949. domoticz, dtc, fio, gcc, gdb, ghostscript, gnupg, httpping,
  1950. igmpproxy, imlib2, ipsec-tools, libesmtp, libnfs, libxslt,
  1951. links, lua, mosquitto, nilfs-utils, ocrad, parted, php,
  1952. python-django, screen, shairport-sync, strongswan,
  1953. vboot-utils, webkitgtk, wireguard, x265 xen, xlib_libXdmcp,
  1954. xlib_libXfont, xlib_libXft, xlib_libxshmfence,
  1955. xutil_makedepend, zeromq
  1956. 2018.08, Released September 6th, 2018
  1957. Minor fixes.
  1958. Known issues:
  1959. - Glibc 2.28 on the build host breaks compilation of a number
  1960. of host packages. 2018.08 contains fixes for some of these
  1961. packages, but not all. Consider building on hosts (or in
  1962. containers) using older Glibc versions.
  1963. - host-dtc 1.4.7 breaks compilation of older U-Boot and Linux
  1964. kernel configurations using FDT/DTC. Consider updating the
  1965. Linux kernel to >= 4.17 and U-Boot to >= 2018.07 or
  1966. backporting commit 9130ba8846 (scripts/dtc: Update to
  1967. upstream version v1.4.6-9-gaadd0b65c987) for the Linux
  1968. kernel / commit db405d1980 for U-Boot.
  1969. Alternatively revert commit 7b929ddcf0 (dtc: bump version to
  1970. 1.4.7) and ensure your build host does not have the libfdt
  1971. development headers installed.
  1972. Updated/fixed packages: busybox, chipmunk, cutelyst,
  1973. domoticz, gcc, imagemagick, lcms2, libcurl, mediastreamer,
  1974. moarvm, php, qt, qt5virtualkeyboard, qt5webengine, screen,
  1975. sdl2, squashfs, uboot, xen
  1976. Issues resolved (http://bugs.uclibc.org):
  1977. #11261: ccache using wrong cached objects
  1978. #11276: Understanding the patch for kernel-4.9 and other..
  1979. 2018.08-rc3, Released August 31th, 2018
  1980. Fixes all over the tree.
  1981. linux: additional improvements to the flex / bison dependency
  1982. handling, use system provided variant if available. Ensure
  1983. toolchain is available when configuring for 4.18+ support.
  1984. Download: Fix handling of primary sites using file://
  1985. Toolchain: Correct external toolchain musl detection for
  1986. static toolchains.
  1987. Updated/fixed packages: aircrack-ng, bison, brltty, busybox,
  1988. cutelyst, dropbear, gr-osmosdr, i2c-tools, json-c, libconfuse,
  1989. libkcapi, libsoup, libssh, liburiparser, mbedtls, mender,
  1990. mesa3d, minicom, mjpegtools, mutt, openpowerlink, openssh,
  1991. oracle-mysql, php, postgresql, pv, qt5base, qt5quickcontrols,
  1992. rauc, shairport-sync, systemd, xlib_libX11, zeromq,
  1993. Issues resolved (http://bugs.uclibc.org):
  1994. #11091: BR2_PRIMARY_SITE doesn't work (wget is selected...
  1995. #11141: WF111 package no longer available
  1996. #11211: Internal compiler error: Killed (program cc1plus)..
  1997. #11236: util-linux fails to build on Travis CI when python..
  1998. #11246: Glibc 2.28 - fails to build host-bison and host-m4
  1999. #11256: Add python-falcon and python-mimeparse packages
  2000. 2018.08-rc2, Released August 20th, 2018
  2001. Fixes all over the tree.
  2002. pkg-kconfig: Support dependencies needed to run the
  2003. configurator, E.G. recent Linux kernel versions needing flex
  2004. and bison.
  2005. Defconfigs: ARM Juno: Bump ATF to fix a build
  2006. issue. Raspberrypi2: Bump rootfs size. Snps_archs38_vdk:
  2007. Correct /etc/inittab. Technologic ts7680: Correct genimage
  2008. configuration. Orange PI PC / Zero, Sheevaplug: Bump U-boot to
  2009. 2018.07 to fix build issue. Ensure host-openssl is pulled in
  2010. for kernel builds where needed.
  2011. Updated/fixed packages: aircrack-ng, bind, boost,
  2012. boot-wrapper-aarch64, bzip2, busybox, chrony, cryptsetup,
  2013. dahdi-tools, dbus, domoticz, eigen, ipsec-tools, libarchive,
  2014. libfuse, libgit2, libopenssl, libselinux, lighttpd, lvm2, m4,
  2015. makedevs, mariadb, mesa3d-headers, mono, ncmpc, ncurses,
  2016. nodejs, php, python-django, python-pyqt5, qt5base,
  2017. qt5serialbus, ruby, samba4, uboot-tools, uclibc, vlc,
  2018. waylandpp, wireless_tools, wireshark, wpa_supplicant, mtd,
  2019. xdriver_xf86-video-ati, xserver_xorg-server
  2020. Issues resolved (http://bugs.uclibc.org):
  2021. #10781: cryptsetup luksOpen container_file container causes..
  2022. #10996: bogus musl ARM toolchain
  2023. #11191: xattr and check-package issue
  2024. 2018.08-rc1, Released August 5th, 2018
  2025. Toolchain:
  2026. - add support for gcc 8.x, switch to gcc 7.x as the default
  2027. version
  2028. - add support for gdb 8.1, switch to gdb 8.0 as the default
  2029. and remove gdb 7.10/7.11
  2030. - add support for binutils 2.31
  2031. - NIOSII CodeSourcery toolchain updated
  2032. - Linaro AArch64 BE toolchain added, and other Linaro
  2033. toolchains updated
  2034. - Synopsys ARC pre-built toolchain updated
  2035. Architecture: add support for ARM Cortex-M7
  2036. Major updates:
  2037. - systemd bumped to 239
  2038. - Qt5 bumped to 5.11.1
  2039. - Rust bumped to 1.27
  2040. - GStreamer stack bumped to 1.14.2
  2041. - X.org server bumped to 1.20, and all X.org proto packages
  2042. replaced by the single xorgproto package
  2043. - i.MX6 support packages bumped to 6.2.4
  2044. - i.MX Vivante graphics version bumped to 6.2.4.p1.2,
  2045. adding support for Wayland and i.MX8MQ platforms
  2046. Linux: bumped to 4.17 by default.
  2047. Infrastructure: new package infrastructure added for packages
  2048. using the Meson build system
  2049. New packages: at-spi2-atk, at-spi2-core, capnproto, cmocka,
  2050. corkscrew, cutelyst, davfs2, flatcc, libidn2, libgit2,
  2051. libopusenc, mender, nghttp2, perl-convert-asn1, perl-crypt-blowfish,
  2052. perl-crypt-cbc, perl-digest-md5, perl-mime-base64-urlsafe,
  2053. perl-mojolicious-plugin-authentication, perl-net-ping,
  2054. perl-net-snmp, perl-net-ssh2, perl-net-telnet, pigz,
  2055. python-reentry, python-request-id, python-validators,
  2056. python-webob, shadowsocks-libev, speexdsp, xorgproto, wampcc
  2057. New defconfigs: NXP i.MX7D SDB, Boundary Devices Nitrogen 8M,
  2058. Olimex A10 OLinuxino, ZynqMP ZCU106
  2059. Removed packages: all xproto_* have been removed and replaced
  2060. by xorgproto
  2061. Issues resolved (http://bugs.uclibc.org):
  2062. #9411: MUSL build with RT Error relocating /lib/libgcc_s.so.1:
  2063. __cpu_indicator_init: symbol not found
  2064. #9921: lockfile module within python-daemon not available
  2065. #10341: gdb install of py files when using buildroot toolchain
  2066. includes build path
  2067. #10661: /etc/init.d/S29netplug starts multiple instances of netplugd
  2068. #10751: Missing dependency in pulseaudio package
  2069. #10811: kodi-17.6-Krypton does not compile for freescale_* devices
  2070. #10856: openblas on qemu_x86_64_defconfig fails with
  2071. "sgemm_kernel.o: No such file or directory"
  2072. #11056: Compiling a file that uses libdrm headers fails with:
  2073. fatal error: drm.h: No such file or directory
  2074. #11061: support/download: git version=master broken
  2075. #11071: Building postgresql package on Debian 9.4 x64 for armel target fails
  2076. #11076: Docker containerd installed to incorrect path
  2077. #11101: host-patchelf Endian Issue with relative RPATH
  2078. #11111: raspberry pi 3 b+: missing BSP for 64-bit kernel
  2079. #11121: statfs call corrupts memory struct statfs too small
  2080. #11181: Switching toolchain does not work
  2081. 2018.05.3, Released October 6th, 2018
  2082. Important / security related fixes.
  2083. Add a number of patches to fix build errors for host utilities
  2084. on modern distributions using glibc-2.28.
  2085. mkusers: Ensure existing group members are preserved when a
  2086. group is reprocessed.
  2087. printvars: Fix issue with exceeding shell command line length
  2088. limits for certain setups.
  2089. Updated/fixed packages: acpid, android-tools, apache,
  2090. arp-scan, bandwidthd, bind, bison, brltty, chipmunk, connman,
  2091. cppcms, fio, gcc, ghostscript, gnupg, httping, igmpproxy,
  2092. imagemagick, imlib2, ipsec-tools, lcm2, libcurl, libesmtp,
  2093. libnfs, libssh, libxslt, links, mediastreamer, minicom,
  2094. moarvm, nilfs-utils, ocrad, parted, php, postgresql, pv,
  2095. python-django, qt, qt5quickcontrols, qt5webengine, screen,
  2096. sdl2, shairport-sync, squashfs, strongswan, vboot-utils,
  2097. webkitgtk, wireguard, x265, xen, xlib_libXfont, xlib_libXft,
  2098. xlib_libxshmfence, zeromq
  2099. 2018.05.2, Released August 28th, 2018
  2100. Important / security related fixes.
  2101. Defconfigs: Raspberrypi2: Bump rootfs size, T7680: Fix
  2102. genimage.cfg issue, ARM Juno: Bump ATF to v1.3 to fix build
  2103. issue.
  2104. Updated/fixed packages: acl, attr, apache, bind,
  2105. boot-wrapper-aarch64, brltty, bzip2, chrony, crda, cryptsetup,
  2106. dahdi-tools, dmidecode, dropbear, eigen, ffmpeg, gawk, gcc,
  2107. ghostscript, gnutls, imx-gpu-viv, ipsec-tools, libarchive,
  2108. libfuse, libglib2, libopenssl, libselinux, libsoup, lighttpd,
  2109. linuxptp, lttng-modules, lttng-tools, lua-flu, lvm2, m4,
  2110. makedevs, mariadb, mbedtls, mesa3d-heders, mtd, ncurses,
  2111. nodejs, openssh, php, python-django, rauc, ruby, samba4,
  2112. stress-ng, ti-utils, uboot-tools, uclibc, vim, waylandpp,
  2113. wireless_tools, wireless-regdb, wireshark, wpa_supplicant,
  2114. xorriso, znc
  2115. Issues resolved (http://bugs.uclibc.org):
  2116. #10781: cryptsetup luksOpen container_file container causes..
  2117. #10986: Installing package attr when already supplied by..
  2118. #11191: xattr and check-package issue
  2119. 2018.05.1, Released July 20th, 2018
  2120. Important / security related fixes.
  2121. U-Boot: Ensure host version of ncurses is picked up and not
  2122. host-ncurses built by buildroot, as that otherwise causes
  2123. widechar/non-widechar conflicts and corrupted menuconfig
  2124. menus.
  2125. Linux: Enable CONFIG_PERF_EVENTS when perf is enabled.
  2126. Toolchain: ARC tools updated to arc-2018.03.
  2127. pkg-stats: Fix python 3.x compatibility.
  2128. dl-wrapper: Fix support for URIs containing '+', fix
  2129. no-check-hash for inferred site method.
  2130. Defconfigs: Raspberrypi3: Bump rootfs size, Minnowboard-max:
  2131. Support ethernet on Turbot variant.
  2132. Updated/fixed packages: audit, bind, btrfs-progs, cifs-utils,
  2133. clamav, collectd, coreutils, docker-containerd, dos2unix,
  2134. edid-decode, file, gcc, gdb, gnupg, gnupg2, heimdal, hidapi,
  2135. imagemagick, libcurl, libgcrypt, libglib2, liblogging,
  2136. libostree, libressl, libsoup, libv4l, libvncserver, libvorbis,
  2137. libwebsockets, libxslt, lm-sensors, mariadb, mpg123, ncurses,
  2138. network-manager, nodejs, patchelf, perl, php-amqp, pinentry,
  2139. pixiewps, qpdf, qt53d, qt5base, qt5charts, qt5script, redis,
  2140. systemd, triggerhappy, uboot, wireguard, wireless-regdb,
  2141. wireshark
  2142. 2018.05, Released June 1st, 2018
  2143. Minor fixes.
  2144. Download: Work around for hanging connections for packages
  2145. from CVS, by adding a 10 minute max timeout.
  2146. Updated/fixed packages: binutils, clang, dash, expect, git,
  2147. glibc, jpeg-turbo, libjpeg, log4cplus, openvmtools, xen,
  2148. Issues resolved (http://bugs.uclibc.org):
  2149. #11051: runtime issue on STM32 with usage of binutils 2.29.x
  2150. 2018.05-rc3, Released May 28th, 2018
  2151. Fixes all over the tree.
  2152. Toolchain: ARC tools updated to arc-2018.03-rc2.
  2153. Fs: Ensure hard links in TARGET_DIR are correctly copied for
  2154. filesystem input. With the recent changes to the file system
  2155. generation logic, hard links were "expanded" in file system
  2156. images leading to bloated rootfs images for setups with hard
  2157. links.
  2158. Infrastructure: Error out for packages using the 'local'
  2159. method but forgetting to specify <pkg>_SITE.
  2160. Build rpcgen for the host when needed to support distributions
  2161. no longer shipping rpcgen with glibc (E.G. recent Fedora).
  2162. Updated/fixed packages: autofs, bash-completion, binutils,
  2163. busybox, cjson, elf2flt, libcoap, libcurl, libtirpc, lrzsz,
  2164. poppler, procps-ng, qt-webkit-kiosk, quota, samba4, xfsprogs
  2165. Issues resolved (http://bugs.uclibc.org):
  2166. #11031: ld-elf2flt: host/bin/ld.real': execvp: No such file..
  2167. #11036: C compiler cannot create executables
  2168. #11046: Git package binaries are ~180MB (compared to ~20MB in..
  2169. 2018.05-rc2, Released May 22nd, 2018
  2170. Fixes all over the tree.
  2171. Dependencies: Check that the current working directory (.)
  2172. isn't listed in PATH as that causes various build issues.
  2173. Manual: Clarify that git branch names may not be used as
  2174. version identifiers. This has never been supported, but was
  2175. kind of working (with some limitations) before the git
  2176. download rework - Now it does not work at all.
  2177. Linux: Ensure host version of ncurses is picked up and not
  2178. host-ncurses built by buildroot, as that otherwise causes
  2179. widechar/non-widechar conflicts and corrupted menuconfig
  2180. menus.
  2181. Packages: Renamed a number of package options not prefixed
  2182. with BR2_PACKAGE_<pkg> for consstency.
  2183. Download infrastructure: Fix file:// protocol handling after
  2184. download rework.
  2185. Updated/fixed packages: acl, apr-util, asterisk, attr,
  2186. bluez5_utils, cifs-utils, clamav, clang, cups-filters,
  2187. dahdi-linux, exim, faketime, gdb, go, gst1-plugins-bad,
  2188. imx-mkimage, ipsec-tools, jamvm, janus-gateway,
  2189. jquery-ui-themes, libcap, libcurl, libftdi, libkcapi, libkrb5,
  2190. libmediaart, libmodbus, libmodplug, libmpd,
  2191. libnetfilter_cthelper, libnetfilter_cttimeout, libnfc,
  2192. libnfnetlink, libnss, liboauth, libogg, libosip2,
  2193. libpam-radius-auth, libpcap, libpciaccess, llvm, log4cplus,
  2194. ltrace, lynx, mbedtls, modem-manager, nfs-utils,
  2195. python-cython, python-websockets, qt5cinex, qt5wayland, rauc,
  2196. snort, strace, ti-sgx-km, transmission, wavpack, wget, woff2,
  2197. xen, zmqpp, znc, zstd
  2198. Issues resolved (http://bugs.uclibc.org):
  2199. #10986: Installing package attr when already supplied by...
  2200. #11011: BUildroot for Raspberry Pi 2
  2201. #11016: Wrong compiler used for external user host packages
  2202. 2018.05-rc1, Released May 9th, 2018
  2203. Toolchain: glibc bumped to 2.27, musl bumped to 1.1.19,
  2204. uClibc-ng 1.0.30, Linux kernel headers bumped to 4.16.x.
  2205. Architecture: support for the Blackfin architecture has been
  2206. removed, as it was removed from Linux upstream, poorly
  2207. maintained in binutils/gdb, and abandoned by Analog Devices.
  2208. Numerous packages updated to have hashes for their license
  2209. files.
  2210. Systemd can now be built with uClibc toolchains.
  2211. Linux: addition of BR2_LINUX_KERNEL_NEEDS_HOST_LIBELF and
  2212. BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL to support building Linux
  2213. kernel configurations that need libelf on the host or openssl
  2214. on the host.
  2215. Coding style:
  2216. - all Python scripts are now verified with flake8
  2217. - check-package extended to check all Config.in and .mk files
  2218. in tree, not only the ones in package/
  2219. Infrastructure:
  2220. - The download infrastructure has seen a major overhaul, with
  2221. the main visible new feature being Git caching: a package
  2222. fetched from Git no longer needs to be re-cloned entirely
  2223. everytime its version is changed. Anoter visible change is
  2224. that the download folder now has subfolders per package. See
  2225. http://lists.busybox.net/pipermail/buildroot/2018-April/217923.html
  2226. for more details about those changes.
  2227. - The logic that generates the root filesystem images has been
  2228. reworked, with the main goal of allowing several filesystem
  2229. images to be produced in parallel, also a requirement for
  2230. top-level parallel build. Now, a .tar filesystem image is
  2231. always created, and re-extracted in a private directory to
  2232. create each format-specific filesystem image.
  2233. - A new package infrastructure was introduced for Go-based
  2234. packages: golang-package.
  2235. - Dependencies on extraction tools are now handled as proper
  2236. per-package dependencies, using
  2237. <pkg>_EXTRACT_DEPENDENCIES. Beyond a cleanup, this is also a
  2238. preparation step for top-level parallel build support.
  2239. - When a file being downloaded is part of a package with a
  2240. .hash file, but there is no hash listed for this file, the
  2241. file is now preserved in the download directory rather than
  2242. removed. This helps when updating a package, as it gives the
  2243. ability to easily calculate the hash of the file.
  2244. - Addition of '<pkg>-show-recursive-depends' and
  2245. '<pkg>-show-recursive-rdepends' make targets, to
  2246. respectively display the recursive list of dependencies and
  2247. the recursive list of reverse dependencies of a given
  2248. package.
  2249. - The /etc/shells file is now automatically generated with the
  2250. list of shell programs installed on the system.
  2251. - Addition of -Ofast optimization level as an available
  2252. option.
  2253. Major updates: Go updated to 1.10, Erlang bumped to 20.3, Qt5
  2254. bumped to 5.10.1.
  2255. New packages: 18xx-ti-utils, abootimg, bluez-alsa, brotli,
  2256. chipmunk, clang, docker-compose, docker-proxy, flare-engine,
  2257. flare-game, gst1-interpipe, gstreamer1-editing-services,
  2258. hackrf, i2pd, imx-alsa-plugins, imx-mkimage, libcdio-paranoia,
  2259. libkrb5, llvm, pixiewps, python-backports-ssl-match-hostname,
  2260. python-cached-property, python-cython, python-docker,
  2261. python-dockerpty, python-docker-pycreds,
  2262. python-flask-sqlalchemy, python-functools32, python-influxdb,
  2263. python-json-models, python-libusb1, python-networkx,
  2264. python-psycopg2, python-pymodbus, python-sqlalchemy,
  2265. python-subprocess32, python-texttable,
  2266. python-websocket-client, python-yieldfrom, quotatool, reaver,
  2267. snort, sunxi-mali-mainline, sunxi-mali-mainline-driver, tk,
  2268. tpm2-abrmd, tpm2-tools, tpm2-tss, udftools, vte, woff2.
  2269. New defconfigs: ARC HS Development Kit, Arcturus ucls1012a,
  2270. Freescale i.MX6UL EVK (with vendor kernel), Freescale i.MX6
  2271. SoloLite EVK (with vendor kernel), Freescale i.MX31 3Stack,
  2272. Freescale i.MX8Q EVK Freescale p1025twr, Freescale t1040d4rdb,
  2273. Qemu PPC64 E5500, SolidRun ClearFog Base, Tinker RK3288, Vyasa
  2274. RK3288,
  2275. Removed packages: iqvlinux, kodi-adsp-*, mplayer
  2276. Removed defconfigs: ci40, firefly_rk3288,
  2277. freescale_p1010rdb_pa, freescale_mpc8315erdb, riotboard,
  2278. teliv_evk_pro3
  2279. Issues resolved (http://bugs.uclibc.org):
  2280. #10151: toolchain eclipse register : fails with a custom
  2281. BR2_HOST_DIR
  2282. #10511: Packages get downloaded uncompressed with wget
  2283. #10531: QtWebengine doesn't build if the host hasn't a 32 bits
  2284. C++ compiler working
  2285. #10846: error in compiling gnutls
  2286. #10886: openssl-1.0.2n fails to build
  2287. #10896: /bin/sh not in /etc/shells
  2288. #10961: Grub2 fails to build for x86_64 when BR2_SSP_ALL is
  2289. enabled
  2290. 2018.02.12, Released March 29th, 2019
  2291. Important / security related fixes.
  2292. Updated/fixed packages: avahi, beecrypt, busybox, clamav,
  2293. cups, devmem2, fetchmail, file, fltk, gcc, gdb, git, jq,
  2294. leveldb, libopenssl, libraw, libseccomp, libssh2,
  2295. libunistring, mariadb, mosquitto, nodejs, ntp, openjpeg, perl,
  2296. php, putty, qt5webkit, rdesktop, systemd, wireshark, vsftpd,
  2297. xapp_xdm, xlib_libXdmcp
  2298. 2018.02.11, Released February 23th, 2019
  2299. Important / security related fixes.
  2300. Ensure the PLATFORM and OS environment variables are not set,
  2301. as they cause build issues for some packages.
  2302. The package list infrastructure now correctly handles packages
  2303. installing files with old mtime.
  2304. Linux: Skip hash checks for user supplied downloadable
  2305. patches, as no hash checksums are available for those.
  2306. scanpypi: protect against zip-slip vulnerability in zip/tar
  2307. handling
  2308. Updated/fixed packages: bind, dhcpcd, dovecot, ghostscript,
  2309. gnuradio, imagemagick, jpeg-turbo, libarchive, libb64,
  2310. libcurl, libid3tag, madplay, mosquitto, openssh, php,
  2311. postgresql, proftpd, python, python-django, python3, qt5base,
  2312. sqlcipher, swupdate, systemd, unzip, webkitgtk
  2313. 2018.02.10, Released January 31th, 2019
  2314. Important / security related fixes.
  2315. Defconfigs: Fixes for Lego EV3, QEMU AArch64-virt
  2316. check-package: fix Python 3 support
  2317. get-developers: Fix behaviour when called from elsewhere than
  2318. the toplevel directory.
  2319. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  2320. Updated/fixed packages: acpica, apache, apr, asterisk,
  2321. avrdude, cargo, cc-tool, dash, dhcpdump, dmalloc, gnuchess,
  2322. gnupg2, leveldb, libarchive, libassuan, libftdi1,
  2323. libgpg-error, libhttpparser, libmad, libsndfile, libsquish,
  2324. liburiparser, libwebsock, libxml2, lighttpd, lm-sensors,
  2325. lua-msgpack-native, mbedtls, mosquitto, netatalk, nodejs,
  2326. openssh, pango, patchelf, php, python-django, python-pyyaml,
  2327. rauc, rp-pppoe, s6-networking, samba4, sdl_sound,
  2328. shairport-sync, sqlite, subversion, sunxi-cedarx, tcpreplay,
  2329. tekui, usb_modeswitch, webkitgtk, wireshark, wolfssl,
  2330. xapp_rgb, xenomai, xerces
  2331. Issues resolved (http://bugs.uclibc.org):
  2332. #11576: Unable to start apache with event MPM on raspberry pi 3
  2333. 2018.02.9, Released December 20th, 2018
  2334. Important / security related fixes.
  2335. defconfigs: Fixes for ci20
  2336. Updated/fixed packages: c-ares, dante, freetype, ghostscript,
  2337. glibc, gnutls, go, libcurl, libgpgme, libid3tag, libiscsi,
  2338. libmpd, libopenssl, libpjsip, linux, liquid-dsp, luvi, lynx,
  2339. msgpack, nginx, nodejs, php, popt, pps-tools, python-numpy,
  2340. python-requests, samba4, sdl2_net, squashfs, swupdate, uclibc,
  2341. wine, webkitgtk, xfsprogs
  2342. Issues resolved (http://bugs.uclibc.org):
  2343. #11426: pps-tools bash dependency
  2344. 2018.02.8, Released November 26th, 2018
  2345. Important / security related fixes.
  2346. fs: Drop intermediate tarball from the filesystem handling to
  2347. fix an issue with xattrs handling related to fakeroot. Ensure
  2348. tarball target includes xattrs.
  2349. download: Fix confusion in git submodule handling if dl/ is a
  2350. symlink.
  2351. toolchain: Only allow enabling stack protection on
  2352. architectures with control flow integrity (CFI) support. Only
  2353. allow FORTIFY_SOURCE support on gcc >= 6.
  2354. genrandconfig: Fix missing newline in BR2_WGET handling,
  2355. causing the following line to be ignored. This would affect
  2356. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  2357. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  2358. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  2359. show-build-order: Also include the dependencies of
  2360. rootfs-common.
  2361. Defconfigs: Fixes for Armadeus APF27, imx6sabre.
  2362. graph-depends: Fix for package names starting with a non-alpha
  2363. character.
  2364. Updated/fixed packages: attr, audit, bind, brotli, easydbus,
  2365. elfutils, gauche, gcc, giflib, gpsd, lcdproc, libcurl,
  2366. libiscsi, libnfs, libnspr, libnss, libkcapi, libsemanage,
  2367. liburiparser, lighttpd, linux, lua-curl, mariadb, mmc-utils,
  2368. mosquitto, mysql, neardal, netplug, network-manager,
  2369. nfs-utils, nginx, openocd, openswan, p11-kit, postgresql,
  2370. prosody, qemu, qt, rpm, ruby, samba4, squid, supertuxkart,
  2371. systemd, tar, trace-cmd, traceroute, twolame, uclibc,
  2372. usb_modeswitch, vtun, webkitgtk, xdriver_xf86-video-geode,
  2373. xlib_libfontenc, xproto_inputproto, xserver_xorg-server
  2374. Issues resolved (http://bugs.uclibc.org):
  2375. #11086: download/git submodule breaks on symlinked dl folder
  2376. #11251: Util scanpypi failes when package change - to _ in..
  2377. #11476: stdio2.h error invalid use of __builtin_va_arg_pack
  2378. #11481: Docs: Is external.desc required?
  2379. 2018.02.7, Released October 25th, 2018
  2380. Important / security related fixes.
  2381. Detect and reject build paths containing '@', as this confuses
  2382. a number of packages, including GCC.
  2383. utils/get-developers: Add -e option for use with git
  2384. send-email.
  2385. utils/diffconfig: Make it work for (non-Buildroot) config
  2386. files not using the BR2_ prefix.
  2387. u-boot: Fix for environment image handling on big endian
  2388. systems.
  2389. Updated/fixed packages: binutils, ca-certificates,
  2390. cups-filters, erlang, file, freetype, gcc, git, gvfs, leveldb,
  2391. libarchive, libcurl, libssh, live555, ljlinenoise, mariadb,
  2392. mongoose, netsnmp, nmap, nodejs, ntp, open-plc-utils, poco,
  2393. psmisc, ptpd2, python-enum34, qemu, qt, qt5base, setools,
  2394. spice, spice-protocol, tinc, ustr, wireshark
  2395. Issues resolved (http://bugs.uclibc.org):
  2396. #11396: uboot environment image checksum invalid if target is big endian
  2397. 2018.02.6, Released October 7th, 2018
  2398. Important / security related fixes.
  2399. Add a number of patches to fix build errors for host utilities
  2400. on modern distributions using glibc-2.28.
  2401. mkusers: Ensure existing group members are preserved when a
  2402. group is reprocessed.
  2403. printvars: Fix issue with exceeding shell command line length
  2404. limits for certain setups.
  2405. Updated/fixes packages: acpid, android-tools, apache,
  2406. arp-scan, bandwidthd, bind, bison, clamav, connman, cppcms,
  2407. cramfs, fio, gcc, ghostscript, glibc, gnupg, httping,
  2408. igmpproxy, imagemagick, imlib2, ipsec-tools, lcms2, libcurl,
  2409. libesmtp, libnfs, libssh, libxslt, links, linuxptp,
  2410. mediastreamer, minicom, moarvm, nilfs-utils, ocrad, parted,
  2411. php, pv, python-django, qt, qt5quickcontrols, qt5webengine,
  2412. screen, sdl2, shairport-sync, squashfs, strongswan,
  2413. vboot-utils, webkitgtk, wireguard, x265, xen, xlib_libXfont,
  2414. xlib_libXft
  2415. New packages: brotli, woff2
  2416. 2018.02.5, Released August 29th, 2018
  2417. Important / security related fixes.
  2418. Defconfigs: Raspberrypi2: Bump rootfs size, T7680: Fix
  2419. genimage.cfg issue, ARM Juno: Bump ATF to v1.3 to fix build
  2420. issue.
  2421. Updated/fixed packages: acl, apache, attr, bind,
  2422. boot-wrapper-aarch64, brltty, bzip2, chrony, crda, cryptsetup,
  2423. dahdi-tools, dmidecode, dropbear, eigen, erlang, ffmpeg, gawk,
  2424. gcc, ghostscript, gnutls, ipsec-tools, libarchive, libfuse,
  2425. libopenssl, libselinux, libsoup, lighttpd, linuxptp,
  2426. lttng-modules, lttng-tools, lua-flu, lvm2, m4, makedevs,
  2427. mariadb, mbedtls, mesa3d-headers, mtd, ncurses, nodejs,
  2428. openssh, php, postgresql, python-django, qt5xmlpatterns, ruby,
  2429. samba4, shairport-sync, stress-ng, ti-utils, uboot-tools, vim,
  2430. waylandpp, wireless_tools, wireshark, wpa_supplicant, xorriso,
  2431. znc
  2432. Issues resolved (http://bugs.uclibc.org):
  2433. #10781: cryptsetup luksOpen container_file container causes..
  2434. #10986: Installing package attr when already supplied by..
  2435. #11191: xattr and check-package issue
  2436. 2018.02.4, Released July 21th, 2018
  2437. Important / security related fixes.
  2438. U-Boot: Ensure host version of ncurses is picked up and not
  2439. host-ncurses built by buildroot, as that otherwise causes
  2440. widechar/non-widechar conflicts and corrupted menuconfig
  2441. menus.
  2442. Linux: Enable CONFIG_PERF_EVENTS when perf is enabled.
  2443. Defconfigs: Raspberrypi3: Bump rootfs size, Minnowboard-max:
  2444. Support ethernet on Turbot variant.
  2445. Updated/fixed packages: bind, clamav, collectd, dos2unix,
  2446. edid-decode, gcc, gdb, heimdal, hidapi, imx-gpu-viv, libcurl,
  2447. libglib2, liblogging, libostree, libsoup, libv4l, lm-sensors,
  2448. ncurses, network-manager, patchelf, pinentry, procps-ng, qpdf,
  2449. qt5, qt53d, qt5base, qt5charts, qt5script, qt5serialport,
  2450. systemd, wireguard, wireless-regdb
  2451. Issues resolved (http://bugs.uclibc.org):
  2452. #11101: host-patchelf Endian Issue with relative RPATH
  2453. 2018.02.3, Released June 18th, 2018
  2454. Important / security related fixes.
  2455. Various fixes for building on modern distributions (GCC 8.x,
  2456. no rpcgen utility).
  2457. ARM: Default to binutils 2.28 and warn about newer binutils
  2458. versions, which are known to cause boot failures for Linux
  2459. kernels built in thumb mode.
  2460. Busybox/mdev: Fix module autoloading.
  2461. Busybox/sysvinit: inittab: Add /dev/{stdin,stdout,stderr}
  2462. symlinks, call swapon -a to activate any configured swap
  2463. devices.
  2464. Dependencies: Check that PATH does not contain current working
  2465. directory, which triggers a number of build failures.
  2466. Infrastructure: Error out for packages erroneously using the
  2467. 'local' site method but not defining a _SITE.
  2468. Linux: Fix cuImage.<dtb> / simpleImage.<dtb> handling. Ensure
  2469. kconfig uses ncurses from the host to fix a ncurses/ncursesw
  2470. mixup, causing menuconfig display corruption.
  2471. Toolchain: Workarounds for fix-rpath issues with binutils and
  2472. elf2flt.
  2473. Util-linux: Fix blocking on getrandom() issue with recent
  2474. kernels.
  2475. Remove broken freescale_imx31_3stack,
  2476. freescale_imx6sololiteevk and freescale_imx6ulevk defconfigs.
  2477. Updated/fixed packages: apr-util, asterisk, attr, audit,
  2478. autofs, binutils, busybox, cifs-utils, cups-filters, dash,
  2479. ebtables, exim, expect, f2fs-tools, faketime, file, gdb, git,
  2480. glibc, gnupg, gnupg2, gst1-plugins-bad, imagemagick, jamvm,
  2481. jpeg-turbo, libcap, libcoap, libcurl, libgcrypt, libjpeg,
  2482. libnss, libressl, libtirpc, libvncserver, libvorbis, libxslt,
  2483. log4cplus, lrzsz, ltrace, lynx, mariadb, mbedtls, mpg123,
  2484. nasm, netplug, network-manager, nfs-utils, nodejs,
  2485. openvmtools, patch, perl, php-amqp, poppler, procps-ng,
  2486. python, python-websockets, quota, redis, samba4, sysvinit,
  2487. transmission, triggerhappy, util-linux, wavpack, wget,
  2488. wireshark, xen, zmqpp
  2489. Issues resolved (http://bugs.uclibc.org):
  2490. #10986: Installing package attr when already supplied by busybox..
  2491. #11031: ld-elf2flt: host/bin/ld.real': execvp: No such file or..
  2492. 2018.02.2, Released May 4th, 2018
  2493. Important / security related fixes.
  2494. Tweak package size/file instrumentation to better handle
  2495. package rebuilds.
  2496. Revert /etc/shells creation when bash is enabled.
  2497. Exclude /lib/firmware from the rpath fixup logic, as it may
  2498. contain non-native ELF files.
  2499. Scanpypi: Support the new PyPi infrastructure.
  2500. Handle GCC 8.x on the host.
  2501. Ensure timestamp of /usr is updated to support the systemd
  2502. ConditionNeedsUpdate option.
  2503. Updated/fixed packages: bluez5_utils, flann, gdb, gnupg2,
  2504. grub2, libcec, libcgi, libglib2, libgpg-error, libgpgme,
  2505. libtomcrypt, mbedtls, mkpasswd, php, python, python-requests,
  2506. python-watchdog, qt53d, qt5websockets, sdl2, sdl2_image,
  2507. syslog-ng, systemd, tcl, tcllib, uclibc, usb_modeswitch,
  2508. wireguard, wmctrl
  2509. Issues resolved (http://bugs.uclibc.org):
  2510. #10896: /bin/sh not in /etc/shells
  2511. #10961: Grub2 fails to build for x86_64 when BR2_SSP_ALL is enabled
  2512. 2018.02.1, Released April 9th, 2018
  2513. Important / security related fixes.
  2514. Removed unmaintained defconfigs: Creator Ci40, Firefly rk3288,
  2515. Freescale mpc8315erdb / p1010rdb_pa, Riotboard, Teliv EVK
  2516. Pro3.
  2517. Infrastructure: Speed up instrumentation for package size by
  2518. comparing timestamps instead of md5 checksums, as doing
  2519. checksums could lead to up to 25% longer build time for big
  2520. configurations.
  2521. Rename the internal <pkg>_BASE_NAME variable to <pkg>_NASENAME
  2522. to avoid name clashes with packages ending on '-base'.
  2523. Add a better fix for build issues for autotools based packages
  2524. checking for C++ support on toolchains without C++ support.
  2525. Build host-tar if tar is older than 1.27 on the build machine
  2526. to work around reproducibility issues with git archives
  2527. containing long paths.
  2528. check-unique-files: Fix for filenames not representable in the
  2529. users' locale.
  2530. Check-bin-arch: Add support for per-package ignore paths
  2531. (<pkg>_BIN_ARCH_EXCLUDE).
  2532. Toolchain: Fix SSP support detection for external toolchains.
  2533. linux: Add _NEEDS_HOST_OPENSSL / LIBELF options to ensure
  2534. these dependencies are available for Linux configurations
  2535. needed these dependencies, similar to how it is done for
  2536. U-Boot.
  2537. Support custom (not in tree) device tree files in addition to
  2538. in-tree ones.
  2539. U-Boot / uboot-tools: Fix header conflict with libfdt-devel
  2540. installed on host.
  2541. Updated/fixed packages: apache, busybox, c-ares, cmake,
  2542. docker-engine, enlightenment, eudev, fbgrab, freescale-imx,
  2543. gtest, imagemagick, intel-microcode, irssi, jimtcl, kmod,
  2544. kodi, ktap, libcoap, libcurl, libfcgi, libhttpparser,
  2545. libminiupnpc, libopenssl, libpjsip, libss7, libssh2, libupnp
  2546. libupnpp, libuv, libvorbis, memcached, motion, musl, nodejs,
  2547. ntp, openblas, opencv3, openocd, opus-tools, patch, php,
  2548. pkgconf, postgresql, powerpc-utils, python-jsonschema,
  2549. python-webpy, qemu, qt5bsae, qt5script, qt5webkit, rapidjson,
  2550. rauc, sam-ba, samba4, sngrep, systemd, tremor, uboot-tools,
  2551. uclibc-ng-test, upmpdcli, wireshark, xerces, xterm, zstd
  2552. New packages: docker-proxy, python-functools32
  2553. Issues resolved (http://bugs.uclibc.org):
  2554. #10766: upmpdcli: Segmentation fault
  2555. #10776: ktap fails to build
  2556. #10846: error in compiling gnutls
  2557. #10856: openblas on qemu_x86_64_defconfig fails with "sgemm_..
  2558. 2018.02, Released March 4th, 2018
  2559. Fixes all over the tree.
  2560. Issues with systemd with a readonly rootfs and DBus fixed.
  2561. Instructure:
  2562. - check-uniq-files: fix Python 2.6 compatibility.
  2563. - dependencies.sh: check for external argparse module for
  2564. Python 2.6.
  2565. - Add infrastructure to detect and use a UTF-8 locale on the
  2566. host, needed by systemd.
  2567. Update/fixed packages: clamav, dash, dhcp, dovecot, efl,
  2568. ffmpeg, libv4l, mono, mosquitto, php, postgresql, qt,
  2569. scanpypi, sdl2, systemd, tor, tvheadend, uboot, wavpack
  2570. Issues resolved (http://bugs.uclibc.org):
  2571. #10831: qemu_x86_64_defconfig build fails on linux-headers..
  2572. 2018.02-rc3, Released February 27th, 2018
  2573. Fixes all over the tree.
  2574. check-bin-arch: skip /lib/modules to allow 32-bit userland
  2575. with 64bit kernel.
  2576. dependencies: Blacklist tar 1.30+ and build our own host-tar
  2577. if needed as tar 1.30+ changed the --numeric-owner output for
  2578. long path names. Build host-tar before other host-dependencies
  2579. as they need it to extract their source tarballs.
  2580. Update/fixed packages: asterisk, azmq, bluez5_utils, domoticz,
  2581. e2fsprogs, erlang, exim, glibc, gpsd, jq, libglib2, libvorbis,
  2582. mariadb, mbedtls, mesa3d, mesa3d-headers, mpv, patch, pcre2,
  2583. php, qt5, qt5multimedia, qt5wayland, qt5webengine, qt5webkit,
  2584. systemd, quagga, rustc, uboot, wireguard, zic, zlib-ng
  2585. Issues resolved (http://bugs.uclibc.org):
  2586. #10726: Current libglib2.mk creates broken libglib2 binary...
  2587. #10786: Linux fails to build unless make linux-menuconfig...
  2588. #10796: Cannot generate cpio image without selecting CON...
  2589. 2018.02-rc2, Released February 15th, 2018
  2590. Fixes all over the tree.
  2591. Dependencies: Ensure C++ support is available like for C
  2592. support for packages needing 32bit host support.
  2593. utils/genrandconfig: Check host dependencies for config.
  2594. Updated/fixed packages: busybox, dnsmasq, dropbear, ffmpeg,
  2595. glibc, keepalived, libcpprestsdk, libgpiod, libmaxminddb,
  2596. librsvg, libtasn1, libv4l, libxml2, lightning, ltp-testsuite,
  2597. mesa3d, mesa3d-demos, mesa3d-headers, nftables, open-lldp,
  2598. php, postgresql, python-crossbar, qt5, qt53d, qt5enginio,
  2599. qt5tools, qt5webengine, qt5webkit, rsync, rust-bin, rustc,
  2600. systemd
  2601. Issues resolved (http://bugs.uclibc.org):
  2602. #9781: ti-sgx-km build on kernel >4.1
  2603. #10141: Squashfs extended attribute failures
  2604. 2018.02-rc1, Released February 5th, 2018
  2605. The global source-check and per-package <pkg>-source-check
  2606. targets have been removed.
  2607. Architecture: Add x86 Silvermont variant. Add several new ARM
  2608. variants, rework MIPS NaN logic. Support mainline binutils/gcc
  2609. for ARC.
  2610. Toolchains: Linaro toolchains upgraded to 2017.11 release, ARC
  2611. external toolchains upgraded to arc-2017.09. Libatomic is now
  2612. also copied for external musl based toolchains.
  2613. Add binutils 2.30.x and switch to binutils 2.29.x by default.
  2614. Added hardening options to build with RELRO and FORTITY.
  2615. New defconfigs: Bananapi M64, FriendlyARM Nanopi A64 & NEO2,
  2616. imx6slevk, imx6sx-sdb, imx6ulevk, Olimex A64-OLinuXino,
  2617. Orangepi lite / pc plus / pc / prime / win / win plus / zero
  2618. plus2, Pine64, Solidrun MacchiatoBin. Sopine.
  2619. Add utils/diffconfig, a simple utility for comparing
  2620. configuration files - Adapted from the version in the
  2621. Linux kernel.
  2622. Infrastructure: Check that the same file is not touched by
  2623. multiple packages, as a preparation for toplevel parallel
  2624. builds.
  2625. Hashes for the license files for a large number of packages
  2626. have been added, ensuring that license changes will not be
  2627. missed when packages are bumped.
  2628. Fix build issue for autotools based packages checking for C++
  2629. support on toolchains without C++ support and on a distro
  2630. lacking /lib/cpp (E.G. Arch Linux).
  2631. Support for the meson build system.
  2632. Pie charts generated by 'graph-build' or 'graph-size' are now
  2633. sorted according to the size of each piece.
  2634. System: Only show getty options when busybox init or sysvinit
  2635. are used.
  2636. ARM-trusted-firmware: Support ATF bundled in U-Boot as
  2637. well as U-Boot bundled in ATF.
  2638. Zlib is now a virtual package, provided by either libzlib or
  2639. zlib-ng, similar to openssl.
  2640. Support for the Rust programming language.
  2641. New packages: aoetools, armbian-firmware, binaries-marvell,
  2642. brltty, cargo, cargo-bin, cups-filters, curlpp, daq,
  2643. flatbuffers, gconf, glorytun, gstreamer1-mm, imx-m4fwloader,
  2644. imx-gpu-g2d, json-for-modern-cpp, libcpprestsdk, libgta,
  2645. libostree, libupnp18, luadbi, luadbi-sqlite3, lua-utf8, lynx,
  2646. meson, mv-ddr-marvell, nilfs-utils, opentracing-cpp,
  2647. open-lldp, pimd, proj, python-flask-cors,
  2648. python-jaraco-classes, python-more-itertools, python-oauthlib,
  2649. python-raven, python-remi, python-requests-oauthlib,
  2650. python-schedule, python-secretstorage, python-see,
  2651. python-tabledata, python-txtorcon, python-xlib, qt5charts,
  2652. rtl8189fs, rtl8723bu, rust, rustc, rust-bin, rygel, safeclib,
  2653. solatus, tcf-agent, traceroute, waylandpp, wolfssl,
  2654. zisofs-tools, zlib-ng
  2655. Removed packages: eeprog
  2656. 2017.11.2, Released January 21st, 2018
  2657. Important / security related fixes.
  2658. External toolchain: libatomic is now also copied for musl
  2659. based toolchains.
  2660. nconfig: Fix for ncurses/ncursesw linking issue causing crashes.
  2661. System: Only show getty options when busybox init or sysvinit
  2662. are used.
  2663. Infrastructure: Fix build issue for autotools based packages
  2664. checking for C++ support on toolchains without C++ support and
  2665. on a distro lacking /lib/cpp (E.G. Arch Linux).
  2666. Pie charts generated by 'graph-build' or 'graph-size' are now
  2667. sorted according to the size of each piece.
  2668. Updated/fixed packages: asterisk, avahi, bind, busybox,
  2669. coreutils, eeprog, intel-microcode, iputils, irssi, kmsxx,
  2670. libiio, linux-firmware, lz4, mariadb, matchbox-lib, mcookie,
  2671. ntp, php, pound, rpcbind, tar, ti-cgt-pru, webkitgtk, xen,
  2672. xlib_libXpm
  2673. Issues resolved (http://bugs.buildroot.org):
  2674. #9996: lz4 package does not install lz4 binaries in target
  2675. #10176: Rsyslog's S01logging is deleted by Busybox.mk from...
  2676. #10216: package/x11r7/mcookie/mcookie.c:207: bad size ?
  2677. #10301: systemd/getty unused options
  2678. #10331: kmsxx, host installation fails with BR2_SHARED_...
  2679. #10556: Building ntp package with SSL library libressl...
  2680. #10641: avahi-autoipd not starting when using systemd-tmpfiles
  2681. 2017.11.1, Released December 31th, 2017
  2682. Important / security related fixes.
  2683. Updated/fixed packages: asterisk, checkpolicy, dhcp, flann,
  2684. gdb, glibc, heimdal, kodi-pvr-mediaportal-tvserver,
  2685. kodi-pvr-stalker, libcue, libopenssl, libpqxx, libsoxr,
  2686. linknx, linux-tools, lldpd, ltp-testsuite, mariadb, mfgtools,
  2687. nodejs, nut, pulseaudio, python-cffi, qemu, rsync, tor, uboot,
  2688. uboot-tools, vlc, webkitgtk, weston, wireguard, wireshark,
  2689. xenomai, xfsprogs
  2690. 2017.11, Released November 30, 2017
  2691. Fixes all over the tree.
  2692. Toolchain: Use github mirror for Glibc.
  2693. Defconfigs: Correct boot.cmd for bananapi-m1.
  2694. Makefiles: Workaround include order issues for certain make
  2695. versions by explicitly sorting the result of wildcard where it
  2696. matters.
  2697. Download: Ensure subversion runs in non-interactive mode.
  2698. Updated/fixed packages: asterisk, boost, chrony, dovecot,
  2699. dvb-apps, exim, feh, freerdp, fwup, google-breakpad, jose,
  2700. kvm-unit-test, lftp, libcurl, libevent, libfastjson, libpjsip,
  2701. libupnp, linphone, localedef, lttng-tools, mp4v2, mtools,
  2702. ndisc6, oracle-mysql, parted, pdbg, qt, qt5connectivity,
  2703. qt5declarative, qt5webkit, rauc, runc, samba4, shairport-sync,
  2704. systemd-bootchart, webkitgtk, wireguard, xlib_libXcursor,
  2705. xlib_libXfont, xlib_libXfont2,
  2706. Issues resolved (http://bugs.buildroot.org):
  2707. 10501: host-localedef fails to compile on Ubuntu 17.10
  2708. 10506: Changed kernel image type (e.g. zImage to uImage)...
  2709. 2017.11-rc2, Released November 13th, 2017
  2710. Fixes all over the tree.
  2711. Updated/fixed packages: collectd, ffmpeg, freerdp,
  2712. go-bootstrap, imagemagick, jimtcl, libpjsip, libplist, libuv,
  2713. mesa3d, nodejs, ntp, openjpeg, postgresql, python-numpy, ruby,
  2714. snmp++, usb_modeswitch, util-linux, vboot-utils, webkitgtk,
  2715. wireshark, wpa_supplicant, xapp_xdriinfo
  2716. Issues resolved (http://bugs.buildroot.org):
  2717. #10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  2718. #10491: Cannot output security warning when compiled with buildroot..
  2719. 2017.11-rc1, Released November 6th, 2017
  2720. Fixes all over the tree and new features.
  2721. Openssl is now a virtual package, which may be provided by
  2722. OpenSSL (now renamed to libopenssl) or LibreSSL.
  2723. libssh2: there is now an explicit choice of the backend to use
  2724. (mbedtls, gnutls or openssl). Previously, the choice was implicit
  2725. based on the TLS library that was selected. Now, it is possible to
  2726. choose the backend, which is important if several TLS libraries are
  2727. selected.
  2728. netsnmp: all MIB files are now installed, making the target filesystem a
  2729. bit bigger than before. To remove unneeded MIBS, you should use a
  2730. post-build script.
  2731. Toolchain: Linaro toolchains updated to 2017.08, ARC toolchain
  2732. updated to 2017.09, Glibc updated to 2.26, Glibc support for
  2733. ARCv2. The toolchain wrapper now handles SOURCE_DATE_EPOCH for
  2734. older (pre-gcc7.x) toolchains for BR2_REPRODUCIBLE.
  2735. New defconfigs: Atmel SAM45D27, Bananapi M1 and M2 Plus,
  2736. Engicam i.CoreM6 Qt5 configuration, i.MX6 sabreauto (mainline
  2737. kernel/u-boot), i.MX6Q sabresd Qt5 configuration, i.MX7d-pico,
  2738. QEMU ppc64le, Raspberry pi3 Qt5 webengine configuration,
  2739. Technologic TS-7680.
  2740. New packages: asterisk, azmq, bcg729, boinc, dahdi-linux,
  2741. dahdi-tools, freeswitch-mod-bcg729, fscryptctl, libb64,
  2742. libpri, libss7, lua-basexx, lua-compat53, lua-cqueues,
  2743. lua-curl, lua-datafile, lua-fifo, lua-httpd,
  2744. lua-lpeg-patterns, lua-markdown, lua-sailor, lua-value,
  2745. luksmeta, minetest, minetest-game, pdmenu, prosody,
  2746. python-aiocoap, python-automat, python-ibmiotf,
  2747. python-iso8601, python-m2r, python-simplesqlite,
  2748. python-websockets, python-xmltodict, qt5wayland, qt5webengine,
  2749. restorecond, selinux-python, semodule-utils, uhubctl,
  2750. wireguard, wsapi-fcgi, wsapi-xavante
  2751. Removed packages: aiccu, rfkill, sepolgen
  2752. Issues resolved (http://bugs.buildroot.org):
  2753. #10281: lsblk does not compile for util-linux
  2754. #10336: lttng compilation fails : linking error
  2755. #10351: glibc missing in rootfs
  2756. #10356: nfs-utils missing header
  2757. #10361: python3 python-config script generates invalid includes
  2758. #10366: dropbear download url has changed
  2759. #10391: WiringPi retrieves wrong (old) version
  2760. #10406: Beaglebone black: Buggy SGX driver version, swapped...
  2761. #10426: uboot-tools' fw_setenv does not update the redundant...
  2762. #10451: libpcap 1.8.x and 1.7x does not compile on PPC
  2763. 2017.08.2, Released November 28th, 2017
  2764. Important / security related fixes.
  2765. Qt: 5.6 version updated to 5.6.3.
  2766. Reproducible: Do not override SOURCE_DATE_EPOCH if already set
  2767. in the environment.
  2768. Makefiles: Workaround include order issues for certain make
  2769. versions by explicitly sorting the result of wildcard where it
  2770. matters.
  2771. Updated/fixed packages: apr, apr-util, arqp-standalone,
  2772. azure-iot-sdk-c, collectd, dvb-apps, ffmpeg, go-bootstrap,
  2773. google-breakpad, gstreamer, imagemagick, irssi, jimtcl,
  2774. kvm-unit-test, libcurl, libfastjson, libglib2, libidn,
  2775. libpjsip, libplist, localedef, lttng-tools, luajit, mesa3d,
  2776. moarvm, mp4v2, openssh, openssl, oracle-mysql, postgresql,
  2777. python3, python-pyqt5, qt, qt5base, qt5canvas3d,
  2778. qt5connectivity, qt5declarative, qt5engineio,
  2779. qt5graphicaleffects, qt5imageformats, qt5location,
  2780. qt5multimedia, qt5quickcontrols, qt5quickcontrols2, qt5script,
  2781. qt5sensors, qt5serialbus, qt5serialport, qt5svg, qt5tools,
  2782. qt5webchannel, qt5webkit, qt5websockets, qt5x11extras,
  2783. qt5xmlpatterns, quagga, redis, ruby, samba4, sdl2, snmppp,
  2784. swupdate, ti-gfx, uboot-tools, usb_modeswitch, vboot-utils,
  2785. webkitgtk, wget, wireshark, xapp_xdriinfo.
  2786. Issues resolved (http://bugs.buildroot.org):
  2787. 10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  2788. 10361: python3 python-config script generates invalid includes
  2789. 10501: host-localedef fails to compile on Ubuntu 17.10
  2790. 2017.08.1, Released October 23rd, 2017
  2791. Important / security related fixes.
  2792. Webkitgtk bumped to the 2.18.x series, fixing a large number
  2793. of security issues.
  2794. Defconfigs: galileo: fix ext4 related kernel config, bump
  2795. kernel for gcc 6.x compatibility, enable wchar support for
  2796. grub2. wandboard: correct rootfs offset
  2797. support: Ensure gzip compression level 6 is used for git
  2798. tarballs. check-bin-arch: Correctly handle (ignore) symbolic
  2799. links. check-rpath: Also handle PIE binaries
  2800. External toolchain: Correctly handle glibc Buildroot
  2801. toolchains built with merged /usr
  2802. musl: fix ARMv4 build with binutils 2.27.51+, fix for
  2803. CVE-2017-15650
  2804. Updated/fixed packages: apache, augeas, bind, bluez5_utils,
  2805. busybox, bzip2, cmake, dnsmasq, ejabberd, gcc, git, go, ffmpeg, file,
  2806. flashrom, gd, gdk-pixbug, gnupg2, hostapd, ifupdown-scripts,
  2807. imagemagick, iucode-tool, kernel-module-imx-gpu-viv, lame,
  2808. libarchive, libcurl, libffi, libidn, libmbim, libnspr, libnss,
  2809. libressl, librsync, libsoup, libxml2, libzip, mbedtls, musl,
  2810. netplug, nginx, openvpn, pkgconf, poppler, proxychains-ng,
  2811. qemu, qt, rpi-userland, syslog, ruby, samba4, softether,
  2812. sqlite, strongswan, subversion, supertuxkart, supervisor, tcpdump,
  2813. tor, unrar, urq, vboot-utils, webkitgtk, wpa_supplicant, xen,
  2814. xmlstarlet, xlib_libXfont, xlib_libXfont2,
  2815. xserver_xorg-server, zsh
  2816. 2017.08, Released September 1st, 2017
  2817. Minor fixes.
  2818. Toolchain: Don't allow internal toolchain builds for MIPS
  2819. M6201/P6600, as support for these are not yet in mainline GCC.
  2820. Updated/fixed packages: bcusdk, connman, dialog, dnsmasq,
  2821. gnupg, grub2, iostat, iucode-tool, libgcrypt, libkcapi,
  2822. libphidget, libv4l, linux-tools, mediastreamer, minidlna,
  2823. nss-pam-ldapd, nvidia-driver, qt-webkit-kiosk, rpcbind, squid,
  2824. transmission, vde2, vim
  2825. Updated/fixed defconfigs:
  2826. Removed packages: simicfs.
  2827. Issues resolved (http://bugs.buildroot.org):
  2828. #10261: Grub2 fails to build for x86_64
  2829. 2017.08-rc3, Released August 23rd, 2017
  2830. Fixes all over the tree.
  2831. Updated/fixed packages: alsa-lib, alsa-utils, cc-tool,
  2832. dbus-cpp, e2fsprogs, elf2flt, faad2, fakeroot, gcc, git, gpsd,
  2833. gst1-validate, kvmtool, libconfuse, libepoxy, librsync,
  2834. libspatialindex, libunwind, linux, linux-headers, lua,
  2835. mariadb, mesa3d, mtd, openocd, python3, syslinux, sysvinit,
  2836. whois, xen, zmqpp.
  2837. Updated/fixed defconfigs: ci20, socrates_cyclone5,
  2838. toradex_apalis_imx6.
  2839. Removed defconfig: Armadeus APF9328.
  2840. skeleton-* packages introduced in -rc1 have been renamed to
  2841. skeleton-init-* instead.
  2842. Issues resolved (http://bugs.buildroot.org):
  2843. #10141: Squashfs extended attribute failures
  2844. 2017.08-rc2, Released August 11th, 2017
  2845. Fixes all over the tree.
  2846. Updated/fixed packages: bind, dbus, erlang-p1-xml, faad2,
  2847. ficl, gcc, gdb, glibc, jack2, libcurl, linux, linux-headers,
  2848. lua, mutt, nvme, qt5base, skeleton-common, snappy, stella,
  2849. swupdate, uclibc, valgrind, webkitgtk.
  2850. Updated/fixed defconfigs: beaglebone_qt5, minnowboard_max,
  2851. nanopi_m1{, _plus}, olimex_a20_olinuxino_lime, qemu_sparc,
  2852. qemu_sparc64.
  2853. The cmake-package infrastructure for host packages has been
  2854. fixed to not incorrectly detect target packages through
  2855. pkg-config.
  2856. Issues resolved (http://bugs.buildroot.org):
  2857. #9926: systemd-resolved.service: Failed at step NAMESPACE (systemd 233)
  2858. #10021: libqeglfs-viv-integration.so file is missing for qt5 on armv7
  2859. #10026: lua-5.3.4: fix lua linker error in swupdate
  2860. #10146: package/skeleton-common fix recursive variable
  2861. #10156: glibc compilation fails for X86 32bits (i386)
  2862. #10201: toolchain-wrapper.c:192: (error) Memory leak:
  2863. #10221: Buildroot Support
  2864. 2017.08-rc1, Released August 2nd, 2017
  2865. Infrastructure:
  2866. - The skeleton package has been split into multiple packages:
  2867. skeleton-sysv (when Busybox or SysV init are used),
  2868. skeleton-systemd (when systemd is used), skeleton-none (when
  2869. no init system is used) and skeleton-custom (when a custom
  2870. skeleton is used). Those packages, except skeleton-custom,
  2871. share common logic and data in a new package called
  2872. skeleton-common. The skeleton package becomes a virtual
  2873. package. This change allows to generate a filesystem that is
  2874. compliant with systemd expectations.
  2875. - Support for using a read-only filesystem with systemd has
  2876. been fixed.
  2877. - Major revamp of the gettext handling, with user-visible
  2878. effect:
  2879. - prior to this revamp, when BR2_ENABLE_LOCALE=y, each
  2880. package could decide to enable or not NLS support. When
  2881. BR2_ENABLE_LOCALE was disabled, NLS support was forced off
  2882. by passing --disable-nls to packages.
  2883. - after this revamp, a new BR2_SYSTEM_ENABLE_NLS option
  2884. controls whether NLS support should be enabled or not in
  2885. packages. This option defaults to disabled, which means
  2886. that now, NLS support is by default disabled in all
  2887. packages.
  2888. Therefore, if you need NLS support in packages, you must now
  2889. explicitly enable the BR2_SYSTEM_ENABLE_NLS option.
  2890. - The host directory no longer has a usr/ component. This
  2891. makes it much more natural to use that directory as an
  2892. externally used toolchain. For compatibility with existing
  2893. scripts, a usr -> . link is still added.
  2894. - Hashes are now checked on tarballs by Buildroot when a
  2895. package is sourced from a Git repository.
  2896. - Patches are no longer being downloaded from Github, since
  2897. auto-generated patches could change over time, and break
  2898. hashes. All patches that were downloaded from Github are now
  2899. stored in their respective package directories.
  2900. - Hash files in packages can now contain hashes for the
  2901. license files contained in the package source code. This
  2902. allows to detect changes in such license files.
  2903. - Binaries in $(TARGET_DIR) are now cleaned up from invalid
  2904. RPATHs at the end of the build.
  2905. - A new "make sdk" target prepares $(HOST_DIR) to be
  2906. relocatable: turns RPATHs in host binaries into relocatable
  2907. ones, removes bogus RPATHs from staging binaries/libraries,
  2908. and provides a relocate-sdk script that can be executed to
  2909. relocate the SDK after installation.
  2910. - Addition of utils/genrandconfig which generates a random
  2911. configuration based on a set of pre-defined toolchain
  2912. configurations (support/config-fragments/autobuild/) and a
  2913. random selection of packages. It is now used by the
  2914. autobuilders to generate the random configurations.
  2915. Filesystems:
  2916. - ext2/3/4 filesystems are now generated using mkfs.ext from
  2917. e2fsprogs instead of using genext2fs.
  2918. Architecture:
  2919. - Addition of support for ARM big.LITTLE variants
  2920. - Improved MIPS support, with options to select NaN encoding
  2921. and FP32 mode.
  2922. Toolchain:
  2923. - Switch to gcc 6.x as the default gcc version, add support
  2924. for gcc 7.x, remove support for gcc 4.8
  2925. - Switch to binutils 2.28 as the default binutils version, add
  2926. support for binutils 2.29, remove support for binutils 2.26
  2927. - Support added for gdb 8.0
  2928. - uClibc-ng bumped to 1.0.26
  2929. - CodeSourcery toolchains for x86 and SuperH have been
  2930. removed, they were using a too old glibc version
  2931. (2.17). External toolchains with glibc 2.17 or earlier are
  2932. no longer supported.
  2933. - The version selection in the glibc package has been
  2934. removed. Like musl and uClibc-ng, we now use the latest
  2935. glibc version.
  2936. - Improved support for Xtensa toolchain overlays, which can
  2937. now be downloaded.
  2938. Tools:
  2939. - Numerous improvements to the runtime test infrastructure
  2940. - Tests are now executed by Gitlab CI on a regular basis
  2941. - Tools that are directly useful to the user have been moved
  2942. from support/scripts/ to utils/: brmake, check-package,
  2943. get-developers, scancpan, scanpipy, size-stats-compare,
  2944. test-pkg.
  2945. New defconfigs: A13 Olinuxino, Engicam platforms (i.CoreM6
  2946. Solo/Dual/DualLite/Quad, RQS SOM, GEAM6UL SOM, Is.IoT MX6UL
  2947. SOM), Nano Pi M1 (Plus), OrangePi Zero and Plus.
  2948. New packages: azure-iot-sdk-c, cracklib, dt-utils, easy-rsa,
  2949. erlang-jiffy, erlang-p1-oauth2, erlang-p1-xmpp,
  2950. ifupdown-scripts, irrlicht, kodi-inputstream-adaptive,
  2951. kodi-inputstream-rtmp, kvazaar, let-me-create, libloki,
  2952. libpwquality, libressl, libspatialindex, libva-utils,
  2953. linuxconsoletools, linuxptp, luaossl, lua-sdl2, lua-stdlib,
  2954. lsscsi, paxtest, pcre2, pixz, python-asn1crypto,
  2955. python-backports-shutil-get-terminal-size, python-bcrypt,
  2956. python-cheroot, python-h2, python-hpack, python-hyperframe,
  2957. python-hyperlink, python-ipython-genutils, python-pathlib2,
  2958. python-pickleshare, python-priority, python-portend,
  2959. python-scandir, python-systemd, python-tempora,
  2960. python-traitlets, python-typepy, qt5virtualkeyboard,
  2961. ratpoison, rauc, refpolicy, rhash, sdl2_mixer, sdl2_net,
  2962. xr819-xradio, zstd
  2963. Removed packages: cloog, input-tools, mke2img
  2964. Issues resolved (http://bugs.buildroot.org):
  2965. #7892: systemd-journald is broken
  2966. #9341: avahi-utils does not compile with uClibc + libglib2
  2967. #9441: Link BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY to
  2968. BR2_ENABLE_DEBUG
  2969. #9746: ext4 image generated by Buildroot is not working
  2970. properly with U-Boot
  2971. #9886: Build fails with "unexpected EOF while looking for
  2972. matching `"'" if PATH contains a newline
  2973. #9891: parted 3.1 => 3.2?
  2974. #9911: qt5 does not build on sparc
  2975. #9916: qt5 does not build on
  2976. arm-buildroot-linux-uclibcgnueabihf for ARMv8 cores
  2977. #9936: Host QEMU does not build with SDL support because of
  2978. pkg-config
  2979. #9941: nodejs option disappears for arm
  2980. #9951: SCANCPAN failure
  2981. #9966: util-linux-2.30/.stamp_built' failed
  2982. #9976: License file for package 'rtl8821au' incorrect
  2983. #9991: SGX Error implicit declaration of function
  2984. ‘dmac_map_area’
  2985. #10011: wget does not work from Buildroot
  2986. #10036: Buildroot builds Raspbian Jessie headless image
  2987. presenting incorrect prompt
  2988. #10051: make: *** No rule to make target
  2989. 'raspberrpi3_defconfig'. Stop reported with Buildroot
  2990. v2017.05.1
  2991. #10056: No .config file was produced in /buildroot folder
  2992. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer
  2993. failure
  2994. #10071: fakeroot: replace hard-coded paths in post install
  2995. #10076: Makefile:4113: recipe for target 'all-gcc' failed
  2996. #10091: gcc7.1 does not build with graphite support due to old
  2997. isl
  2998. #10121: webkit without the multimedia option causes build
  2999. error
  3000. 2017.05.2, Released July 27th, 2017
  3001. Important / security related fixes.
  3002. Webkitgtk bumped to the 2.16.x series, fixing a large number
  3003. of security issues.
  3004. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  3005. which default to PIE mode.
  3006. Updated/fixed packages: aespipe, apache, bind, binutils,
  3007. busybox, ccache, collectd, dieharder, efibootmgr, efivar,
  3008. expat, ffmpeg, gcc, heimdal, iproute2, irssi, libglib2,
  3009. libmemcached, libosip2, libtirpc, libxml-parser-perl,
  3010. linux-fusion, linux-zigbee, mpg123, orc, pcre, php, protobuf,
  3011. pulseaudio, python-setproctitle, qt5base, rpi-firmware,
  3012. samba4, syslinux, systemd, spice, tcpdump, tiff, uboot-tools,
  3013. webkitgtk, x265, xserver_xorg-server, xvisor
  3014. Issues resolved (http://bugs.buildroot.org):
  3015. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  3016. 2017.05.1, Released July 4th, 2017
  3017. Important / security related fixes.
  3018. Update support/scripts/scancpan to use METACPAN v1 API as v0
  3019. has been shutdown.
  3020. Update support/scripts/mkusers to handle setups where
  3021. /etc/shadow is a symlink.
  3022. External toolchain: Don't create musl dynamic loader symlink
  3023. for static builds.
  3024. Setlocalversion: Correct detection of mercurial revisions for
  3025. non-tagged versions.
  3026. Defconfigs: at91sam9x5ek_mmc: workaround boot rom issue.
  3027. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  3028. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, glmark2,
  3029. gnutls, gst1-plugins-bad, imagemagick, imx-uuc, intltool,
  3030. iperf, ipsec-tools, irssi, kmod, libcurl, libgcrypt, libmad,
  3031. libnl, lugaro, mosquitto, mpg123, ncurses, nodejs, ntp,
  3032. openssh, openvpn, pngquant, python-simplegeneric, qt5base,
  3033. qt5multimedia, rtl8821au, socat, spice, systemd, tor, trinity,
  3034. tslib, vlc, x264, xen, xlib_libxshmfenc, xserver_xorg-server
  3035. Issues resolved (http://bugs.buildroot.org):
  3036. #9976: License file for package 'rtl8821au' incorrect
  3037. 2017.05, Released May 31st, 2017
  3038. Minor fixes.
  3039. External toolchain: musl dynamic linker symlink for mips-sf
  3040. corrected.
  3041. Updated/fixed packages: agentpp, bash, exim, hans, madplay,
  3042. qpid-proton, rtl8188eu, snmppp, stm32flash, strongswan, sudo,
  3043. xen
  3044. Issues resolved (http://bugs.buildroot.org):
  3045. #9906: genimage: Disk full
  3046. 2017.05-rc3, Released May 30th, 2017
  3047. Fixes all over the tree.
  3048. ARC toolchain bumped to 2017.03
  3049. Runtime testing improvements and cleanups.
  3050. Updated/fixed packages: acpica, armadillo, audiofile, c-icap,
  3051. cppcms, dhcp, docker-engine, dropbear, elfutils, erlang,
  3052. fbgrab, ffmpeg, flashrom, ftop, gnutls, google-breakpad,
  3053. keepalived, kodi, libcdio, libepoxy, libev, libminiupnpc,
  3054. libqmi, libtasn1, libv4l, mariadb, mono, mosh, mosquitto,
  3055. mxml, ntp, opencv, openpowerlink, oracle-mysql, popt,
  3056. pulseview, python-enum34, rabbitmq-c, redis, samba4, stella,
  3057. xen
  3058. Removed packages: firejail, ola
  3059. Issues resolved (http://bugs.buildroot.org):
  3060. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  3061. #9876: aarch64 support with gcc 4.8 toolchain
  3062. #9896: host-gcc-initial error downloading because incorrect URL
  3063. 2017.05-rc2, Released May 17th, 2017
  3064. Fixes all over the tree.
  3065. ARC toolchain bumped to 2017.03-rc2
  3066. Updated/fixed packages: bluez_utils, boost, clamav, daemon,
  3067. efibootmgr, efl, espeak, expedite, faketime, ffmpeg, fxload,
  3068. git, gpsd, kvm-unit-tests, libcdio, libv4l, lua, mke2img,
  3069. mpir, mpv, odroid-scripts, openblas, opencv3, openvpn, php,
  3070. postgresql, protobuf, qt5declarative, qwt, radvd, rpcbind,
  3071. rtmpdump, strongswan, sudo, ltp-testsuite, uclibc-ng-test,
  3072. vlc, x11vnc, xfsprogs
  3073. Issues resolved (http://bugs.buildroot.org):
  3074. #9796: source-check broken for Git downloads
  3075. #9866: BASE_DIR usage
  3076. 2017.05-rc1, Released May 8th, 2017
  3077. Fixes all over the tree and new features.
  3078. Infrastructure:
  3079. - Installed binaries are now checked for correct architecture
  3080. to catch natively built binaries or binaries built for other
  3081. architecture variants.
  3082. - Luarocks infrastructure improvements to extraction handling,
  3083. support for upstream name != Buildroot package name.
  3084. - 'make printvars' output format has changed to make it easier
  3085. to use in scripts. It now has options to quote the variables
  3086. and to show the expanded/unexpanded values.
  3087. - Automatic ext2 rootfs size calculation has been removed. The
  3088. logic was not working working reliable in all setups as it
  3089. depends on the host filesystem behaviour, so instead now the
  3090. size has to be specified explicitly (defaults to 60MB).
  3091. - The git download infrastructure now ensures that GNU format
  3092. tar files are created.
  3093. - Fixed a variable clashing issue in the mkusers script with
  3094. internal bash variables.
  3095. - Fakeroot now links against libacl to fix issues on
  3096. distributions using acls.
  3097. - Correct permissions for /dev/pts/ptmx when systemd is used
  3098. with recent glibc versions.
  3099. - br2-external: Improve error reporting.
  3100. - A wrapper script for genimage has been added in
  3101. support/scripts/genimage.sh for easy use of genimage from
  3102. post-image scripts.
  3103. - A script to check for common style issues in new packages
  3104. before submitting has been added in support/scripts/check-package
  3105. - Defconfigs are now tested by gitlab-CI instead of Travis:
  3106. https://gitlab.com/buildroot.org/buildroot
  3107. - Infrastructure for runtime testing has been added to
  3108. support/testing
  3109. Toolchain:
  3110. - External linaro toolchains updated to 2017.02, ARC toolchain
  3111. updated to 2017.03-rc1, NIOSII CodeSourcery to 2017.05
  3112. - A number of fixes and improvements to the external toolchain
  3113. handling, including C library detection, multilib and ld.so
  3114. handling
  3115. - Glibc 2.25 and uClibc-ng 1.0.24 added, wordexp support enabled
  3116. for uClibc-ng
  3117. - Binutils 2.28 added and default changed to 2.27
  3118. Architectures:
  3119. - Support for the C-SKY architecture has been added.
  3120. License handling:
  3121. - The package license markings for legal info now uses the
  3122. SPDX short identifiers for the license string where possible.
  3123. - License info has been improved / added for a number of packages.
  3124. Misc:
  3125. - Cmake 3.7.x installed on the host is no longer ignored as a
  3126. workaround for the RPATH issues has been implemented.
  3127. - Docker-engine can now be built statically on an otherwise
  3128. dynamic linked build for docker-in-docker setups.
  3129. - U-Boot now supports out-of-tree device trees, similar to
  3130. Linux
  3131. - Nodejs 0.10.x support (and with it, support for <ARMv6) has
  3132. been removed as this is now EOL upstream.
  3133. New defconfigs: AT91sam9x5ek dev/mmc/mmc-dev, banana pro,
  3134. Nationalchip gx6605s, MIPS creator ci40, nexbox a95x, 64bit
  3135. defconfig for raspberry pi 3, stm32f429-disc1.
  3136. The raspberry pi zero-w and rpi3 compute module are now also
  3137. supported by the rpi0 / rpi3 defconfigs, beaglebone green is
  3138. supported by the beaglebone defconfig.
  3139. Removed defconfig: minnowboard, via imx6 vab820, altera
  3140. socdk/sockit
  3141. New packages: arp-scan, atest, augeas, bluez-tools, daemon,
  3142. dc3dd, dieharder, execline, fmt, ghostscript, gqrx,
  3143. gst1-vaapi, jo, keepalived, kmscube, kodi-jsonschemabuilder,
  3144. kodi-skin-confluence, kodi-texturepacker, lensfun, leptonica,
  3145. libbson, libcsv, libgphoto2, libkcapi, libmaxminddb,
  3146. libmediaart, libnpth, libscrypt, lua-bit32, lua-resty-http,
  3147. lugaru, memtool, mpir, nanomsg, physfs, phytool, pngquant,
  3148. python-decorator, python-simplegeneric,
  3149. python-sortedcontainers, rpi-bt-firmware, rpi-wifi-firmware,
  3150. s6, s6-dns, s6-linux-init, s6-linux-utils, s6-networking,
  3151. s6-portable-utils, s6-rc, supertux, tesseract-ocr,
  3152. uccp420wlan, wilink-bt-firmware
  3153. Broken packages: ola
  3154. Removed packages: cosmo, kodi-visualisation-fountain,
  3155. polarssl, portmap, xdriver_xf86-video-glide,
  3156. xdriver_xf86-video-v4l, xdriver_xf86-video-wsfb
  3157. Issues resolved (http://bugs.buildroot.org):
  3158. #8831: image generation fails on host ZFS due to "no free space"
  3159. #9436: e2fsprogs remove busybox applets even of unselected e2fs..
  3160. #9456: mkusers script bash errors
  3161. #9496: mke2img fails during build on ntfs-3g host partition
  3162. #9531: NPM fails to build embedded modules
  3163. #9596: KODI: --enable-lirc needs "HAVE_LIRC" compiler definition..
  3164. #9691: Wrong cryptsetup package include files location
  3165. #9696: Wrong cryptsetup package include files location
  3166. #9706: Can't download newer revisions of package from PyPI
  3167. #9711: Recent libCEC version bump seems to break kodi package
  3168. #9716: exit, shutdown, reboot from kodi
  3169. #9721: version 2017.02: no acceptable m4 could be found in $PATH
  3170. #9726: Raspberry Pi version B - Problems with UART speed in..
  3171. #9751: expat legal info - manifest.csv: GPLv2 Source site: MIT..
  3172. #9756: glibc fails to build on buildroot-sh4*-buildroot-linux-gnu
  3173. #9766: support/scripts/pkgutil.py conflicts with the pkgutil.py..
  3174. #9776: libubox build failed
  3175. #9791: Python searches for packages in the user site directory
  3176. #9806: libseccomp is not available when BR2_arm=y
  3177. #9826: post-build scritp - symlinks created in post-build script..
  3178. #9836: triggerhappy: systemd unit broken
  3179. #9846: musl libc not installed correctly in target folder
  3180. #9856: build libubox failed on ubuntu 17.04 64bit
  3181. 2017.02.11, Released April 11th, 2018
  3182. Important / security related fixes.
  3183. dependencies: Blacklist tar 1.30+ and build our own host-tar
  3184. if needed as tar 1.30+ changed the --numeric-owner output for
  3185. long path names. Build host-tar before other host-dependencies
  3186. as they need it to extract their source tarballs.
  3187. Updated/fixed packages: apache, busybox, clamav, dhcp,
  3188. dnsmasq, dovecot, exim, imagemagick, irssi, jq, libcurl,
  3189. libpjsip, librsvg, libtasn1, libvorbis, libxml2, lz4, mariadb,
  3190. mbedtls, mosquitto, ntp, openblas, opencv3, openssl, patch,
  3191. postgresql, python-webpy, qt53d, qt5tools, quagga, rsync,
  3192. samba4, sngrep, tremor, wavpack, wireshark, xerces, xterm
  3193. Issues resolved (http://bugs.uclibc.org):
  3194. #10856: openblas on qemu_x86_64_defconfig fails with "sgemm_..
  3195. 2017.02.10, Released January 31st, 2018
  3196. Important / security related fixes.
  3197. nconfig: Fix for ncurses/ncursesw linking issue causing crashes.
  3198. System: Only show getty options when busybox init or sysvinit
  3199. are used.
  3200. Infrastructure: Fix build issue for autotools based packages
  3201. checking for C++ support on toolchains without C++ support and
  3202. on a distro lacking /lib/cpp (E.G. Arch Linux).
  3203. Updated/fixed packages: avahi, berkeleydb, bind, busybox,
  3204. ccache, clamav, coreutils, dovecot, eeprog, eudev, fis,
  3205. intel-microcode, iputils, irssi, kmsxx, libcurl, liberation,
  3206. libiio, lz4, mariadb, matchbox-lib, mcookie, openocd, php,
  3207. pound, rpcbind, squid, tar, ti-cgt-pru, transmission,
  3208. util-linux, webkitgtk, wireshark, xen
  3209. Issues resolved (http://bugs.buildroot.org):
  3210. #9996: lz4 package does not install lz4 binaries in target
  3211. #10176: Rsyslog's S01logging is deleted by Busybox.mk from...
  3212. #10216: package/x11r7/mcookie/mcookie.c:207: bad size ?
  3213. #10301: systemd/getty unused options
  3214. #10331: kmsxx, host installation fails with BR2_SHARED_...
  3215. #10536: Finding non-relative paths in the ccache
  3216. #10641: avahi-autoipd not starting when using systemd-tmpfiles
  3217. 2017.02.9, Released January 1st, 2018
  3218. Important / security related fixes.
  3219. Fix divide by zero issue in size-stats script.
  3220. Fix makefile include ordering issue with certain make versions
  3221. in the external toolchain handling.
  3222. Updated/fixed packages: dhcp, exim, flann, gdb, heimdal,
  3223. libcue, libcurl, libevent, libpqxx, libsoxr, linphone, lldpd,
  3224. mariadb, mfgtools, mtools, nodejs, nut, openssl, rsync,
  3225. samba4, tor, vlc, webkitgtk, wireshark, xfsprogs,
  3226. xlib_libXcursor, xlib_libXfont, xlib_libXfont2
  3227. 2017.02.8, Released November 27th, 2017
  3228. Important / security related fixes.
  3229. Qt: 5.6 version updated to 5.6.3.
  3230. Reproducible: Do not override SOURCE_DATE_EPOCH if already set
  3231. in the environment.
  3232. Updated/fixed packages: apr, apr-util, arqp-standalone,
  3233. collectd, dvb-apps, ffmpeg, google-breakpad, gstreamer,
  3234. imagemagick, libfastjson, libglib2, libpjsip, libplist,
  3235. localedef, luajit, mesa3d, openssh, openssl, postgresql,
  3236. python3, python-pyqt5, qt5base, qt5canvas3d, qt5connectivity,
  3237. qt5declarative, qt5engineio, qt5graphicaleffects,
  3238. qt5imageformats, qt5location, qt5multimedia, qt5quickcontrols,
  3239. qt5quickcontrols2, qt5script, qt5sensors, qt5serialbus,
  3240. qt5serialport, qt5svg, qt5tools, qt5webchannel, qt5webkit,
  3241. qt5websockets, qt5x11extras, qt5xmlpatterns, quagga, ruby,
  3242. samba4, snmppp, ti-gfx, vboot-utils, webkitgtk, wireshark,
  3243. xapp_xdriinfo.
  3244. Issues resolved (http://bugs.buildroot.org):
  3245. 10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  3246. 10361: python3 python-config script generates invalid includes
  3247. 10501: host-localedef fails to compile on Ubuntu 17.10
  3248. 2017.02.7, Released October 28th, 2017
  3249. Important / security related fixes.
  3250. Webkitgtk bumped to the 2.18.x series, fixing a large number
  3251. of security issues.
  3252. Defconfigs: wandboard: Correct rootfs offset
  3253. Toolchain: Linaro toolchains updated to 2017.08 release,
  3254. fixing a number of issues. Musl: fix for CVE-2017-15650.
  3255. Updated/fixed packages: busybox, bzip2, dnsmasq, git, go,
  3256. hostapd, irssi, iucode-tool, lame, libcurl, libffi, libnspr,
  3257. libnss, nodejs, openssh, openvpn, qemu, qt, redis, sdl2,
  3258. webkitgtk, wget, wpa_supplicant, xen, xlib_libXfont,
  3259. xlib_libXfont2, xserver_xorg-server
  3260. 2017.02.6, Released September 24th, 2017
  3261. Important / security related fixes.
  3262. Cmake: Ensure correct pkg-config is used when building host
  3263. packages
  3264. fs/iso9660: Ensure files from earlier builds are not included.
  3265. Updated/fixed packages: apache, bcusdk, bind, binutils,
  3266. bluez5_utils, botan, cmake, connman, dbus, dialog, e2fsprogs,
  3267. faad2, fakeroot, ffmpeg, file, flashrom, gcc, gd, gdb,
  3268. gdk-pixbuf, git, gnupg, gpsd, grub2, gst1-plugins-bad,
  3269. imagemagick, iostat, iucode-tool, jack2, libarchive, libcurl,
  3270. libgcrypt, libidn, libphidget, librsync, librsvg, libsoup,
  3271. libxml2, linux-tools, lua, mariadb, mbedtls, mediastreamer,
  3272. minidlna, netplug, nss-pam-ldapd, nvidia-driver, openjpeg,
  3273. postgresql, proxychains-ng, python-libconfig,
  3274. python-service-identity, qt, rpcbind, ruby, samba4, squashfs,
  3275. squid, strongswan, subversion, supervisor, sysvinit, tcpdump,
  3276. tor, transmission, unrar, valgrind, vim, webkitgtk, whois,
  3277. xen, zmqpp
  3278. Issues resolved (http://bugs.buildroot.org):
  3279. #10141: Squashfs extended attribute failures
  3280. #10261: Grub2 fails to build for x86_64
  3281. #10276: BR2_PACKAGE_LINUX_TOOLS_GPIO fails for MIPS with...
  3282. 2017.02.5, Released July 27th, 2017
  3283. Important / security related fixes.
  3284. Webkitgtk bumped to the 2.16.x series, fixing a large number
  3285. of security issues.
  3286. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  3287. which default to PIE mode.
  3288. Updated/fixed packages: aespipe, apache, bind, binutils,
  3289. busybox, ccache, collectd, efibootmgr, efivar, expat, ffmpeg,
  3290. gcc, heimdal, iproute2, irssi, libglib2, libmemcached,
  3291. libosip2, libtirpc, libxml-parser-perl, linux-fusion,
  3292. linux-zigbee, mpg123, nodejs, orc, pcre, php, pulseaudio,
  3293. python-setproctitle, qt5base, rpi-firmware, samba4, syslinux,
  3294. systemd, spice, tcpdump, tiff, webkitgtk, x265, xen,
  3295. xserver_xorg-server, xvisor
  3296. Issues resolved (http://bugs.buildroot.org):
  3297. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  3298. 2017.02.4, Released July 4th, 2017
  3299. Important / security related fixes.
  3300. Update support/scripts/scancpan to use METACPAN v1 API as v0
  3301. has been shutdown.
  3302. Update support/scripts/mkusers to handle setups where
  3303. /etc/shadow is a symlink.
  3304. External toolchain: Don't create musl dynamic loader symlink
  3305. for static builds.
  3306. Setlocalversion: Correct detection of mercurial revisions for
  3307. non-tagged versions.
  3308. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  3309. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, gnutls,
  3310. gst1-plugins-bad, imagemagick, imx-uuc, intltool, iperf,
  3311. ipsec-tools, irssi, libgcrypt, libmad, libnl, mosquitto,
  3312. mpg123, ncurses, nodejs, ntp, openssh, openvpn, qt5base,
  3313. qt5multimedia, rtl8821au, socat, spice, systemd, tor, tslib,
  3314. vlc, x264, xserver_xorg-server
  3315. Issues resolved (http://bugs.buildroot.org):
  3316. #9976: License file for package 'rtl8821au' incorrect
  3317. 2017.02.3, Released June 2nd, 2017
  3318. Important / security related fixes.
  3319. Download: <pkg>-source-check fixed for packages from git.
  3320. External toolchain: musl dynamic linker symlink for mips-sf
  3321. corrected.
  3322. Updated/fixed packages: armadillo, audiofile, bash,
  3323. bluez_utils, cppcms, dbus, dhcp, dropbear, efibootmgr, efl,
  3324. elfutils, faketime, fbgrab, flashrom, ftop, gdb, git,
  3325. google-breakpad, gpsd, hans, kvm-unit-tests, kyua, libev,
  3326. libmicrohttpd, libminiupnpc, libtasn1, libubox, ltp-testsuite,
  3327. lua, madplay, mariadb, mono, mosquitto, mxml, ntp,
  3328. nvidia-driver, openblas, openvpn, oracle-mysql, picocom, popt,
  3329. postgresql, pulseview, qt5base, qwt, rabbitmq-c, redis,
  3330. rpcbind, rtmpdump, samba4, strongswan, sudo, vlc
  3331. Issues resolved (http://bugs.buildroot.org):
  3332. #9796: source-check broken for Git downloads
  3333. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  3334. 2017.02.2, Released May 1st, 2017
  3335. Important / security related fixes.
  3336. Use HTTPS for the Codesourcery external toolchains as the HTTP
  3337. URLs no longer work.
  3338. Updated/fixed packages: bind, busybox, dovecot, freetype,
  3339. ghostscript, glibc, granite, hiredis, icu, imagemagick,
  3340. gst-plugins-base, gst1-plugins-base, libcroco, libcurl, libnl,
  3341. libnspr, libnss, libsamplerate, libsndfile, libunwind,
  3342. minicom, mplayer, mpv, nodejs, python-django, python-pyyaml,
  3343. python-web2py, samba4, syslinux, systemd, tiff, trinity,
  3344. uboot, wireshark, xen
  3345. Issues resolved (http://bugs.buildroot.org):
  3346. #9791: Python searches for packages in the user site directory
  3347. 2017.02.1, Released April 4th, 2017
  3348. Important / security related fixes.
  3349. Fix a variable clashing issue in the mkusers script with
  3350. internal bash variables.
  3351. Improve external toolchain version detection.
  3352. Correct permissions for /dev/pts/ptmx when systemd is used
  3353. with recent glibc versions.
  3354. Fix python module name clash for graph-depends.
  3355. Fakeroot now links against libacl to fix issues on
  3356. distributions using acls.
  3357. Ensure that the git download infrastructure creates GNU format
  3358. tar files.
  3359. br2-external: Improve error reporting.
  3360. Updated/fixed packages: acl, apr, audiofile, busybox, cairo,
  3361. dbus-cpp, dbus-glib, dbus-triggerd, domoticz, elfutils,
  3362. fakeroot, filemq, fmc, gdb, git, gnutls, gst-ffmpeg,
  3363. gst1-plygins-bad, harfbuzz, htop, imagemagick, jasper, libcec,
  3364. libiio, libplatform, librsvg, libselinux, libsidplay2, libsoc,
  3365. libwebsockets, libxkbcommon, linux-firmware, logrotate,
  3366. lpt-testsuite, lttng-libust, mariadb, mbedtls, memcached,
  3367. mesa3d, mpd, mplayer, nbd, ncftp, ntp, openssh, opentyrian,
  3368. pcre, perl-gd, python, qt5base, rpi-userland, rpm, samba4,
  3369. skalibs, slang, sngrep, squashfs, syslog-ng, taglib,
  3370. tcpreplay, tor, upmpdcli, wget, wireshark,
  3371. xdriver_xf86-video-vmware, xlib_libXv, zmqpp
  3372. Issues resolved (http://bugs.buildroot.org):
  3373. #9456: mkusers script bash errors
  3374. 2017.02, Released February 28th, 2017
  3375. Minor fixes, mainly fixing autobuilder issues.
  3376. Don't use cmake 3.7.x from the build host as it is also
  3377. affected by the RPATH handling issues, and instead build our
  3378. own if needed.
  3379. Updated/fixed packages: assimp, classpath, genimage, mplayer,
  3380. mpv, openocd, python-libconfig, qt5base, qt5quickcontrols,
  3381. vlc, xterm
  3382. 2017.02-rc3, Released February 26th, 2017
  3383. Fixes all over the tree.
  3384. Cmake reverted to version 3.6.3 to workaround regressions
  3385. related to RPATH handling.
  3386. Updated/fixed packages: bctoolbox, berkeleydb, binutils,
  3387. btrfs-progs, classpath, directfb, glibc, gstreamer1,
  3388. gst1-plugins-{base,good,bad,ugly}, gst1-libav,
  3389. gst1-rtsp-server, gst1-validate, gst-omx, htop, libcurl,
  3390. libepoxy, libimxvpuapi, libpcap, libuv, ncurses, openssh,
  3391. oracle-mysql, poco, python, qt5base, qt5webkit, sslh, synergy,
  3392. trousers, uclibc-ng-test, util-linux, vlc, xfsprogs
  3393. Issues resolved (http://bugs.buildroot.org):
  3394. #9251: Shared C++ libraries for Microblaze results in Segmentation...
  3395. #9456: mkusers script bash errors
  3396. #9506: Collectd 5.7.0 fails to build with libcrypt
  3397. #9581: VagrantFile provisioning step fails due to issue with grub-pc
  3398. #9586: usbmount: usbmount slows down the system... to a state of...
  3399. #9616: CMake host packages cannot provide CONF_ENV
  3400. #9641: Need raptor package installed in staging
  3401. #9671: stunnel build error
  3402. 2017.02-rc2, Released February 20th, 2017
  3403. Fixes all over the tree.
  3404. Support for SOURCE_DATE_EPOCH in the toolchain wrapper for
  3405. older gcc versions for reproducible builds has been
  3406. (temporarily) reverted because of licensing compatiblity
  3407. concerns.
  3408. Defconfigs: SD card generation fix for the Udoo Neo board
  3409. Infrastructure to handle .lz compressed tarballs added, and
  3410. affected packages updated to use it.
  3411. Updated/fixed packages: bctoolbox, bind, canelloni,
  3412. cbootimage, ccache, classpath, cups, dbus, ddrescue, directfb,
  3413. ed, erlang, gcc, gdb, glmark2, gstreamer, gstreamer1, hiredis,
  3414. kmod, kmsxx, lcdapi, libasplib, libgpiod, libnss, libraw,
  3415. libv4l, mesa3d-headers, mosquitto, mpd, mpv, musl, ntfs-3g,
  3416. ocrad, openswan, postgresql, qt5base, qt5quickcontrols, redis,
  3417. riemann-c-client, samba4, sunxi-mali, tcping, trousers,
  3418. uclibc, util-linux, vim, wavpack, wget, wiringpi, xfsprogs,
  3419. xserver_xorg-server
  3420. Issues resolved (http://bugs.buildroot.org):
  3421. #8941: Valgrind fails to build with stack protection turned on
  3422. #9291: perl: SysV message queues not configured, even if available
  3423. #9651: libxcb-1.12 built Error
  3424. #9656: util-linux: schedutils doesn't build on target w/o enabl...
  3425. #9666: qt5quickcontrols install fails
  3426. 2017.02-rc1, Released February 11th, 2017
  3427. Fixes all over the tree and new features.
  3428. Infrastructure:
  3429. - numerous improvements to support reproducible builds
  3430. - new waf-package package infrastructure to support packages
  3431. that use the Waf build system. 6 packages converted to
  3432. this infrastructure.
  3433. - add option <pkg>_PREFER_INSTALLER to the perl package
  3434. infrastructure
  3435. Architecture:
  3436. - add support for the OpenRISC CPU architecture
  3437. - merge description of the ARM and ARM64 options, and add
  3438. support for selecting a specific ARM64 core
  3439. Toolchain:
  3440. - major rework of the external toolchain support. It is now
  3441. split into several packages, one per external toolchain,
  3442. and a common infrastructure.
  3443. - important fix for musl to prevent a conflict between musl
  3444. and kernel headers (fixes the build of numerous packages
  3445. with musl)
  3446. - uClibc-ng bumped to 1.0.22, and therefore enable uClibc
  3447. for ARM64, mips32r6 and mips64r6
  3448. - add gdb 7.12.1, and switch to gdb 7.11 as the default
  3449. - Linaro toolchains updated to 2016.11, ARC toolchain
  3450. components updated to arc-2016.09, MIPS Codescape
  3451. toolchains bumped to 2016.05-06, CodeSourcery AMD64 and
  3452. NIOS2 toolchains bumped
  3453. - remove Analog Devices toolchain for the Blackfin
  3454. architecture, remove pre-built musl toolchains from
  3455. musl.codu.org
  3456. New defconfigs: Freescale i.MX23EVK, Qemu OpenRISC emulation,
  3457. Qemu NIOS2 emulation, Grinn chiliBoard, Freescale i.MX6Q
  3458. SabreSD, BeagleBoard X15, OrangePi One, ARC HS38 HAPS
  3459. New packages: angular-websocket, aubio, bctoolbox, darkhttpd,
  3460. ddrescue, easydbus, fakedate, git-crypt, hiredis, ifenslave,
  3461. jsmn, libgpiod, libgsm, linux-syscall-support, mariadb, mimic,
  3462. nginx-dav-ext, nmon, opkg-utils, policycoreutils,
  3463. pru-software-support, python-arrow, python-attrs,
  3464. python-babel, python-bitstring, python-chardet,
  3465. python-constantly, python-flask-babel, python-gunicorn,
  3466. python-incremental, python-jsonschema, python-logbook,
  3467. python-markdown2, python-mbstrdecoder, python-mutagen,
  3468. python-pathpy, python-pudb, python-pyqrcode,
  3469. python-pytablereader, python-setuptools-scm, python-sh,
  3470. python-toml, python-vcversioner, python-whoosh,
  3471. raspberrypi-usbboot, riemann-c-client, rtl8723bs, skalibs,
  3472. sslh, sngrep, ti-cgt-pru, uclibc-ng-test, udpxy, uhttpd,
  3473. upower, ustream-ssl, waf, xlib_libXfont2
  3474. Removed packages: perl-db-file, snowball-hdmiservice,
  3475. snowball-init
  3476. Tooling: addition of a test-pkg script to help contributors
  3477. build test their package.
  3478. Issues resolved (http://bugs.buildroot.org):
  3479. #8946: Valgrind fails to build with stack protection turned on
  3480. #9461: odroidc2 - toolchain Linaro AArch64 2016.11 compile error
  3481. #9466: VIM_REMOVE_DOCS removes rgb.txt
  3482. #9486: xorg-server 1.19 fails to compile for glibc with systemd init (x86_64)
  3483. #9501: eudev fails to build with older kernel headers
  3484. #9526: Embedded NPM fails to start with "no such file or directory" error
  3485. #9541: Platform drivers autoloading from info in device tree does not work
  3486. #9546: seems BR2_PACKAGE_RPI_FIRMWARE_INSTALL_DTB_OVERLAYS do nothing
  3487. #9551: Coreutils fails to build target src/src_libsinglebin_pinky_a-pinky.o
  3488. #9566: [kmod] Compilation fails with uclibc
  3489. #9571: buildroot fails while building opencv for arm64 platform
  3490. #9576: External tree with BR 2016.11 does not work anymore
  3491. #9606: xorg-server cannot build for ARM target
  3492. 2016.11.3, Released March 9th, 2017
  3493. Important / security related fixes.
  3494. Updated/fixed packages: bind, dbus, gnutls, imagemagick,
  3495. lcms2, libcurl, ntfs-3g, ntp, openssl, php, quagga, redis,
  3496. squid, stunnel, tcpdump, vim, wavpack, wireshark, xlib_libXpm
  3497. 2016.11.2, Released January 25th, 2017
  3498. Important / security related fixes.
  3499. A fix for BR2_EXTERNAL trees referenced using relative paths,
  3500. which broke in 2016.11.
  3501. Updated/fixed packages: bind, docker-engine, gd, gnutls, go,
  3502. imagemagick, irssi, libpng, libvncserver, musl, opus, php,
  3503. php-imagick, rabbitmq-server, runc, wireshark,
  3504. Issues resolved (http://bugs.buildroot.org):
  3505. #9576: External tree with BR 2016.11 does not work anymore
  3506. 2016.11.1, Released December 29th, 2016
  3507. Important / security related fixes.
  3508. Updated/fixed packages: apache, cryptopp, docker-engine,
  3509. dovecot, exim, gdk-pixbuf, libcurl, libupnp, links, monit,
  3510. nodejs, openssh, php, python, python-bottle, samba4, squid,
  3511. uboot, vim, wireshark, xorg-server uboot
  3512. Issues resolved (http://bugs.buildroot.org):
  3513. #9466: VIM_REMOVE_DOCS removes rgb.txt
  3514. 2016.11, Released November 30th, 2016
  3515. Minor fixes.
  3516. Updated/fixed packages: bzip2, gcc, jasper, sane-backends,
  3517. uboot, uclibc
  3518. Issues resolved (http://bugs.buildroot.org):
  3519. #9451: packages/postgresql/postgresql.mk contains wrong POST...
  3520. 2016.11-rc3, Released November 28th, 2016
  3521. Fixes all over the tree, including a number of security fixes.
  3522. The move from fakeroot to pseudo unfortunately brought a
  3523. number of issues. The SELinux issue described in #9386 which
  3524. triggered the move to pseudo has been investigated further and
  3525. a workaround implemented and the pseudo changes reverted.
  3526. Linux kernel: update default to 4.8.11.
  3527. Defconfigs: Updates/fixes for imx28ek, mx6udoo, imx6ulpico,
  3528. olimex a20 olinuxino lime mali, roseapplepi, synopsis aarch64
  3529. vdk, axs101, axs103 and hs38 smd vdk.
  3530. Updated/fixed packages: autossh, chrony, dosfstools,
  3531. dtv-scan-tables, e2fsprogs, gcc, gdb, gnuchess, gnuradio,
  3532. gpsd, gst1-plugins-bad, gst1-plugins-good, imagemagick,
  3533. kvm-unit-tests, libfribi, libuv, mesa3d, mpfr, mplayer, mpv,
  3534. ntp, ola, olsr, openblas, openjpeg, openssh, postgresql,
  3535. ptpd2python3, qemu, qextserialport, qt5base, quagga, xqwt,
  3536. taskd, tiff, tremor, trousers, udisks, uclibc, wireshark,
  3537. xapp_xload, xenomai, xmlstarlet
  3538. Issues resolved (http://bugs.buildroot.org):
  3539. #9386: ubinize fails with or without custom config
  3540. #9431: A misspelling
  3541. #9446: make raspberrypi3_defconfig compilation failure
  3542. 2016.11-rc2, Released November 13th, 2016
  3543. Fixes all over the tree.
  3544. Architecture: add support for MIPS XBurst cores; remove MIPS
  3545. support for M5100 cores.
  3546. Updated/fixed packages: mesa3d, lttng-babeltrace, tinyalsa, pseudo,
  3547. czmq, libxml2, makedevs, binutils, kvm-unit-tests, libnss, privoxy,
  3548. qemu, ser2net, net-tools, ffmpeg, assimp, libmpeg2, ccache, mpv,
  3549. libxslt, python, python3, php, valgrind, guile, domoticz, efl,
  3550. jasper, kvmtool, go, wget, sane-backends, weston, tinymembench,
  3551. strace, openjpeg, lcms2, quota.
  3552. Linux kernel: update default to 4.8.7.
  3553. CMake support: fix cmake wrapper to properly pass NDEBUG flag.
  3554. Filesystems: use a wrapper to pseudo, to better mimick the behaviour
  3555. of fakeroot; makedevs no longer breaks of the destination already
  3556. exists and is of the correct type/major/minor.
  3557. Defconfigs: a few legacy and broken defconfigs have been removed
  3558. because they now fail to build: kb9202_defconfig, mini2440_defconfig,
  3559. freescale_p2020ds, qmx6, calao*, atmel_sama5d4ek. Other defconfigs
  3560. have been updated: nanopi-neo, olimex_a20_olinuxino_lime_mali,
  3561. armadeus_apf51, armadeus_apf28, freescale_imx31_3stack, ci20,
  3562. olimex_a20_olinuxino_lime2, atmel_at91sam9260eknf,
  3563. atmel_at91sam9rlek, atmel_at91sam9g20dfc, atmel_at91sam9g45m10ek,
  3564. atmel_sama5d3xek.
  3565. 2016.11-rc1, Released November 3rd, 2016
  3566. Fixes all over the tree and new features.
  3567. It is now possible to specify multiple BR2_EXTERNAL
  3568. directories. The required files in a BR2_EXTERNAL directory
  3569. have changed to accomodate this feature. Refer to the
  3570. documentation for details of how to update them. External
  3571. trees now have a name and a description. Also, it is possible
  3572. to override a defconfig in the external tree.
  3573. The default skeleton now uses UID 65534 for the "nobody"
  3574. user instead of UID 99, like most distros do. See
  3575. https://lwn.net/Articles/695478/ for a complete discussion.
  3576. Programs and configuration files that explicitly refer to UID
  3577. 99 will have to be updated.
  3578. When the build environment already has a suitable cmake version
  3579. (3.1 or later), that one will be used instead of building
  3580. host-cmake. This can speed up the build significantly.
  3581. The ExtUtils::MakeMaker perl module is now required in the
  3582. build environment.
  3583. An additional check is done during the build that files are
  3584. not installed in the output directory within the output
  3585. directory. This happens e.g. when the target directory is
  3586. contained both in --prefix and in DESTDIR. The build will
  3587. terminate with an error message that specifies which package
  3588. and which file caused the failure.
  3589. The concept of "deprecated packages" and the BR2_DEPRECATED
  3590. option have been removed. Instead, packages are removed
  3591. immediately. Packages are only removed when they don't work
  3592. for some reason. If you still need a removed package and
  3593. you have a solution for the problem(s) that caused the
  3594. removal, please contribute it.
  3595. Architecture: support for sh64 removed, improved support for
  3596. MIPS core selection.
  3597. Toolchain: support for musl powerpc64le, mips64 and mipsr6
  3598. toolchains, ARC toolchain components updates, gcc 6.x series
  3599. bumped to 6.2.0, default binutils version switched to 2.26,
  3600. default gcc version switched to gcc 5.x, Linaro toolchains
  3601. updated, uclibc-ng bumped to 1.0.19. GCC is now always built
  3602. with TLS support. Checking of unsafe compiler options (that
  3603. point to host directories) has been extended with -isystem,
  3604. -idirafter and -iquote.
  3605. Package infrastructure: new variable $(PKG)_DL_OPTS, addition
  3606. of <pkg>-show-rdepends to list reverse dependencies, and
  3607. <pkg>-graph-rdepends to graph reverse dependencies. Linux tools
  3608. are now in a separate linux-tools package instead of in the
  3609. kernel build. Fakeroot has been replaced by pseudo.
  3610. CMake support: the toolchainfile.cmake file now provides a
  3611. definition of the CMAKE_BUILD_TYPE variable. The
  3612. toolchainfile.cmake also no longer forces the compiler/linker
  3613. flags defined by Buildroot.
  3614. New defconfigs: WaRP7, Solidrun's MX6 Cubox/Hummingboard,
  3615. TS-4900, Grinn's liteBoard, Udoo MX6Q/DL, Qemu ARM noMMU,
  3616. BeagleBone Qt5 demo, Digilent Zybo, FriendlyARM Nanopi NEO.
  3617. New packages: arm-trusted-firmware, amd-catalyst, atop, aufs,
  3618. aufs-util, fwts, gst1-rtsp-server, libglob, libite, mfgtools,
  3619. mksh, motion, paho-mqtt-c, php-amqp, pseudo, python-couchdb,
  3620. python-crcmod, python-cssutils, python-docutils,
  3621. python-futures, python-mwclient, python-mwscrape,
  3622. python-mwscrape2slob, python-pyelftools, python-pyicu,
  3623. python-pylru, python-pyqt5, python-requests-toolbelt,
  3624. python-simpleaudio, python-slob, rabbitmq-server, shapelib,
  3625. vdr, vdr-plugin-vnsiserver, vexpress-firmware, xvisor, iio and
  3626. gpio linux tools.
  3627. Removed packages: binutils 2.24, fakeroot, gcc 4.7, ipkg,
  3628. kodi-addon-xvdr, libgail, sstrip, torsmo, webkit, webkitgtk24,
  3629. wvdial, wvstreams.
  3630. Documentation: the list of packages that was present in the
  3631. Buildroot manual has been removed.
  3632. Legal info: the "licenses.txt" file that concatenates all
  3633. license texts is no longer generated - it was not considered
  3634. useful. The manifest.csv contains an empty cell instead of
  3635. "not saved" when no license file is available.
  3636. Other: addition of a DEVELOPERS file listing developers taking
  3637. care of packages or architectures.
  3638. Issues resolved (http://bugs.buildroot.org):
  3639. #7802: host-python build hangs compiling getbuildinfo.o
  3640. #8206: mplayer uses host xorg development files
  3641. #8516: mkcubiecard.sh uses outdated sfdisk switch -D
  3642. #8536: Building sudo with PAM results in unusable sudo
  3643. #8646: check-host-rpath script returns false positives when rpath
  3644. contains symlink
  3645. #8696: xdriver_xf86-input-mouse install header files in target
  3646. directory
  3647. #8811: rp-pppoe - generated scripts commands use HOST pathnames,
  3648. not necessarily TARGET
  3649. #8846: Orphaned/missing toolchain borks eclipse plugin
  3650. #8856: python tornado runtime wasn't met on buildroot 2016.02
  3651. #8901: gcc failes to build if fortran is enabled
  3652. #8916: LDFLAGS pass to openssh
  3653. #8941: "ls" of an NFSv4 share only works when pumped through strace
  3654. #8946: Valgrind fails to build with stack protection turned on
  3655. #9021: Kodi - Broken: Illegal instruction (core dumped)
  3656. #9096: rootfs.ubi not created
  3657. #9111: glibc 2.23: libmvec.so not copied
  3658. #9176: minnowboard : USB not mounted
  3659. #9196: raspberry pi 3 default build seem broken
  3660. #9201: Permission denied make: *** [core-dependencies] Error 126 in
  3661. Buildroot-2015.08.1
  3662. #9216: log4cpp package build fails to build within install
  3663. #9221: Kodi needs "Python .py and .pyc support" otherwise it crashes when
  3664. pressing buttons.
  3665. #9229: Firefly boot fails with: "failed to find part:boot"
  3666. #9256: [Config file] New device: Odroid-U2/U3
  3667. #9296: Buildroot Fails on applying patches
  3668. #9301: U-boot fails to build with default zynq_zed_defconfig configuration
  3669. #9316: U-boot fails to build if libssl-dev is not installed
  3670. #9321: Vanilla libcrypt++ v5.6.3 doesn't allow to work Nvidia Tegra's
  3671. flash utility (tegrarcm)
  3672. #9326: Odroid-C2 build results in non-bootable image
  3673. #9336: Improve iconv support for external toolchain based builds
  3674. #9356: gdb package
  3675. #9366: no link rootfs.ext4 -> rootfs.ext2
  3676. #9371: openssl: download failes with "Only allow downloads from primary
  3677. download site" + local server
  3678. #9381: check-host-rpath issues
  3679. #9386: ubinize fails with or without custom config
  3680. 2016.08, Released September 1st, 2016
  3681. Minor fixes.
  3682. Toolchain: ARC tools updated to arc-2016.09-eng010.
  3683. Updated/fixed packages: libshout, luajit, mpd, mplayer
  3684. Issues resolved (http://bugs.buildroot.org):
  3685. #7520: CodeSourcery toolchain ARM: C++11 std::exception_ptr..
  3686. #8341: Getting EGL Error: Could not create the egl surface:..
  3687. #9121: gst1-imx for i.MX6 compile failed, cannot find PXP, ..
  3688. 2016.08-rc3, Released August 29th, 2016
  3689. Fixes all over the tree.
  3690. Toolchain: C++ support for the internal blackfin toolchain
  3691. re-enabled.
  3692. Architecture: Default to bf532 CPU variant for blackfin,
  3693. Fix flat one memory region support for m68k and disable flat
  3694. seperate data support because of compatibility issues.
  3695. Defconfigs: Minnowboard and Raspberrypi: Fix errors with
  3696. post-build scripts when systemd is used.
  3697. Zynq microzed/zc706/zed: Fix u-booot configuration.
  3698. netbsd-queue package extended and renamed to
  3699. musl-compat-headers. With this, a number of musl compatibility
  3700. patches are no longer needed.
  3701. Updated/fixed packages: aircrack-ng, android-tools, babeld,
  3702. bcusdk, binutils, boa, busybox, connman, cpupower,
  3703. docker-engine, domoticz, elf2flt, ffmpeg, fwup, gcc,
  3704. glib-networking, gnupg, hplip, igd2-for-linux, imagemagick,
  3705. imx-uuc, iputils, jack2, kismet, kmsxx, libaio, libamcodec,
  3706. libconfuse, libffi, libfreeimage, libgcrypt, libgpg-error,
  3707. libiio, libraw, libsepol, libserialport, libxmlrpc, linknx,
  3708. linux-pam, lirc-tools, lldpd, logrotate, lshw, musl, ncurses,
  3709. neon, nettle, norm, ntfs-3g, openblas, openmpi, openswan,
  3710. pinentry, pixman, protobuf, python-meld3, qlibc, qt, qt5base,
  3711. quagga, rpcbind, rt-tests, runc, sane-backends, sconeserver,
  3712. squeezelite, stella, tftpd, tinycbor, tinydtls, trace-cmd,
  3713. trousers, tstools, uboot-tools, uclibc, ulogd, ustr, vlc,
  3714. webkitgtk, wireshark, xdriver_xf86-video-intel
  3715. Issues resolved (http://bugs.buildroot.org):
  3716. #9101: Error on support/download/git with system git older than 1.8.4
  3717. #9181: Compiling linux kernel fails if BR2_LINUX_KERNEL_TOOL_CPU..
  3718. 2016.08-rc2, Released August 17th, 2016
  3719. Fixes all over the tree.
  3720. Toolchain: disable broken C++ support for internal blackfin
  3721. toolchains, ARC toolchain bumped to arc-2016.09-eng008 (GCC 6)
  3722. to fix various issues.
  3723. System: Zoneinfo is available for the musl C library as well.
  3724. Updated/fixed packages: am33x-cm3, axel, barebox, bdwgc,
  3725. blktrace, cairo, dante, enlightenment, fbterm, ffmpeg, flex,
  3726. fontconfig, gcc, gmp, gnuplot, gnuradio, gst1-imx, hidapi,
  3727. inotify_tools, iproute2, kmsxx, lftp, libaio, libcofi,
  3728. libical, libpjsip, libsidplay2, libunwindow, libxml2,
  3729. linux-zigbee, lttng-libust, mpv, mtd, ncdu, netplug, ntp,
  3730. openblas, openipmi, owfs, php, poco, procps, qt, quota,
  3731. sg3_utils, spidev_test, systemd-bootchart, thrift,
  3732. uboot-tools, uclibc, webrtc-audio-processing, wayland, weston,
  3733. xdriver_xf86-video-savage, xserver_xorg-server, xen
  3734. Issues resolved (http://bugs.buildroot.org):
  3735. #9136: make graph-size fails with "ValueError: too many values to..
  3736. #9151: qt: fix build with ALSA >= 1.1.x
  3737. #9156: qt: Fix missing runtime Qt3Support dependency
  3738. #9161: modsetting patch not applied to xserver 1.18.4
  3739. #9166: Missing overlays directory in VFAT image for raspberry pi 3
  3740. 2016.08-rc1, Released August 6th, 2016
  3741. Fixes all over the tree and new features.
  3742. Toolchain: Fortran support added. eglibc support removed, musl
  3743. support no longer experimental. Blackfin and Microblaze
  3744. support for internal uClibc-ng toolchain, m68k/coldfire
  3745. improvements. The check for unsafe (build host) directories
  3746. access (/usr/include and /usr/lib) is now enabled by default.
  3747. Unused locales are now purged by default to save space (and
  3748. the default list of locales shrunk). The option to control
  3749. this has now moved from the toolchain menu to system
  3750. configuration.
  3751. Legal info improvements: sources are now hardlinked instead of
  3752. copied if possible to save space. Patches and extra downloads
  3753. are also saved.
  3754. An experimental configuration knob (BR2_REPRODUCIBLE) has been
  3755. added to make the builds more reproducible (E.G. less
  3756. differences in the binary output between builds of the same
  3757. configuration). This is still work in progress.
  3758. An option to execute a custom script inside the fakeroot
  3759. environment used to the generate the filesystem (E.G. to tweak
  3760. permissions or similar) has been added.
  3761. Git support now supports git submodules if
  3762. <pkg>_GIT_SUBMODULES is enabled.
  3763. Hash files for integritry validation have been added for all
  3764. packages.
  3765. Scanpypi utility to help creating packages from the Python
  3766. package index (pypi) has been added.
  3767. The makedevs utility now has support for adding file
  3768. capabilities using extended attributes.
  3769. New defconfigs: Arcturus uCP1020, Atmel sama5d{2,3,4} xplained
  3770. development configs, Blackfin GDB simulator, Linksprite
  3771. pcDuino, Minnow Board Max graphical demo, NXP i.MX25 PDK,
  3772. i.MX51 EVK, i.MX6UL Pico, i.MX7 sabresd, QEMU MIPS32r6{,el} and
  3773. MIPS64r6{,el} malta, Roseapple Pi, Samsung Snow chromebook,
  3774. Toradex Apalis i.MX6 COM, TS-4800, x86-64 PC BIOS and EFI
  3775. demos. A number of defconfigs have been updated and extended
  3776. to generate SD card images. Synopsys HS38 VDK defconfig removed.
  3777. New packages: 4th, acpica, acpitool, alljoyn, alljoyn-base,
  3778. alljoyn-tcl, alljoyn-tcl-base, argparse, babeld, batman-adv,
  3779. circus, dante, docker-containerd, docker-engine, domoticz,
  3780. efibootmgr, efivar, ficl, fwup, gsettings-desktop-schemas,
  3781. gtksourceview, gupnp-dlna, gupnp-tools, igd2-for-linux,
  3782. jemalloc, kmsxx, lapack, lft, libaacs, libamcodec, libbdplus,
  3783. libcoap, libdvdcss, libebur128, libfastjson, libminiupnpc,
  3784. libnatpmp, libpqxx, libuio, libvdpau, log4cpp, minissdpd,
  3785. mxsldr, nginx-nasxi, nginx-upload, ninja, nodm, odroid-mali,
  3786. odroid-scripts, omxplayer, openblas, openmpi, openzwave,
  3787. p7zip, pdbg, python-argh, python-dataproperty,
  3788. python-dateutil, python-dialog3, python-dicttoxml,
  3789. python-dominate, python-engineio, python-flask-jsonrpc,
  3790. python-flask-login, python-humanize, python-pathtools,
  3791. python-pathvalidate, python-pillow, python-prompt-toolkit,
  3792. python-pytablewriter, python-pytz, python-scapy3k,
  3793. python-sdnotify, python-socketio, python-tomako,
  3794. python-ubjson, python-u-msgpack, python-watchdog,
  3795. python-wcwidth, python-xlrd, python-xlsxwriter,
  3796. python-xlutils, python-xlwt, rs485conf, runc, sdl2_gfx,
  3797. sdl2_image, sdl2_ttf, shellinabox, sphinxbase, stella,
  3798. supertuxkart, systemd-bootchart, tekui, terminology, tinycbor,
  3799. tinydtls, ti-sgx-demos, ti-sgx-km, ti-sgx-um, tunctl, wavemon,
  3800. wiringpi, xen
  3801. Deprecated packages: ipkg, sstrip
  3802. Removed packages: sunxi-mali-prop
  3803. Issues resolved (http://bugs.buildroot.org):
  3804. #8931: segment fault when compile argp-help.c using aarch64-bu...
  3805. #8966: eglfs error. buildroot don't compile the library libeglfs.so
  3806. #8971: build for beaglebone fails
  3807. #8986: qt5imageformats fails to build on AArch64
  3808. #8991: grub2 fails to compile
  3809. #9001: Nodejs option not available
  3810. #9006: gcc with c++ support v4 and v5 fail to compile on fedora 24
  3811. #9016: arceb-buildroot-linux-uclibc ld uses incorrect default format
  3812. #9066: 8139TOO - faulty behaviour
  3813. #9086: Syntax Error (missing ")" in boot/uboot/uboot.mk on line 203)
  3814. #9091: U-Boot fails to boot with large ramdisk
  3815. 2016.05, Released May 31st, 2016
  3816. Minor fixes.
  3817. External toolchain: Fix for symlink handling when copying
  3818. links to target.
  3819. Updated/fixed packages: gcc, grantlee, gst-ffmpeg,
  3820. ipsec-tools, iptraf-ng, libcurl, libdrm, libsigsegv, ltris,
  3821. lttng-babeltrace, mbedtls, mesa3d, moarvm, mplayer, mtools,
  3822. net-tools, openpowerlink, pulseview, rpm, tinyalsa,
  3823. xdriver_xf86-video-fbturbo, xserver_xorg-server
  3824. 2016.05-rc3, Released May 26th, 2016
  3825. Fixes all over the tree.
  3826. Tweaks for SSP handling for external toolchains.
  3827. Updated/fixed packages: aircrack-ng, bluez5_utils, connman,
  3828. cups, erlang-p1-stringprep, expat, ffmpeg, flann, flannel, go,
  3829. gst1-libav, hidapi, hplip, iptraf-ng, jamvm, kodi,
  3830. kodi-screensaver-matrixtrails, libcurl, libepoxy, libgpgme,
  3831. libsemanage, libxslt, liquid-dsp, ltris, lxc, mesa3d, midori,
  3832. mpg123, mtr, openpgm, openpowerlink, oprofile, php,
  3833. postgresql, putty, python-service-identity, python-treq,
  3834. qlibc, qt5serialbus, ruby, stress-ng, strongswan, time, tinc,
  3835. ustr, valgrind, webkitgtk, libxml2, xorriso,
  3836. xserver_xorg-server
  3837. Issues resolved (http://bugs.uclibc.org):
  3838. #8936: Aircrack-ng - Alot of missing dependencies
  3839. 2016.05-rc2, Released May 17th, 2016
  3840. Fixes all over the tree.
  3841. Rootfs overlay handling now refuses to overwrite
  3842. /{usr,bin,sbin,lib} symlinks from BR2_ROOTFS_MERGED_USR option
  3843. even if these directories are present in the overlay.
  3844. External toolchain: Unbreak user provided libraries deployment
  3845. (BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS) handling after refactoring.
  3846. QEMU coldfire: Fix for signal handling kernel issue, enable
  3847. networking support.
  3848. Updated/fixed packages: android-tools, assimp, boost, gcc,
  3849. glibc, glmark2, gmrender-resurrect, go, go-bootstrap, iputils,
  3850. jack2, kodi-screensaver-asterwave, kodi-screensaver-rsxs,
  3851. kodi-visualisation-shadertoy, libarchive, libinput, libpjsip,
  3852. mali-t76x, mtr, nginx, opencv, openvpn, python-coherence,
  3853. qt5multimeda, quagga, samba4, sg3-utils, stress-ng, turbolua
  3854. 2016.05-rc1, Released May 10th, 2016
  3855. Fixes all over the tree and new features.
  3856. Architectures: new ARM variants: Cortex A17 and M4, improved
  3857. nonmmu (cortex-M) support, m68k has been re-enabled with
  3858. support for ColdFire. For x86, support for the i386 variant
  3859. has been dropped.
  3860. Toolchain: Add GCC 6 support, remove GCC 4.5, mark GCC 4.7 as
  3861. deprecated. Go programming language support, Add Binutils 2.26
  3862. support. Old Sourcery PowerPC external toolchains removed,
  3863. Sourcery MIPS 2016.06-8, AMD64 2015.11-139, NiosII 2015.11-130
  3864. added, Linaro ARM/ARMeb/Aarch64 toolchains updated.
  3865. New defconfigs: Firefly RK3288, Boundary Devices i.MX7 Nitrogen7,
  3866. STM32F429 and STM32F469 Discovery boards, Hardkernel ODROID-C2,
  3867. Raspberry Pi Zero and Raspberry Pi 3. Some Qemu defconfigs were
  3868. added for m68k, eXtensa-nommu and ColdFire.
  3869. Linux: use zImage by default on ARM, subversion repository
  3870. support (for u-boot as well).
  3871. New packages: aer-inject, android-tools, cannelloni,
  3872. cbootimage, cgroupfs-mount, connman-gtk, crudini, dt,
  3873. gmrender-resurrect, flannel, font-awesome, freeswitch, go,
  3874. go-bootstrap, gr-osmosdr, granite, i7z, imx-uuc,
  3875. kodi-adsp-basic, kodi-adsp-freesurround,
  3876. kodi-audiodecoder-opus, kodi-pvr-hdhomerun,
  3877. kodi-screensaver-asterwave, kodi-screensaver-cpblobs,
  3878. kodi-screensaver-matrixtrails, kodi-screensaver-planestate,
  3879. kodi-screensaver-rsxs, kodi-visualisation-fishbmc,
  3880. kodi-visualisation-fountain, kodi-visualisation-goom, libgee,
  3881. libimxvpuapi, libpjsip, libtomcrypt, libtommath, libusbgx,
  3882. lksctp-tools, mali-t76x, mkpimage, mpv, msr-tools, nload,
  3883. norm, nvme, owfs, pound, privoxy, procrank_linux, putty,
  3884. python-autobahn, python-characteristic, python-crossbar,
  3885. python-cryptography, python-iniparse, python-iowait,
  3886. python-lmdb, python-pexpect, python-ptyprocess,
  3887. python-pyasn-modules, python-pygments, python-pymysql,
  3888. python-pynacl, python-pyopenssl, python-pysocks,
  3889. python-pytrie, python-rpi-gpio, python-service-identity,
  3890. python-setproctitle, python-shutilwhich, python-treq,
  3891. python-txaio, python-ujson, python-wsaccel, qt5canvas3d,
  3892. qt5location, qt5quickcontrols2, qt5serialbus, qt5tools,
  3893. raptor, scrub, taskd, tegrarcm, turbolua, valijson,
  3894. wayland-protocols, webkitgtk, wilc1000-firmware, wpan-tools,
  3895. xdriver_xf86-video-amdgpu
  3896. Removed packages: foomatic-filters, python-m2crypto,
  3897. qt5quick1, qt5webkit-examples, samba, xdriver_xf86-input-void
  3898. Issues resolved (http://bugs.buildroot.org):
  3899. #6830: Qt5: no fonts are installed
  3900. #7562: musl buildroot-toolchain and BR2_MIPS_SOFT_FLOAT break
  3901. #7580: Invalid filesystem in Pandaboard defconfig
  3902. #8346: wf111 package removes all kernel module dependencies
  3903. #8436: xserver_xorg-server Segmentation fault
  3904. #8736: IPV6 forced on in busybox
  3905. #8746: At startup system stops with 'cannot set terminal proces..
  3906. #8751: make fail [fio does not build on sh]
  3907. #8766: Compiling host-gcc-final-4.9.3 broken on i386
  3908. #8771: make savedefconfig modifies sources
  3909. #8781: Unable to build uboot for imx28evk
  3910. #8786: gdb fails to build with xz and expat support at the same
  3911. #8801: Compilation of Buildroot 2016.2 for Raspberry Pi with...
  3912. #8806: Buildroot 2016.2 for Raspberry Pi requires that ext4...
  3913. #8836: Can't select Vim in menuconfig
  3914. #8851: Make sure fio can compile with libaio support if it...
  3915. #8861: With buildroot 2016.02 trying to build for corei7-avx
  3916. fails while trying to build host-binutils
  3917. #8866: Making an USB flash bootable with extlinux build with
  3918. buildroot does not work
  3919. 2016.02, Released March 1st, 2016
  3920. Minor fixes, mostly security related.
  3921. Circular dependency issue with same-as-kernel linux-headers
  3922. option fixed.
  3923. Updated/fixed packages: bluez5_utils, heirloom-mailx,
  3924. imx-gpu-viv, kodi-pvr-argustv, kodi-pvr-mediaportal-tvserver,
  3925. kodi-pvr-nextpvr, libfcgi, openssl, pifmrds, powerpc-utils,
  3926. python-m2crypto, slang, sox, squid, tn5250, xerces, zsh
  3927. 2016.02-rc3, Released February 27th, 2016
  3928. Fixes all over the tree.
  3929. Defconfigs: Ensure EABIhf is correctly enabled for ARM cores
  3930. where VFP is optional (but present on the specific hw). Fix
  3931. ARM variant selection for freescale_imx31_3stack_defconfig.
  3932. Ensure tarballs of downloaded git trees do not contain a
  3933. timestamp.
  3934. Clarify license of patches in COPYING.
  3935. Updated/fixed package: avahi, binutils, cairo, can-festival,
  3936. chrony, cifs-utils, dnsmasq, dvdauthor, e2fsprogs, efl,
  3937. erlang-rebar, eudev, fbterm, gawk, gnupg2, gnuradio, gpm,
  3938. gst1-plugins-good, hostapd, imagemagick, iproute2, iputils,
  3939. jack2, kexec, kismet, lftp, libarchive, libeXosip2, libfm,
  3940. libglib2, libsoil, libssh, libssh2, libuci, links, lshw, lxc,
  3941. mediastreamer, mono, mraa, mutt, nfs-utils, numactl, ofono,
  3942. omniorb, openipmi, openobex, patch, pax-utils, perf,
  3943. pulseaudio, pure-ftp, qhull, qt, quagga, quota, sdl_sound,
  3944. shairport-sync, spice, sysklogd, syslog-ng, trace-cmd,
  3945. trousers, tvheadend, util-linux, vim, webkitgtk24, wireshark,
  3946. wpa_supplicant, xerces, zsh
  3947. Issues resolved (http://bugs.uclibc.org):
  3948. #8651: libMonoPosixHelper.so wrong link reference in buildroot..
  3949. 2016.02-rc2, Released February 18th, 2016
  3950. Fixes all over the tree.
  3951. Toolchain: PR19405 backport to binutils 2.25.1 to fix NIOS ld
  3952. crash, backport of Xtensa .init/.fini literals handling.
  3953. glibc security patches for CVE-2014-8121, CVE-2015-1781
  3954. and CVE-2015-7547.
  3955. Defconfigs for Acmesystems Arietta g25 added.
  3956. Updated/fixed packages: binutils, boost, chrony, dovecot,
  3957. e2fsprogs, fio, gdb, glibc, graphite2, icu, kbd, libbsd,
  3958. libcue, libgcrypt, libraw, links, mc, mosquitto, nodejs,
  3959. postgresql, pptp-linux, pulseaudio, samba4, spice, squid,
  3960. sysklogd, systemd, tiff, uclibc, ulogd, util-linux, valgrind.
  3961. Issues resolved (http://bugs.uclibc.org):
  3962. #8576: Building embedded Linux for Atmel SAMA5D4_Xplained...
  3963. #8606: Problem compiling on Arch Linux
  3964. #8681: kbd 2.0.3 does not build on rpi
  3965. 2016.02-rc1, Released February 10th, 2016
  3966. Fixes all over the tree and new features.
  3967. Toolchain: Support for GCC 5.3.x. ARC toolchain updated to
  3968. arc-2015.12. Support for legacy uClibc dropped, default to
  3969. uClibc-ng instead. Added sys/queue.h implementation for MUSL
  3970. for compatibility. Updated versions of Code sourcery and
  3971. Linaro toolchains. MIPS Codescape toolchains added. Version
  3972. selection for preconfigured external toolchains removed.
  3973. New Defconfigs: ARM Juno r0/r1 development boards, Freescale
  3974. i.MX6UL Evaluation Kit, Intel Galileo Gen 2, Orange Pi PC.
  3975. A number of defconfigs have been extended to generate complete
  3976. system images using genimage.
  3977. Linux: Automatically patch timeconst.pl for <3.9 kernels,
  3978. which isn't compatible with modern perl versions, breaking the
  3979. build when building on recent (Fedora 23, Debian
  3980. Testing/Unstable, ..) distributions.
  3981. Makedevs utility now accepts textual (non-numerical) user and
  3982. group names.
  3983. Vagrant file to easily setup a working development environment
  3984. in a VM has been added.
  3985. Size-stats-compare script to compare rootfs sizes between
  3986. builds has been added.
  3987. Infozip package renamed to zip. EFL packages restructured.
  3988. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  3989. angularjs, apache, apr, argp-standalone, armadillo, arptables,
  3990. at, atk, audiofile, aumix, autoconf-archive, avahi, bash, bc,
  3991. bcache-tools, bdwgc, beecrypt, bind, binutils, bluez5_utils,
  3992. bluez_utils, bonnie, boost, busybox, cairo, cdrkit, chrony,
  3993. clamav, cmake, collectd, connman, coreutils, cppcms, crda,
  3994. cryptodev-linux, cryptsetup, cups, cwiid, cxxtest, dbus,
  3995. dbus-cpp, dbus-glib, debianutils, dhcp, dhcpcd, dhrystone,
  3996. dillo, directfb, directfb-examples, dmraid, dnsmasq, doom-wad,
  3997. dovecot, dovecot-pigeonhole, dropbear, dtv-scan-tables,
  3998. dvb-apps, dvbsnoop, ecryptfs-utils, eigen, ejabberd,
  3999. elementary, elfutils, enlightenment, erlang, espeak, eudev,
  4000. eventlog, exfat, exfat-utils, exiv2, expedite, faifa,
  4001. fakeroot, fastd, fbgrab, fetchmail, ffmpeg, findutils, fio,
  4002. firmware-imx, flann, flashrom, flite, flot, fmlib, freerdp,
  4003. freescale-imx, freetype, gauche, gawk, gcc, gcc-final, gcr,
  4004. gdb, gdk-pixbuf, geoip, gesftpserver, gettext, giflib, git,
  4005. glibc, glibmm, glog, gmp, gnupg, gnupg2, gnutls, gob2, gpsd,
  4006. gptfdisk, grep, gst1-libav, gst1-plugins-{bad,base,good,ugly},
  4007. gst-ffmpeg, gst-plugins-{bad,base,good,ugly}, gstreamer,
  4008. gstreamer1, guile, gvfs, gzip, harfbuzz, haserl, hiawatha,
  4009. hostapd, hplip, icu, ifupdown, imagemagick, imx-gpu-viv,
  4010. imx-kobs, imx-lib, input-tools, intel-microcode, iperf3,
  4011. ipmitool, iproute2, iprutils, ipsec-tools, ipset, iptables,
  4012. iputils, irda-utils, irssi, iucode-tool, jack2, janus-gateway,
  4013. jpeg-turbo, jquery-datetimepicker, jquery-keyboard,
  4014. jquery-sparkline, jquery-ui, jquery-ui-themes,
  4015. jquery-validation, json-c, kbd, kernel-module-imx-gpu-viv,
  4016. keyutils, kmod, knock, kodi, lcdproc, lcms2, leafnode2,
  4017. leafpad, libass, libatomic_ops, libbroadvoice, libbsd,
  4018. libcap-ng, libcdaudio, libcue, libcurl, libdrm, libecore,
  4019. libedbus, libedit, libedje, libeet, libefreet, libeina,
  4020. libeio, libelementary, libembryo, libepoxy, libethumb, libev,
  4021. libevas, libevas-generic-loaders, libevdev, libevent, libffi,
  4022. libfm, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  4023. libftdi, libfuse, libgail, libglew, libglib2, libgtk2,
  4024. libgtk3, libgudev, libhttpparser, libidn, libinput, libiscsi,
  4025. libjpeg, liblinear, libmbim, libmicrohttpd, libndp, libnspr,
  4026. libnss, liboauth, liboping, libpciaccess, libplist, libpng,
  4027. libraw, libraw1394, librsvg, libseccomp, libsecret,
  4028. libserialport, libsigc, libsigrok, libsigrokdecode,
  4029. libsndfile, libsoc, libsodium, libsoup, libssh2, libsvg,
  4030. libsvg-cairo, libtasn1, libtirpc, libtorrent, libungif,
  4031. libunwind, libupnpp, liburcu, libuv, libv4l, libva,
  4032. libva-intel-driver, libvips, libvncserver, libxml2, libxmlpp,
  4033. lightning, lighttpd, linknx, linux-firmware, linux-fusion,
  4034. linux-headers, liquid-dsp, lirc-tools, live555, lm-sensors,
  4035. lockdev, lshw, ltp-testsuite, ltrace, lttng-babeltrace,
  4036. lttng-libust, lttng-modules, lttng-tools, lua, luabitop,
  4037. luarocks, luv, lvm2, lxc, makedevs, mc, memcached, memtest86,
  4038. mesa3d, mesa3d-demos, mesa3d-headers, micropython,
  4039. micropython-lib, minicom, minidlna, mjpg-streamer, mke2img,
  4040. moarvm, modem-manager, mongoose, mongrel2, monkey, mono,
  4041. monolite, mosh, mosquitto, mpd, mplayer, msgpack, mtdev2tuio,
  4042. musepack, musl, mysql, nano, nasm, nbd, neard, netatalk,
  4043. netsnmp, nettle, net-tools, network-manager, nfs-utils, nginx,
  4044. nmap, nodejs, ntfs-3g, ntp, numactl, nut, nvidia-driver,
  4045. odhcp6c, ofono, ola, olsr, omniorb, opencv, opencv3, openipmi,
  4046. openldap, openntpd, openobex, openocd, openpgm,
  4047. open-plc-utils, openpowerlink, openssh, openssl, openswan,
  4048. openvpn, opkg, oprofile, opus, opusfile, p11-kit, package,
  4049. pango, pax-utils, pciutils, pcmanfm, perl, perl-db-file,
  4050. perl-io-socket-ssl, perl-libwww-perl, perl-net-dns, perl-uri,
  4051. perl-xml-libxml, php, php-ssh2, picocom, pinentry, pixman,
  4052. polarssl, popt, portaudio, pppd, procps-ng, proftpd, protobuf,
  4053. psmisc, ptpd2, pulseaudio, pulseview, pv, python, python3,
  4054. python-alsaaudio, python-can, python-cffi, python-cherrypy,
  4055. python-httplib2, python-jinja2, python-lxml, python-m2crypto,
  4056. python-mako, python-msgpack, python-psutil, python-pyasn,
  4057. python-pycparser, python-pydal, python-pyftpdlib,
  4058. python-pyroute2, python-pyxml, python-pyzmq, python-requests,
  4059. python-serial, python-setuptools, python-six, python-spidev,
  4060. python-tornado, python-twisted, python-web2py, python-webpy,
  4061. python-werkzeug, python-zope-interface, qemu, qhull, qpdf, qt,
  4062. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  4063. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  4064. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  4065. qt5serialport, qt5svg, qt5webchannel, qt5webkit,
  4066. qt5webkit-examples, qt5websockets, qt5x11extras,
  4067. qt5xmlpatterns, qt-webkit-kiosk, racehound, radvd, read-edid,
  4068. readline, redis, rpcbind, rpi-firmware, rpi-userland, rrdtool,
  4069. rsync, rsyslog, rtai, rtorrent, rt-tests, rubix, ruby, samba4,
  4070. sconeserver, setools, shairport-sync, sigrok-cli, skeleton,
  4071. smack, snowball-init, socat, sp-oops-extract, sqlite,
  4072. squashfs, squeezelite, squid, sredird, sshfs,
  4073. start-stop-daemon, strace, strongswan, stunnel, subversion,
  4074. sunxi-tools, swig, sysdig, syslog-ng, sysstat, systemd,
  4075. sysvinit, taglib, tcl, tcpreplay, thrift, ti-gfx, tinyalsa,
  4076. tor, torsmo, trace-cmd, transmission, tremor, triggerhappy,
  4077. trinity, tvheadend, tzdata, uboot-tools, uclibc, udisks,
  4078. udpcast, unionfs, upmpdcli, usb_modeswitch,
  4079. usb_modeswitch_data, ustr, util-linux, vala, valgrind,
  4080. vboot-utils, vde2, vlc, vnstat, webkit, webkitgtk24, weston,
  4081. wget, whetstone, whois, wine, wipe, wireless-regdb, wireshark,
  4082. wpa_supplicant, w_scan, x11r7, xapp_xbacklight, xapp_xcompmgr,
  4083. xapp_xinput, xapp_xkbcomp, xdriver_xf86-input-evdev,
  4084. xdriver_xf86-input-libinput, xdriver_xf86-input-synaptics,
  4085. xdriver_xf86-video-ati, xdriver_xf86-video-fbturbo,
  4086. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  4087. xfont_encodings, xfont_font-adobe-100dpi,
  4088. xfont_font-adobe-75dpi, xfont_font-adobe-utopia-100dpi,
  4089. xfont_font-adobe-utopia-75dpi, xfont_font-adobe-utopia-type1,
  4090. xfont_font-alias, xfont_font-arabic-misc,
  4091. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  4092. xfont_font-bh-lucidatypewriter-100dpi,
  4093. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  4094. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  4095. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  4096. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  4097. xfont_font-daewoo-misc, xfont_font-dec-misc,
  4098. xfont_font-ibm-type1, xfont_font-isas-misc,
  4099. xfont_font-jis-misc, xfont_font-micro-misc,
  4100. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  4101. xfont_font-misc-meltho, xfont_font-misc-misc,
  4102. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  4103. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  4104. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  4105. xfont_font-xfree86-type1, xfsprogs, xkeyboard-config, xl2tp,
  4106. xlib_libfontenc, xlib_libXi, xmlstarlet, xscreensaver,
  4107. xserver_xorg-server, xtables-addons, xvkbd, xz, yad, yasm,
  4108. ympd, zeromq, zic, znc, zsh,
  4109. New packages: acsccid, assimp, atkmm, autofs, bcm2835,
  4110. cairomm, cantarell, chocolate-doom, comix-cursors, cxxtest,
  4111. edid-decode, emlog, gcr, gtkmm3, hidapi, jquery-sidebar,
  4112. kernel-module-imx-gpu-viv, libasplib, libcroco, libdvbpsi,
  4113. libfreeglut, libgdiplus, libglfw, libhdhomerun, libnet,
  4114. libsoil, lldpd, luvi, mbedtls, minizip, miraclecast, mongodb,
  4115. mraa, netbsd-queue, netsniff-ng, nss-pam-ldapd,
  4116. obsidian-cursors, openal, openbox, pangomm,
  4117. python-backports-abc, python-beautifulsoup4, python-cbor,
  4118. python-click, python-cssselect, python-ecdsa, python-html5lib,
  4119. python-idna, python-ipaddress, python-mistune, python-netaddr,
  4120. python-paho-mqtt, python-paramiko, python-pyparted,
  4121. python-pysmb, python-pyudev, python-singledispatch,
  4122. python-smbus-cffi, python-urllib3, qt53d, rabbitmq-c, rfkill,
  4123. sbc, spi-tools, tpm-tools, trousers, ubus, unrar, unscd,
  4124. unzip, v4l2grab, xdriver_xf86-video-nouveau, xdotool, zbar
  4125. Removed packages: libungif, python-pyxml,
  4126. Issues resolved (http://bugs.uclibc.org):
  4127. #7886: gettext: link failure with locally-installed libxml2
  4128. #7892: systemd-journald is broken
  4129. #8066: nodejs crashes when built with gcc 4.9
  4130. #8296: nodejs 0.12.7 - npm crashes (seg core dump)
  4131. #8501: gunzip fails to uncompress files
  4132. #8541: fail to build host-fakeroot-1.20.2
  4133. #8546: build instructions for raspberry pi don't work
  4134. #8571: strace for ARC compile error
  4135. #8581: pciutils.mk PCIUTILS_MAKE_OPTS typo
  4136. #8616: Fail to build for raspberrypi_defconfig with big endian
  4137. #8621: sqlite package, properly enable readline
  4138. 2015.11, Released November 30th, 2015
  4139. Minor fixes.
  4140. Merged/seperate /usr handling is now also performed for
  4141. staging so cross-gdb / gdbserver can find the libraries.
  4142. Updated/fixed packages: autossh, conntrack-tools, dcron,
  4143. espeak, gcc, glmark2, gpsd, gstreamer1, libglib2, libsigsegv,
  4144. libsoc, libv4l, minidlna, mongrel2, opencv, polarssl,
  4145. rpi-userland, rubix, skeleton, tovid, uemacs, valgrind, yad,
  4146. zmqpp
  4147. Issues resolved (http://bugs.uclibc.org):
  4148. #8441: Invalid directory for X11 fonts in target (RPi2)
  4149. #8491: libglib2 2.46.1 not Building for armv5 on 2015.11-rc3
  4150. 2015.11-rc3, Released November 26th, 2015
  4151. Fixes all over the tree.
  4152. We have a new modern website!
  4153. Updated/fixed packages: apitrace, audiofile, autossh, bullet,
  4154. c-ares, collectd, conntrack-tools, cryptodev-linux, dropbear,
  4155. fastd, gmp, gpsd, gst-plugins-bad, gst-plugins-base,
  4156. gst-plugins-good, gst-plugins-ugly, gstreamer, gstreamer1,
  4157. guile, iodine, iproute2, jimtcl, kompexsqlite, libethumb,
  4158. libfreeimage, libgsasl, libgtk3, libxml2, localedef,
  4159. lttng-tools, macchanger, mongrel2, mpd, openntpd, openssl,
  4160. oprofile, pcre, qt5base, quagga, rpi-userland, sconeserver,
  4161. sdl, spidev_test, sqlite, strongswan, ustr, xapp_sessreg,
  4162. yajl, zmqpp
  4163. Issues resolved (http://bugs.uclibc.org):
  4164. #6872: gpsd: disabled on microblaze
  4165. #8321: invalid opcode error with minidlna and ffmpeg
  4166. #8336: Default systemd configuration fails to boot correctly in 2015-08
  4167. #8446: rpi-userland failed to build with glibc 2.22
  4168. 2015.11-rc2, Released November 19th, 2015
  4169. Fixes all over the tree.
  4170. LD_LIBRARY_PATH is no longer used to ensure host binaries find
  4171. their libraries, fixing issues on recent Fedora.
  4172. Toolchain fixes for powerpc e5500 / e6500. Fix for an issue
  4173. with ${TARGET}-cc after the move to use a toolchain wrapper
  4174. for the internal toolchain.
  4175. Appy-patches.sh now correctly applies all files listed in
  4176. series files.
  4177. Fixes for merged /usr handling when a custom skeleton is used.
  4178. Updated/fixed packages: axfsutils, boost, busybox, dhcp,
  4179. directfb, dropbear, ebtables, fastd, ffmpeg, gauche, gcc,
  4180. gettext, gst1-plugins-bad, hostapd, ibrdtnd, libcurl,
  4181. libecore, libgudev, libnss, libpng, libserial, libssh2,
  4182. libuecc, libxml2, linux-headers, liquid-dsp, ltris,
  4183. lua-periphery, minidlna, mongrel2, mpd, mpg123, mplayer,
  4184. mysql, opencv, opencv3, package, perl-file-util, php-ssh2,
  4185. polarssl, pulseaudio, python-protobuf, qemu, qt5base, ranger,
  4186. ruby, skeleton, slang, squeezelite, strongswan, tovid, uclibc,
  4187. ushare, wine, wpa_supplicant, x265,
  4188. xdriver_xf86-video-siliconmotion, zxing-cpp
  4189. Issues resolved (http://bugs.uclibc.org):
  4190. #4790: Running udhcpc on a system with NFS root kills NFS
  4191. #8456: Building host-pkgconf on Fedora 23 fails due to..
  4192. 2015.11-rc1, Released November, 7th 2015
  4193. Fixes all over the tree and new features.
  4194. Architectures:
  4195. - Support for sparc64 added (internal toolchain with glibc
  4196. only).
  4197. - Support for mips32r6 and mips64r6 added.
  4198. - Support for Intel Quark X1000 CPU.
  4199. - Switch to EABIhf by default on ARM when a VFP is available.
  4200. Toolchains:
  4201. - glibc 2.22, gdb 7.10, use gdb 7.9 by default, musl 1.1.12,
  4202. uclibc-ng 1.0.8, host-gdb enabled on AArch64.
  4203. - The toolchain wrapper which was used only for external
  4204. toolchains is now also used for Buildroot internal
  4205. toolchains. This allowed to fix the ccache support, prepare
  4206. the way for top-level parallel build support and remove gcc
  4207. patches used to detect header/library path poisoning.
  4208. - Remove Analog Devices Blackfin toolchain 2012R2.
  4209. - Fix several Xtensa build failures by switching from
  4210. text-section-literals to auto-litpools.
  4211. - Enable MIPS64 support in uClibc-ng, use uClibc on ARC
  4212. rather than a specific fork.
  4213. - Linaro toolchains for ARM, ARMeb and AArch64 updated to
  4214. 2015.08. 2014.09 version is kept since 2015.08 only runs on
  4215. x86_64 hosts.
  4216. Bootloaders:
  4217. - Fix ARM64 support in U-Boot.
  4218. Defconfigs:
  4219. - Added: ARC HS38 VDK virtual boards, Avnet Microzed, Boundary
  4220. Devices Nitrogen SoloX, Freescale i.MX6 SoloX Sabre SD,
  4221. OLinuxino A20 Lime2, Qemu Sparc64, Qemu SuperH 4 big endian,
  4222. Synopsys AArch64 VDK virtual platform.
  4223. - Updated: calao_qil_a9260, calao_usb_a9g20_lpw, ci20,
  4224. cubieboad, freescale_imx6_*, imx53loco, imx6_vab820,
  4225. mpc8315erdb, qmx6, p1010rdb, qemu, raspberrypi,
  4226. raspberrypi2, riotboard, snps_axs10*, wandboard.
  4227. - Removed: at91rm9200df, at91sam9260dfc, at91sam9263ek,
  4228. calao_snowball_defconfig, gnublin, integrator926_defconfig.
  4229. Infrastructure:
  4230. - Support for fetching from Mercurial tags fixed.
  4231. - Introduce LINUX_NEEDS_MODULES, which allows to enforce
  4232. module support to be enabled in the kernel when a package
  4233. builds out-of-tree kernel modules (through the
  4234. pkg-kernel-module infrastructure or on its own).
  4235. - Improve the perl package infrastructure to automatically add
  4236. the dependency to the perl interpreter to target perl module
  4237. packages.
  4238. - Remove trailing slashes in <pkg>_SITE and addition of a
  4239. check to ensure such trailing slashes are no longer added.
  4240. - Extend the legal infrastructure to allow packages to declare
  4241. their actual source code. This is useful for packages for
  4242. which <pkg>_SOURCE points to pre-built binaries (as is the
  4243. case for external toolchains). The new <pkg>_ACTUAL_SOURCE
  4244. variable allows to point to the source code in such cases.
  4245. - Improved ccache support, thanks to the usage of a toolchain
  4246. wrapper for internal toolchain. Now a single cache directory
  4247. can be shared between different Buildroot builds.
  4248. - Addition of a 'graph-size' make targets, which generates a
  4249. PDF graph of per-package size of the root filesystem.
  4250. - Addition of <pkg>_EXCLUDES so that packages can request
  4251. certain parts of the source code tarball to not be
  4252. extracted. This feature is currently used by gcc and
  4253. toolchain-external.
  4254. - Packages can now use the <pkg>_PKGDIR variable, provided by
  4255. the package infrastructure, to reference their package
  4256. directory, instead of explicitly using package/<pkg>/.
  4257. Filesystems:
  4258. - Add high lz4 compression to squashfs.
  4259. - Simplification of shell profile files in the default
  4260. skeleton.
  4261. - Remove ftp user and /home/ftp from the skeleton, and let ftp
  4262. server packages create these when needed.
  4263. - Add support for /bin, /sbin and /lib to be symlinks to their
  4264. corresponding directories in /usr. This is enforced for
  4265. systemd configurations, and optional for other
  4266. configurations.
  4267. - Support for AXFS filesystem image generation added.
  4268. - New options to add extra space/inodes to ext2/3/4 images.
  4269. Updated/fixed packages:
  4270. adwaita-icon-theme, apache, apitrace, atk, audit, avahi,
  4271. barebox, bash, batctl, bind, binutils, bluez_utils, boost,
  4272. bridge-utils, cairo, ccache, chrony, clapack, cloog, cmake,
  4273. collectd, connman, conntrack-tools, coreutils, cpio,
  4274. cryptsetup, dbus, dbus-cpp, devmem2, dhcp, dhcpcd, dhcpdump,
  4275. dhrystone, dillo, directfb, directfb-examples, dmraid,
  4276. dos2unix, dovecot, dovecot-pigeonhole, drbd-utils, dropbear,
  4277. dropwatch, dtc, e2fsprogs, ebtables, efl, eigen, ejabberd,
  4278. elf2flt, elfutils, erlang, ethtool, eudev, evemu, exfat,
  4279. exfat-utils, expat, faifa, fbterm, fdk-aac, feh, ffmpeg, file,
  4280. flashrom, fping, freerdp, freescale-imx, freetype, gdk-pixbuf,
  4281. genimage, gettext, git, glib-networking, glmark2, gnupg2,
  4282. gnuradio, gnutls, gpsd, grep, grub2, gst1-imx, gst1-libav,
  4283. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  4284. gst1-plugins-ugly, gst1-validate, gst-fsl-plugins,
  4285. gst-plugins-bad, gstreamer1, guile, gvfs, harfbuzz, haveged,
  4286. hostapd, icu, imagemagick, impiutil, imx-gpu-viv, imx-vpu,
  4287. inadyn, intltool, iostat, iperf3, ipmiutil, iproute2,
  4288. iptables, iw, jpeg-turbo, jq, jsoncpp, kexec-lite, kmod, kodi,
  4289. kodi-audioencoder-flac, kodi-pvr-argustv, kodi-pvr-filmon,
  4290. kodi-pvr-hts, kodi-pvr-mythtv, kodi-pvr-pctv,
  4291. kodi-pvr-stalker, kodi-pvr-vbox,
  4292. kodi-visualisation-waveforhue, less, lftp, libbluray,
  4293. libcgroup, libconfuse, libcurl, libdcadec, libdrm, libevdev,
  4294. libffi, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  4295. libgcrypt, libglew, libglib2, libgtk3, libidn, liblinear,
  4296. liblockfile, libmicrohttpd, libnetfilter_conntrack, libnfs,
  4297. libnftnl, libnl, libnspr, libnss, libpcap, libpfm4, libpng,
  4298. libselinux, libserial, libsoup, libsoxr, libstrophe, libtasn1,
  4299. libtirpc, libtorrent, libupnpp, liburcu, libusb-compat, libuv,
  4300. libv4l, libva, libva-intel-driver, libxcb, lighttpd, links,
  4301. linux, linux-firmware, linux-fusion, linux-headers,
  4302. lirc-tools, localedef, lpeg, lsof, ltp-testsuite,
  4303. lttng-libust, lttng-tools, lua-periphery, luaposix, lvm2, lxc,
  4304. lz4, mdadm, mesa3d, mesa3d-headers, minicom, minidlna, moarvm,
  4305. modem-manager, mosquitto, mpd, mpdecimal, mpg123, mplayer,
  4306. mrouted, msmtp, mtd, mutt, nettle, network-manager, nfs-utils,
  4307. nftables, nginx, nodejs, noip, ntp, ofono, opencv3, openpgm,
  4308. openssl, openswan, openvpn, pango, parted, perl, perl-cross,
  4309. perl-crypt-openssl-random, perl-http-message,
  4310. perl-io-socket-ssl, perl-module-build, perl-mojolicious,
  4311. perl-netaddr-ip, perl-net-dns, perl-net-http, perl-net-ssleay,
  4312. perl-uri, perl-xml-libxml, php, picocom, pixman, pkgconf,
  4313. poco, polarssl, portaudio, portmap, postgresql, proftpd,
  4314. protobuf, protobuf-c, pulseaudio, python-configshell-fb,
  4315. python-networkmanager, python-numpy, python-pyparsing,
  4316. python-pypcap, python-rtslib-fb, python-spidev, python-urwid,
  4317. python-web2py, qemu, qt5base, redis, rngtools, rng-tools,
  4318. rpi-firmware, rpi-userland, rtmpdump, rtorrent, ruby, samba,
  4319. samba4, sane-backends, sconeserver, sdl, sed, setools,
  4320. shairport-sync, shared-mime-info, sland, smartmontools,
  4321. softether, spice-protocol, sqlcipher, sqlite, squid,
  4322. strongswan, stunnel, subversion, sudo, sunxi-tools,
  4323. supervisor, systemd, tar, targetcli-fb, tcpdump, tiff, tor,
  4324. tvheadend, tzdata, uboot-tools, udisks, unionfs, upmpdcli,
  4325. util-linux, vala, valgrind, vim, vlc, vorbis-tools, vsftpd,
  4326. vtun, wavpack, webkitgtk24, weston, whois, wireless-regdb,
  4327. wireshark, wpa_supplicant, xdriver_xf86-input-vmmouse,
  4328. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  4329. xdriver_xf86-video-sis, xlib_libXi, xorg-server,
  4330. xtables-addons, xterm, xz, zic, znc, zsh
  4331. New packages:
  4332. axfsutils, bitstream, check, dvblast, eventlog, fastd, gauche,
  4333. gmock, graphite2, gssdp, gupnp, gupnp-av, ibrcommon, ibrdtn,
  4334. ibrdtnd, ibrdtn-tools, imx-kobs, iqvlinux, irssi,
  4335. kompexsqlite, libbroadvoice, libcddb, libcodec2, libcrossguid,
  4336. libg7221, libhttpparser, libilbc, libldns, libmng,
  4337. libopenh264, libpam-radius-auth, libpam-tacplus, libsilk,
  4338. libsoundtouch, libssh, libuecc, libyuv, liquid-dsp, luv,
  4339. micropython, micropython-libs, python-pyratemp,
  4340. python-pyroute2, python-ranger, rapidxml, scrypt, sdl2,
  4341. sp-oops-extract, squeezelite, stress-ng, swupdate, syslog-ng,
  4342. x265, xdriver_xf86-video-fbturbo, xxhash, yad, zxing-cpp
  4343. Removed packages:
  4344. blackbox (was deprecated), divine (merged in directfb),
  4345. kobs-ng (replaced by imx-kobs), mediactl (merged in libv4l),
  4346. sawman (merged in directfb), schifra (marked broken since a
  4347. long time), texinfo (host variant only, no longer used), zxing
  4348. (replaced by zxing-cpp),
  4349. Issues resolved (http://bugs.uclibc.org):
  4350. #4099: cut utility from GNU coreutils works incorrect
  4351. #7772: libxml-parser-perl build failure: missing dependency
  4352. ExtUtils/MakeMaker
  4353. #7931: Default configuration for Cubieboard v1 is outdated
  4354. #8116: 2015.05-rc2 raspberrypi2_defconfig network interface
  4355. not coming up
  4356. #8246: X.org DRI2 build issue
  4357. #8256: pointing to /usr/bin/objcopy old version (x86) instead
  4358. of the generated one
  4359. #8266: mplayer build issue
  4360. #8281: pyrexc fails to run when path is too long
  4361. #8316: lttng-tools and lttng-babeltrace executables contain
  4362. bad RPATH pointing to host machine
  4363. #8331: kexec wants shutdown in /sbin, but systemd installs it
  4364. in /usr/sbin
  4365. #8361: Buildroot 2015.08.1 skeleton inittab overwritten by
  4366. busybox's version
  4367. #8366: libevent does not build
  4368. #8386: build failed with external toolchain
  4369. #8391: Node.js 0.12.7 fails to build on raspberry_pi defconfig
  4370. #8396: CCACHE initialization
  4371. #8401: gpsd 3.15 NMEA support
  4372. #8416: cups depends on BR2_DEPRECATED_SINCE_2015_05
  4373. #8421: util-linux installs systemd files in output/target/home/
  4374. 2015.08, Released August 31st, 2015
  4375. Minor fixes.
  4376. OpenCV 3.x package renamed to opencv3. OpenCV 2.4.x
  4377. reintroduced as opencv.
  4378. Updated/fixed packages: bootutils, canfestival, cppcms,
  4379. curlftpfs, dhcpdump, dropbear, erlang-p1-tls, exfat, gnuradio,
  4380. ipkg, libgudev, libmbim, libwebsock, linux-pam, lm-sensors,
  4381. ltrace, midori, network-manager, openssh, perl-file-listing,
  4382. perl-http-cookies, perl-http-daemon, perl-http-negotiate,
  4383. perl-www-robotrules, python-can, qt5base, qt5multimedia,
  4384. setools, sysvinit, tinyalsa, tn5250, tvheadend, uboot, vlc,
  4385. x264, xserver_xorg-server, zyre
  4386. 2015.08-rc2, Released August, 24th 2015
  4387. Fixes all over the tree.
  4388. Toolchain: fix gcc build on NIOS-II.
  4389. Infrastructure: add <fs>_POST_GEN_HOOKS mechanism to fix
  4390. hybrid ISO image generation.
  4391. Architectures: add arm1136j-s variant.
  4392. Updated/fixed packages: apitrace, audit, bcusdk, bdwgc,
  4393. beecrypt, boost, bwm-ng, cdrkit, c-icap, cifs-utils, clapack,
  4394. c-periphery, cpio, cramfs, czmq, dawgdic, dnsmasq, dosfstools,
  4395. dropbear, elfutils, empty, eudev, fan-ctrl, filemq, gnutls,
  4396. guile, haveged, imlib2, libcec, libepoxy, libev, libgpgme,
  4397. libiio, libnetfilter_queue, libnfnetlink, libpfm4, libpthsem,
  4398. librtas, libselinux, libsigsegv, libsodium, libv4l, lightning,
  4399. linux, lirc-tools, lrzsz, mono, mosh, mpd, msmtp, nbd,
  4400. netatalk, nodejs, ola, opencv, oprofile, php, poco,
  4401. postgresql, powertop, protobuf, protobuf-c, qt5base,
  4402. qt5quickcontrols, rapidjson, rng-tools, squid, sysdig,
  4403. sysstat, tftpd, tinc, tz, util-linux, webkitgtk24, weston,
  4404. wireshark, wvstreams, xdriver_xf86-input-synaptics, zyre.
  4405. Issues resolved (http://bugs.uclibc.org):
  4406. #8276: package/dropbear: symlink resolution incorrect
  4407. #8286: Error with buildroot
  4408. #8301: ldconfig parameter in Makefile
  4409. 2015.08-rc1, Released August, 5th 2015
  4410. Fixes all over the tree and new features.
  4411. Architectures:
  4412. - Refactor how the availability of an MMU is described.
  4413. - Minimal support for Cortex-M3
  4414. - Minimal support for AArch64 big-endian
  4415. Toolchains:
  4416. - Add CodeSourcery MIPS 2015.05, remove MIPS 2013.11
  4417. - Use uClibc-ng as the default uClibc version, instead of the
  4418. official uClibc, which hasn't done any release since 3+
  4419. years
  4420. - eglibc is now marked as deprecated
  4421. - GCC: gcc 4.9.x is now the default and was updated to 4.9.3,
  4422. support for gcc 5.x added.
  4423. - Binutils: use Binutils 2.24 as the default, 2.25.x series
  4424. bumped to 2.25.1, remove old Binutils 2.22.
  4425. - Update ARC toolchain components to 2015.06
  4426. - Add support for Fortran when building gcc
  4427. Bootloaders:
  4428. - Support for using the kconfig configuration system in
  4429. U-Boot
  4430. New Defconfigs:
  4431. - VIA VAB-820/AMOS-820
  4432. - OLimex OLinuxino A20 Lime
  4433. - Many new defconfigs for Atmel evaluation boards:
  4434. at91sam9rlek, at91sam9x5ek, sama5d3xek, sama5d4ek, sama5d4
  4435. Xplained Ultra, sama5d3 Xplained.
  4436. - ACME Systems Aria G25
  4437. - WarPboard
  4438. - Altera Cyclone 5 Development Board
  4439. - Xilinx zc706
  4440. - ARC AXS101 and AXS103 Software Development Platforms
  4441. - Significant updates to Raspberry Pi / Raspberry Pi 2
  4442. Infrastructure:
  4443. - Buildroot takes better care now of generating predictable
  4444. permissions in the target filesystem. However, existing
  4445. permissions on a custom skeleton or rootfs overlay will no
  4446. longer be preserved. Therefore, it is necessary to add a
  4447. permission table (BR2_ROOTFS_DEVICE_TABLE) to set the
  4448. required permissions.
  4449. - Add support for kconfig fragments.
  4450. - No longer pass --{enable,disable}-debug to autotools
  4451. packages depending on the value of
  4452. BR2_ENABLE_DEBUG. BR2_ENABLE_DEBUG now only controls
  4453. whether we build with -g or not.
  4454. - Support for extracting archives in .lzma in the generic
  4455. package infrastructure.
  4456. - Remove random-seed file from the default skeleton, since
  4457. seeding the entropy pool with a known seed makes more harm
  4458. than good.
  4459. - In the CVS download helper, add support to use a date as
  4460. the version.
  4461. - Add support for a per-package <pkg>_STRIP_COMPONENTS
  4462. variable, which packages can use to specify how many path
  4463. components should be stripped when extracting the tarball.
  4464. - Addition of a 'kernel-module' package infrastructure, which
  4465. simplifies the packaging of external kernel modules. Many
  4466. existing packages are converted to use it.
  4467. - Allow bootloaders to be implemented in $(BR2_EXTERNAL)
  4468. - Remove /etc/securetty from the default skeleton.
  4469. - Migration of sysV initscripts from the default skeleton to
  4470. a package called 'initscripts', installed only when Busbox
  4471. init or sysvinit are used.
  4472. - Migration of the skeleton logic to a proper 'skeleton'
  4473. package.
  4474. - Addition of a 'linux-tools' infrastructure in the 'linux'
  4475. package, to support building user-space tools bundled
  4476. within the Linux kernel sources, such as perf and cpupower.
  4477. - Usage of backticks instead of make $(shell ...) to execute
  4478. shell commands. This allows to delay the evaluation of such
  4479. commands when actually needed, and not when expanding the
  4480. variables. It is useful to make 'make printvars' less
  4481. noisy, and as a preparation to support top-level parallel
  4482. build.
  4483. - Libtool .la files are not mungled for all package types,
  4484. instead of being handled only for packages using the
  4485. autotools-package infrastructure.
  4486. - Add mechanism to allow packages to express a dependency on
  4487. gcc versions. This is needed for packages that use C++11 or
  4488. C11 support for example.
  4489. Important package updates:
  4490. - Complete rework of the matchbox packaging
  4491. - Lots of fixes in packages for compatibility with musl and
  4492. gcc 5.
  4493. - Hash files added to a large number of packages.
  4494. - Update a significant number of packages to use a new
  4495. hosting, after the announcement of Google Code and
  4496. Gitorious closing.
  4497. - Major packages needed for SELinux support have been merged,
  4498. but the support is not complete yet.
  4499. - Significant update of OpenCV to version 3.0, and addition
  4500. of lots of eatures.
  4501. - Significant update of all packages supporting the GPU and
  4502. VPU of i.MX ARM processors.
  4503. - Addition of systemd support in a significant number of
  4504. packages.
  4505. - Qt5 updated to 5.5.0
  4506. - Use modular X.org server by default instead of KDrive
  4507. Filesystems:
  4508. - Complete overhaul of the iso9660 support. Now allows to use
  4509. directly IS9660 as the root filesystem format and not only
  4510. an initrd, and supports Grub 2 and isolinux in addition to
  4511. Grub.
  4512. Updated packages: a10disp, agentpp, apache, at91bootstrap3,
  4513. audit, barebox, bc, bind, bmon, boost, btrfs-progs,
  4514. ca-certificates, can-utils, ccache, cloog, collectd, connman,
  4515. coreutils, c-periphery, cryptsetup, dado, dbus, dejavu,
  4516. dhcpcd, dnsmasq, dosfstools, dovecot, dovecot-pigeonhole,
  4517. e2fsprogs, ejabberd, erlang-p1-cache-tab, erlang-p1-sip,
  4518. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  4519. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml, ethtool,
  4520. eudev, evtest, exim, expect, explorercanvas, feh, ffmpeg,
  4521. file, flashrom, freescale-imx, freetype, gawk, gcc, gdb,
  4522. gettext, git, glib-networking, gnupg2, gnutls, gpsd, gptfdisk,
  4523. gpu-viv-bin-mx6q, gst-fsl-plugins, harfbuzz, hdparm, heimdal,
  4524. i2c-tools, imagemagick, imx-vpu, iproute2, ipset, isl, iw,
  4525. kodi, kodi-addon-xvdr, kodi-audioencoder-flac,
  4526. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  4527. kodi-audioencoder-wav, lftp, libass, libassuan, libcec,
  4528. libconfi, libcurl, libdrm, libevdev, libfreefare, libfslcodec,
  4529. libfslparser, libfslvpuwrap, libfuse, libglib2, libgpgme,
  4530. libgtk2, libgtk3, libical, libidn, libiio, libinput, libiscsi,
  4531. libllcp, libmicrohttpd, libnfc, libnss, libpcap, libpciaccess,
  4532. libpng, libserialport, libsigrok, libsoc, libtirpc, libubox,
  4533. libunistring, libupnp, libuv, libv4l, libva,
  4534. libva-intel-driver, libXrandr, lighttpd, linenoise, linux,
  4535. linux-firmware, linux-headers, live555, ltrace, lua,
  4536. lua-csnappy, lua-ev, luajit, lua-messagepack, luaperiphery,
  4537. lvm2, lxc, lzo, mesa3d, mesa3d-headers, midori, mmc-utils,
  4538. modem-manager, mono, mosquitto, mpd, mpd-mpc, mpfr, mpg123,
  4539. mtd, musl, nano, netperf, network-manager, nfs-utils, nginx,
  4540. nodejs, ntp, ola, opencv, openldap, openssh, openssl,
  4541. openswan, openvmtools, openvpn, opkg, orbit, orc, pcmanfm,
  4542. perl-cross, perl-encode-locale, perl-io-socket-ssl,
  4543. perl-mojolicious, perl-net-ssleay, perl-path-tiny, perl-uri,
  4544. perl-xml-libxml, php, pinentry, polarssl, postgresql,
  4545. pulseview, pure-ftpd, python, python-dpkt, python-lxml,
  4546. python-networkmanager, python-pyinotify, python-pypcap,
  4547. python-tornado, qextserialport, qt, qt5, rapidjson, redis,
  4548. rpcbind, rpi-firmware, rpi-userland, samba4, shairport-sync,
  4549. snmpp, sqlite, squid, strongswan, stunnel, sudo, sunxi-boards,
  4550. sunxi-mali, sysdig, sysstat, systemd, tcpdump, tiff, tmux,
  4551. tor, txheadend, tzdata, uboot, uclibc, ulogd, upmpdcli,
  4552. usb_modeswitch, usb_modeswitch_data, vala, vsftpd, wayland,
  4553. weston, whois, wireless-regdb, wireshark, x264, xapp_xvinfo,
  4554. xdriver_xf86-input-libinput, xdriver_xf86-input-vmmouse,
  4555. xdriver_xf86-video-cirrus, xdriver_xf86-video-geode,
  4556. xdriver_xf86-video-imx-viv, xdriver_xf86-video-mach64,
  4557. xdriver_xf86-video-neomagic, xdriver_xf86-video-r128,
  4558. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  4559. xdriver_xf86-video-vesa, xkeyboard-config, xlib_libfontenc,
  4560. xlib_libFS, xlib_libXaw, xlib_libxkbfile, xlib_libXrender,
  4561. xlib_libXt, xproto_kbproto, xproto_xproto, xproto_xrandrproto,
  4562. xscreensaver, xserver_xorg-server, xtables-addons, yaml-cpp,
  4563. zic.
  4564. New packages: angularjs, atf, audit, c-icap, c-icap-modules,
  4565. cpio, dawgdic, faketime, fcgiwrap, gflags, glog, initscripts,
  4566. jquery-datetimepicker, kodi-audioencoder-modplug,
  4567. kodi-audioencoder-nosefar, kodi-audioencoder-sidplay,
  4568. kodi-audioencoder-snesapu, kodi-audioencoder-stsound,
  4569. kodi-audioencoder-timidity, kodi-audioencoder-vgmstream,
  4570. kodi-platform, kodi-pvr-argustv, kodi-pvr-dvblink,
  4571. kodi-pvr-dvbviewer, kodi-pvr-filmon, kodi-pvr-hts,
  4572. kodi-pvr-iptvsimple, kodi-pvr-mediaportal-tvserver,
  4573. kodi-pvr-mythtv, kodi-pvr-nextpvr, kodi-pvr-njoy,
  4574. kodi-pvr-pctv, kodi-pvr-stalker, kodi-pvr-vbox,
  4575. kodi-pvr-vdr-vnsi, kodi-pvr-vuplus, kodi-pvr-wmc,
  4576. kodi-screensaver-asteroids, kodi-screensaver-biogenesis,
  4577. kodi-screensaver-crystalmorph, kodi-screensaver-greynetic,
  4578. kodi-screensaver-pingpong, kodi-screensaver-pyro,
  4579. kodi-screensaver-stars, kodi-visualisation-shadertoy,
  4580. kodi-visualisation-spectrum, kodi-visualisation-waveforhue,
  4581. kodi-visualisation-waveform, kvmtool, kyua, libfm,
  4582. libfm-extra, libplatform, librtas, libsodium, libsquish,
  4583. libucl, libump, linux-backports, lua-iconv, lutok, menu-cache,
  4584. moarvm, monkey, mono-gtksharp3, mosh, openipmi, python-can,
  4585. python-pycli, python-pydal, python-pyyaml, python-web2py,
  4586. qpid-proton, qt5webchannel, quazip, racehound, rtl8188eu,
  4587. rtl8821au, sepolgen, setools, skeleton, stm32flash,
  4588. webkitgtk24, xdriver_xf86-video-qxl, zynq-boot-bin.
  4589. Deprecated packages: webkitgtk, libgail, eglibc support in
  4590. glibc package.
  4591. Issues resolved (http://bugs.uclibc.org):
  4592. #4291: Segmentation fault with all binaries that use threads
  4593. when compiled with gcc 4.6
  4594. #6944: building toolchain for sh4 fails
  4595. #7592: Buildroot GCC: -lto requires plugin support in ranlib
  4596. #7628: Python SSL does not get built for Raspberry Pi
  4597. #7682: Missing dependencies for NFS
  4598. #7742: dhcp lacks important features when BR2_ENABLE_DEBUG
  4599. #7754: make: *** [/..../buildroot-2014.11/output/build/host-gcc-initial-4.8.3/.stamp_built] Error 2
  4600. #7946: libglib2-2.42.2 fails to build for sparc-buildroot-linux-gnu
  4601. #7956: glibc 2.20 and 2.21 fail to build for sh64-buildroot-linux-gnu
  4602. #7971: python-flask, python-werkzeug. No module named zlib
  4603. #7981: Target file system skeleton permissions hazard
  4604. #8006: rpcdebug in nfs-utils built for the host
  4605. #8036: alsa-lib headers problem that prevents to compile alsa
  4606. dependent projects
  4607. #8081: systemd init system: /tmp is not mode 1777
  4608. #8121: php opcache extension doesn't get installed
  4609. #8151: x86-64 make fails with ncurses 5.9
  4610. #8156: pkg-kconfig infra broken for *-update-{config, defconfig}
  4611. #8161: default /bin/sh symlink to busybox is full path and not relative
  4612. #8171: glamor missing
  4613. #8191: Request update support for the cubieboard series
  4614. #8201: Important security upgrades for node.js
  4615. 2015.05, Released May 31st, 2015
  4616. Minor fixes.
  4617. Updated/fixed packages: conntrack-tools, directfb, fio, flite,
  4618. gptfdisk, ipmiutil, iproute2, janus-gateway, keyutils, knock,
  4619. libelementary, libgcrypt, libgsasl, libjpeg, libstrophe,
  4620. lttng-libust, nbd, ncurses, nmap, php, postgresql, python,
  4621. python3, sconeserver, udpcast, upmpdcli
  4622. 2015.05-rc3, Released May 22nd, 2015
  4623. Several fixes, mainly related to static linking.
  4624. Updated/fixed packages: acl, alsa-utils, apr, armadillo, attr,
  4625. autoconf-archive, binutils, boost, czmq, dhcpcd, duma,
  4626. enlightenment, exim, fbterm, freerdp, gcc, gdk-pixbuf,
  4627. google-breakpad, gpsd, heirloom-mailx, hwloc, ipmiutil,
  4628. iproute2, jack2, jasper, kmod, lcdproc, leafnode2, libcap-ng,
  4629. libftdi1, libmatroska, libmemcached, libmodbus, libnftnl,
  4630. libsigrok, libupnpp, libuv, libxml-parser-perl, linux,
  4631. linux-headers, lirc-tools, lua-periphery, lxc, mongoose, mono,
  4632. mpg123, mosquitto, neardal, newt, ntp, ola, openldap, opencv,
  4633. php, postgresql, protobuf, pulseaudio, python-pyqt, qemu, qt,
  4634. qt5base, rpi-userland, rsyslog, snmppp, sqlite, tiff,
  4635. tinyxml2, uboot-tools, unionfs, ux5000-firmware, usbredir,
  4636. ushare, vpnc, vsftpd, wavpack, wireless_tools, wsapi,
  4637. wvstreams, xmlstarlet, zeromq, zmqpp
  4638. New packages: c-periphery
  4639. Issues resolved (http://bugs.uclibc.org):
  4640. #8106: mkfs.jffs2 uses the --pagesize parameter incorrectly
  4641. #8111: 2015.05.rc2 LIBFOO_CONF_OPTS not working
  4642. #8126: exim lacks plaintext and cram-md5 auth
  4643. 2015.05-rc2, Released May 11th, 2015
  4644. Minor fixes.
  4645. Toolchain: PR56780 backport to GCC 4.8.4 to fix GDB linking
  4646. issues. Context functions enabled for uClibc snapshot /
  4647. uClibc-NG.
  4648. Architectures: Endian handling symbol for Xtensa, binutils
  4649. fixes.
  4650. Infrastructure: Fix for kernel module stripping when
  4651. localversion contains spaces.
  4652. Updated/fixed packages: at, autoconf-archive, binutils,
  4653. cc-tool, cryptsetup, dstat, expedite, freerdp, giflib,
  4654. gnuchess, guile, ipmiutil, iproute2, mono, monolite, neard,
  4655. ola, poppler, postgresql, python-qt, qt, sqlite, valgrind,
  4656. xlib_libXfont
  4657. Issues resolved (http://bugs.uclibc.org):
  4658. #8086: Cannot select systemd as init with Linaro 2014.09...
  4659. 2015.05-rc1, Released May 4th, 2015
  4660. Fixes all over the tree and new features.
  4661. Architectures: Removed AVR32 support, deprecate SH64, added
  4662. support for steamroller, corei7-avx and core-avx2 x86
  4663. variants.
  4664. Toolchains: IPv6 and Largefile support now enforced for
  4665. uClibc. Corresponding Kconfig symbols removed.
  4666. External CodeSourcery AMD64 2014.05, MUSL-cross 1.1.6 added,
  4667. CS sh2, Xilinx microblaze v2/14.3 removed. Distro-class
  4668. external toolchains are now detected and blacklisted.
  4669. Internal toolchain support for Nios2 added, Blackfin
  4670. removed. Aarch64 and sh musl support. uClibc-ng support added.
  4671. Libatomic is now handled for internal and external
  4672. toolchains. Link time optimization (LTO) support.
  4673. New Defconfigs: Freescale i.MX28 EVK, i.MX31 PDK and SABRE
  4674. Auto, Raspberry Pi 2, RIoTboard,
  4675. Infrastructure: Hashes for a large number of packages have
  4676. been added. Missing hashes now stop the build unless
  4677. explicitly disabled.
  4678. Spaces and colons (:) are now supported in package
  4679. versions. Dependencies can now be listed for the patch step
  4680. (<PKG>_PATCH_DEPENDENCIES). Kconfig and Linux kernel
  4681. extensions infrastructure has been added.
  4682. Makedevs now has a recursive (r) option.
  4683. The variable containing the list of packages to build has been
  4684. renamed from TARGETS to PACKAGES.
  4685. Make external-deps / legal-info / source / source-check have
  4686. been reimplemented using the package infrastructure, so their
  4687. output/behaviour may differ from earlier (some packages were
  4688. not included in the past).
  4689. The old insecure DES password encoding is no longer supported.
  4690. U-Boot patch option now support direct references to patch
  4691. files and URLs in addition to directories of patches. The
  4692. i.MX28 SD format (u-boot.sd) is now supported.
  4693. Updated/fixed packages: agentpp, aircrack-ng, alsa-lib,
  4694. alsa-utils, apr-util, apr, atk, autossh, avahi, avrdude,
  4695. bcusdk, bdwgc, bind, binutils, bmon, boost, botan,
  4696. btrfs-progs, busybox, ca-certificates, cairo, can-utils,
  4697. canfestival, ccache, chrony, civetweb, clamav, cmake,
  4698. collectd, connman, copas, crda, cryptodev-linux, cryptsetup,
  4699. cups, czmq, dbus-cpp, dbus-glib, dbus-python, dbus, dfu-util,
  4700. dhcp, dhcpcd, dialog, dillo, dmraid, dnsmasq, dos2unix,
  4701. dosfstools, dovecot-pigeonhole, dovecot, dropbear, dropwatch,
  4702. dtv-scan-tables, dvdauthor, e2fsprogs, ecryptfs-utils,
  4703. libevas, elfutils, enscript, erlang, espeak, eudev, evemu,
  4704. exfat-utils, exim, f2fs-tools, feh, ffmpeg, fftw, flickcurl,
  4705. fltk, fluxbox, fmlib, fmtools, freeradius-client, freerdp,
  4706. gamin, gawk, gcc-final, gcc, gd, gdb, gengetopt, geoip, git,
  4707. glib-networking, gnu-efi, gnuchess, gnutls, gpsd, gptfdisk,
  4708. gpu-viv-bin-mx6q, gst-plugin-bad, gstreamer, gstreamer1,
  4709. gtest, gvfs, harfbuzz, haserl, haveged, hiawatha,
  4710. hicolor-icon-theme, hostapd, hplip, httping, i2c-tools, icu,
  4711. ifplugd, imagemagick, imlib2, iozone, iproute2, iptables,
  4712. iputils, irqbalance, iw, jack2, jhead, jimtcl, json-c, kexec,
  4713. kismet, kmod, kodi-audioencoder-flac,
  4714. kodi-audioencoder-vorbis, kodi-pvr-addons, kodi, ktap, lcms2,
  4715. libass, libatomic_ops, libbluray, libcap, libcgroup, libcurl,
  4716. libdrm, libdvbsi, libebml, libecore, libedit, liberation,
  4717. libev, libevas, libevdev, libftdi, libgcrypt, libglib2,
  4718. libgpgme, libgtk2, libgtk3, libiconv, libidn, libiio,
  4719. libinput, libiscsi, libksba, liblinear, libmatroska,
  4720. libmicrohttpd, libmodbus, libmpdclient, libnice, libnl,
  4721. libnspr, libnss, libpcap, libpciaccess, libphidget, libplayer,
  4722. libpthsem, libqmi, librsvg, libseccomp, libsigrok, libsoup,
  4723. libsrtp, libssh2, libtasn1, libtool, libunistring, liburcu,
  4724. libusb, libuv, libva-intel-driver, libva, libvncserver,
  4725. libvorbis, libvpx, libwebsockets, libxml2, libzip, lightning,
  4726. lighttpd, linknx, linphone, linux-firmware, linux-headers,
  4727. linux-pam, live555, ljsyscall, lmbench, lockdev, logrotate,
  4728. lpc3250loader, lpeg, lsof, lttng-libust, lttng-modules,
  4729. lttng-tools, lua, luacrypto, luafilesystem, luajit, luaposix,
  4730. luarocks, lvm2, lxc, make,
  4731. matchbox-{common,desktop,fakekey,keyboard,lib,startup-monitor,vm},
  4732. matchbox, mcelog, memcached, memstat, memtest86, mesa3d,
  4733. minidlna, mjpegtools, mjpg-streamer, modem-manager, mongoose,
  4734. monit, mono, monolite, mp4v2, mpc, mpd, mpdecimal, mpg123,
  4735. mplayer, musl, nano, nbd, ncftp, ncmpc, ncurses, ne10, neard,
  4736. neardal, net-tools, netatalk, netsnmp, network-manager, nginx,
  4737. nodejs, ntfs-3g, ntp, numactl, odhcp6c, ofono, open2300,
  4738. opencv, openldap, openntpd, openocd, openssh, openssl,
  4739. openswan, opentyrian, openvmtools, openvpn, oprofile, p11-kit,
  4740. pango, patch, patchelf, pciutils, pcre, perf, perl-gdgraph,
  4741. perl-io-socket-ssl, perl-json-tiny, perl-module-build,
  4742. perl-mojolicious, perl-net-ssleay, perl-path-tiny,
  4743. perl-xml-libxml, perl, phidgetwebservice, php-gnupg, php,
  4744. pkgconf, polarssl, poppler, popt, postgresql, powerpc-utils,
  4745. pppd, prboom, procps-ng, proftpd, psplash, ptpd2,
  4746. python-{cheetah,coherence,django,markdown,netifaces,pam,six},
  4747. python-tornado, python-twisted, python-zope-interface, python,
  4748. python3, qemu, qt, qt5, qt5base, qt5multimedia,
  4749. qt5xmlpatterns, qt5cinex, quagga, qwt, radvd, readline,
  4750. rng-tools, rpcbind, rpi-firmware, rpi-userland, rsync,
  4751. rsyslog, rtai, rtmpdump, ruby, sam-ba, samba, samba4,
  4752. sane-backends, sconeserver, shairport-sync, sigrok-cli, slang,
  4753. smcroute, snmppp, socat, socketcand, sofia-sip, sox,
  4754. spawn-fcgi, speex, sqlcipher, sqlite, squid, strace,
  4755. strongswan, stunnel, sudo, sunxi-boards, swig, sysstat,
  4756. systemd, tcpdump, tftpd, thrift, thttpd, ti-gfx, ti-utils,
  4757. tiff, tinyalsa, tn5250, transmission, trinity, tslib,
  4758. tvheadend, tzdata, uboot-tools, uclibc, ulogd, usb_modeswitch,
  4759. usbutils, ustr, util-linux, vala, valgrind, vlc, wayland,
  4760. webp, weston, wget, which, whois, wireless-regdb,
  4761. wireless_tools, wireshark, wpa_supplicant, wvstreams,
  4762. xapp_{bdftopcf,bitmap,fonttosfnt,fslsfonts},
  4763. xapp_{fstobdf,iceauth,mkfontscale,oclock,rgb,sessreg,setxkbmap},
  4764. xapp_{showfont,smproxy,twm,x11perf,xcalc,xclipboard,xcmsdb},
  4765. xapp_{xdbedizzy,xditview,xdpyinfo,xdriinfo,xedit,xev,xeyes},
  4766. xapp_{xf86dga,xfsinfo,xgamma,xgc,xhost,xinit,xinput,xkbcomp},
  4767. xapp_{xkbevd,xkbprint,xlsatoms,xlsfonts,xmag,xman,xmh,xmodmap},
  4768. xapp_xmore, xcb-util-image, xcb-util-keysyms,
  4769. xdata_xcursor-themes,
  4770. xdriver_xf86-input-{evdev,keyboard,synaptics,void},
  4771. xdriver_xf86-video-{ati,cirrus,geode,mach64,mga,neomagic},
  4772. xdriver_xf86-video-{r128,savage,siliconmotion,sis,tdfx},
  4773. xdriver_xf86-video-{trident,vmware,voodoo}, xenomai,
  4774. xfont_font-util, xkeyboard-config,
  4775. xlib_lib{ICE,X11,Xdmcp,Xfont,Xpm,XvMC},
  4776. xlib_lib{Xxf86vm,xshmfence,xtrans}, xproto_randrproto,
  4777. xproto_xproto, xserver_xorg-server, x11vnc, x264, xerces,
  4778. xorriso, xterm, xz, yaml-cpp, zeromq, zic, zmqpp
  4779. New packages: apache, autoconf-archive, batctl,
  4780. bitstream-vera, bullet, cc-tool, doxygen, drbd-utils,
  4781. dvdrw-tools, gnuradio, gst1-imx, hans, hwloc, ijs,
  4782. imx-usb-loader, inconsolata, iodine, iotop, ipmiutil, jsoncpp,
  4783. leveldb, libdcadec, libdri2, libfreeimage, libftdi1,
  4784. libsidplay2, lirc-tools, lua-periphery, mc, mesa3d-headers,
  4785. mosquitto, nvidia-driver, nvidia-tegra23{,-binaries,-codecs},
  4786. openjpeg, opusfile, perl-crypt-openssl-{random,rsa},
  4787. perl-db-file, perl-digest-{hmac,sha1},
  4788. perl-encode-{detect,locale}, perl-file-{listing,util},
  4789. perl-html-{parser,tagset}, perl-http-cookies,
  4790. perl-http-{daemon,date,message,negotiate}, perl-io-html,
  4791. perl-libwww-perl, perl-lwp-mediatypes, perl-mail-dkim,
  4792. perl-mailtools, perl-mime-base64, perl-net-{dns,http},
  4793. perl-netaddr-ip, perl-time-hires, perl-timedate, perl-uri,
  4794. perl-www-robotrules, powertop, pulseview,
  4795. python-{cherrypy,lxml,mako,pyqt,pyxml,sip,spidev,ws4py}, qpdf,
  4796. qt-webkit-kiosk, sl, softether, sysdig, tinyxml2, tor, tovid,
  4797. unixodbc, wf111, wine, libepoxy, xapp_xcompmgr,
  4798. xapp_xfindproxy, xcb-util-cursor, xcb-util-renderutil,
  4799. xdriver_xf86-input-libinput, xdriver_xf86-video-imx{,-viv},
  4800. xproto_xproxymanagementprotocol
  4801. Removed packages: gtk2-theme-hicolor
  4802. Deprecated packages: samba
  4803. Issues resolved (http://bugs.uclibc.org):
  4804. #7478: Multiple chosen python modules are not built due to...
  4805. #7508: Use of BR2_EXTERNAL and dependencies to existing packages
  4806. #7676: Package procps-ng installs binaries to nonsensical folder
  4807. #7724: Startx is not installed in the target
  4808. #7760: botan: wrong prefix in botan-1.10.pc
  4809. #7826: Building of cdparanoia
  4810. #7844: Lua with hard-float on MIPS by buildroot doesn't work
  4811. #7874: X.org configure error
  4812. #7941: glibc-2.20 fails to build for sparc-buildroot-linux-gnu
  4813. #7951: gcc 4.9.2 fails to build for sparc-buildroot-linux-gnu
  4814. #7961: Qt5 fails to build for xtensa-buildroot-linux-uclibc
  4815. #7976: mkuser script fails with: user already exists with...
  4816. #8011: When building only busybox and strace, strace fails...
  4817. #8016: collectd fails to build, network.c:171:19: error:...
  4818. #8041: error on building libcurl7.42.0
  4819. 2015.02, Released March 1st, 2015
  4820. Minor fixes.
  4821. Updated/fixed packages: civetweb, ding-libs,
  4822. directfb-examples, glibc, gnupg, gnupg2, gpm,
  4823. gst-plugins-good, gst1-plugins-good, freetype, libao, libevas,
  4824. libevent, libfribidi, libgcrypt, libgtk2, libshout, libsrtp,
  4825. libtheora, libupnpp, libxmlrpc, linux, make, opus, pinentry,
  4826. rpi-firmware, shared-mime-info, vlc, vorbis-tools,
  4827. xcb-util-keysyms
  4828. Removed packages: libgc
  4829. 2015.02-rc3, Released February 24th, 2015
  4830. Minor fixes.
  4831. Cmake and rebar (erlang) infrastructure fixes.
  4832. Updated/fixed packages: bind, btrfs-progs, busybox, e2fsprogs,
  4833. evtest, ffmpeg, fltk, gnutls, i2c-tools, imagemagick, libxcb,
  4834. make, mjpg-streamer, netsnmp, opentyrian, php, polarssl,
  4835. qt5base, samba, samba4, sudo, util-linux, xserver_xorg-server
  4836. 2015.02-rc2, Released February 15th, 2015
  4837. Minor fixes.
  4838. raspberrypi: fix kernel sha1 for DT variant.
  4839. Updated/fixed packages: dbus, dvdauthor, git, libsemanage,
  4840. libsepol, libssh2, mplayer, ntp, openvmtools, python3,
  4841. qt5base, qt5connectivity, xserver_xorg-server
  4842. 2015.02-rc1, Released February 8th, 2015
  4843. Fixes all over the tree and new features.
  4844. Static/shared library handling reworked. This is now a
  4845. tristate (shared only / shared and static / static
  4846. only). Default is now shared only to speed up the
  4847. build. BR2_PREFER_STATIC_LIB is now called BR2_STATIC_LIBS.
  4848. The toolchain (internal and external) will now warn when an
  4849. unsafe library or header path is used (such as /usr/include or
  4850. /usr/lib). If BR2_COMPILER_PARANOID_UNSAFE_PATH is enabled
  4851. under build options this instead becomes an error.
  4852. A installation path issue with the internal musl toolchain
  4853. support has been fixed so it is now possible to reuse it as an
  4854. external toolchain.
  4855. Architectures: Freescale E5500 and E6500 PowerPC support
  4856. added, deprecated MIPS 1/2/3/4 support removed.
  4857. New defconfigs: Freescale p2020ds, MIPS creator CI20,
  4858. Raspberrypi with DT, UDOO Quad.
  4859. 'make <foo>_defconfig' now saves the path to the defconfig in
  4860. the .config, so a 'make savedefconfig' automatically updates
  4861. it.
  4862. Infrastructure for packages using the Erland rebar tool has
  4863. been added.
  4864. Hashes for a large number of packages have been added. Hashes
  4865. are now checked for both target and host packages.
  4866. The system menu now has an option to automatically configure a
  4867. network interface through DHCP at bootup.
  4868. The default filesystem skeleton now uses a separate tmpfs for
  4869. /run instead of a symlink to /tmp/ for security reasons / to
  4870. protect against conflicts with user generated temporary files.
  4871. BR2_EXTERNAL is now exported to post-build and post-image
  4872. scripts.
  4873. New packages: bdwgc, benejson, blktrace, bootstrap, cgic,
  4874. ding-libs, dvdauthor, ejabberd, erlang-goldrush, erlang-lager,
  4875. erlang-p1-cache-tab, erlang-p1-iconv, erlang-p1-sip,
  4876. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  4877. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml,
  4878. erlang-p1-zlib, exiv2, freeradius-client, gengetopt, glmark2,
  4879. gpu-amd-bin-mx51, guile, host-qemu, ifupdown, iperf3,
  4880. janus-gateway, kodi, kodi-audioencoder-flac,
  4881. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  4882. kodi-audioencoder-wav, libcli, libiio, liblinear, libnice,
  4883. libselinux, libsemanage, libserialport, libsigro,
  4884. libsigrokdecode, libsrtp, liburiparser, libvips, libwebsock,
  4885. libz160, libzip, lightning, mcelog, memtest86, mjpegtools,
  4886. mjpg-streamer, mke2img, mpd-mpc, netsurf-buildsystem, odhcp6c,
  4887. openldap, python-alsaaudio, python-certifi, python-cheetah,
  4888. python-coherence, python-django, python-docopt, python-enum,
  4889. python-enum34, python-flask, python-gobject, python-httplib2,
  4890. python-ipaddr, python-itsdangerous, python-jinja,
  4891. python-markdown, python-markupsafe, python-networkmanager,
  4892. python-pam, python-psutil, python-pyftpdlib, python-pyinotify,
  4893. python-pysendfile, python-pyxb, python-requests, python-six,
  4894. python-twisted, python-webpy, python-werkzeug,
  4895. python-zope-interface, qt5cinex, sigrok-cli, sofia-sip,
  4896. start-stop-daemon, szip, triggerhappy, ustr, vnstat, xorriso,
  4897. xtables-addons
  4898. Removed packages (target): bison, distcc, gob2, m4
  4899. Issues resolved (http://bugs.uclibc.org):
  4900. #7556: make interactive CLI optional for nftables
  4901. #7730: Error while connecting Qt Cretaor to device
  4902. #7766: logrotate default gzip path is usually wrong
  4903. #7790: Invalid ext4 image generated by Buildroot
  4904. 2014.11, Released December 1st, 2014
  4905. Minor fixes.
  4906. Infrastructure: LD_LIBRARY_PATH handling tweak to ensure
  4907. current working directory isn't searched.
  4908. Updated/fixed packages: gd, gdb, libwebsockets, luajit, mono,
  4909. parted, shairport-sync, util-linux, xapp_bdftopcf,
  4910. xserver_xorg-server
  4911. 2014.11-rc3, Released November 28th, 2014
  4912. Fixes all over the tree.
  4913. System: File permissions of /etc/random-seed made more
  4914. restrictive.
  4915. Toolchain: Various fixes related to locale handling, a fix for
  4916. building the toolchain wrapper on MIPS.
  4917. Updated/fixed packages: bind, binutils. botan, btrfsprogs,
  4918. clamav, czmq, dhcp, dillo, dovecot, erlang, flac, gd, glibc,
  4919. gptfdisk, gst1-validate, heirloom-mailx, lame, libksba,
  4920. libllcp, libnspr, libpng, libshairplay, libtirpc, linux,
  4921. linux-headers, mpdecimal, mpg123, network-manager, nfstables,
  4922. nfs-utils, openssl, pcituils, qt, radvd, rtai, sqlcipher,
  4923. sstrip, tcpdump, uclibc, uemacs, ushare, wayland, weston,
  4924. xl2tp, xserver_xorg-server
  4925. Issues resolved (http://bugs.uclibc.org):
  4926. #7670: Fails to build mpc-1.0.2 on latest Cygwin
  4927. 2014.11-rc2, Released November 21st, 2014
  4928. Fixes all over the tree.
  4929. Inittab tweaks for shutdown handling (busybox and sysvinit).
  4930. Updated/fixed packages: aircrack-ng, botan, canfestival,
  4931. clamav, coreutils, czmq, dbus, dovecot, duma, e2fsprogs,
  4932. erlang, gcc, iputils, libcap, libgcrypt, libmemcached,
  4933. libssh2, libunwind, libv4l, linux-headers, mesa3d-demos, mutt,
  4934. mysql, ndisc6, nodejs, omniorb, perl-cross, php,
  4935. python-tornado, python3, qemu, qt5base, qt5webkit, rpm,
  4936. rt-tests, ruby, schifra, sdl_sound, shairport-sync, sysvinit,
  4937. tstools, tzdata, wireshark, x264
  4938. Issues resolved (http://bugs.uclibc.org):
  4939. #7646: strftime on datetime not works on python3
  4940. 2014.11-rc1, Released November 12th, 2014
  4941. Fixes all over the tree and new features.
  4942. Toolchains: Use -mcpu / -march instead of -mtune. Support
  4943. additional ARC and sparc variants. Updated Code sourcery
  4944. and Linaro external toolchains.
  4945. Defconfigs: Freescale iMX6DL SabreSD, Minnowboard MAX, QEMU
  4946. powerpc64 pseries added and a number of updates to the
  4947. existing configurations.
  4948. Infrastructure: Buildroot is now less noisy when built with
  4949. the silent option (make -s).
  4950. A number of package infrastructure variables have been renamed
  4951. from *_OPT to *_OPTS for constency. Buildroot will complain if
  4952. the old names are used to assist in updating out of tree
  4953. packages.
  4954. Fixes for host systems where bash isn't located in /bin, and
  4955. older systems not supporting mktemp --tmpdir.
  4956. Various cleanups of users/groups in the default skeleton.
  4957. There is now an option to choose what shell /bin/sh points to.
  4958. Documentation: Various updates to the user manual. The
  4959. asciidoc documentation handling has now been extended so it
  4960. can be used by (BR2_EXTERNAL) packages.
  4961. Updated/fixed packages: acl, acpid, agentpp, aircrack-ng,
  4962. alsa-lib, alsamixergui, alsa-utils, apitrace, apr, apr-util,
  4963. argus, arptables, at, atftp, atk, attr, audiofile, aumix,
  4964. automake, autossh, avahi, avrdude, axel, bandwidthd, bash,
  4965. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  4966. bluez_utils, bmon, boost, bootutils, bridge-utils,
  4967. btrfs-progs, busybox, bwm-ng, bzip2, ca-certificates, cairo,
  4968. ccache, ccid, ccrypt, cdrkit, cegui06, celt051, chrony,
  4969. cifs-utils, civetweb, cjson, clapack, classpath, cloog, cmake,
  4970. collectd, connman, copas, coreutils, coxpcall, cppcms, cppdb,
  4971. cppzmq, cramfs, crda, cryptsetup, ctorrent, cups, cvs, cwiid,
  4972. czmq, dash, dbus, dbus-cpp, dbus-glib, dbus-python, dejavu,
  4973. dhcp, dhcpcd, dhcpdump, dialog, dillo, directfb, distcc,
  4974. dmalloc, dmidecode, dmraid, dnsmasq, doc-asciidoc.mk,
  4975. dosfstools, dropbear, dropwatch, dstat, dtach, dtc, dvbsnoop,
  4976. e2fsprogs, ecryptfs-utils, ed, efl, eigen, elf2flt, elfutils,
  4977. enlightenment, enscript, erlang, espeak, ethtool, eudev,
  4978. evemu, evtest, exfat, exfat-utils, exim, expat, expect,
  4979. explorercanvas, faifa, fakeroot, fan-ctrl, fbdump,
  4980. fb-test-app, fetchmail, ffmpeg, file, filemq, findutils, flac,
  4981. flann, flickcurl, flite, fltk, fluxbox, fmc, fmlib,
  4982. fontconfig, foomatic-filters, freerdp, freescale-imx,
  4983. freetype, ftop, fxload, gamin, gcc, gd, gdb, gdk-pixbuf,
  4984. genimage, genpart, genromfs, geoip, gettext, giblib, git,
  4985. glibc, glib-networking, gmp, gmpc, gnu-efi, gnupg, gnupg2,
  4986. gnuplot, gnutls, google-breakpad, gpm, gpsd, gptfdisk,
  4987. gpu-viv-bin-mx6q, grantlee, grep, gsl, gst1-libav,
  4988. gst1-plugins-{bad,base,good,ugly}, gst-ffmpeg,
  4989. gst-fsl-plugins, gst-omx, gst-plugins-{bad,base,good,ugly},
  4990. gst-plugin-x170, gstreamer, gstreamer1, gtest, gtk2-engines,
  4991. gutenprint, gvfs, harfbuzz, haserl, haveged, hdparm, heimdal,
  4992. heirloom-mailx, hiawatha, hostapd, hplip, htop, httping,
  4993. hwdata, i2c-tools, icu, ifplugd, igh-ethercat, imagemagick,
  4994. imlib2, imx-lib, imx-vpu, inadyn, inotify-tools, input-tools,
  4995. intltool, iperf, iproute2, iprutils, ipsec-tools, ipset,
  4996. iptables, iputils, iw, jamvm, jansson, jasper, jimtcl, joe,
  4997. jpeg-turbo, jq, jquery-keyboard, jquery-mobile, jquery-ui,
  4998. jquery-ui-themes, jquery-validation, jsmin, json-c,
  4999. json-javascript, kbd, kexec, kexec-lite, keyutils, kismet,
  5000. kmod, knock, ktap, lame, lbase64, lbreakout2, lcdproc, lcms2,
  5001. lesstif, lftp, libaio, libao, libarchive, libargtable2,
  5002. libass, libassuan, libatasmart, libbluray, libbsd, libcap,
  5003. libcap-ng, libcdio, libcec, libcgicc, libcgroup, libcofi,
  5004. libconfig, libconfuse, libcurl, libdaemon, libdnet, libdrm,
  5005. libdvdnav, libecore, libedbus, libedit, libedje, libeet,
  5006. libelementary, libelf, libenca, libethumb, libevas,
  5007. libevas-generic-loaders, libevent, libexif, libeXosip2,
  5008. libffi, libftdi, libfuse, libgail, libgcrypt, libgeotiff,
  5009. libglade, libglib2, libgpgme, libgtk2, libhid, libidn,
  5010. libinput, libiscsi, libjson, libksba, liblockfile,
  5011. liblog4c-localtime, liblogging, libmad, libmatroska, libmbim,
  5012. libmemcached, libmicrohttpd, libmpdclient, libmpeg2, libndp,
  5013. libnfc, libnfs, libnftnl, libnl, libnspr, libnss, liboauth,
  5014. libogg, liboping, libosip2, libpcap, libpciaccess, libpfm4,
  5015. libplayer, libplist, libpng, libpthsem, libqmi, libqrencode,
  5016. libraw, libreplaygain, libroxml, librsvg, librtlsdr,
  5017. libsamplerate, libseccomp, libsecret, libshairplay, libsoc,
  5018. libsoup, libsoxr, libssh2, libstrophe, libsvg, libsvg-cairo,
  5019. libtasn1, libtheora, libtirpc, libtorrent, libubox, libuci,
  5020. libungif, liburcu, libusb, libuv, libv4l, libva,
  5021. libva-intel-driver, libvncserver, libvorbis, libvpx,
  5022. libwebsockets, libxcb, libxml2, libxml-parser-perl, libxmlrpc,
  5023. libxslt, lighttpd, linenoise, linknx, links, linphone,
  5024. linux-firmware, linux-fusion, linux-headers, linux-pam,
  5025. linux-zigbee, lite, live555, ljlinenoise, lmbench, lm-sensors,
  5026. localedef, lockdev, lockfile-progs, log4cxx, lpty, lrandom,
  5027. lrzsz, lshw, lsof, lsqlite3, ltp-testsuite, ltrace, ltris,
  5028. lttng-babeltrace, lttng-libust, lttng-modules, lttng-tools,
  5029. lua, luabitop, lua-coat, lua-coatpersistent, lua-csnappy,
  5030. lua-ev, luajit, luajson, lualogging, lua-messagepack,
  5031. lua-msgpack-native, luaposix, luarocks, luasec, luasocket,
  5032. luasql-sqlite3, lua-testmore, lunit, lvm2, lxc, lz4, lzlib,
  5033. lzma, m4, madplay, make, makedevs, Makefile.in,
  5034. matchbox-common, matchbox-desktop, matchbox-fakekey,
  5035. matchbox-keyboard, matchbox-lib, matchbox-panel,
  5036. matchbox-startup-monitor, matchbox-wm, mcrypt, mdadm,
  5037. media-ctl, mediastreamer, memcached, memstat, memtester,
  5038. mesa3d, metacity, midori, mii-diag, minidlna, mmc-utils,
  5039. modem-manager, mongoose, mongrel2, monit, mpc, mpd, mpdecimal,
  5040. mpfr, mpg123, mplayer, mrouted, msmtp, mtd, mtools, mtr,
  5041. musepack, musl, mutt, mxml, mysql, nano, nanocom, nbd, ncftp,
  5042. ncurses, ndisc6, ne10, neard, neon, netatalk, netperf,
  5043. netsnmp, nettle, net-tools, network-manager, newt, nfs-utils,
  5044. ngrep, nmap, nodejs, nss-mdns, ntfs-3g, ntp, numactl, nut,
  5045. nuttcp, ofono, ola, omap-u-boot-utils, omniorb,
  5046. on2-8170-modules, opencore-amr, opencv, openntpd, openobex,
  5047. openocd, openpowerlink, openssh, openssl, openswan,
  5048. opentyrian, opentyrian-data, openvpn, opkg, oprofile, opus,
  5049. opus-tools, orbit, orc, ortp, p11-kit, pango, parted,
  5050. pciutils, pcmanfm, pcre, pcsc-lite, perf, perl, perl-gd,
  5051. perl-gdgraph, perl-io-socket-ssl, perl-json-tiny,
  5052. perl-module-build, perl-mojolicious, perl-net-ssleay,
  5053. perl-path-tiny, perl-xml-libxml, perl-xml-parser, php,
  5054. php-geoip, php-gnupg, php-imagick, php-memcached, php-ssh2,
  5055. php-yaml, php-zmq, picocom, pifmrds, pinentry, pixman,
  5056. pkg-autotools.mk, pkg-cmake.mk, pkg-download.mk,
  5057. pkg-generic.mk, pkg-kconfig.mk, pkg-luarocks.mk, pkg-perl.mk,
  5058. pkg-python.mk, pkg-utils.mk, poco, polarssl, polkit, poppler,
  5059. popt, portaudio, portmap, postgresql, powerpc-utils, pppd,
  5060. pptp-linux, prboom, procps-ng, proftpd, protobuf, protobuf-c,
  5061. psmisc, ptpd2, pulseaudio, pv, pwgen, python, python3,
  5062. python-dialog, python-ipy, python-keyring, python-mad,
  5063. python-netifaces, python-numpy, python-protobuf, python-pyasn,
  5064. python-pyparsing, python-pyro, python-pyusb, python-serial,
  5065. python-setuptools, qdecoder, qemu, qextserialport, qjson, qt,
  5066. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  5067. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  5068. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  5069. qt5serialport, qt5svg, qt5webkit, qt5webkit-examples,
  5070. qt5websockets, qt5x11extras, qt5xmlpatterns, qtuio, quagga,
  5071. quota, qwt, radvd, rapidjson, rdesktop, redis, rings, rpcbind,
  5072. rpi-firmware, rpi-userland, rpm, rp-pppoe, rrdtool,
  5073. rsh-redone, rsync, rsyslog, rtai, rtmpdump, rt-tests, rubix,
  5074. ruby, samba, sam-ba, samba4, sane-backends, schifra,
  5075. sconeserver, scons, screen, sdl, sdl_gfx, sdl_image,
  5076. sdl_mixer, sdl_net, sdl_sound, sdl_ttf, sed, ser2net,
  5077. setserial, sg3_utils, shared-mime-info, simicsfs, sispmctl,
  5078. slang, slirp, smcroute, smstools3, snmppp,
  5079. snowball-hdmiservice, socat, socketcand, sox, spawn-fcgi,
  5080. speex, spice, spice-protocol, sqlcipher, sqlite, squashfs,
  5081. squid, sredird, startup-notification, strace, stress,
  5082. strongswan, stunnel, subversion, sudo, sunxi-boards,
  5083. sunxi-cedarx, swig, sylpheed, synergy, sysklogd, sysstat,
  5084. systemd, sysvinit, taglib, tar, tcl, tcllib, tcpdump,
  5085. tcpreplay, texinfo, tftpd, thrift, thttpd, tiff, ti-utils,
  5086. tn5250, torsmo, trace-cmd, transmission, tslib, tstools,
  5087. tvheadend, twolame, tz, uboot-tools, uclibc, udisks, ulogd,
  5088. upmpdcli, upx, urg, usb_modeswitch, usbmount, usbredir,
  5089. usbutils, util-linux, valgrind, vde2, vim, vlc, vo-aacenc,
  5090. vorbis-tools, vpnc, vsftpd, vtun, wayland, webkit, webp,
  5091. webrtc-audio-processing, weston, wget, whois, wireless-regdb,
  5092. wireshark, wpa_supplicant, wvstreams, x11r7, x11vnc,
  5093. xapp_xcalc, xapp_xdm, xapp_xdpyinfo, xapp_xf86dga, xapp_xfs,
  5094. xapp_xinit, xapp_xkbevd, xapp_xmh, xapp_xrandr, xapp_xsm,
  5095. xbmc, xbmc-pvr-addons, xcb-proto, xcursor-transparent-theme,
  5096. xdriver_xf86-input-mouse, xdriver_xf86-video-{ast,intel},
  5097. xdriver_xf86-video-vmware, xenomai, xerces,
  5098. xfont_font-adobe-{100,75}dpi,
  5099. xfont_font-adobe-utopia-{100dpi,75dpi,type1},
  5100. xfont_font-alias, xfont_font-arabic-misc,
  5101. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  5102. xfont_font-bh-lucidatypewriter-100dpi,
  5103. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  5104. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  5105. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  5106. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  5107. xfont_font-daewoo-misc, xfont_font-dec-misc,
  5108. xfont_font-ibm-type1, xfont_font-isas-misc,
  5109. xfont_font-jis-misc, xfont_font-micro-misc,
  5110. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  5111. xfont_font-misc-meltho, xfont_font-misc-misc,
  5112. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  5113. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  5114. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  5115. xfont_font-xfree86-type1, xfsprogs, xinetd, xkeyboard-config,
  5116. xlib_libdmx, xlib_libFS, xlib_libpciaccess, xlib_libSM,
  5117. xlib_libX11, xlib_libXaw, xlib_libXext, xlib_libXfont,
  5118. xlib_libXi, xlib_libXinerama, xlib_libXrandr, xlib_libXrender,
  5119. xlib_libXres, xlib_libXScrnSaver, xlib_libXt, xlib_libXv,
  5120. xlib_libXvMC, xlib_libXxf86dga, xlib_libXxf86vm, xmlstarlet,
  5121. xproto_xcmiscproto, xproto_xextproto, xscreensaver,
  5122. xserver_xorg-server, xterm, xz, zeromq, zlib, zlog, zmqpp,
  5123. znc, zsh, zxing
  5124. New packages: adwaita-icon-theme, am335x-pru-package,
  5125. bcache-tools, biosdevname, botan, canfestival, clamav,
  5126. cppunit, dos2unix, dovecot, dovecot-pigeonhole, getent, glm,
  5127. gst1-validate, hicolor-icon-theme, ipmitool, leafnode2,
  5128. libdvbcsa, libgtk3, libphidget, libshout, libunistring,
  5129. libupnpp, mesa3d-demos, modplugtools, mono, monolite, mp4v2,
  5130. netcat-openbsd, nginx, odhcploc, openvmtools,
  5131. phidgetwebservice, pps-tools, pure-ftpd,
  5132. python-configshell-fb, python-rtslib-fb, python-urwid, qlibc,
  5133. qt5location, shairport-sync, spidev_test, targetcli-fb,
  5134. tinyalsa, trinity, x264, yaml-cpp, ympd
  5135. Removed packages: libelf
  5136. Issues resolved (http://bugs.uclibc.org):
  5137. #261: New package: wxWidgets
  5138. #325: New package: ratpoison
  5139. #405: New package: OpenVZ tools
  5140. #1309: New package: rdiff-backup
  5141. #3427: New package: nginx
  5142. #3655: New package: libav
  5143. #3991: New Package: open-vm-tools (Vmware Tools)
  5144. #6878: dmraid: disabled on ARC
  5145. #6950: Full unicode support in ncurses
  5146. #7010: jamvm builds and runs fine under mips (be)
  5147. #7088: elfutils on Blackfin doesn't build
  5148. #7142: ecryptfs needs getent to run
  5149. #7280: CMake toolchain file uses the FORCE attribute on CMAKE_CXX_FLAGS
  5150. #7346: [2014.08rc3] vim-8ae50e3ef8bf.tar.gz can not be downloaded, ...
  5151. #7352: [2014.08-rc3] diffutils-3.3 failed on building
  5152. #7358: rpi-userland: linking with bcm_host doesn't give vc_dispmanx_*
  5153. #7364: monit builds a static application, even though BR2_PREFER_...
  5154. #7370: ngrep - requires --with-pcap-includes fully defined to find...
  5155. #7442: rootfs remount does not work as expected with sysvinit
  5156. #7448: Having export MACHINE="something" breaks glibc build on IMX6...
  5157. #7568: musl buildroot-toolchain does not put libgcc_s.so.1 into place
  5158. #7574: quota-4.01 fails to build statically
  5159. 2014.08, Released September 1st, 2014
  5160. Minor manual fixes/additions.
  5161. Updated/fixed packages: btrfs-progs, cmake, cppcms, exim,
  5162. lftp, libdaemon, libev, libgpgme, libiqrf, libnl, libplist,
  5163. libroxml, libwebsockets, mesa3d, mpd, mtdev2tuio, musepack,
  5164. perl-gd, php-geoip, php-gnupg, php-imagick, php-memcached,
  5165. php-ssh2, php-yaml, php-zmq, polarssl, ruby, systemd, taglib,
  5166. uboot-tools, upmpdcli, webkit, xapp_xfs, xapp_luit,
  5167. xscreensaver, yajl
  5168. Issues resolved (http://bugs.uclibc.org):
  5169. #7346: vim-8ae50e3ef8bf.tar.gz can not be downloaded, 404 not found
  5170. 2014.08-rc3, Released August 26th, 2014
  5171. Minor fixes.
  5172. User manual update / restructuring.
  5173. Updated/fixed packages: cairo, ecryptfs-utils, gettext,
  5174. gstreamer, gstreamer1, gutenprint, icu, imagemagick, jack2,
  5175. lbreakout2, libevas-generic-loaders, libftdi, libinput,
  5176. libtorrent, ltris, msgpack, ntp, php, procps-ng, pulseaudio,
  5177. thrift, tvheadend, usb_modeswitch, xmlstarlet,
  5178. Issues resolved (http://bugs.uclibc.org):
  5179. #7136: ecryptfs-utils needs gettext to run when glibc/eglibc...
  5180. #7322: libgomp dependency issue with imagemagick
  5181. #7328: Git dl of versions in x/y broken
  5182. 2014.08-rc2, Released August 18th, 2014
  5183. Fixes all over the tree.
  5184. User manual restructured / reworked.
  5185. Toolchain: Fix for C++ exceptions / pthread_exit() on
  5186. uClibc/glibc, C++-11 features with uClibc.
  5187. Updated/fixed packages: bandwidthd, bluez5_utils, empty,
  5188. espeak, fbv, ffmpeg, gd, gnupg2, gst1-plugin-good, iftop,
  5189. infozip, libcuefile, libeml, libnftl, localedef, ltrace,
  5190. matchbox, mpd, network-manager, nftables, ngrep, nut, openssl,
  5191. oprofile, perl, perl-net-ssleay, postgresql, pppd, procps-ng,
  5192. qt, subversion, synergy, systemd, tar, tftpd, webkit,
  5193. xapp_rstart, xbmc, xbmc-pvr-addons
  5194. Issues resolved (http://bugs.uclibc.org):
  5195. #7124: Use BR toolchain externally results a non-bootable...
  5196. #7208: Glibc C++ aplications crash if they use exceptions
  5197. #7250: Cannot build with -std=c++11
  5198. #7262: Generating locale en_US.UTF-8 fails on 64bit fedora..
  5199. #7286: systemd 215 doesn't build
  5200. 2014.08-rc1, Released August 8th, 2014
  5201. Fixes all over the tree and new features.
  5202. Architecture: Powerpc64 BE/LE added, AVR32 deprecated.
  5203. Improved altivec / SPE /atomic instructions
  5204. handling. Additional PowerPC CPU variants added.
  5205. Defconfigs: Atmel SAMA5D3, Congatec QMX6, Lego ev3, TS-5x00,
  5206. qemu-system-xtensa, qemu-aarch64-virt added. A number of
  5207. tweaks to existing ones. lpc32xx defconfigs removed.
  5208. Toolchain: Microblaze support for internal musl toolchain.
  5209. Default to GCC 4.8 for internal toolchain, remove deprecated
  5210. 4.3 and 4.6 versions.
  5211. External CodeSourcery / Linaro toolchain updates, option to
  5212. copy gconv libraries for external toolchains.
  5213. Infrastructure: graph-depends: misc fixes, transitive
  5214. dependencies are not drawn by default. Download handling is
  5215. now done using helper scripts. Integrity of downloads can now
  5216. be verified using sha* hashes. Subversion download now uses
  5217. peg revisions for robustness.
  5218. Legal-info: License info of local or overridden packages are
  5219. saved as well. Toolchain packages are also taken into account.
  5220. autotools: Static linking with libtool / v1.5 improvements.
  5221. Gettextize support, similar to autoreconf.
  5222. kconfig package infrastructure added.
  5223. Misc: Version selection for busybox dropped.
  5224. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  5225. alsamixergui, argus, armadillo, at, atftp, atk, avahi,
  5226. avrdude, axel, b43-firmware, b43-fwcutter, bandwidthd, bc,
  5227. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  5228. bmon, boa, bonnie, bootutils, bsdiff, btrfs-progs, bustle,
  5229. busybox, bwm-ng, bzip2, ca-certificates, cairo, can-utils,
  5230. ccache, ccrypt, chrony, cifs-utils, classpath, cloog, cmake,
  5231. collectd, connman, coreutils, cosmo, cppcms, cramfs, crda,
  5232. cryptodev-linux, cryptodev, ctorrent, cvs, dbus-cpp,
  5233. dbus-glib, dbus-python, dbus, dcron, dejavu, devmem2,
  5234. dfu-util, dhcp, dhcpcd, dhcpdump, dhrystone, dialog, dillo,
  5235. distcc, dmidecode, dmraid, dnsmasq, doom-wad, dropbear,
  5236. dropwatch, dsp-tools, dtv-scan-tables, dvb-apps, e2fsprogs,
  5237. e2tools, eeprog, eigen, elf2flt, elftosb, enlightenment,
  5238. enscript, espeak, ethtool, eudev, evemu, exim, expedite,
  5239. explorercanvas, ezxml, faifa, fan-ctrl, fconfig, feh,
  5240. fetchmail, ffmpeg, fftw, file, fio, fis, flann, flashrom,
  5241. flex, flot, fltk, fontconfig, freerdp, freescale-imx,
  5242. freetype, ftop, gcc, gd, gdb, genimage, genromfs, gettext,
  5243. giblib, glib-networking, glibc, gmp, gnupg, gnutls, gpm, gpsd,
  5244. gptfdisk, gpu-viv-bin-imx6q, gqview, grantlee, gst-ffmpeg,
  5245. gst-fsl-plugins, gst1-libav, gst1-plugins-bad,
  5246. gst1-plugins-ugly, gtk2-engines, gtk2-theme-hicolor, gtkperf,
  5247. gvfs, haserl, hdparm, hostapd, httping, i2c-tools, icu,
  5248. imagemagick, imx-lib, inadyn, inotify-tools, input-tools,
  5249. ipkg, iproute2, iputils, irda-utils, iw, jack2, jpeg, jquery,
  5250. jquery-keyboard, jquery-mobile, jquery-validation, jsmin, kbd,
  5251. kexec, kmod, knock, latencytop, lcdapi, leafpad, lesstif,
  5252. lftp, libaio, libarchive, libargtable2, libart, libatasmart,
  5253. libatomic_ops, libbsd, libcap-ng, libcec, libcgicc, libcgroup,
  5254. libconfuse, libcurl, libdrm, libdvdnav, libdvdread,
  5255. libeXosip2, libedit, liberation, libesmtp, libev, libevas,
  5256. libevdev, libevent, libfcgi, libffi, libfreefare, libfslcodec,
  5257. libfslparser, libfslvpuwrap, libgail, libgcrypt, libglade,
  5258. libglib2, libgpgme, libgtk2, libhid, libical, libiconv,
  5259. libiqrf, libjpeg, liblog4c-localtime, libmbus, libmicrohttpd,
  5260. libmms, libndp, libnftnl, libnl, libnspr, libnss, liboauth,
  5261. libpcap, libpng, libpthsem, libqmi, libraw, libraw1394,
  5262. librsvg, libsoc, libsoup, libsvgtiny, libsysfs, libtasn1,
  5263. libtirpc, libtorrent, libusb, libv4l, libwebsockets, libxcb,
  5264. libxml2, libyaml, links, linux-firmware, linux-fusion,
  5265. linux-headers, linux-pam, lite, live555, lm-sensors,
  5266. lockfile-progs, lpc3250loader, lshw, lsof, lsuio, ltrace,
  5267. ltris, lua-messagepack, luainterpreter, luajit, luaposix,
  5268. luarocks, lvm2, lxc, lz4, lzo, make, makedevs, mdadm,
  5269. mediastreamer, mesa3d, metacity, minidlna, mkpasswd,
  5270. modem-manager, mongoose, mpd, mpg123, msgpack, mtd, mtools,
  5271. mtr, musepack, musl, mysql, nano, nasm, nbd, ncurses, ndisc6,
  5272. netatalk, netplug, network-manager, nftables, ngircd, nodejs,
  5273. nss-mdns, ntp, nut, olsr, open2300, opencv, openntpd, openocd,
  5274. openpgm, openpowerlink, openssh, openssl, openswan, openvpn,
  5275. opkg, oprofile, opus-tools, orc, p910nd, pango, parted,
  5276. pax-utils, pcmanfm, perf, perl, perl-module-build, php,
  5277. pixman, pkgconf, poco, polarssl, popt, portmap, postgresql,
  5278. prboom, protobuf-c, proxychains-ng, psmisc, psplash, ptpd2,
  5279. python,
  5280. python-{bottle,dpkt,id3,mad,msgpack,nfc,pygame,pyzmq,simplejson},
  5281. python3, qhull, qt, qt5base, qt5connectivity, qt5declarative,
  5282. qt5graphicaleffects, qt5multimedia, qt5quickcontrols,
  5283. qt5sensors, qt5svg, qt5webkit, quagga, quota, radvd, rdesktop,
  5284. read-edid, rpcbind, rpi-firmware, rpi-userland, rpm,
  5285. rsh-redone, rsync, rt-tests, rtmpdump, rtorrent, rubix, ruby,
  5286. samba, samba4, sane-backends, sawman, sconeserver, setserial,
  5287. sg3_utils, shared-mime-info, smartmontools, smcroute, snappy,
  5288. socketcand, spawn-fcgi, sqlite, squashfs, squid, sredird,
  5289. startup-notification, statserial, strongswan, stunnel,
  5290. sunxi-mali, supervisor, synergy, sysklogd, sysprof, sysstat,
  5291. systemd, tcpdump, tcpreplay, texinfo, thrift, thttpd, ti-gfx,
  5292. ti-utils, tinyhttpd, torsmo, trace-cmd, transmission, tslib,
  5293. tstools, tvheadend, tzdata, uboot-tools, uclibc, udev,
  5294. udpcast, usb_modeswitch, usbmount, util-linux, valgrind, vim,
  5295. vlc, w_scan, wayland, webrtc-audio-processing, weston, wget,
  5296. wireless-regdb, wireless_tools, wireshark, wpa_supplicant,
  5297. xapp_{twm,xconsole,xcursorgen,xedit,xfs,xinit,xrandr},
  5298. xdriver_xf86-video-intel, xlib_lib{FS,ICE,Xext,Xfont,Xft,Xi},
  5299. xproto_fontsproto, xproto_inputproto, xserver_xorg-server,
  5300. x11vnc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons, xterm, xvkbd,
  5301. xz
  5302. New packages: flickcurl, fmc, fmlib, geoip, gnupg2,
  5303. google-breakpad, imx-vpu, isl, kexec-lite, libglew, libglu,
  5304. libinput, libksba, libmemcached, libmpdclient, librtlsdr,
  5305. libuv, libva, libva-intel-driver, linux-zigbee, memcached,
  5306. mpdecimal, ncmpc, opencore-amr, patchelf, perl-datetime-tiny,
  5307. perl-gd, perl-gdgraph, perl-gdtextutil, perl-io-socket-ssl,
  5308. perl-json-tiny, perl-mojolicious, perl-net-ssleay,
  5309. perl-path-tiny, perl-try-tiny, perl-xml-libxml,
  5310. perl-xml-namespacesupport, perl-xml-sax, perl-xml-sax-base,
  5311. php-geoip, php-memcached, pifmrds, pinentry, powerpc-utils,
  5312. procps-ng, pwgen, python-cffi, python-daemon, python-flup,
  5313. python-ipython, python-numpy, qt5enginio, qt5webkit-examples,
  5314. qt5websockets, simicsfs, sispmctl, sox, sshpass, tclap,
  5315. twolame, upmpdcli, whois, xlib_libxshmfence, xproto_dri3proto
  5316. Removed packages: procps
  5317. Issues resolved (http://bugs.uclibc.org):
  5318. #5750: Doing a Buildroot build from /usr doesn't work
  5319. #5900: config flags to the Xenomai build system
  5320. #6230: Cannot compile gcc without threads (uClibc-based)
  5321. #6626: procps Unknown HZ value! (XX) Assume 100
  5322. #7118: Package "thrift" requires atomic operations
  5323. #7154: Local uClibc config file gets overwritten using ...
  5324. #7160: host-xz not built
  5325. #7166: hostapd: segfault when using RT5370
  5326. #7172: Name collision of rpath token expansion and internal..
  5327. #7178: NTPd package cannot sync time without a proper ntp.conf
  5328. #7184: supervisord depends on libxml2 implicitly
  5329. #7196: Unable to build on UBUNTU13.10
  5330. #7268: python 2.7 compilation issue on a Debian/Ubuntu ...
  5331. 2014.05, Released May 31st, 2014
  5332. Minor fixes.
  5333. Minor manual fixes. U-Boot now defaults to spl/u-boot-spl.bin
  5334. for the spl file.
  5335. Updated/fixed packages: exim, glibc, gnutls, libfribidi,
  5336. qt5base, qt5webkit, sysklogd, thrift, u-boot
  5337. 2014.05-rc3, Released May 28th, 2014
  5338. Minor fixes.
  5339. Updated/fixed packages: acl, attr, connman, dosfstools,
  5340. dropbear, dvb-apps, exim, flite, gdb, httping, hwdata,
  5341. lesstif, libnss, libv4l, lttng-babeltrace, midori, monit,
  5342. mplayer, php, python2, rdesktop, rpi-userland, ruby, samba,
  5343. samba4, slang, xbmc
  5344. Issues resolved (http://bugs.uclibc.org):
  5345. #7100: license info for package 'acl' missing
  5346. #7106: license info for package 'attr' missing
  5347. #7112: license info for package 'hwdata'
  5348. 2014.05-rc2, Released May 21st, 2014
  5349. Fixes all over the tree.
  5350. Stripping using sstrip has been deprecated.
  5351. BR2_EXTERNAL can now also be used to implement custom
  5352. filesystem types.
  5353. The newly added BR2_GRAPH_DEPTH variable to limit the depth of
  5354. the generated dependency graph has been renamed to
  5355. BR2_GRAPH_DEPS_OPTS, so additional options can be supported in
  5356. the future.
  5357. The virtual package infrastructure will now error out early
  5358. if multiple packages providing the same virtual package has
  5359. been enabled (E.G. opengl). This change requires that the
  5360. packages explicitly declare what virtual package(s) they
  5361. provide.
  5362. Updated/fixed packages: acpid, armadillo, avahi, bellagio,
  5363. btrfs-progs, cairo, clapack, directfb, duma, ecryptfs-utils,
  5364. elfutils, eudev, fbgrab, fio, flann, fluxbox, gdb, gpm,
  5365. gpu-viv-bin-mx6q, gst1-plugins-good, gst-plugins-good,
  5366. imagemagick, iprutils, ipsec-tools, jack2, libdvdnav,
  5367. libdvdread, libnss, libunwind, linux-headers, lsof, lua,
  5368. luajit, matchbox-keyboard, mesa3d, mpd, mplayer, mtr, mysql,
  5369. netsnmp, nodejs, openpowerlink, openvpn, pciutils,
  5370. php-imagick, postgresql, pulseaudio, qt5quick1, rpi-userland,
  5371. rsyslog, samba, samba4, sane-backends, sunxi-mali, systemd,
  5372. ti-gfx, tstools, udev, webkit, wpa_supplicant, xbmc,
  5373. xlib_libXpm, xserver_xorg-server, zyre
  5374. Issues resolved (http://bugs.uclibc.org):
  5375. #5396: Boot hangs when starting samba if BR2_ENABLE_LOCALE...
  5376. #7016: Git issues in resulting buildroot tar
  5377. #7094: pciutils doesn't build on Blackfin
  5378. 2014.05-rc1, Released May 13th, 2014
  5379. Fixes all over the tree and new features.
  5380. Architectures: Support for MIPS o32 ABI on MIPS-64 targets has
  5381. been removed. Building o32 ELF files for MIPS64 is an exotic
  5382. configuration that nobody should be using. If o32 is required,
  5383. then is better if it's built for MIPS 32-bit cores so only
  5384. 32-bit instructions will be used leading to a more efficient
  5385. o32 usage.
  5386. Support for the ARM A12 variant and Intel corei7.
  5387. Configs: Minnowboard and Altera SoCkit added, QEMU updates.
  5388. Bootloaders: Grub2 and gummiboot support, syslinux support
  5389. extended.
  5390. Toolchains: GCC 4.9. Glibc 2.19. Support for the musl C
  5391. library for internal and external toolchains. 4.8-R3 support
  5392. for ARC, Internal toolchain support for Aarch64 and
  5393. Microblaze. Environment variable to control debug output of
  5394. toolchain wrapper renamed to BR2_DEBUG_WRAPPER to match the
  5395. other variables. Toolchain tuple vendor name can now be
  5396. customized. Updated external Linaro ARM/Aarch64
  5397. toolchains. Added external Linaro ARMEB toolchain.
  5398. A GDB gdbinit file is now generated for external toolchains to
  5399. automatically set the correct sysroot.
  5400. Kconfig handling for minimum kernel headers version required
  5401. for packages. Now packages needing specific kernel header
  5402. features can specify these requirements in Kconfig.
  5403. Infrastructure: Support for (but disabled as it leads to
  5404. unreproducible builds) toplevel parallel builds. See the
  5405. comment at the top of Makefile for details about how to enable
  5406. it and what the problems are if you want to test it.
  5407. Python package infrastructure extended to support Python 3.x
  5408. Perl and virtual package infrastructure support added.
  5409. PRE_*_HOOKS support for all build steps.
  5410. Updated/fixed packages: acpid, agentpp, aiccu, apr, avahi,
  5411. barebox, bash, beecrypt, bellagio, binutils, boost,
  5412. boot-wrapper-aarch64, bustle, busybox, ca-certificates, cairo,
  5413. ccache, ccid, cgilua, chrony, cifs-utils, civetweb, cmake,
  5414. collectd, connman, coreutils, coxpcall, cppcms, cppzmq, crda,
  5415. cryptodev, cryptsetup, cups, czmq, dbus, dhcpdump, directfb,
  5416. dmalloc, dmraid, dnsmasq, dosfstools, dsp-tools, dtc,
  5417. dvb-apps, ebtables, ecryptfs-utils, eigen, erlang, ethtool,
  5418. evemu, evtest, f2fs-tools, fdk-aac, feh, ffmpeg, file, filemq,
  5419. flac, flot, fmtools, fping, freetype, fswebcam, gcc, gd, gdb,
  5420. gettext, giblib, git, glibc, glibmm, glib-networking, gmp,
  5421. gnutls, gpm, gpsd, gpu-viv-bin-mx6q, grep, gst1-libav,
  5422. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  5423. gst1-plugins-ugly, gst-ffmpeg, gst-fsl-plugins, gst-omx,
  5424. gst-plugins-good, gstreamer1, gvfs, harfbuzz, haveged,
  5425. hostapd, htop, httping, ifplugd, iftop, igmpproxy,
  5426. imagemagick, imlib2, imx-lib, infozip, intltool, iproute2,
  5427. ipsec-tools, ipset, jansson, jpeg, jpeg-turbo, jquery,
  5428. jquery-keyboard, jquery-ui, jquery-ui-themes, json-glib,
  5429. json-javascript, kexec, kmod, lame, lbase64, lbreakout2,
  5430. lcdproc, lftp, libao, libatasmart, libatomic_ops, libcap,
  5431. libcdio, libcec, libcgicc, libcgroup, libcurl, libdrm,
  5432. libdvdnav, libdvdread, libegl, libeio, libenca, libesmtp,
  5433. libevas, libevdev, libfribidi, libfslcodec, libfslparser,
  5434. libfslvpuwrap, libgail, libgles, libglib2, libgtk2, libhid,
  5435. libjpeg, libmbim, libmicrohttpd, libmodplug, libnftnl,
  5436. libnspr, libogg, libopenmax, libopenvg, libpcap, libplayer,
  5437. libpng, libpthread-stubs, librsvg, libsigsegv, libsocketcan,
  5438. libsoup, libtasn1, libtool, libtpl, libunwind, liburcu,
  5439. libusb, libwebsockets, libxcb, libxml2, libxmlpp, libyaml,
  5440. lighttpd, linphone, linux-firmware, linux-headers, ljsyscall,
  5441. lmbench, lsof, ltp-testsuite, ltris, lttng-babeltrace,
  5442. lttng-libust, lttng-modules, lttng-tools, lua, lua-cjson,
  5443. luacrypto, lua-ev, luaexpat, luaexpatutils, luafilesystem,
  5444. luainterpreter, luajit, lua-msgpack-native, luaposix,
  5445. luarocks, luasec, luasocket, luasql-sqlite3, lvm2, macchanger,
  5446. memstat, mesa3d, metacity, minidlna, mmc-utils,
  5447. mobile-broadband-provider-info, modem-manager, mongrel2,
  5448. monit, mpd, mplayer, msmtp, mtd, mtools, mutt, mysql, nasm,
  5449. ncurses, ne10, netatalk, netsnmp, nettle, network-manager,
  5450. newt, nfs-utils, nmap, nodejs, ntfs-3g, ntp, nut, ofono, ola,
  5451. olsr, omniorb, opencv, opengl, openpgm, openssh, openssl,
  5452. openswan, openvpn, orbit, orc, p11-kit, pango, parted,
  5453. pciutils, pcre, pcsc-lite, perf, perl, perl-xml-parser, php,
  5454. picocom, pixman, pkgconf, poppler, popt, portmap, powervr,
  5455. pppd, pptp-linux, proftpd, protobuf, protobuf-c, ptpd2,
  5456. pulseaudio, python, python3, python-bottle, python-m2crypto,
  5457. python-netifaces, python-pyasn, python-pycrypto,
  5458. python-pygame, python-pysnmp, python-pysnmp-apps,
  5459. python-pysnmp-mibs, python-serial, python-setuptools,
  5460. qextserialport, qt, qt5, qt5base, qt5connectivity,
  5461. qt5declarative, qt5graphicaleffects, qt5imageformats,
  5462. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  5463. qt5sensors, qt5serialport, qt5svg, qt5webkit, qt5x11extras,
  5464. qt5xmlpatterns, qtuio, qwt, radvd, readline, rings,
  5465. rpi-firmware, rpi-userland, rsh-redone, rsync, rsyslog, rtai,
  5466. rtmpdump, rt-tests, ruby, samba, sconeserver, scons, sdl,
  5467. sdl_image, sdl_mixer, sg3_utils, slang, smstools3, snmppp,
  5468. socat, speex, sqlcipher, sqlite, squashfs, squid, strongswan,
  5469. stunnel, sunxi-boards, sunxi-mali, sunxi-tools, sylpheed,
  5470. syslinux, sysstat, systemd, taglib, tcl, tcllib, tcpreplay,
  5471. tidsp-binaries, ti-gfx, tmux, tvheadend, tzdata, uboot,
  5472. uboot-tools, uclibc, udev, udisks, ulogd, usb_modeswitch,
  5473. usb_modeswitch_data, usbmount, util-linux, valgrind, vlc,
  5474. webkit, weston, wget, wireshark, wpa_supplicant, wsapi,
  5475. w_scan, xapp_appres, xapp_bdftopcf, xapp_beforelight,
  5476. xapp_bitmap, xapp_editres, xapp_fslsfonts, xapp_fstobdf,
  5477. xapp_iceauth, xapp_ico, xapp_mkfontscale, xapp_rgb,
  5478. xapp_rstart, xapp_sessreg, xapp_showfont, xapp_twm,
  5479. xapp_viewres, xapp_xauth, xapp_xbacklight, xapp_xcalc,
  5480. xapp_xclock, xapp_xditview, xapp_xdpyinfo, xapp_xdriinfo,
  5481. xapp_xev, xapp_xfd, xapp_xfontsel, xapp_xfs, xapp_xfsinfo,
  5482. xapp_xgc, xapp_xhost, xapp_xinit, xapp_xkbutils, xapp_xkill,
  5483. xapp_xload, xapp_xlsclients, xapp_xlsfonts, xapp_xmag,
  5484. xapp_xman, xapp_xmessage, xapp_xmodmap, xapp_xprop,
  5485. xapp_xrandr, xapp_xrdb, xapp_xrefresh, xapp_xset,
  5486. xapp_xsetroot, xapp_xsm, xapp_xstdcmap, xapp_xvidtune,
  5487. xapp_xvinfo, xapp_xwd, xapp_xwininfo, xcb-util-wm,
  5488. xdriver_xf86-input-evdev, xdriver_xf86-input-joystick,
  5489. xdriver_xf86-input-keyboard, xdriver_xf86-input-mouse,
  5490. xdriver_xf86-input-synaptics, xdriver_xf86-input-vmmouse,
  5491. xdriver_xf86-video-ark, xdriver_xf86-video-ast,
  5492. xdriver_xf86-video-ati, xdriver_xf86-video-cirrus,
  5493. xdriver_xf86-video-dummy, xdriver_xf86-video-fbdev,
  5494. xdriver_xf86-video-geode, xdriver_xf86-video-glide,
  5495. xdriver_xf86-video-glint, xdriver_xf86-video-i128,
  5496. xdriver_xf86-video-intel, xdriver_xf86-video-mach64,
  5497. xdriver_xf86-video-mga, xdriver_xf86-video-neomagic,
  5498. xdriver_xf86-video-newport, xdriver_xf86-video-nv,
  5499. xdriver_xf86-video-openchrome, xdriver_xf86-video-r128,
  5500. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  5501. xdriver_xf86-video-sis, xdriver_xf86-video-tdfx,
  5502. xdriver_xf86-video-tga, xdriver_xf86-video-trident,
  5503. xdriver_xf86-video-vesa, xdriver_xf86-video-vmware,
  5504. xdriver_xf86-video-voodoo, xenomai, xerces, xl2tp, xlib_libFS,
  5505. xlib_xtrans, xproto_xproto, xserver_xorg-server,
  5506. xutil_util-macros, zeromq, zic, zmqpp, zyre
  5507. New packages: armadillo, btrfs-progs, clapack, cosmo, dado,
  5508. dbus-triggerd, dtv-scan-tables, e2tools, eudev, exim, expect,
  5509. fetchmail, flann, flite, gnu-efi, grub2, gummiboot, heimdal,
  5510. iprutils, iptraf-ng, jack2, jquery-mobile, libee, libestr,
  5511. libgc, libgl, liblogging, libndp, libsoxr, libstrophe,
  5512. libubox, libuci, libxmlrpc, ljlinenoise, lpeg, lpty, lrandom,
  5513. lsqlite3, lua-coat, lua-coatpersistent, lua-csnappy, luajson,
  5514. lualogging, lua-messagepack, lua-testmore, lunit, lzip, lzlib,
  5515. musl, nftables, opentyrian, opentyrian-data,
  5516. perl-module-build, php-gnupg, php-imagick, php-ssh2, php-yaml,
  5517. php-zmq, postgresql, python-libconfig, python-pypcap,
  5518. python-pyrex, qdecoder, qhull, samba4, smack, tz, tzdump, ucl,
  5519. upx, vo-aacenc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons,
  5520. yaffs2utils, zlog, znc
  5521. Removed packages: crosstool-ng, python-distutilscross, vala
  5522. Issues resolved (http://bugs.uclibc.org):
  5523. #6842: Checking external toolchain for eabihf
  5524. #6956: Packaging libsoxr
  5525. #6986: Make legal-info fails on uboot versions before 2014.01
  5526. #6992: Incorrect installation rights on external kernel module..
  5527. 2014.02, Released February 27th, 2014
  5528. Minor fixes.
  5529. Updated/fixed packages: cegui06, cppdb, e2fsprogs, gcc, gdb,
  5530. gst1-plugins-bad, gstreamer, gstreamer1, haserl, imagemagick,
  5531. libpng, libxml2, lua, luajit, luarock, ncftp, openswan,
  5532. pcsc-lite, qt5connectivity, ramsmp, strongswan, vlc
  5533. Issues resolved (http://bugs.uclibc.org):
  5534. #6938: mkuser script generates wrong password for new user in..
  5535. 2014.02-rc3, Released February 25th, 2014
  5536. Minor fixes.
  5537. Updated/fixed packages: aiccu, ala-lib, alsa-utils, binutils,
  5538. cairo, coreutils, dhcpcd, distcc, efl, evas, iputils, gdb,
  5539. gpsd, gst-fsl-plugins, icu, libcec, libcgi, libplayer,
  5540. libsecret, libsepol, libsigsegv, libtool, libv4l,
  5541. linux-headers, matchbox-lib, mpg123, ncftp, opencv, pcmanfm,
  5542. pixman, pv, qt, rt-tests, sawman, sconeserver, sdl, thrift,
  5543. tvheadend, util-linux, webkit, xscreensaver
  5544. Issues resolved (http://bugs.uclibc.org):
  5545. #4706: Removing .stamp_target_installed does not trigger...
  5546. #5030: busybox built fails if we use an override src dir...
  5547. #5420: Dbus and /var/run management
  5548. #5768: Not able to build ALSA-Lib for static build
  5549. #5774: Not able to build ALSA-Utils for static build
  5550. #6542: external python modules fail to compile to pyc if...
  5551. #6764: Support for kernel signed modules
  5552. #6794: Busybox compiled from buildroot hangs on pass from...
  5553. 2014.02-rc2, Released February 20th, 2014
  5554. Fixes all over the tree. Static linking / nommu fixes and
  5555. annotations for several packages.
  5556. Updated/fixed packages: boost, busybox, collectd, coreutils,
  5557. dropbear, elfutils, feh, gcc, gst1-libav, imagemagick, iozone,
  5558. jimtcl, kexec, libvncserver, lvm2, lxc, mplayer, netsnmp, nut,
  5559. opencv, python, python3, qtuio, systemd, thrift, transmission,
  5560. uclibc, vlc, webkit
  5561. Issues resolved (http://bugs.uclibc.org):
  5562. #5450: AT91SAM9260 Bootstrap compilation problem
  5563. #5582: libiconv 1.14 failed to build
  5564. #5624: When building directfb, BR2_TARGET_LDFLAGS not used by..
  5565. #5852: [2012.11] usb_modeswitch should depends of "BR2_PACK..
  5566. #6218: binutils-2.23.2/gas fails with undefined reference to..
  5567. #6236: binutils-2.23.2/bfd fails with undefined reference to..
  5568. #6470: If the build directory is a child of /usr, the build..
  5569. #6776: systemd error: static declaration of 'execvpe' follows..
  5570. #6818: toolchainfile.cmake has absolut path references
  5571. 2014.02-rc1, Released February 11th, 2014
  5572. Fixes all over the tree and new features.
  5573. Support for external packages/defconfigs (BR2_EXTERNAL). See
  5574. user manual for details.
  5575. Cleanup of environment variable names for consistency. The
  5576. download directory location override (BUILDROOT_DL_DIR) is now
  5577. called BR2_DL_DIR. Likewise the name of the current .config is
  5578. renamed from BUILDROOT_CONFIG to BR2_CONFIG. Please update
  5579. your post build scripts if you use this! BUILD_DIR is now also
  5580. exported to the post build/image scripts.
  5581. Toolchain: GCC 4.8 fix for ARM stack corruption, reverted
  5582. uClibc pread/pwrite backport as they cause issues on certain
  5583. architectures, new Linaro and Sourcery Codebench toolchains.
  5584. x86: Support for AMD Jaguar cores, SSE4.x, SH: SH2/SH3/SH3EB
  5585. variants removed, Microblaze: Internal toolchain support
  5586. Legal infrastructure: Info is now split between host and
  5587. target packages, large number of license annotations.
  5588. Lua: selection between lua 5.1 / 5.2, luarocks support
  5589. Python: package infrastructure, many new packages.
  5590. Defconfigs: Armadeus APF51 + Zedboard added, apf27, apf28,
  5591. beaglebone, microblaze, pandaboard, qemu, raspberry pi
  5592. updated.
  5593. Updated/fixed packages: aiccu, alsa-lib, alsa-utils,
  5594. am33x-cm3, aumix, autoconf, automake, barebox, bellagio,
  5595. berkeleydb, binutils, bison, blackbox, bluez_utils, boost,
  5596. bustle, busybox, cairo, can-utils, ccache, ccid, cgilua,
  5597. cifs-utils, civetweb, cmake, collectd, connman, copas,
  5598. coreutils, coxpcall, cppzmq, cramfs, crda, cryptodev-linux,
  5599. cryptsetup, cups, czmq, dhcpcd, dhcpdump, dhrystone, dialog,
  5600. dmraid, dnsmasq, dosfstools, dropbear, dropwatch, dtc, duma,
  5601. dvb-apps, e2fsprogs, eglibc, eigen, elf2flt, erlang, ethtool,
  5602. f2fs-tools, ffmpeg, file, filemq, fio, flashrom, flex,
  5603. fluxbox, fontconfig freerdp, freetype, gadgetfs-test, gawk,
  5604. gcc, gdb, gdbm, gettext, git, glibc, gnupg, gnutls, gob2,
  5605. gpsd, grep, grub, gst-ffmpeg, gst-plugins-good,
  5606. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  5607. gst1-plugins-ugly, gstreamer, gstreamer1, gtest, icu, iftop,
  5608. imagemagick, inadyn, infozip, iozone, iproute2, iptables, iw,
  5609. jpeg, jpeg-turbo, jq, kexec, kmod, knock, lbase64, lcdapi,
  5610. lftp, libcdaudio, libcgi, libcgicc, libcuefile, libcurl,
  5611. libdmtx, libdrm, libdvdnav, libdvdread, libegl, libevent,
  5612. libexif, libfcgi, libfreefare, libgles, libglib2, libllcp,
  5613. libmicrohttpd, libmpd, libnfc, libnl, libnss, libopenmax,
  5614. libopenvg, libpcap, libpfm4, libplayer, libpng, libqmi,
  5615. libreplaygain, libroxml, libsamplerate, libsexy, libsigsegv,
  5616. libsndfile, libsoc, libtasn1, libtorrent, libtpl, libupnp,
  5617. libusb, libusb-compat, libvorbis, libxcb, libxml2, libxmlpp,
  5618. libyaml, lighttpd, linknx, linux-firmware, linux-pam, live555,
  5619. lm_sensors, lmbench, lockdev, logrotate, lrzsz, ltrace, lua,
  5620. lua-ev, lua-msgpack-native, luabitop, luaexpat, luaexpatutils,
  5621. luafilesystem, luajit, luaposix, luasec, luasocket,
  5622. luasql-sqlite3, m4, matchbox, mdadm, minicom, mongrel2, mpc,
  5623. mpd, mpg123, mplayer, mtd, mysql, lvm2, mxml, ncurses, ne10,
  5624. neard, neardal, netsnmp, netstat-nat, network-manager, nodejs,
  5625. numactl, ofone, ola, olsr, omniorb, open2300, opencv,
  5626. openpowerlink, openssh, openssl, openvpn, oprofile, opus,
  5627. opus-tools, orbit, p11-kit, parted, pcre, pcsc-lite, perl,
  5628. php, poco, poppler, powervr, protobuf-c, psplash, python,
  5629. python-bottle,
  5630. python-{crc16,distutilscross,dpkt,id3,ipy,m2crypto,mad,meld},
  5631. python-{netifaces,nfc,protobuf,pygame,pyparsing,pyro,pyzmq},
  5632. python-{serial,setuptools}, qt, qt5base, qt5connectivity,
  5633. qt5declarative, qt5graphicaleffects, qt5jsbackend,
  5634. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  5635. qt5webkit, radvd, redis, rings, rng-tools, rpcbind,
  5636. rpi-firmware, rpi-userland, rt-tests, sam-ba, samba, sawman,
  5637. sconeserver, scons, sdl, sg3_utils, snappy, snmppp,
  5638. socketcand, spice, spice-protocol, sqlcipher, sqlite, squid,
  5639. sshfs, strace, subversion, sunxi-mali, supervisor, sysklogd,
  5640. sysprof, sysstat, systemd, sysvinit, taglib, tar, tcpdump,
  5641. ti-gfx, ti-utils, tinymembench, tn5250, trace-cmd,
  5642. transmission, tvheadend, tzdata, zxing, uboot, uboot-tools,
  5643. uclibc, udev, udpcast, ulogd, urg, usb_modeswitch_data,
  5644. util-linux, vala, valgrind, vorbis-tools, wavpack, wayland,
  5645. weston, wget, wireless-regdb, wireshark, wpa_supplicant,
  5646. wsapi, xavante, xapp_xdpyinfo, xapp_xrandr, xcb-proto,
  5647. xdriver_xf86-video-intel, xenomai, xkeyboard-config, xl2tp,
  5648. xlib_lib{FS,SM,X11},
  5649. xlib_libX{au,aw,composite,cursor,damage,ext,fixes,font,i},
  5650. xlib_libX{inerama,mu,pm,randr,render,res,t,tst,v,xf86dga},
  5651. xlib_libXxf86vm, xlib_libdmx, xlib_libfontenc,
  5652. xlib_libpciaccess, xlib_xtrans, xproto_dri2proto,
  5653. xproto_{glproto,inputproto,presentproto,randrproto,videoproto},
  5654. xproto_xextproto, xproto_xproto, xutil_util-macros,
  5655. xutil_makedepend, zic, zmqpp, zxing, zsh, zyre
  5656. New packages: apitrace, avrdude, c-ares, ca-certificates,
  5657. cwiid, dbus-cpp, evemu, fping, fswebcam, gpm, gst1-libav,
  5658. haveged, intel-microcode, iucode-tools, jasper, joe, ktap,
  5659. lbreakout2, libass, libbluray, libcdio, libenca, libevdev,
  5660. libmbim, libmodplug, libnfs, libnftnl, libplist, libshairplay,
  5661. libsocketcan, ljsyscall, log4cplus, ltris, luainterpreter,
  5662. luarocks, minidlna, mmc-utils, modemmanager, mtr, net-tools,
  5663. python-configobj, python-dialog, python-json-schema-validator,
  5664. python-keyring, python-msgpack, python-posix-ipc,
  5665. python-pyasn, python-pycrypto, python-pysnmp,
  5666. python-pysnmp-apps, python-pysnmp-mibs, python-pyusb,
  5667. python-simplejson, python-tornado, python-versiontools,
  5668. rtmpdump, rtptools, smcroute, smstools3, tcpreplay, thrift,
  5669. ti-uim, tinyxml, tmux, vlc, wmctrl, xconsole
  5670. Removed packages: autoconf, automake, ccache, cpanminus, lzma,
  5671. netkitbase, netkittelnet, pkg-config, squashfs3, ttcp, xstroke
  5672. Issues resolved (http://bugs.uclibc.org):
  5673. #65: new package: dbus c++ language bindings
  5674. #769: Update configuration menu for MIPS target
  5675. #2419: Add a bundle of Lua modules
  5676. #2629: Segmentation faults and division by zero in Grub on ext2
  5677. #3811: Added auto-mount for USB and SD Card (mdev) (for 2011.05)
  5678. #4339: Allow override of DL_DIR in extract step
  5679. #4363: Make sure that copied linux and busybox defconfig are...
  5680. #4454: There should be simple way to update image, when chang...
  5681. #5024: grub fails to build for x86_64 target architecture
  5682. #5066: New-Package: net-tools
  5683. #5072: ncurses: add ncurses-progs to target
  5684. #5294: uclibc build ignores target CFLAGS and LDFLAGS
  5685. #5366: Login doesn't work with util-linux versions of login/agetty
  5686. #5378: dropbear Makefile broken
  5687. #5390: System banner - change to empty doesn't remove /etc/issue
  5688. #5780: spurious build failure because it cannot remove ubinize.cfg
  5689. #5798: ncurses-5.9 fails to compile statically
  5690. #5810: Buildroot 2012.11: Additional GCC option "-msoft-float" ...
  5691. #6080: Git fetch caching
  5692. #6092: Bootable ISO image creation seems to have stopped working..
  5693. #6272: coreutils build fails
  5694. #6434: apply-patches.sh does not work recursively
  5695. #6446: eglibc doesn't install ldconfig to target
  5696. #6484: Add c-ares
  5697. #6596: Slow bootup if mdev is chosen
  5698. #6656: Build Qt5 with ccache
  5699. #6662: internal compiler error: Segmentation fault during making..
  5700. #6722: Usage of $($(PKG)_DIR_PREFIX) is an issue with linux package
  5701. #6752: genext2fs: e2fsck must run before tunefs -U random
  5702. #6770: openssl 1.0.1f fails with ccache
  5703. #6830: Qt5: no fonts are installed
  5704. #6848: Qt5: no text shown in simple QWidget / frame-buffer setup
  5705. #6854: Update to Qt 5.2.1
  5706. 2013.11, Released November 30th, 2013:
  5707. Minor fixes.
  5708. Updated/fixed packages: apr, binutils, dbus-python, dropwatch,
  5709. ecryptfs-utils, eglibc, gdb, gpsd, grantlee, hostapd,
  5710. iptables, qlibiscsi, libnspr, libnss, libpfm4, libtool,
  5711. lua-ev, lvm2, mplayer, qt, qt5, quagga, ruby, tinymembench,
  5712. tvheadend, util-linux, wpa_supplicant
  5713. Issues resolved (http://bugs.uclibc.org):
  5714. #1279: Buildroot compiled Busybox and Coreutils LFS issues
  5715. #2995: -fstack-protector-all causes ssh to SIGSEGV
  5716. #5570: Cannot compile software on the target machine
  5717. #6428: util-linux libmount segfaults with patch from buildroot
  5718. #6500: php fails to build for armel
  5719. #6554: gdb needs to dependents on host texinfo
  5720. #6692: GNU nano fails to compile for x86_64
  5721. #6704: wpa_supplicant: fix wrong path to executable file in D-Bus
  5722. 2013.11-rc3, Released November 26th, 2013
  5723. Fixes all over the tree.
  5724. Architecture: Mark MIPS I, II, III and IV as deprecated.
  5725. Updated/fixed packages: beecrypt, dbus, e2fsprogs, libcap-ng,
  5726. libglib2, libroxml, libsigsegv, libvncserver, lxc, mdadm,
  5727. mongoose, nut, ola, omniorb, openssl, pcre, php, poco,
  5728. protobuf-c, pv, qt5base, ruby, schifra, squid, sunxi-mail,
  5729. swig, ti-gfx, tinymembench, uclibc, udisks, vim
  5730. 2013.11-rc2, Released November 18th, 2013
  5731. Fixes all over the tree.
  5732. Defconfigs: qemu_arm_versatile, qemu_arm_nuri, sheevaplug:
  5733. Adjust kernel versions.
  5734. Toolchain: avr32: fix for modern kernel headers
  5735. Bootloader: Barebox updated to 2013.10.1
  5736. Updated/fixed packages: dhcp, e2fsprogs, gst1-plugins-bad,
  5737. libcurl, libvncserver, nano, pc, qt5base, squashfs, ttcp,
  5738. wayland, wvstreams
  5739. Issues resolved (http://bugs.uclibc.org):
  5740. #3601: DHCPD S80dhcp-server startup script issues
  5741. #6320: Fix kernel compile issue if BR2_LINUX_KERNEL_CUSTOM_GIT_VERS..
  5742. #6416: Xenomai package, patch alternative
  5743. #6590: directfb-examples build failed whit linaro toolchain
  5744. 2013.11-rc1, Released November 12th, 2013
  5745. Architectures: Nios-II support, MIPS arch handling fixes
  5746. Defconfigs: cubieboard2, freescale i.MX 6sololite evk,
  5747. sabre-sd, wandboard added, rpi renamed to raspberrypi_defconfig
  5748. Toolchain: glibc support, upstream uClibc fixes, uClibc 0.9.31
  5749. for avr32, crosstool-ng backend removed, external musl
  5750. toolchain support, gcc 4.8.2, updated Linaro external
  5751. toolchains. Fortran and objective-C support deprecated,
  5752. mudflap support
  5753. Bootloaders: U-Boot: u-boot.imx support, version bumps
  5754. Linux: use kmod instead of module-init-tools
  5755. System: default to devtmpfs for /dev
  5756. Infrastructure: Make 3.82 fixes, locales generation fixes, CVS
  5757. download support, post-rsync hooks
  5758. Fs: u-boot image support for cpio
  5759. Updated/fixed packages: aircrack-ng, alsamixergui, apr,
  5760. apr-util, atk, automake, bellagio, berkeleydb, bind, binutils,
  5761. bison, boost, busybox, can-utils, ccache, ccid, cgilua,
  5762. chrony, cifs-utils, cjson, collectd, connman, conntrack-tools,
  5763. copas, cppcms, cppzmq, czmq, dash, dbus, dhcpcd, diffutils,
  5764. directfb, dmidecode, dnsmaqs, docker, dosfstools, dropbear,
  5765. dropwatch, ebtables, eglibc, elf2flt, empty, enchant, erlang,
  5766. ethtool, fbgrab, fbv, fdk-aac, feh, ffmpeg, file, findutils,
  5767. fltk, fmtools, freetype, gdk-pixbuf, gettext, git,
  5768. glib-networking, gmp, gnupg, gnutls, gpu-viv-bin-mx6q, gsl,
  5769. gstreamer, gstreamer1, gst1-plugins-{bad,base,good,ugly},
  5770. gtest, gutenprint, hplip, i2c-tools, icu, ifplugd,
  5771. imagemagick, iozone, iproute2, ipset, iptables, iw, jamvm,
  5772. jansson, jpeg-turbo, kismet, kmod, lcms2, libassuan, libcap,
  5773. libcap-ng, libcdaudio, libcec, libcue, libcurl, libdrm,
  5774. libedit, libevas, libevent, libfreefare, libfuse,
  5775. libgpg-error, libiconv, liblog4c-localtime, libmicrohttpd,
  5776. libmnl, libmodbus,
  5777. libnetfilter_{acct,conntrack,cthelper,cttimeout,log,queue},
  5778. libnfnetlink, libnl, libpng, libqmi, libqrencode, libroxml,
  5779. libsecret, libsigsegv, libsoup, libtirpc, libunwind, libusb,
  5780. libvpx, lighttpd, linphone, linux-pam, lmbench,
  5781. lockfile-progs, log4cxx, logrotate, logsurfer, ltp-testsuite,
  5782. ltrace, luacrypto, luaposix, lvm2, m4, matchbox-lib,
  5783. media-ctl, mediastreamer, minicom, minidlna, mongoose, monit,
  5784. mpc, mpd, mpg123, mplayer, mrouted, mtdev, mutt, mysql_client,
  5785. nano, ncftp, ndisc6, neard, neardal, neon, net-snmp, netatalk,
  5786. netcat, netkitbase, netperf, netplug, nettle, nfacct,
  5787. nfs-utils, ngircd, ngrep, noip, nuttcp, olsr, openssh, opkg,
  5788. oprofile, opus-tools, orc, ortp, pciutils, pcre, pcsc-lite,
  5789. perf, perl, perl-cross, php, picocom, pkgconf, polarssl,
  5790. poppler, pppd, proftpd, protobuf, proxychains-ng, pulseaudio,
  5791. pv, qemu, qt, qt5base, qt5webkit, quagga, radvd, redis,
  5792. rpi-{firmware,userland}, rrdtool, rsync, rtorrent, ruby,
  5793. samba, scons, screen, sdl_sound, ser2net, setserial,
  5794. smartmontools, socat, socketcand, sqlcipher, sqlite, squid,
  5795. stress, strongswan, stunnel, sudo, syslinux, systemd,
  5796. sysvinit, tcl, ti-gfx, time, transmission, tremor, tslib,
  5797. tstools, tvheadend, tzdata, uboot-tools, uclibc, udpcast,
  5798. uemacs, ulogd, usb_modeswitch{,_data}, util-linux, vala,
  5799. valgrind, vde2, vorbus-tools, vpnc, vsftpd, vtun, wayland,
  5800. webkit, webp, webrtc-audio-processing, weston, wget,
  5801. wireshark, wsapi, xavante, xdriver_xf86-video-geode, xenomai,
  5802. xinetd, xlib_libpthread-stubs, xl2tp, xmlstarlet,
  5803. xserver_xorg-server, xz, zeromq, zic, zmqpp
  5804. New packages: aiccu, autossh, bc, civetweb, cppdb, cryptsetup,
  5805. duma, eigen, harfbuzz, igmpproxy, iputils, jq, knock, kobs-ng,
  5806. lesstif, libcgroup, libsepol, libsoc, libssh2, luasec, luasql,
  5807. lxc, nut, ola, omniorb, openpowerlink, orbit, p910nd, psplash,
  5808. python-crc16, python-ipy, python-pyzmq, qt5sensors,
  5809. qt5serialport, qt5x11extras, snmppp, subversion, tcping,
  5810. trace-cmd, xscreensaver, zsh
  5811. Removed packages: module-init-tools
  5812. Issues resolved (http://bugs.uclibc.org):
  5813. #1138: Buildroot fails to build packages if BR2_GCC_SHARED_LIBGCC=y
  5814. #5408: qt build failure with Sourcery CodeBench ARM 2010.09
  5815. #5630: makefile error with toolchain helpers.mk
  5816. #5672: htop: remove X11 stuff
  5817. #5678: linux.mk: linux-menuconfig fails
  5818. #5696: python3 installation is too large, patches from python2 needed
  5819. #5978: Erlang does not build for arm in 2013.02-rc3
  5820. #6392: Extended ARM uImage kernel options
  5821. #6404: Buildroot's coreutils 'uname -p' reports 'Unknown' on recent..
  5822. #6428: util-linux libmount segfaults with patch from buildroot
  5823. #6452: eglibc from Linaro 2013.07 not copied to target correctly
  5824. #6566: PHP segfault when crosscompiled to mips64 - patch included
  5825. #6572: [PowerPC] Buildroot uses wrong external toolchain libraries..
  5826. #6578: udisks package broken
  5827. #6602: ebtables 64 bit kernel + 32 bit userland alignment error..
  5828. #6608: ebtables missing ethertypes - fix included
  5829. #6620: Sysvinit package missing killall5 and symlinks - patch included
  5830. #6632: CMake use host pkg-config
  5831. #6638: pkgconf doesn't download
  5832. #6644: "all" target doesn't work in out-of-tree builds
  5833. #6650: Segmentation fault when trying to build latest buildroot
  5834. #6668: iptables limit module alignment problem on mips64
  5835. 2013.08, Released August 31th, 2013:
  5836. Minor fixes.
  5837. Documentation build fixed.
  5838. Updated/fixed packages: ltrace, strongswan
  5839. 2013.08-rc3, Released August 29th, 2013:
  5840. Fixes all over the tree.
  5841. External toolchain lib32/lib64 handling, ABI name for EABIhf,
  5842. misc fixes for generatelocales, apply-patches and module
  5843. stripping.
  5844. Top level menu names reordered and renamed for clarity.
  5845. Updated/fixed packages: acl, attr, bash, dbus, directfb,
  5846. dvb-apps, kexec, kmod, libbsd, linux-fusion, mesa3d, minidlna,
  5847. openssh, openssl, pulseaudio, python-setuptools, qt5,
  5848. qt5webkit, redis, strongswan, sunxi-mali
  5849. Issues resolved (http://bugs.uclibc.org):
  5850. #6464: dbus-daemon-launch-helper needs setuid
  5851. 2013.08-rc2, Released August 16th 2013:
  5852. Documentation improvements.
  5853. External toolchains fixes.
  5854. Updated/fixed packages: aircrack-ng, bash, boost, cairo,
  5855. cppcms, eglibc, ffmpeg, gcc, git, gnupg, imagemagick, libcec,
  5856. libffi, libgcrypt, linux, linux-headers, ltrace, netatalk,
  5857. opencv, opengl, readline, samba, strongswan, sunxi-cedarx,
  5858. uclibc, udev, wayland, webkit, zeromq.
  5859. Issues resolved (http://bugs.uclibc.org):
  5860. #6440: typo in ffmpeg makefile
  5861. 2013.08-rc1, Released August 5th, 2013:
  5862. Architectures:
  5863. - improved support for floating point on ARM and Thumb/Thumb2
  5864. - support for ARM OABI removed
  5865. Toolchains:
  5866. - support added for Sourcery CodeBench ARM and MIPS 2013.05
  5867. - Linaro ARM and Aarch64 toolchains updated
  5868. - support added for the Arago ARMv5 and ARMv7 toolchains
  5869. - gcc 4.8.x version bumped
  5870. - support for installing both FDPIC and FLAT libraries on
  5871. Blackfin
  5872. - support for uClibc 0.9.31 removed,
  5873. - convert the internal toolchain backend to use the package
  5874. infrastructure
  5875. - support added for eglibc in the internal toolchain backend
  5876. - toolchain components for the ARC architecture updated and
  5877. gdb for ARC added.
  5878. - support for Blackfin in the internal toolchain fixed
  5879. Defconfigs: beaglebone_defconfig updated, new defconfig for
  5880. CubieBoard, for Olimex mx233 Olinuxino, for Calao Systems
  5881. TNY-A9G20-LPW.
  5882. A number of packages have been fixed to use the
  5883. <pkg>_CONFIG_SCRIPTS mechanism to get their <pkg>-config shell
  5884. script installed and modified properly. Licensing informations
  5885. has been added to a number of packages.
  5886. Use XZ tarballs for a number of packages.
  5887. Noticeable package changes/additions:
  5888. - The glib2/libgtk2/webkit stack has been updated to recent
  5889. versions.
  5890. - Support for Gstreamer 1.x has been added.
  5891. - OpenGL support for TI OMAP platforms has been added.
  5892. - OpenGL support for Allwinner platforms has been added.
  5893. - OpenMAX support for RasberryPi has been added.
  5894. Updated/fixed packages: acl, attr, autoconf, avahi, barebox,
  5895. bind, binutils, busybox, bwm-ng, bzip2, cifs-utils, colletctd,
  5896. cpanminus, cups, curl, dash, dbus, dhcp, directfb,
  5897. directfb-examples, dnsmasq, dosfstools, dropbear, dtc,
  5898. e2fsprogs, ed, efl, enlightenment, erlang, ethtool, fbgrab,
  5899. fftw, firmware-imx, flot, fltk, freetype, gawk, gdk-pixbuf,
  5900. gettext, gmp, gnutls, gsl, gutenprint, gvfs, gzip, haserl,
  5901. hiawatha, httping, icu, imagemagick, imlib2, imx-lib,
  5902. intltool, iozone, ipset, iptables, jquery, jquery-keyboard,
  5903. jquery-sparkline, kmod, less, libart, libcdaudio, libcgicc,
  5904. libesmtp, libftdi, libfuse, libglib2, libgtk, libgtk2, libidn,
  5905. libiqrf, liblog4c-localtime, libnspr, libnss, libpcap,
  5906. libroxml, libserial, libsigsev, libsoup, libtool, libtpl,
  5907. libvncserver, libxml2, linphone, lm_sensors, logrotate,
  5908. ltrace, lttng, luafilesystem, luajit, minicom, monit, mpg123,
  5909. mtd, mutt, mxml, neard, netatask, netsnmp, nettle,
  5910. network-manager, nodejs, nss-mdns, openssh, openswan, openvpn,
  5911. opkg, opus, pcre, perl-cross, php, pixman, poco, polarssl,
  5912. pulseaudio, pv, python, python3, qt, qt5, qt5declarative,
  5913. qt5jsbackend, qt5quick1, readline, rpi-firmware, ruby, samba,
  5914. sane-backends, sconeserver, sdl_image, sdparm, ser2net,
  5915. socketcand, sqlite, squid, strace, tcl, tcpdump, tinyhttpd,
  5916. tvheadend, tzdata, uboot, udpcast, usb_modeswitch,
  5917. usb_modeswitch_data, usbutils, webkit, wireshark, wvstreams,
  5918. xapp_luit, xapp_xmodmap, xenomai, xfsprogs, xlib_libX11, zic,
  5919. zlib.
  5920. New packages: a10disp, aespipe, am33x-cm3, cppcms, dhcpcd,
  5921. dropwatch, dtc, ecryptfs-utils, eglibc, elf2flt, fdk-aac,
  5922. gcc-final, gcc-initial, gcc-intermediate, git,
  5923. gpu-viv-bin-mx6q, gst1-plugins-bad, gst1-plugins-base,
  5924. gst1-plugins-good, gst1-plugins-ugly, gst-omx,
  5925. gst-plugin-x170, gstreamer1, jimtcl, lbase64, libassuan,
  5926. libbsd, libcec, libdvbsi, libedit, libgpgme, libqmi,
  5927. libqrencode, libsvg, libsvg-cairo, libunwind, libvpx,
  5928. linux-headers, lockdev, luabitop, luacrypto, lua-ev,
  5929. luaexpatutils, msgpack, ocrad, on2-8170-libs,
  5930. on2-8170-modules, p11-kit, pax-utils, ptpd, ptpd2,
  5931. python-pyro, ramspeed/smp, snappy, strongswan, sunxi-boards,
  5932. sunxi-cedarx, sunxi-mali, sunxi-tools, ti-gfx, tinymembench,
  5933. tree, tstools, uclibc, w_scan.
  5934. Issues resolved (http://bugs.uclibc.org):
  5935. #4718: python (built for powerpc) distutils has paths to host
  5936. compiler toolchain
  5937. #5516: appended device tree blobs on uImage fails
  5938. #6302: Versions of packages retrieved from github.com are wrong
  5939. #6308: dosfstools download link is wrong
  5940. #6326: Dropbear: Add options to allow better config for
  5941. different target devices (e.g. routers)
  5942. #6338: Wrong download link for minicom package
  5943. #6344: Wrong handling of license text files with same name and
  5944. different directory
  5945. #6374: gnutls package broken if linux cryptodev module
  5946. selected
  5947. #6410: omap3_beagle has uimage error load address error
  5948. 2013.05, Released May 31th, 2013:
  5949. Minor fixes.
  5950. External toolchain wrapper fix for if host/usr/bin is placed
  5951. in the patch.
  5952. Updated/fixed packages: acpid, at91bootstrap, czmq, elf2flt,
  5953. flex, jamvm, kmod, libplayer, libtirpc, libv4,
  5954. lttng-babeltrace, opengl, qt5jsbackend, udpcast, wvstreams
  5955. Issues resolved (http://bugs.uclibc.org):
  5956. #4868: Buildroot compile failure for toolchain/gdb-7.4/intl/reloc...
  5957. #4988: flex and m4 problems
  5958. #5912: obsolete CVS files
  5959. 2013.05-rc3, Released May 25th, 2013:
  5960. Minor fixes.
  5961. Updated/fixed packages: aircrack-ng, bellagio, boost, crda,
  5962. dvb-apps, flot, libatomic_ops, libeXosip2, libosip2, libxml2,
  5963. mongrel2, poco, portaudio, pptp-linux, tvheadend, urg, weston,
  5964. wireshark
  5965. 2013.05-rc2, Released May 15th, 2013:
  5966. Fixes all over the tree.
  5967. Default number of parallel jobs is now number of CPUs + 1.
  5968. Defconfigs: Add Telit EVK-PRO3, AT91SAM9260-EK Nand flash.
  5969. Updated/fixed packages: aircrack-ng, busybox, cairo,
  5970. classpath, curlftpfs, czmq, dbus, f2fs-tools, fan-ctrl,
  5971. filemq, gst-plugin-bad, gutenprint, hplip, json-c,
  5972. libatomic_ops, libcurl, libdrm, libglib2, libnspr, libnss,
  5973. libsha1, libsigsegv, libxcb, linknx, linux-pam, lttng-modules,
  5974. lttng-tools, matchbox-lib, mcookie, mesa3d, neon, pixman,
  5975. pulseaudio, python-nfc, qt5imageformats, quota, openssl,
  5976. sconeserver, strace, sylpheed, wvstreams,
  5977. xapp_{appres,bdftopcf,beforelight,bitmap,edires,fonttosfnt},
  5978. xapp_{fslsfonts,fstobdf,iceauth,ico,listres,luit,mkfontdir},
  5979. xapp_{mkfontscale,oclock,rgb,rstart,scripts,sessreg,setxkbmap},
  5980. xapp_{showfont,smproxy,twm,viewres,x11perf,xauth,xbacklight},
  5981. xapp_x{biff,calc,clipboard,clock,cmsdb,cursorgen,dbedizzy,ditview},
  5982. xapp_x{dm,dpyinfo,driinfo,edit,ev,eyes,f86dga,fd,fontsel,fs,fsinfo},
  5983. xapp_x{gamma,gc,host,input-calibrator,input,kbcomp,kbevd,kbprint},
  5984. xapp_x{kbutils,kill,load,logo,lsatoms,lsclients,lsfonts,mag,man},
  5985. xapp_x{message,mh,modmap,more,pr,prop,randr,rdb,refresh,set,setmode},
  5986. xapp_x{setpointer,setroot,sm,stdcmap,vidtune,vinfo,wd,wininfo,wud},
  5987. xcb-util, xcursor-transparent-theme, xdata_xbitmaps,
  5988. xdata_xcursor-themes,
  5989. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synaptics},
  5990. xdriver_xf86-input-{tslib,vmmouse,void},
  5991. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,fbdev,geode,glide},
  5992. xdriver_xf86-video-{glint,i128,intel,mach64,mga,neomagic,newport},
  5993. xdriver_xf86-video-{nv,openchrome,r128,savage,siliconmotion,sis},
  5994. xdriver_xf86-video-{tdfx,tga,trident,v4l,vesa,vmware,voodoo,wsfb},
  5995. xfont_encodings, xfont_font-adobe-{100,75}dpi,
  5996. xfont_font-utopia-{100dpi,75dpi,type1},
  5997. xfont_font-{alias,arabic-misc,bh-100dpi,bh-75dpi},
  5998. xfont_font-bh-lucidatypewriter-{100,75}dpi, xfont_font-bh-{ttf,type1},
  5999. xfont_font-bitstream-{100dpi,75dpi,type1}, xfont_font-cronyx-cyrillic,
  6000. xfont_font-{cursor,daewoo,dec,isas,jis,micro}-misc,
  6001. xfont_font-ibm-type1, xfont_font-misc-{cyrillic,ethiopic,meltho,misc},
  6002. xfont_font-{mutt,schumacher}-misc,
  6003. xfont_font-{screen-cyrillic,sony-misc,sun-misc,util},
  6004. xfont_font-winitzki-cyrillic, xfont_font-xfree86-type1,
  6005. xlib_lib{FS,ICE,SM,X11,XScrnSaver,Xau,Xaw,Xcomposite,Xcursor},
  6006. xlib_libX{damage,dmcp,ext,fixes,font,ft,i,inerama,mu,pm,randr},
  6007. xlib_libX{render,res,t,tst,v,vMC,xf86dga,xf86vm},
  6008. xlib_lib{dmx,fontenc,pciaccess,pthread-stubs,xkbfile}, xlib_xtrans,
  6009. xproto_{applewm,bigreqs,composite,damage,dmx,dri2,fixes}proto,
  6010. xproto_{fontcache,font,gl,input,kb,randr,record,render}proto,
  6011. xproto_{resource,scrnsaver,video,windowswm,xcmisc,xext}proto,
  6012. xproto_{xf86bigfont,xf86dga,xf86dri,xf86vidmode,xinerama,x}proto,
  6013. xserver_xorg-server, xutil_{makedepend,util-macros}
  6014. Readded Packages: xapp_xinit
  6015. Issues resolved (http://bugs.uclibc.org):
  6016. #5054: amd64: cannot find init - due to missing /lib64 folder
  6017. 2013.05-rc1, Released May 8th, 2013:
  6018. Architectures: ARC support, Blackfin support, FLAT binary
  6019. format, ARM: Drop old CPU variants, add fa526/626, Marvell PJ4
  6020. Toolchains: Add new Microblaze external toolchains, Linaro
  6021. ARM/Aarch64 updates, GCC 4.6.4 / 4.7.3 / 4.8.0 added to
  6022. internal toolchain, default to GCC 4.7.x. Internal
  6023. Crosstool-ng backend deprecated.
  6024. Defconfigs: Add Atmel at91sam9g45m10ek, freescale mpc8315erdb
  6025. & p1010rdb, Armadeus apf27 / apf28, Openblocks A6, Raspberry
  6026. pi, gnublin board.
  6027. FS: LZO and XZ compression methods, extra ubifs options,
  6028. ext2 rev 0/1 and ext3/4 support.
  6029. Patch handling: apply-patches now has .patch.xz support,
  6030. Patch logic reworked as discussed during Febrary dev days:
  6031. http://elinux.org/Buildroot:DeveloperDaysFOSDEM2013
  6032. <pkg>-rsync now excludes version control files.
  6033. linux: uImage load address for ARM multiplatform kernels
  6034. Infrastructure for multiple OpenGL / ES / EGL / OpenVG
  6035. providers, similar to how libjpeg / libjpeg-turbo is handled.
  6036. Infrastructure for packages to add system users.
  6037. kconfig: updated to 3.9-rc2, support make olddefconfig
  6038. Updated/fixed packages: alsa-lib, alsa-utils, apr, apr-util,
  6039. argp-standalone, at, at91bootstrap, audiofile, aumix, avahi,
  6040. bash, blackbox, bind, binutils, bison, boost, bridge-utils,
  6041. busybox, ccache, cifs-utils, cmake, collectd, connman,
  6042. conntrack-tools, cpanminus, crosstool-ng, diffutils, directfb,
  6043. directfb-examples, divine, dmalloc, dnsmasq, dosfstools,
  6044. dropbear, e2fsprogs, ebtables, eeprog, erlang, ethtool,
  6045. fb-test-app, fbset, feh, ffmpeg, file, flex, flot, foomatic,
  6046. fxload, gd, gdb, gdisk, genimage, gettext, gmp, gnuchess,
  6047. gnutls, gob2, gperf, gpsd, gstreamer, haserl, hiawatha, htop,
  6048. httping, icu, inotify-tools, intltool, iproute2, ipset,
  6049. iptables, iw, jpeg, jquery, jquery-{sparkline,validation},
  6050. json-c, kbd, kexec, kismet, kmod, lcdproc, libarchive,
  6051. libatasmart, libcap, libconfig, libconfuse, libcurl, libdrm,
  6052. libeet, libev, libevas, libeXosip2, libffi, libfribi, libfuse,
  6053. libgcrypt, libglib2, libgtk2, libid3tag, libmicrohttpd,
  6054. libnetfilter_acct, libnetfilter_conntrack, libnl, libpcap,
  6055. libplayer, libsigc, libv4l, libxcb, linenoise, linux-pam,
  6056. lm_sensors, ltp-testsuite, luajit, lzop, madplay, make, mdadm,
  6057. mediastreamer, memtester, mesa3d,
  6058. mobile-broadband-provider-info, monit, mpd, mpfr, mpg123,
  6059. mrouted, msmtp, nbd, ncurses, ndisc6, neard, neardal, neon,
  6060. netperf, netsnmp, nettle, nfacct, ntfs-3g, ofono, olsr,
  6061. omap-u-boot-utils, openssh, openssl, openswan, openvpn,
  6062. oprofile, orc, patch, pciutils, pcre, perl, php, poco,
  6063. polarssl, proftpd, psmisc, pulseaudio, python,
  6064. python-{bottle,netifaces,serial,setuptools}, qt, quagga,
  6065. quota, radvd, rpi-firmware, rpi-userland, rt-tests, sam-ba,
  6066. samba, sawman, sdl, ser2net, smartmontools, socat, socketcand,
  6067. speex, squid, stress, stunnel, sudo, syslinux, sysstat,
  6068. sysvinit, tcl, tcprelay, tinyhttpd, tslib, tvheadend,
  6069. uboot-tools, udev, ulogd, util-linux, vala, vtun, webkit,
  6070. xapp_{iceauth,luit,makefontscale,sessreg,setxkbmap,smproxy},
  6071. xapp_{xauth,xcmsdb,xdpyinfo,xev,xgamma,xhost,xinput,xkbcomp},
  6072. xapp_{xkbevd,xlsatoms,xlsclients,xmodmap,xpr,xprop,xrandr,xrdb},
  6073. xapp_{xset,xwd,xwininfo}, xcb-{proto,util},
  6074. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synptics},
  6075. xdriver_xf86-input-{tslib,vmmouse,void},
  6076. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,geode,glide,glint},
  6077. xdriver_xf86-video-{i128,intel,mach64,mga,neomagic,newport},
  6078. xdriver_xf86-video-{openchrome,r128,savage,siliconmotion,sis},
  6079. xdriver_xf86-video-{tdfx,trident,vesa,vmware,wsfb}, xenomai,
  6080. xfont, xinetd, xkeyboard-config, xlib_lib{FS,ICE,SM,X11},
  6081. xlib_libX{scrnSaver,au,aw,cursor,dmcp,ext,fixes,font,ft,i},
  6082. xlib_libX{inerama,mu,pm,randr,res,tst,v,vMC,xf86dga,xf86vm},
  6083. xlib_lib{dmx,fontenc,pciaccess,xkbfile}, xlib_xtrans,
  6084. xproto_{applevm,bigreqs,dri2,fonts,gl,input,kbd,record}proto,
  6085. xproto_{resource,scrnsaver,xcmisc,xext,x}proto,
  6086. xserver_xorg-server, xutil_makedepend, xz, zeromq
  6087. New packages: aircrack-ng, bcusdk, chrony, crda,
  6088. cryptodev-linux, cppzmq, czmq, dtach, enscript, exfat,
  6089. exfat-utils, f2fs-tools, fan-ctrl, filemq, foomatic-filters,
  6090. genimage, genpart, glibmm, gnuplot, gtest, gutenprint, hplip,
  6091. iozone, jansson, jhead, jquery-keyboard, jquery-ui,
  6092. jquery-ui-themes, json-glib, json-javascript, lcms2, libpfm4,
  6093. libpthsem, libserial, libsigsegv, libtasn1, libwebsockets,
  6094. libxkbcommon, libxml++, linknx, log4cxx, mongoose, mongrel2,
  6095. mtools, ne10, nmap, nodejs, openobex, openpgm, poppler,
  6096. protobuf-c, python-m2crypto, python-thrift, qjson, qt5base,
  6097. qt5declarative, qt5graphicaleffects, qt5imageformats,
  6098. qt5jsbackend, qt5multimedia, qt5quick1, qt5script, qt5svg,
  6099. qt5webkit qt5xmlpatterns, rapidjson, redis, swig, texinfo,
  6100. tzdata, urg, ussp-push, wayland, webp, weston, wireless-regdb,
  6101. wireshark, wvdial, wvstreams, xcb-util-image, xcb-util-wm,
  6102. xcursor-transparent-theme, zic, zmqpp, zyre
  6103. Removed packages: microperl, ocf-linux, xapp_xinit,
  6104. xapp_xplsprinters, xapp_xprehashprinterlist,
  6105. xfont_font-bitstream-speedo,
  6106. xlib_lib{Xfontcache,XprintAppUtil,XprintUtil,Xp,oldX,xkbui},
  6107. xproto_{print,xf86rush}proto
  6108. Deprecated packages: vala
  6109. Issues resolved (http://bugs.uclibc.org):
  6110. #1291: Add support for Faraday 526 arm processor (fa526)
  6111. #2683: cups does not install correctly to target
  6112. #3313: mesa3d fails to build
  6113. #5186: initramfs/cpio should support lzo compression
  6114. #5636: agetty - cannot get controlling tty error - need updated...
  6115. #5906: collectd client headers not exported
  6116. #5966: bison unnecessarily required as build dependency
  6117. #6140: --enable-fileinfo not applied for php package
  6118. #6164: openvpn usage of ip tool from Busybox
  6119. 2013.02, Released February 28th, 2013:
  6120. Misc manual updates.
  6121. Updated/fixed packages: busybox, collectd, flashbench,
  6122. libgtk2, libupnp, mii-diag, quota
  6123. 2013.02-rc3, Released February 26th, 2013
  6124. Minor fixes.
  6125. Updated/fixed packages: conntrack-tools, dialog,
  6126. enlightenment, haserl, keyutils, libfif, libmad,
  6127. linux-firmware, linux-fusion, matchbox-desktop, matchbox-wm,
  6128. ruby, spawn-fcgi, vtun
  6129. Issues resolved (http://bugs.uclibc.org):
  6130. #5960: fusion.ko driver does not install to target rootfs
  6131. 2013.02-rc2, Released February 19th, 2013
  6132. Fixes all over the tree.
  6133. Various manual updates and fixes.
  6134. Updated/fixed packages: busybox, collectd, gesftpserver,
  6135. glib-networking, gnutls, inotify-tools, libcurl, libffi,
  6136. libglib2, libtorrent, libvorbis, neard, network-manager,
  6137. ntfs-3g, openssl, qt, rpi-userland, rtorrent, thttpd, vim.
  6138. Issues resolved (http://bugs.uclibc.org):
  6139. #5906: collectd client headers not exported
  6140. 2013.02-rc1, Released February 10th, 2013
  6141. Toolchain: Crosstool-ng 1.17.0, default to GCC 4.6.3, target
  6142. libraries install fixed. Add Linaro ARM
  6143. 2012.11/2012.12/2013.01, AArch64 12.11/12.12/13.01. Sourcery
  6144. CodeBench MIPS 2012.03/09. Infrastructure to warn about
  6145. missing 32bit support for binary toolchains. Toolchain wrapper
  6146. is now relocatable. Add GDB 7.5.1 / Remove 6.8 / 7.0 /
  6147. 7.1. Deprecate uClibc 0.9.31.
  6148. Architecture: Xtensa fixes, add missing powerpc variants, arm
  6149. 1136jf-s rev1, add A5/A15, neon support toggle, OABI
  6150. deprecated. Sparc: drop old unused variants
  6151. Bootloaders: At91bootstap: fix upstream URL, Barebox: add
  6152. 2012.12/2013.01/2013.02, remove 2012.08/09/10, lzop fixes,
  6153. environment image support, U-Boot: add 2013.01.01
  6154. Linux: fix appended dtb handling for v3.8+ kernels, support
  6155. multiple device trees
  6156. Defconfigs: calao USB-A9260, snowball, QEMU PPC440 on ML507
  6157. board, QEMU ARM Exynos4210, Kernel version in QEMU defconfigs
  6158. updated, at91rm9200df: misc fixes. Lock kernel headers to
  6159. match kernel.
  6160. Infrastructure: Git download fixes. Toolchain make target
  6161. renamed from 'cross' to 'toolchain'. Eclipse integration
  6162. support. Option to set root password, post image scripts,
  6163. config scripts handling.
  6164. Updated/fixed packages: alsa-lib, argp-standalone, argus,
  6165. arptables, atk, audiofile, axel, beecrypt, bind, bison,
  6166. bluez_utils, boost, cairo, can-utils, bmon, boa, busybox,
  6167. cairo, ccache, cdrkit, cifs-utils, cjson, cmake, collectd,
  6168. connman, coreutils, cpanminus, cups, dbus, dhcp, dialog,
  6169. diffutils, directfb, distcc, divine, dnsmasq, docker,
  6170. dosfstools, dstat, e2fsprogs, ebtables, ed, empty, ethtool,
  6171. expedite, fbset, fbv, ffmpeg, flex, fltk, fluxbox, freetype,
  6172. gadget-test, gawk, gdb, genext2fs, gettext, giblib,
  6173. glib-networking, gmp, gmpc, gnupg, gnutls, gpsd,
  6174. gst-plugins-{bad,base,good}, gstreamer, gzip, haserl, hdparm,
  6175. heirloom-mailx, hiawanta, hostapd, icu, imagemagick, imlib2,
  6176. inadyn, infozip, iproute2, ipset, iptables, iw, jpeg, jquery,
  6177. jquery-sparklines, jqeury-validation, kismet, kmod, lame,
  6178. libao, libcap, libcurl, libdvdnav, libdvdread, libecore,
  6179. libedbus, libedje, libeet, libefreet, libeina, libeio,
  6180. liberation, libelementary, libembryo, libethumb, libev,
  6181. libevas, libffi, libfribidi, libfuse, libgcrypt, libglib2,
  6182. libgpg-error, libgtk2, libhid, libidn, libmicrohttpd, libmpd,
  6183. libnl, libnspr, libnss, libogg, libpcap, libplayer, libpng,
  6184. libroxml, librsvg, libseccomp, libsigc, libsndfile, libungif,
  6185. libupnp, liburcu, libusb-compat, libvncserver, libvorbis,
  6186. libxml2, libxslt, lighttpd, links, linux-firmware,
  6187. linux-fusion, ltp-testsuite, ltrace,
  6188. lttng-{babel,libust,modules,tools}, lvm2, lua, luajit, lzop,
  6189. matchbox-{desktop,lib}, mdadm, metacity, midori, minicom, mpd,
  6190. mpfr, mplayer, mtd, mysql_client, ncurses, neon, netatalk,
  6191. networkmanager, nspr, ntfs-3g, nuttcp, ofone, olsr, openssl,
  6192. openvpn, opkg, oprofile, opus, opus-tools, orc, ortp, pango,
  6193. pciutils, pcmanfm, pcre, pcsc-lite, perl, php, pixman,
  6194. pkgconf, polarssl, pptp-linux, proxychains, pulseaudio,
  6195. python, python3, qemu, qextserialport, qt, quagga, radvd,
  6196. readline, rng-tools, rt-tests, rubix, ruby, sam-ba, samba,
  6197. sane-backends, sconeserver, scons, screen, sdl, sdl_gfx,
  6198. sdl_mixer, sdl_ttf, sdparm, sed, ser2net, smartmontools,
  6199. speex, sqlite, squid, sshfs, strace, sudo, sylpheed, tn5250,
  6200. taglib, tar, torsmo, transmission, tslib, uboot-tools, ulogd,
  6201. usb_modeswitch, util-linux, valgrind, vim, vsftpd, wavpack,
  6202. webkit, wipe, wireless_tools, wpa_supplicant, xapp_xinit,
  6203. xapp_xinput-calibrator, xapp_xman, xapp_xmh, xlib_libX11,
  6204. xlib_libXdmcp, xlib_libXft, xlib_libpthread-stubs,
  6205. xlib_xtrans, xproto_xcmiscproto, xproto_xextproto,
  6206. xserver_xorg-server, xstroke, xvkbd, xz
  6207. New packages: b43-firmware, b43-fwcutter, bustle,
  6208. cache-calibrator, cegui06, celt051, classpath, curlftpfs,
  6209. dvb-apps, dvbsnoop, elfutils, enlightenment, firmware-imx,
  6210. flashbench, gd, gesftpserver, gst-fsl-plugins, httping, iftop,
  6211. imx-lib, jamvm, jpeg-turbo, keyutils, libatasmart, libcofi,
  6212. libebml, libevas-generic-loaders, libfslcodec, libfslparser,
  6213. libfslvpuwrap, libgsasl, libiscsi, libmatroska, libmcrypt,
  6214. libmhash, libqwt, libseccomp, libsha1, linenoise, mcrypt,
  6215. media-ctl, ncdu, neard, neardal, nettle, perf, polkit,
  6216. proxychains, python-bottle, python-pyparsing, rpi-firmware,
  6217. rpi-userland, sg3_utils, slirp, snowball-hdmiservice, spice,
  6218. spice-protocol, tcllib, tvheadend, udisks, usbredir
  6219. ux500-firmware, vde2, xcb-utils-keysyms, yavta,
  6220. zd1211-firmware
  6221. Removed packages: customize, xdriver_xf86-input-{acecad,aiptek},
  6222. xdriver_xf86-video-{apm,chips,i740,rendition,s3,s3virge,sisusb},
  6223. xdriver_xf86-video-sun{cg14,cg3,cg6,ffb,leo,tcx},
  6224. xdriver_xf86-video-{tsend,xgi,xgixp}
  6225. Deprecated packages: xstroke
  6226. Issues resolved (http://bugs.uclibc.org):
  6227. #4237: building shared openssl w/-Os fails due to gcc bug
  6228. #5690: python3 does not obey to BR2_PACKAGE_PYTHON3_PYC_ONLY=y
  6229. #5602: python3 should install a "python" symbolic link
  6230. #5846: Extra slash added to last slash in URL
  6231. 2012.11.1, Released January 3rd, 2013:
  6232. Toolchain: Fixed non-largefile builds on recent Ubuntu
  6233. versions.
  6234. Arch: fix missing x86/generic handling, Build for Xtensa with
  6235. longcalls option.
  6236. Updated/fixed packages: dosfstools, qt
  6237. 2012.11, Released December 2nd, 2012:
  6238. Git shallow clone fix for older git version.
  6239. Updated/fixed packages: ctuio, libtool
  6240. Issues resolved (http://bugs.uclibc.org):
  6241. #5726: List all the available hook points
  6242. 2012.11-rc2, Released November 30th, 2012:
  6243. Minor fixes around the tree.
  6244. Various manual updates and fixes.
  6245. Add checks for legacy features.
  6246. Updated/fixed packages: acpid, alsa-lib, arptables, binutils,
  6247. busybox, ccache, cjson, cramfs, directfb, flex, fluxbox, gdb,
  6248. hiawatha, igh-ethercat, imagemagick, imlib2, lcdproc,
  6249. libdaemon, libecore, libhid, libmad, libpcap, libsigc, libusb,
  6250. linux-fusion, matchbox, ocf-linux, owl-linux, python, rrdtool,
  6251. scons, strace, sylpheed
  6252. Issues resolved (http://bugs.uclibc.org):
  6253. #5732: Error : package/alsa-lib/alsa-lib.mk
  6254. 2012.11-rc1, Released November 17th, 2012
  6255. Fixes all over the tree and new features.
  6256. Defconfigs: use u-boot 2012.10 on at91 and beaglebone,
  6257. sheevaplug + qemu: bump kernel version, add qemu-mips64-malta
  6258. + nitrogen6x defconfigs.
  6259. Bootloaders: add u-boot 2012.07/10, ais target format, add
  6260. barebox 2012.08/09/10/11, linker overlap issue fix for
  6261. at91bootstrap, mxs-bootlets updated for new Barebox versions.
  6262. Toolchains: binutils 2.23.1, gcc 4.7.2, default to gcc 4.6.x,
  6263. Codebench arm/sh/x86 2012.03/09, Linaro 2012.08/09/10.
  6264. Libtirpc support for modern glibc variants. Toolchain on
  6265. target has been deprecated.
  6266. Initial Aarch64 support, Xtensa support re-added.
  6267. Infrastructure: Use shallow git clone when possible, use
  6268. tarballs rather than git URLs for github. Moved to pkgconf
  6269. rather than pkg-config. System directory added, default
  6270. skeleton/device tables moved. More than 1 post-build script
  6271. can now be used. output/target now contains a
  6272. THIS_IS_NOT_YOUR_ROOT_FILESYSTEM warning, to help people
  6273. understand how to (not) use it.
  6274. Manual has been reworked and extended.
  6275. Legal-info: Lots of package annotations, CSV file fixes,
  6276. _LICENSE / _REDISTRIBUTE splitup, per-package hooks.
  6277. Updated/fixed packages: acpid, alsa-lib, alsa-utils,
  6278. alsamixergui, attr, autoconf, automake, bash, bind, binutils,
  6279. bison, blackbox, bluez-utils, busybox, cairo, can-utils,
  6280. cifs-utils, cjson, cmake, collectd, connman, conntrack-tools,
  6281. coreutils, cups, cvs, dbus, dhcp, directfb, dmalloc, dnsmasq,
  6282. dropbear, e2fsprogs, ethtool, fbdump, feh, fftw, file,
  6283. flashrom, fluxbox, gdb, gdisk, gdk-pixbuf, genext2fs, gettext,
  6284. gnutls, gpsd, gqview, grep, gsl, gst-plugins-{bad,good},
  6285. hdparm, hiawatha, hostapd, input-tools, iproute2, ipset,
  6286. iptables, iw, json-c, kexec, kmod, lcdproc, leafpad, less,
  6287. libcurl, libdrm, libdvdnav, libdvdread, libffi, libfuse,
  6288. libglib2, libhid, liblockfile, libmad, libmbus, libmnl,
  6289. libnetfilter_{acct,conntrack,cthelper,cttimeout,queue},
  6290. libnfc, libnfc-llcp, libnfnetlink, libnl, libnspr, libnss,
  6291. libpcap, libplayer, libtool, libtorrent, liburcu, libv4l,
  6292. libxcb, libxml2, libxslt, links, linux-firmware, lm-sensors,
  6293. lmbench, lockfile-progs, logrotate, lshw, lsof,
  6294. lttng-babeltrace, lttng-tools, lua, luajit, mesa3d, microperl,
  6295. mii-diag, module-init-tools, mpc, mpd, mpg123, mplayer,
  6296. mtd-utils, mysql_client, nbd, ncurses, netatalk, netkitbase,
  6297. netkittelnet, netsnmp, newt, nfs-utils, openntpd, openssh,
  6298. openssl, opkg, patch, pciutils, pcre, php, poco, polarssl,
  6299. popt, portmap, pppd, procps, pulseaudio, python, python-nfc,
  6300. python-protobuf, qt, quota, rp-pppoe, rtorrent, sam-ba, samba,
  6301. scons, sdl_gfx, smartmontools, sqlite, squid, strace, sudo,
  6302. sylpheed, tcpdump, tremor, ttcp, tiff, unionfs,
  6303. usb_modeswitch, usbutils, util-linux, vala, valgrind, vpnc,
  6304. vsftpd, webkit, wget, which, wpa_supplicant, x11vnc, xapp_*,
  6305. xdriver_*, xenomai, xfont_*, xinetd, xl2tp, xlib_*, xlsclient,
  6306. xproto_*, xserver_xorg-server, xutil_util-macros, xz, zeromq
  6307. New packages: arptables, at91bootstrap3, boot-wrapper-aarch64,
  6308. ccid, cpanminus, cpuload, erlang, evtest, fb-test-apps,
  6309. fxload, gdbm, gnupg, googlefontdirectory, grantlee, gsl,
  6310. lcdapi, liblo, liblog4c-localtime, libtirpc, linux-pam,
  6311. lua-msgpack-native, macchanger, mtdev, mtdev2tuio, nfacct,
  6312. opus, opus-tools, pcsc-lite, perl, pkgconf, python-meld3,
  6313. python3, qemu, qextserialport, qtuio, rpcbind, schifra,
  6314. sconeserver, supervisor, time, ulogd, usb_modeswitch_data,
  6315. yasm
  6316. Deprecated packages: netkitbase, netkittelnet
  6317. Issues resolved (http://bugs.uclibc.org):
  6318. #807: [PATCH] samba - make iconv and smbd optional
  6319. #3049: binutils have a sysroot bug in ld
  6320. #5330: update vsftpd to 3.0.0
  6321. #5486: libglib2 build fails on: libs/libglib-2.0.so: undefined...
  6322. #5666: Fails to build python 2.7.2 for 2440 arm
  6323. 2012.08, Release August 31th, 2012
  6324. Updated/fixed packages: microperl, cups, luajit, rrdtool,
  6325. prboom, oprofile.
  6326. Added license information for: sqlite.
  6327. Changed the source URLs of all packages located on Sourceforge
  6328. in order to use the automatic mirror selection URL
  6329. downloads.sourceforge.net, and get rid of the
  6330. BR2_SOURCEFORGE_MIRROR option.
  6331. 2012.08-rc3, Released August 25th, 2012
  6332. Updated/fixed packages: libglib2, netsnmp, freetype, libfuse,
  6333. libpng, x11vnc, zlib, gpsd, ifplugd, bash, distcc.
  6334. Added license informations for: barebox, grub, syslinux,
  6335. uboot, xloader, yajl, zlib, zxing, alsa-lib, alsa-utils,
  6336. faad2, nano, fbdump, rsync, librsync, fontconfig,
  6337. inotify-tools,
  6338. 2012.08-rc2, Released August 15th, 2012
  6339. Updated/fixed packages: imagemagick, sudo, crosstool-ng.
  6340. Added license informations for: mxml, nanocom, empty, expat,
  6341. lua, lucjson, xinetd, cjson, luaexpat, lmbench, bwm-ng,
  6342. input-event-daemon, luajit, cgilua, copas, coxpcall,
  6343. luafilesystem, luasocket, rings, wsapi, xavante, libtpl,
  6344. avahi, busybox, libfcgi, ifplugd, libcgicc, libcurl,
  6345. libdaemon, libdnet, libgpg-error, libpcap, libpng, lighttpd,
  6346. mtd, openssl, psmisc, socat, spawn-fcgi.
  6347. Fixes to Microblaze external toolchains
  6348. configuration. Improvements of the pkg-stats
  6349. script. Out-of-tree fix for the graph-depends script.
  6350. Kernel headers version bump.
  6351. 2012.08-rc1, Released August 1st, 2012
  6352. Fixes all over the tree and new features.
  6353. Integration of a legal information reporting infrastructure,
  6354. which allows to generate detailed informations about the
  6355. licenses and source code of all components of a system
  6356. generated by Buildroot. License information will progressively
  6357. be added on packages.
  6358. Default configuration files added for Calao-systems USB-A9263
  6359. and Calao-systems USB-A9G20-LPW.
  6360. External toolchains update: allow download of a custom
  6361. toolchain, add Linaro 2012.05 and 2012.06 for ARM, add
  6362. Blackfin toolchain 2012R1-BETA1, add Sourcery CodeBench MIPS
  6363. 2011.09.
  6364. Allow the restriction of downloads to the primary site only.
  6365. This is useful for project developers who want to ensure that
  6366. the project can be built even if the upstream tarball
  6367. locations disappear.
  6368. Add a 'System configuration' choice to select between 3
  6369. different init systems: Busybox init, SysV init and Systemd
  6370. init.
  6371. Cleanups to the package infrastructure. The visible change to
  6372. developers is that $(eval $(call AUTOTARGETS)) is now $(eval
  6373. $(autotools-package)), and similarly for other package
  6374. infrastructures and host packages. Refer to the documentation
  6375. for details.
  6376. By default, automatic detection of the number of compilation
  6377. jobs to use, depending on the number of CPUs available.
  6378. Improvements to generate systems with static libraries only
  6379. (infrastructure and package fixes).
  6380. Add proper support in the Linux kernel package to generate
  6381. Device Tree Blobs or combined Device Tree / Kernel
  6382. images. This will be useful on Microblaze, PowerPC and ARM,
  6383. which are architectures making extensive use of the Device
  6384. Tree.
  6385. Updated/fixed packages: audiofile, autoconf, automake, axel,
  6386. barebox, bash, beecrypt, berkeleydb, bind, bison, bluez_utils,
  6387. bonnie, boost, busybox, bsdiff, bwm-ng, bzip2, cifs-utils,
  6388. cgilua, cmake, connman, conntrack-tools, crosstool-ng, cups,
  6389. dbus, dhcp, dnsmasq, e2fsprogs, eeprog, ethtool, faad2, fbv,
  6390. ffmpeg, freetype, gmp, gnutls, gob2, gpsd, grep,
  6391. gst-plugins-base, gst-plugins-good, gzip, hiawatha, hostapd,
  6392. htop, icu, igh-ethercat, imagemagick, input-tools, iostat,
  6393. iproute2, ipset, iptables, iw, kmod, less, libcap, libgci,
  6394. libconfig, libcurl, libelf, libevas, libeXosip2, libexif,
  6395. libfuse, libidn, libmad, libmbus, libmnl,
  6396. libnetfilter-conntrack, libnl, libnspr, libnss, libogg,
  6397. libosip2, libpcap, libpng, libroxml, liburcu, libusb, libxml2,
  6398. libxslt, lighttpd, linux, ltrace, lttng-libust, lttng-modules,
  6399. lttng-tools, lua, m4, memtester, midori, mii-diag,
  6400. module-init-tools, mpfr, mpg123, mrouted, msmtp, mtd, mxml,
  6401. mysql_client, nasm, nbd, ncurses, nfs-utils, opencv, openocd,
  6402. openssl, pciutils, php, polarssl, portaudio, pppd,
  6403. pthread-stubs, pulseaudio, qt, quagga, quota, radvd, rpm,
  6404. rrdtool, samba, sam-ba, scons, sdl_gfx, sdl_sound, speex,
  6405. sqlite, squashfs, squid, sudo, synergy, syslinux, systemd,
  6406. tar, tcpdump, tcpreplay, udev, usbutils, valgrind, wget,
  6407. wpa_supplicant, wsapi, xavante, xserver_xorg-server, zlib
  6408. New packages: cjson, collectd, dfu-util, dmidecode, elftosb,
  6409. fbterm, flashrom, freerdp, inadyn, libfreefare,
  6410. libnetfilter_cttimeout, libnfc, libnfc-llcp, liboping,
  6411. libtorrent, linphone, logsurfer, lshw, luacjson, luaexpat,
  6412. luajit, mediastreamer, mobile-broadband-provider-info, monit,
  6413. mxs-bootlets, nanocom, nss-mdns, ofone, omap-u-boot-utils,
  6414. opkg, ortp, owl-linux, python-id3, python-nfc, quota,
  6415. ramspeed, rtorrent, sound-theme-borealis,
  6416. sound-theme-freedesktop, sysprof, webrtc-audio-processing,
  6417. xinetd, zxing
  6418. Issues resolved (http://bugs.uclibc.org):
  6419. #1315: Allow use of older external toolchains without sysroot
  6420. support [won't fix]
  6421. #5276: Hiawatha needs to manage IPV6 if so [fixed]
  6422. #5360: buildroot fails when building "host-libglib2 2.30.2
  6423. Building" [won't fix, upstream problem]
  6424. #5384: Can't build packages relying on gets on newer glibc
  6425. [fixed]
  6426. 2012.05, Released May 30th, 2012:
  6427. Updated/fixed packages: busybox, netsnmp, pptp-linux
  6428. 2012.05-rc3, Released May 25th, 2012:
  6429. Minor fixes around the tree.
  6430. Infra: Fix for DOWNLOAD macro when using primary mirrors with
  6431. scp targets.
  6432. Toolchain: Kernel headers 3.2.18 / 3.3.7.
  6433. Updated/fixed packages: binutils, bison, busybox, cifs-utils,
  6434. gnuchess, gpsd, iperf, libmpeg2, mtd, ntfs-3g, oprofile,
  6435. xserver-xorg
  6436. 2012.05-rc2, Released May 18th, 2012:
  6437. Fixes all over the tree.
  6438. Toolchain: uClibc: Use 0.9.33.2, Crosstool-ng: fix gperf
  6439. dependency, disable decimal floats support, Linux 3.2.17 /
  6440. 3.3.6 kernel headers. Fix sysroot copy handling for toolchains
  6441. without C++ support.
  6442. Updated/fixed packages: apr, apr-util, ccache, dnsmasq,
  6443. heirloom-mailx, gdb, ndisc6, opencv, openssl, socat, vala
  6444. 2012.05-rc1, Released May 10th, 2012:
  6445. Fixes all over the tree and new features.
  6446. Use /etc/os-release for version info rather than
  6447. /etc/br-version.
  6448. CMake toolchain file moved to $HOST_DIR/usr/share/buildroot.
  6449. Apply-patches.sh: cleanups, archived patches handling fixes,
  6450. support series files.
  6451. Defconfigs: beaglebone, mx53qsb, pandaboard, qemu configs for
  6452. arm-vexpress/microblaze/ppc-mpc88544ds, use 3.2.x for
  6453. atngw100, use 3.3.x for qemu configs.
  6454. Menu structure: Libraries moved out of multimedia section
  6455. Atom processor support. Prescott fix, blackfin ABI fix,
  6456. Microblaze architecture support (using ext toolchain). Cleanup
  6457. architecture names, deprecate Xtensa support.
  6458. Toolchain: Add GCC 4.4.7, 4.6.3, 4.7.0. uClibc 0.9.33.1,
  6459. default to uClibc 0.9.33.x, enable
  6460. UCLIBC_SUPPORT_AI_ADDRCONFIG by default, static and 64bit
  6461. fixes for external toolchains, linaro ext toolchains, new
  6462. sourcery codebench ext toolchains, GDB 7.4.1, crosstool-ng
  6463. 1.15.2.
  6464. Bootloaders: U-Boot: add 2012.04.01, SPL and u-boot.img
  6465. support. Barebox: add 2012.04, remove 2011.12.
  6466. Updated/fixed packages: alsa-lib, alsa-utils, at, atk, avahi,
  6467. barebox, berkeleydb, bind, bluez_utils, boost, busybox,
  6468. can-utils, ccache, cifs-utils, coreutils, cups, dbus, dhcp,
  6469. directfb, dnsmasq, doom-wad, dosfstools, e2fsprogs, expat,
  6470. fakeroot, feh, ffmpeg, file, fis, freetype, gamin, gawk,
  6471. gdk-pixbuf, gettext, giblib, glib-networking, gmp, gnutls,
  6472. gpsd, grep, gstreamer, gst-plugins-{bad,base,good,ugly},
  6473. haserl, hdparm, imagemagick, iproute2, iptable, iw, kexec,
  6474. kmod, lame, libaio, libarchive, libatomic_ops, libconfig,
  6475. libcurl, libdvdnav, libdvdread, libedbus, libethumb, libffi,
  6476. libfuse, libglib2, libgtk2, libhid, libmad, libmbus, libmpeg2,
  6477. libnl, libplayer, libpng, libsigc, libsoup, libupnp, liburcu,
  6478. libusb, libusb-compat, libxml2, libxml-parser-perl, libxslt,
  6479. lighttpd, linux-firmware, linux-fusion, lite, lsof, ltrace,
  6480. lttng-libust, lua, m4, makedevs, microperl, mpd, mpfr, mpg123,
  6481. mrouted, mtd, mysql_client, nbd, ncftp, ncurses, neon,
  6482. netsnmp, network-manager, nfs-utils, ngrep, ntfs-3g, openntpd,
  6483. openssh, openssl, parted, pango, pcre, php, pixman, poco,
  6484. psmisc, pulseaudio, python, qt, quagga, radvd, rpm, rsync,
  6485. ruby, samba, sam-ba, sane-backends, sawman, screen, sdl_net,
  6486. smartmontools, speex, sqlite, squashfs3, squid, sshfs, sudo,
  6487. syslinux, sysstat, taglib, tcpdump, tftp-hpa, transmission,
  6488. tiff, tinyhttpd, uboot-tools, udev, uemacs, unionfs, usbutils,
  6489. util-linux, vala, valgrind, vim, vsftpd, wget, wipe,
  6490. wpa_supplicant, xdriver_xf86-{input-vmmouse,video-fbdev},
  6491. xfsprogs, zlib
  6492. New packages: apr, apr-util, audiofile, bellagio,
  6493. conntrack-tools, empty, fmtools, glib-networking,
  6494. heirloom-mailx, hiawatha, latencytop, lcdproc, libcap-ng,
  6495. libdmtx, libfcgi, libnetfilter_conntrack, libnfnetlink,
  6496. libtpl, localedef, minicom, msmtp, ndisc6, netatalk,
  6497. ocf-linux, openswan, parted, polarssl, protobuf, read-edid,
  6498. socketcand, stress, systemd, ushare, zeromq
  6499. Deprecated packages: ttcp
  6500. Removed packages: ntfsprogs
  6501. Issues resolved (http://bugs.uclibc.org):
  6502. #2353: [lua] fix build with 2010.08-rc1
  6503. #2503: Microperl fails build on MIPSel or with Fedora13.x86_64
  6504. #2557: [PATCH] mkfs.xfs complains about missing libxfs.so.0
  6505. #2881: Can't build project statically with external toolchain
  6506. #3751: MIPS: fix BR2_GCC_TARGET_ABI for MIPS n64
  6507. #4808: ccache may build against wrong zlib
  6508. #4880: New package lcdproc
  6509. #4886: New package protobuf
  6510. #4892: build fails on ltp-testsuite-20101031/testcases/kernel/fs/...
  6511. #4898: * make: [target-finalize] Error 1 (ignored)*
  6512. #4985: Qt 4.7.4 build crashes with Linux 2.6.29
  6513. #4970: udev 181 fails to build if kernel version 3.3 is selected
  6514. #5018: dialog broken: exits with assert in uClibc
  6515. #5102: qt package moc, uic, rcc read from wrong place
  6516. #5144: Patch to fix ixon bug in uemacs
  6517. #5198: Line graphics output is broken in GNU Screen
  6518. #5204: Missing terminfo file(s) for GNU screen terminal type
  6519. 2012.02, Released February 29th, 2012:
  6520. Updated/fixed packages: libecore
  6521. 2012.02-rc3, Released February 27th, 2012:
  6522. Fixes all over the tree.
  6523. Automatic host dependencies handling for cmake packages
  6524. fixed. Customize package deprecated as using a post-build
  6525. script is nowadays the preferred way of adding extra stuff to
  6526. the rootfs.
  6527. Linux-headers 3.0.x / 3.2.x stable version bumped.
  6528. QEMU defconfigs updated to 3.2.x kernels and readme fixed.
  6529. Updated/fixed packages: dropbear, ffmpeg, libpng
  6530. 2012.02-rc2, Released February 19th, 2012:
  6531. Fixes all over the tree.
  6532. Toolchain: uClibc: Added upstream post-0.9.33 fixes, Bump
  6533. linux-headers 3.0.x / 3.2.x stable versions.
  6534. Documentation: Added makedev / <pkg>_DEVICES /
  6535. <pkg>_PERMISSIONS documentation.
  6536. Updated/fixed packages: busybox, ffmpeg, gst-dsp, libecore,
  6537. libvncserver, mxml, python.
  6538. 2012.02-rc1, Released February 12th, 2012:
  6539. Fixes all over the tree and new features.
  6540. Toolchain: Default to GCC 4.5.x, add binutils 2.22. Java
  6541. support removed, Powerpc SPE ABI support. GDB ELF support fix,
  6542. GDB 7.4, crosstool-NG 1.13.4.
  6543. Gentargets: scp and mercurial support.
  6544. Autotools: derive host dependencies from target by default.
  6545. Packages can now declare device table snippets.
  6546. Host utilities menu with commonly used host tools.
  6547. defconfigs: qemu configs for x86-64, mips and sparc, at91
  6548. defconfigs now use modern U-Boot / mainline Linux, added
  6549. lpc3250 defconfigs.
  6550. uClibc: remove 0.9.30, backport unshare() support, add
  6551. 0.9.32.1 / 0.9.33, use same config for ctng.
  6552. Bootloaders: U-Boot: add 2011.12, remove 2010.xx versions,
  6553. Barebox: add 2012.01/02, remove 2011.10/11, LPC32xx
  6554. bootloaders added.
  6555. Various manual updates. Release tarballs now contain generated
  6556. manual in text/html/pdf formats.
  6557. Buildroot now calls the stop function of scripts in
  6558. /etc/init.d at shutdown.
  6559. Updated/fixed packages: atk, avahi, barebox, bash, beecrypt,
  6560. bind, binutils, bison, bluez_utils, bzip2, busybox, cairo,
  6561. ccache, cdrkit, coreutils, cramfs, dbus, dbus-glib, dialog,
  6562. diffutils, dmalloc, dropbear, e2fsprogs, ebtables, ed,
  6563. ethtool, expat, ffmpeg, file, fis, flex, fluxbox, fontconfig,
  6564. freetype, gawk, grep, gst-dsp, gst-ffmpeg, gst-plugins-base,
  6565. hdparm, hostapd, htop, i2c-tools, icu, iproute2, ipsec-tools,
  6566. ipset, iptables, iw, jpeg, kismet, lame, libcap, libcgi,
  6567. libev, libeXosip2, libffi, libftdi, libgpg-error, libgtk2,
  6568. libidn, libmms, libmnl, libmodbus, libnl, libogg, libosip,
  6569. libpcap, libpng, libraw1394, libroxml, libusb, libusb-compat,
  6570. libv4l, libvorbis, libxcb, libxml-parser-perl, libxslt,
  6571. lighttpd, links, lm-sensors, lua, m4, module-init-tools, mpc,
  6572. mesa3d, mpd, mpfr, mplayer, mtd-utils, nano, nbd, ncurses,
  6573. netperf, netsnmp, ntp, opencv, openocd, openssl, openvpn, orc,
  6574. pciutils, pcre, pixman, pkg-config, poco, popt, proftpd,
  6575. python, python-serial, qt, ruby, samba, sdl, sdparm,
  6576. squashfs3, sshfs, sqlite, squid, sudo, syslinux, tcl, tcpdump,
  6577. ti-utils, tiff, tremor, uboot, uboot-tools, udev, usbmount,
  6578. util-linux, vala, valgrind, vsftpd, wpa_supplicant,
  6579. xapp_{bdftopcf,mkfontdir,mkfontscale,xkbcomp,xcursorgen,xinit},
  6580. xapp_xinput, xapp_xman, xcb-util, xdm, xenomai,
  6581. xf86-video-sis, xfont_{encodings,font-util},
  6582. xlib_lib{fontenc,X11,Xau,Xcursor,Xdmcp,Xfixes,Xfont,Xrender},
  6583. xlib_libxkbfile, xterm, xutil_makedepend, yajl
  6584. New packages: boost, connman, dstat, expedite, explorercanvas,
  6585. feh, flot, giblib, igh-ethercat, imlib2, jquery,
  6586. jquery-sparklines, jquery-validation, jsmin, kmod, libecore,
  6587. libedbus, libedje, libeet, libeina, libelementary, libesmtp,
  6588. libethumb, libevas, libical, libmbus, liboauth, liburcu,
  6589. libvncserver, linux-firmware,
  6590. lttng-{babeltrace,libust,modules,tools}, NetworkManager,
  6591. open2300, python-distutilscross, python-dpkt,
  6592. python-netifaces, python-pygame, python-setuptools, rt-tests,
  6593. sam-ba, sane-backends, sqlcipher, transmission, unionfs,
  6594. xf86-input-tslib, xinput-calibrator
  6595. Issues resolved (http://bugs.uclibc.org):
  6596. #743: Add Transmission bit torrent option to buildroot
  6597. #755: Add Boost libraries as a package
  6598. #2299: Add crypto support to libsoup
  6599. #2617: Pixman 0.19.2 & Cairo 1.10.0
  6600. #3403: libgpg-error: bump to version 1.10
  6601. #3409: libgpg-error: download from gnupg.org
  6602. #3421: nano: make tiny flag optional
  6603. #3691: New EFL packages
  6604. #4664: Cannot patch AT91Bootstrap
  6605. #4700: setlocalversion not working for combination svn/ubuntu 11.10...
  6606. #4760: Qt: add host-pkg-config to dependency-list
  6607. 2011.11, Released November 30th, 2011:
  6608. Fixes all over the tree.
  6609. Bump kernel headers / default Linux version to 3.1.4.
  6610. Updated/fixed packages: ruby
  6611. 2011.11-rc3, Released November 26th, 2011:
  6612. Fixes all over the tree.
  6613. Toolchain: Fix gdb dependencies for external toolchains,
  6614. adjust uClibc patches so they don't confuse modern versions of
  6615. patch, bump crosstool-ng, kernel headers and linux versions.
  6616. Updated/fixed packages: busybox, freetype, mplayer, opencv,
  6617. php, rsyslog, ruby, thttpd, xapp_xf86dga
  6618. Issues resolved (http://bugs.uclibc.org):
  6619. #4357: Prevent patch commands from accessing source control
  6620. #4369: Fix permissions on untared lsof archive
  6621. 2011.11-rc2, Released November 18th, 2011:
  6622. Fixes all over the tree and new features.
  6623. Updated asciidoc documentation
  6624. Toolchain: Bumped 3.x stable kernel headers, use wget in
  6625. crosstool-ng as well, bump crosstool-ng version, gdb fixes,
  6626. uClibc sparc fix.
  6627. Updated/fixed packages: distcc, file, gst-plugins-bad, libxcb,
  6628. mplayer, newt, qt, rpm, rrdtool, tar, tftpd
  6629. Issues resolved (http://bugs.uclibc.org):
  6630. #3355: mplayer fails to build
  6631. #4021: uClibc: undefined reference to `__GI___errno_location'
  6632. #4297: Qt's qmake uses wrong pkg-config
  6633. 2011.11-rc1, Released November 11th, 2011:
  6634. Fixes all over the tree and new features.
  6635. Moved misc scripts and support stuff to support/. Renamed
  6636. patch-kernel.sh to support/scripts/apply-patches.sh.
  6637. Documentation: Moved to asciidoc format, make targets to
  6638. generate text/html/pdf/epub output added.
  6639. Defconfigs: Qemu configs updated to 3.1 kernel and readmes
  6640. added.
  6641. Bootloaders: Add support for custom git tree / tarballs for
  6642. barebox, similar to how it's handled for u-boot. Clean up
  6643. menuconfig options.
  6644. Toolchain: Update external codesourcery toolchain download
  6645. URLs after Codesourcery got bought by Mentor, add x86
  6646. toolchain, update toolchain versions and optimize toolchain
  6647. sysroot copying. Fix uClibc 0.9.32 builds for e500 PPC,
  6648. updated GDB versions / download URLs. Binutils
  6649. libbfd/libopcodes static/dynamic linking fix. GCC 4.6.2 added,
  6650. use ctng-1.13.0.
  6651. Package infrastructure: Support for local packages /
  6652. overrides, package dir / name arguments dropped from
  6653. {GEN,AUTO,CMAKE}TARGETS.
  6654. Linux: Kernel extensions infrastructure support, Xenomai +
  6655. RTAI support.
  6656. Updated/fixed packages: acpid, bind, busybox, dash, dbus,
  6657. dbus-glib, directfb, dnsmasq, drystone, e2fsprogs, ethtool,
  6658. fakeroot, fbdump, file, freetype, fuse, gamin, gmp, gmpc,
  6659. gnutls, gob2, gst-plugins-{base,bad,good,ugly}, gstreamer,
  6660. hostapd, ifplugd, imagemagick, intltool, ipsec-tools, ipset,
  6661. iptables, iw, jpeg, kexec, leafpad, less, libargtable2, libao,
  6662. libconfuse, libcuefile, libcurl, libdaemon, libevent,
  6663. libglib2, libiconv, libmpd, libreplaygain, libroxml,
  6664. libsamplerate, libsndfile, libsoup, libsvgtiny, libtool,
  6665. libxcb, lighttpd, links, linux-fusion, lite, lrzsz, lsof, lzo,
  6666. lzop, makedevs, mcookie, mpg123, mpd, mpfr, mtd, musepack,
  6667. mutt, mysql_client, ncftp, ncurses, neon, netcat, netsnmp,
  6668. ntfs-3g, ntfsprogs, ntp, openntpd, openssh, openssl, oprofile,
  6669. orc, pciutils, psmisc, python, qt, quagga, radvd, rpm, rsync,
  6670. samba, sawman, sdl_sound, smartmontools, sqlite, squid,
  6671. stunnel, sudo, sylpheed, sysstat, taglib, tar, tcpreplay,
  6672. tslib, usbutils, util-linux, valgrind, wget, whetstone, which,
  6673. wpa-supplicant, xdata_xcursor-themes, xmlstarlet, xterm
  6674. New packages: bluez-utils, cifs-utils, fftw, fluxbox, json-c,
  6675. libev, libftdi, libgeotiff, libmodbus, libplayer, live555,
  6676. ngrep, noip, opencv, openocd, picocom, poco, portaudio,
  6677. pulseaudio, pv, rtai, vala, xenomai.
  6678. Removed packages: liboil, sfdisk, swfdec, webif
  6679. Issues resolved (http://bugs.uclibc.org):
  6680. #505: live555: new package
  6681. #507: Enable live and tv options in MPlayer-1.0rc2
  6682. #531: let e2fsprogs package to export headers to staging dir if needed
  6683. #1171: Linuxthreads new cannot find sysdep.h
  6684. #1357: Add bluez to buildroot system
  6685. #2107: New package: input-event-daemon
  6686. #2599: New package: orc (Oil Runtime Compiler)
  6687. #2605: gstreamer: Update to 0.10.30
  6688. #2677: introducing util-linux-ng as replacement for util-linux
  6689. #2917: Qt: Add declarative module
  6690. #3145: jffs2 image generation fails
  6691. #3271: netperf-2.4.5 fails to compile
  6692. #3331: xdata_xcursor-themes depends on xcursorgen
  6693. #3343: Add file:// download SITE_METHOD
  6694. #3391: Add support for specifying an external kernel tree
  6695. #3631: Error while compiling with Xorg
  6696. #3709: oprofile doesn't build for mipsel
  6697. #3925: midori not getting compile
  6698. #4045: Add support for downloading i386 toolchains from codesourcery
  6699. #4165: lrzsz-fix-symlink-at-rebuild.patch
  6700. #4171: makedevs-unused-but-set-variable.patch
  6701. #4183: Codesourcery toolchain download site has changed
  6702. #4231: libneon.so: undefined reference to `SSL_SESSION_cmp'
  6703. #4381: Add option to lighttpd to enable Lua support
  6704. #4387: Make sure that dest dir exists before installing mtd files
  6705. 2011.08, Released August 31th, 2011:
  6706. Fixes all over the tree.
  6707. Toolchain: Fix codesourcery 2009q3 ARM download, Linux 3.0.4
  6708. kernel headers.
  6709. Updated/fixed packages: ipset, python
  6710. 2011.08-rc2, Released August 29th, 2011:
  6711. Fixes all over the tree.
  6712. Toolchain: crosstool-NG 1.12.1, use binutils 2.21 on
  6713. mips/sh/older uClibc, disallow uClibc 0.9.32 on avr32/sh
  6714. (broken).
  6715. Defconfigs: kernel updates, fix mini2440 serial port config,
  6716. remove old arm toolchain configs.
  6717. Bootloaders: Fix grub patching, add barebox-{n,x,menuconfig}
  6718. targets similar to linux/busybox.
  6719. Updated/fixed packages: barebox, directfb, libsoup,
  6720. libxml-parser-perl, mtd, ncurses, python, ti-utils, udev,
  6721. usbmount, util-linux, xfont_font-misc-misc
  6722. Issues resolved (http://bugs.uclibc.org):
  6723. #3685: ncurses installation hangs due to old version of tic
  6724. #4093: Grub fails to install bz2 patch after conversion to...
  6725. 2011.08-rc1, Released August 4th, 2011:
  6726. Fixes all over the tree and new features.
  6727. Toolchain: uClibc 0.9.32 / NPTL support, 0.9.29 removed,
  6728. ext-toolchain-wrapper improvements, improved non-MMU
  6729. support. GCC 4.3.6 / 4.6.1.
  6730. GENTARGETS infrastructure extended to cover bootloaders and
  6731. Linux kernel as well. Options to retrive Linux/U-Boot from a
  6732. custom git repo instead of upstream tarballs.
  6733. Support for Linux 3.x and release candidate tarballs.
  6734. X-Loader bootloader for omap added.
  6735. Make source/external-deps now also works for external
  6736. toolchains / crosstool-ng backend.
  6737. Updated/fixed packages: autoconf, berkeleydb, bind, binutils,
  6738. bmon, bridge-utils, busybox, cmake, dbus, dbus-glib,
  6739. e2fsprogs, ethtool, ffmpeg, gst-plugins-{bad,base,good,ugly},
  6740. gvfs, hostapd, iproute2, iptables, iw, jpeg, lame, libarchive,
  6741. libdnet, libdrm, libgcrypt, libgtk2, libmpeg2, libpng,
  6742. libsoup, lighttpd, linux-fusion, lzo, midori, mtd-utils,
  6743. nfs-utils, openvpn, oprofile, orc, pkg-config, proftpd, qt,
  6744. ruby, samba, sdl, shared-mime-info, sudo, sqlite, squid,
  6745. synergy, udev, usbmount, usbutils, util-linux, valgrind,
  6746. webkit, xorg-xserver, xz, zlib
  6747. New packages: acl, attr, ebtables, gnutls, inotify-tools,
  6748. ipset, libargtable2, libiqrf, libmnl, libnspr, libnss,
  6749. libroxml, libyaml, live555, mxml, orc, rsyslog, sredird,
  6750. statserial, stunnel, ti-utils, uboot-tools, yajl
  6751. Deprecated packages: liboil, swfdec
  6752. Removed packages: hal
  6753. Issues resolved (http://bugs.uclibc.org):
  6754. #3559: libnspr: Add new package
  6755. #3595: patch to add libroxml
  6756. #3565: libnss: Add new package
  6757. #3583: xfonts_font-adobe-100dpi fails due to missing map file
  6758. #3649: [PATCH] Add mapdir to existing pkg-config patch
  6759. #3907: 2011.05 - Qt 4.7.3 not building on ARM
  6760. #3961: Nfs-utils: Remove SUSv3-function index
  6761. #3985: "help" target's defconfig list needs sort
  6762. #3997: bump libroxml to v2.1.0
  6763. 2011.05, Released May 27th, 2011:
  6764. Updated/fixed packages: makedevs
  6765. 2011.05-rc2, Released May 24th, 2011:
  6766. Fixes all over the tree.
  6767. Toolchain: Code sourcery ARM 2009q1 download URL fixed /
  6768. 2009q3 external toolchains added. Crosstool-NG bumped to
  6769. 1.11.3, eglic/glibc configuration fixes. Linux kernel 2.6.38.x
  6770. bumped to 2.6.38.7.
  6771. Updated/fixed packages: bind, fakeroot, kbd, psmisc, qt
  6772. 2011.05-rc1, Released May 18th, 2011:
  6773. Fixes all over the tree and new features.
  6774. External toolchain improvements: We now build a binary
  6775. toolchain wrapper and install it into HOST_DIR/usr/bin, which
  6776. enforces the correct compiler arguments, making an external
  6777. toolchain as easy to use outside of Buildroot as the internal
  6778. ones are. This also brought a cleanup of CFLAGS, making the
  6779. Buildroot build output easier to read.
  6780. Rootfs device handling improvements: Choice between static
  6781. /dev, devtmpfs and devtmpfs with either mdev or udev.
  6782. Toolchain: More preconfigured codesourcery external
  6783. toolchains, improved Crosstool-NG support, fix for GCC
  6784. snapshot versions, GCC 4.4.6 / 4.5.3, experimental GCC 4.6.0
  6785. support, target-GCC fixes, uClibc fixes, 0.9.32-rc3 support.
  6786. Bootloaders: U-boot 2011.03, Barebox 2011.05.0
  6787. Linux: support for custom kernel image targets, E.G. for
  6788. powerpc builds with embedded device trees.
  6789. Misc fixes for qemu defconfigs, ensuring correct serial
  6790. terminal setup out of the box.
  6791. Misc gentarget / autotools handling fixes.
  6792. Updated/fixed packages: alsa-lib, alsa-utils, alsamixergui,
  6793. atk, avahi, bind, bison, busybox, copas, dbus-glib, dhcp,
  6794. dhcpdump, dnsmasq, dropbear, ethtool, fakeroot, ffmpeg, file,
  6795. gamin, gnuconfig, gst-ffmpeg, gst-plugins-good, gtk2-engines,
  6796. haserl, hostapd, icu, imagemagick, iproute2, iw, kismet, less,
  6797. libcap, libdnet, libglade, libglib2, libgtk2, libnl, libpng,
  6798. libxml2, libxml2, libxslt, lighttpd, lockfile-progs, makedevs,
  6799. midori, mpg123, mpc, mpd, mpfr, mplayer, mtd-utils, ncurses,
  6800. netsnmp, openssh, openssl, openvpn, pango, pkg-config, popt,
  6801. procps, proftpd, qt, quagga, readline, rsync, samba, sdl,
  6802. socat, squashfs, squid, sudo, tslib, udev, usbutils, webkit,
  6803. wpa_supplicant, xerces, xfont_font-misc-misc, xlib_libX11,
  6804. xlib_libXfont, xlib_xtrans, xorg-server, xterm, xz
  6805. New packages: bonnie++, can-utils, gdisk, htop,
  6806. input-event-daemon, libexif, libraw, libv4l, ngircd
  6807. Removed packages: festival
  6808. Issues resolved (http://bugs.uclibc.org):
  6809. #2131: Add OpenMP support to the toolchain
  6810. #3379: New Package: bonnie++
  6811. #3445: Not working openssl-10.0.0d on 386sx
  6812. #3451: fakeroot package: wrong FAKEROOT_SITE variable
  6813. #3457: alsamixergui: broken URL
  6814. #3475: Calling sync on large filesystems when not always necessary
  6815. #3511: make busybox-menuconfig does not download busybox package
  6816. #3541: Quotes in the top Makefile:217 break buildroot/kernel config...
  6817. #3571: u-boot: fw_printenv does not build
  6818. #3643: popt source url is not responding
  6819. #3733: dropbear: make zlib optional
  6820. #3757: Buildroot can't build mplayer with libmad
  6821. 2011.02, Released February 28th, 2011:
  6822. Fixes all over the tree.
  6823. Updated/fixed packages: alsamixergui, avahi, ffmpeg, icu, mpd,
  6824. nuttcp, qt, slang, squashfs, sylpheed, synergy, xerces
  6825. Deprecated packages: devmem2, webif
  6826. Issues resolved (http://bugs.uclibc.org):
  6827. #2911: Qt: Disable qt3support-option, if gui-module isn't selected
  6828. #3259: Unable to build webkit (on arm)
  6829. #3295: slang fails to build on mipsel
  6830. #3325: ffmpeg fails to build
  6831. 2011.02-rc2, Released February 24th, 2011:
  6832. Fixes all over the tree.
  6833. Festival packages marked as broken. Unless someone steps up
  6834. to support them, they will be removed during the 2011.05
  6835. development cycle.
  6836. Updated/fixed packages: atk, avahi, bind, cairo, dbus,
  6837. enchant, fakeroot, gmpc, gpsd, gvfs, iperf, jpeg, libarchive,
  6838. libcgicc, libdaemon, libdrm, libevent, libgail, libglib2,
  6839. libgpg-error, libmicrohttpd, librsvg, libsoup, libxcp,
  6840. makedevs, matchbox-fakekey, matchbox-startup-monitor, mdadm,
  6841. metacity, mpd, nasm, nfs-utils, olsr, openssl, popt,
  6842. pthread-stubs, quagga, rpm, samba, sdl, sdl_gfx, sdl_image,
  6843. sdl_mixer, sdl_sound, sdl_ttf, squashfs, synergy, taglib,
  6844. tcpreplay, tiff, wpa_supplicant, xcb-util,
  6845. xdriver_xf86-input-{acepad,aiptek,evdev,joystick,keyboard},
  6846. xdriver_xf86-input-{mouse,synaptics,void},
  6847. xdriver_xf86-video-{chips,dummy,geode,glide,intel,nv,wsfb},
  6848. xlib_lib{ICE,SM,XScrnSaver,Xau,Xcursor,Xdmcp,Xi,Xinerama},
  6849. xlib_lib{Xrandr,Xt,Xtst,Xxf86dga,Xxf86vm,dmx,fontenc,pciaccess},
  6850. xserver_xorg-server, xz
  6851. Removed packages: ace_of_penguins, vlc
  6852. Issues resolved (http://bugs.uclibc.org):
  6853. #3205: Failing chmod when running "make" in buildroot (openssl)...
  6854. #3277: quagga fails to build with SNMP support
  6855. #3283: See why nfs-utils needs fakeroot, and convert to autotools
  6856. #3307: synergy fails to build due to missing XTest library
  6857. 2011.02-rc1, Released February 14th, 2011:
  6858. Fixes all over the tree and new features.
  6859. External toolchain improvements: clarification of the options,
  6860. and introduction of the toolchain profile concept, for
  6861. well-known toolchains. Buildroot is now capable of
  6862. automatically downloading and extracting well-known toolchains
  6863. (for the moment, CodeSourcery ARM, PowerPC, MIPS and SuperH
  6864. toolchains are supported). Crosstool-NG backend updated and
  6865. improved.
  6866. Complete rework of how hardware boards are supported.
  6867. Each board now only has a single defconfig file, and all
  6868. board-specific options have been removed. See
  6869. docs/buildroot.html#board_support for details.
  6870. Added support for the following boards: Mini2440, Qemu ARM
  6871. Versatile, Qemu MIPSel Malta, Qemu PowerPC G3beige, Qemu SH4
  6872. r2d and Qemu x86. The Qemu boards support allows to easily
  6873. build systems that are known to work under Qemu.
  6874. Initial support for Blackfin processors.
  6875. Staging directory moved into $(O)/host/usr/<tuple>/sysroot, in
  6876. preparation for support of SDK. For the same reason, the
  6877. toolchain binaries (cross-compiler and other related tools)
  6878. are now installed in $(O)/host/usr/bin/. The cross pkg-config
  6879. now also automatically returns correct values for cross
  6880. compilation, without needing any environment variables to be
  6881. set.
  6882. Ccache support reworked. Now used for both host and target
  6883. compilation, and cache is stored in ~/.buildroot-ccache.
  6884. Toolchain: uClibc 0.9.32-rc2, several components moved to
  6885. normal AUTOTARGET packages.
  6886. Generic cmake infrastructure, similar to the existing
  6887. GENTARGETS/AUTOTARGETS.
  6888. Support for bzr downloads, next to the existing git/svn support.
  6889. Kconfig infrastructure rebased against 2.6.38-rc3, bringing
  6890. misc fixes. 'xconfig' now uses Qt4 rather than Qt3.
  6891. EXT2 file system size handling improved, UBI image support, fs
  6892. configuration options cleanup, U-Boot/Barebox version bumps.
  6893. Updated/fixed packages: alsa-utils, at, autoconf, automake,
  6894. bash, binutils, bison, busybox, bzip2, cdrkit, cloop, cmake,
  6895. coreutils, cups, dbus, dbus-python, dhcp, directfb,
  6896. direcfb-examples, dmalloc, dnsmasq, dosfstools, e2fsprogs, ed,
  6897. fbset, ffmpeg, findutils, flac, freetype, gdk-pixbuf, gmp,
  6898. grep, gperf, gst-ffmpeg, gst-plugins-bad, gst-plugins-base,
  6899. gst-plugins-good, gst-plugins-ugly, gstreamer, gvfs, hdparm,
  6900. hostapd, i2c-tools, icu, imagemagick, input-tools, iproute2,
  6901. iptables, iw, jpeg, kexec, libaio, libart, libcap, libconfig,
  6902. libfuse, libglib2, libidn, libmad, libogg, libpcap, libpng,
  6903. libsndfile, libtheora, libtool, libusb-compat, libvorbis,
  6904. libxcb, libxml2, libxslt, links, linux-fusion, lm-sensors,
  6905. lsof, ltp-testsuite, ltrace, lvm2, lzo, m4, makedevs,
  6906. memtester, mesa3d, mii-diag, mpc, mpfr, mpg123, mplayer,
  6907. mrouted, mtd-utils, nano, netperf, netplug, ntfs-3g, ntp,
  6908. openssh, openssl, openvpn, oprofile, pango, patch, pciutils,
  6909. php, pkgconfig, portmap, psmisc, python, qt, rsync, ruby,
  6910. sawman, screen, sdl_gfx, sdl_sound, smartmontools, socat,
  6911. sqlite, squid, sshfs, sstrip, sysklogd, sysstat, sysvinit,
  6912. tar, tcpdump, tslib, udev, usbutils, vim, vtun, webkit, wipe,
  6913. x11vnc, xapp_xlogo, xcb-proto, xfont_font-util,
  6914. xkeyboard-config, xlib_libX11, xz, zlib
  6915. New packages: dhrystone, dsp-tools, faad2, fbgrab, gst-dsp,
  6916. gst-omapfb, irda-utils, lame, libao, libcue, libcuefile,
  6917. libffi, libhid, libreplaygain, libsamplerate, libsigc++,
  6918. lsuio, mpd, musepack, python-mad, python-serial, rsh-redone,
  6919. sdparm, tidsp-binaries, vorbis-tools, wavpack, whetstone,
  6920. xl2tp, xmlstarlet
  6921. Removed packages: hotplug, l2tp, libfloat, microcom,
  6922. ng-spice-rework
  6923. Issues resolved (http://bugs.uclibc.org):
  6924. #267: The make target: cross fails because toolchain_build_...
  6925. #415: Berkeley DB: mut_pthread.o: relocation R_X86_64_32 against...
  6926. #561: ltp-testsuite failed to install
  6927. #1447: Installing gfortran on PowerPC
  6928. #1651: Build fail caused by ccache in module-init-tools
  6929. #1681: Cross-compiled binaries shouldn't be installed into staging
  6930. #1723: [PATCH] axel: convert to generic package infrastructure and...
  6931. #1735: [PATCH] mplayer: convert to autotools infrastructure
  6932. #2551: [PATCH] native toolchain in the target filesystem fails
  6933. #2623: buildroot-snapshot-20100922 fails when compiling development...
  6934. #2647: makedevs package lacks support for 16-bit major/minor numbers
  6935. #2371: QT MYSQL Module does not build when MySQL installed on the host
  6936. #2839: compile fails in various packages with a odd message "error:...
  6937. #2887: tar "buffer overflow detected" error
  6938. #2893: Broken "make source" with external toolchain
  6939. #2905: Qt: Speed up compilation, if gui-module isn't selected
  6940. #2929: genext2fs: couldn't allocate a block (no free space)
  6941. #2935: Ntpdate isn't installed
  6942. #2965: Broken linkage to xkbcomp (blocking X server startup)
  6943. #2983: xlib_libX11 build failed
  6944. #3007: kexec doesn't build: Missing regdef.h file
  6945. #3085: Init scripts are not compatible with sysVinit (when busybox...
  6946. #3103: make external-deps wants to download gcc-.tar.bz2 when...
  6947. #3109: abnormal `make busybox-menuconfig`
  6948. #3115: How about board specific makefiles?
  6949. #3169: python patch has typo, aborts build in scenario
  6950. #3181: dhcp.mk copies S80dhcp-server to etc/init.d, not etc/init.d/
  6951. 2010.11, Released November 30th, 2010:
  6952. Fixes all over the tree.
  6953. Updated/fixed packages: libgcrypt, qt, squid, sysstat, tcpdump,
  6954. xserver-xorg
  6955. Issues resolved (http://bugs.uclibc.org):
  6956. #2773: squid with openssl support needs openssl on the host
  6957. #2857: OBJDUMP definition is missing from TARGET_CONFIGURE_OPTS
  6958. 2010.11-rc2, Released November 25th, 2010:
  6959. Fixes all over the tree.
  6960. Add support for LEON Sparc architecture variants. Fix make
  6961. source/external-deps for host packages.
  6962. Updated/fixed packages: bash, bind, busybox, dialog, gpsd,
  6963. libglib2, libcurl, libmad, lrzsz, midori, module-init-tools,
  6964. mtd-utils, openssh, openssl, pciutils, php, qt, sqlite,
  6965. sysstat, webkit, zlib
  6966. Issues resolved (http://bugs.uclibc.org):
  6967. #759: Sysstat build broken without libintl
  6968. #2479: host-module-init-tools 3.11 fails to build
  6969. #2725: Buildroot overrides kernel config
  6970. #2785: mtd-utils build fails due to missing libmtd
  6971. #2791: Added PHP-Process Control to the PHP-Package
  6972. #2797: pciutils dependencies on zlib not taken into account
  6973. #2809: failed to compile libglib2
  6974. #2821: [PATCH] Patch for JavaScriptCore in QtWebKit module
  6975. #2827: qt-4.7.0-pthread_getattr_np.patch invalid for qt 4.6...
  6976. #2833: Failed to compile webkit without X11
  6977. 2010.11-rc1, Released November 8th, 2010:
  6978. Fixes all over the tree and new features.
  6979. Kconfig infrastructure rebased against 2.6.36-rc1, bringing
  6980. misc fixes + nconfig and savedefconfig targets.
  6981. Toolchain: ARM cortex A9 support, experimental crosstool-ng
  6982. backend, GCC 4.5.x.
  6983. Fs: Squashfs 4.1 with lzo support
  6984. Old-style package hooks (*_HOOK_POST_*) removed. Use the more
  6985. generic new-style ones instead.
  6986. Download handling reworked and support for git/svn downloads
  6987. added.
  6988. Removed experimental shared config.cache support, as it is
  6989. too unreliable.
  6990. A convenience Makefile wrapper is created when using
  6991. out-of-tree building, similar to how it is done for the kernel.
  6992. Alpha, Cris, IA64 and Sparc64 architecture support removed.
  6993. New packages: argp-standalone, gdk-pixbuf, gpsd, gst-ffmpeg,
  6994. libmpeg2, kbd, librsvg, nuttcp, rng-tools, rrdtool, xz
  6995. Updated/fixed packages: acpid, alsa-lib, argus, at, autoconf,
  6996. automake, avahi, axel, beecrypt, berkeleydb, bind, bmon, boa,
  6997. bootutils, bridge-utils, bsdiff, busybox, cvs, dbus, directfb,
  6998. dmraid, docker, dosfstools, dropbear, e2fsprogs, ethtool,
  6999. expat, ezxml, fbset, fconfig, ffmpeg, freetype, gadgetfs-test,
  7000. gamin, gawk, genext2fs, gperf, gst-plugins-base,
  7001. gst-plugins-ugly, gtk2-themes, gtkperf, gvfs, haserl, hdparm,
  7002. hostapd, hwdata, ifplugd, imagemagick, iperf, ipsec-tools,
  7003. iproute2, iptables, iw, jpeg, kexec, kismet, less, libcgi,
  7004. libcurl, libdaemon, libdnet, liberation, libevent, libeXosip2,
  7005. libglade, libgtk2, libiconv, libidn, libintl, libmms, libmpd,
  7006. libnl, liboil, libosip2, libpcap, libpng, libtool, libungif,
  7007. libxml2, libxslt, lighttpd, lite, lm-sensors, lockfile-progs,
  7008. logrotate, m4, matchbox, mdadm, mesa3d, metacity, mplayer,
  7009. mtd-utils, mysql_client, nano, nbd, ncftp, neon, netperf,
  7010. netsnmp, ng-spice-rework, ntfsprogs, ntp, openntpd, openssh,
  7011. openssl, openvpn, oprofile, pango, patch, pcre, php,
  7012. pkg-config, portmap, pppd, pptp-linux, prboom, proftpd, radvd,
  7013. rdesktop, readline, rp-pppoe, ruby, qt, quagga, samba, sawman,
  7014. sdl_mixer, sdl_sound, sed, setserial, shared-mime-info, slang,
  7015. speex, sqlite, squashfs, startup-notification, strace,
  7016. sylpheed, sysstat, taglib, tcpdump, thttpd, tiff, tn5250,
  7017. torsmo, tslib, udev, udpcast, usbmount, usbutils, vsftpd,
  7018. vtun, which, wireless-tools, wpa_supplicant, xapp_twm,
  7019. xapp_xbacklight, xapp_xcursorgen, xapp_xinit, xapp_xinput,
  7020. xapp_xmore,
  7021. xdriver_xf86-input-{acecad,aiptek,evdev,joystick,keyboard},
  7022. xdriver-xf86-input-{mouse,synaptics,vmmouse,void},
  7023. xdriver-xf86-video-{apm,ark,ast,ati,chips,cirrus,dummy,fbdev},
  7024. xdriver-xf86-video-{geode,glide,glint,i128,i740,intel,mach64},
  7025. xdriver-xf86-video-{mga,neomagic,newport,nv,openchrome,r128},
  7026. xdriver-xf86-video-{rendition,s3,s3virge,savage,siliconmotion},
  7027. xdriver-xf86-video-{sis,sisusb,suncg3,suncg6,suncg14,sunffb},
  7028. xdriver-xf86-video-{sunleo,suntcx,tdfx,tga,trident,v4l,vesa},
  7029. xdriver-xf86-video-{vmware,voodeo,wsfb,xgi,xgixp},
  7030. xkeyboard-config, xlib_libX11, xserver_xorg-server, xstroke,
  7031. xterm, xvkbd, zlib
  7032. Deprecated packages: hotplug, lzma, ng-spice-rework, sfdisk
  7033. Removed packages: dillo, libglib12, libgtk12, microwin,
  7034. pcmcia
  7035. Issues resolved (http://bugs.uclibc.org):
  7036. #901: new package: gpsd
  7037. #2389: Generate a Makefile wrapper in $(O)
  7038. #2461: wireless_tools: install shared library if needed
  7039. #2521: Can't compile sdl_mixer, mikmod.h can't be found
  7040. #2533: xserver_xorg-server: Enable glx, if mesa3d is built
  7041. #2563: [PATCH] cairo: Expose the configure option to disable some...
  7042. #2581: libmms: Update to 0.6, and patch to work on architectures...
  7043. #2707: Can't compile linux kernel using buildroot + crosstool-ng
  7044. #2731: Build order
  7045. #2737: buildroot configuration tool crashing when the path exceeds...
  7046. #2767: Build for lsof broken in buildroot-2010.08
  7047. 2010.08: Released August 31th, 2010:
  7048. Fixes all over the tree.
  7049. Updated/fixed packages: atk, xstroke
  7050. Removed packages: lxdoom
  7051. 2010.08-rc2, Released August 30th, 2010:
  7052. Fixes all over the tree.
  7053. Mark the combination of uClibc 0.9.31, gcc 4.2.x, C++ and
  7054. locale support as broken. Remove deprecated GCC 4.2.[1-3]
  7055. versions.
  7056. Mark CRIS architecture as deprecated, as it is discontinued
  7057. upstream.
  7058. Marked shared config.cache as experimental and disabled by
  7059. default as it is known to break with certain package
  7060. combinations.
  7061. Toolchain: fixed gcc 4.2.x build after uClibc NPTL support got
  7062. added.
  7063. fs: old-style squashfs for big endian archs fixed.
  7064. Updated/fixed packages: busybox, gst-plugins-base,
  7065. imagemagick, kismet, libgail, libglib2, libgtk2, lua,
  7066. luafilesystem, lzo, ncurses, netcat, pango, php, pppd,
  7067. proftpd, qt, samba, startup-notification, swfdec, sysvinit,
  7068. util-linux
  7069. Removed packages: stunnel
  7070. Issues resolved (http://bugs.uclibc.org):
  7071. #635: util-linux fails to build in 2009.08
  7072. #2239: netcat package installs its binary to target as avr32-linux...
  7073. #2395: libglib2-2.24.1 and libxml2-2.7.7 fails build on MIPS because...
  7074. #2443: Initramfs: Don't overwrite $(TARGET_DIR)/init if it exists
  7075. #2449: Minor fixes for squashfs makefile and correct PowerPC e500 ...
  7076. 2010.08-rc1, Released July 30th, 2010:
  7077. Fixes all over the tree and new features.
  7078. Toolchain: GCC 4.3.5, older 4.3.x versions removed. GCC 4.1.2
  7079. and non-sysroot support removed. Added support for (snapshot)
  7080. NPTL in uClibc, 0.9.28.3 removed,
  7081. Bootloaders: Various cleanups, moved to boot/, added Barebox,
  7082. removed yaboot. Support building u-boot from custom tarball,
  7083. u-boot 2010.06.
  7084. New GTK-based configurator, usable using 'make gconfig'.
  7085. Java packages marked as broken. Unless someone steps up to
  7086. support this, they will be removed during the 2010.11
  7087. development cycle.
  7088. Alpha, IA64 and Sparc64 architectures marked as deprecated.
  7089. GTK+ on DirectFB has also been marked as deprecated, as it is
  7090. not supported in recent GTK+ versions, and more and more
  7091. packages depends on the new versions.
  7092. Unless someone steps up to support them, they will be removed
  7093. during the 2010.11 development cycle.
  7094. New packages: cgilua, copas, coxpcall, ffmpeg, libsvgtiny,
  7095. libgail, luafilesystem, luasocket, rings, wsapi, xavante, xterm
  7096. Updated/fixed packages: alsa-lib, alsamixergui, at, atk,
  7097. avahi, berkeleydb, bash, blackbox, busybox, bzip2, cairo,
  7098. cdrkit, cmake, dash, dhcp, dialog, diffutils, distcc, dmalloc,
  7099. dnsmasq, dropbear, e2fsprogs, fbv, file, flex, fontconfig,
  7100. gawk, gmpc, gnuchess, gst-plugins-base, gst-plugins-good,
  7101. gstreamer, gzip, icu, intltool, iostat, ipsec-tools, iptables,
  7102. iw, libart, libcgi, libcurl, libdrm, libeXosip, libfuse,
  7103. libglib2, libgpg-error, libiconv, libidn, liblockfile, libpng,
  7104. libsoup, lighttpd, links, linux-fusion, lmbench, lrzsz,
  7105. ltrace, make, midori, module-init-tools, mplayer,
  7106. mysql_client, nbd, ncurses, neon, netcat, netperf, netsnmp,
  7107. ntfsprogs, openssl, oprofile, pango, php, qt, quagga, samba,
  7108. setserial, sdl, sdl_mixer, sdl_sound, sdl_ttf, speech-tools,
  7109. sqlite, squashfs, swfdec, tftpd, thttpd, tn5250, tremor,
  7110. usbutils, webif, webkit, wireless_tools, xerces,
  7111. xkeyboard-config, xserver_xorg-server, xvkbd, zlib
  7112. Removed packages: modutils, portage, rxvt
  7113. Deprecated packages: dillo, libglib12, libgtk12, microwin, pcmcia
  7114. Issues resolved (http://bugs.uclibc.org):
  7115. #321: alsa-lib uses host include files for python which breaks ...
  7116. #361: linux kernel configuration choice works incorrectly
  7117. #387: Tremor not installed to toolchain
  7118. #401: new package: ffmpeg
  7119. #475: uImage target for U-boot failed generating
  7120. #543: ATK requires X11 on DirectFB target
  7121. #575: webkit: Buildroot Libtool Patch Fails
  7122. #583: build fails with external x86_64 toolchain
  7123. #729: sstrip creates corrupted headers
  7124. #829: Webkit r44552 needs libXt
  7125. #835: Package Dataflashboot-1.05 does not compile with buildroot...
  7126. #847: Compiling target-gcc v4.4 fails with "libc.so.0: cannot open...
  7127. #859: Add (head of) nptl branch to list of uClibc versions
  7128. #949: compile with debug info
  7129. #955: Grub fails to build with External Toolchain
  7130. #1051: Webkit doesn't compile (Linuxthreads new, x86)
  7131. #1213: Move .config into output directory
  7132. #1225: Buildroot fails to account for "nof" subdirectory (no float...
  7133. #1231: (sparc) Linux kernel fails to build
  7134. #1261: The getline() in output/build/linux-2.6.28/scripts/unifdef.c...
  7135. #1339: Busybox needs -fno-strict-aliasing to compile cleanly
  7136. #1393: neon config fails libxml/parser.h: libxml2 requires, but not ...
  7137. #1405: WebKit fails to build because pthread_getattr_np is not impl...
  7138. #1675: GMP Error during buildroot make process
  7139. #1741: external toolchain linking error
  7140. #1753: lmbench: convert to generic package infrastructure
  7141. #1771: Fakeroot and the target/generic/device_table.txt create bad...
  7142. #1807: LZMA 4.32.7, Required header file(s) are missing
  7143. #1813: xkeyboard-config fails to build because of intltool problem
  7144. #1879: Bump iptables to 1.4.8
  7145. #1885: Add a bunch of lua modules
  7146. #1897: Bump libusb to 1.0.7
  7147. #1903: Bump tn5250 to 0.17.4 and migrate to autotargets
  7148. #1909: netperf-2.4.5 fails to build because of undeclared SOCK_DCCP
  7149. #1927: Bump file to 5.03 and migrate to autotargets
  7150. #1933: Bump gawk to 3.1.8 and migrate to autotargets
  7151. #1945: PHP: add sqlite3 dependency when using external lib
  7152. #1951: Bump openssl to 0.9.8o
  7153. #1957: Bump sqlite to 3.6.23.1
  7154. #1975: Package removal/deprecation
  7155. #1981: zlib: bump to 1.2.5
  7156. #1987: intltool: Fix spelling mistake
  7157. #1993: Bump bash to 4.1.7(1) and migrate to autotargets
  7158. #1999: Typo in path checking
  7159. #2005: Bump dnsmasq to 2.55 and migrate to gentargets
  7160. #2035: ipsec-tools-0.7.2 fails to build with gcc-4.4.x
  7161. #2038: Bump ncurses to 5.7
  7162. #2095: make gconfig: undefined reference to symbol 'dlsym@@GLIBC_2.2.5'
  7163. #2101: blackbox depends on locale support
  7164. #2119: Tries to build kernel, although disabled in config
  7165. #2125: libXfont build fail
  7166. #2143: buildroot compiler generates segfaulting statically linked exe..
  7167. #2149: xterm build failure
  7168. #2155: Compression lzo don't set for ubifs
  7169. #2161: [SECURITY] Update libpng to 1.2.44
  7170. #2167: Bump busybox to 1.17.0, convert to gentargets, drop 1.12, ...
  7171. #2181: pixman can't apply pixman-0.10.0-no-tests.patch
  7172. #2191: linux-fusion build fail
  7173. #2221: Qt does not compile (dependencies not taken into account?)
  7174. #2233: Atmel atstk target skeletons have /etc/mtab as a file, not ...
  7175. #2245: Netcat does not work due to incorrect assumptions about signed..
  7176. #2251: directory output/build after make *_defconfig not found
  7177. #2257: Convert netsnmp package to autotargets
  7178. #2263: Bump samba to 3.3.13
  7179. #2269: setserial causes make error
  7180. 2010.05, Released May 30th, 2010:
  7181. Fixes all over the tree.
  7182. Updated/fixed packages: coreutils, hal, libcap,
  7183. lockfile-progs, ncftp, xserver_xorg-server
  7184. Issues resolved (http://bugs.uclibc.org):
  7185. #1789: binutils fails to build for i386
  7186. #1843: Fix libcap build failure
  7187. #1855: XORG Keyboard driver fails to compile
  7188. 2010.05-rc3, Released May 27th, 2010:
  7189. Fixes all over the tree.
  7190. Updated/fixed packages: aumix, atk, avahi, bmon, busybox, cairo,
  7191. cdrkit, dbus-glib, dbus-python, docker, enchant, fltk, gamin,
  7192. gettext, gmpc, gob2, grep, gstreamer, gst-plugins-bad,
  7193. gst-plugins-base, gvfs, hal, iconv, icu, iperf, libcgicc,
  7194. libdvdnav, libdvdread, libglade, libglib2, libgtk2, libidn,
  7195. libmms, libmpd, libpcap, libsoup, lmbench, lsof, ltrace, lvm2,
  7196. make, metacity, microperl, mtd-utils, mutt, nbd, netsnmp,
  7197. ntfsprogs, ntp, olsr, pango, pciutils, pcmanfm, php,
  7198. pkg-config, psmisc, qt, samba, shared-mime-info, squashfs,
  7199. squashfs3, sshfs, startup-notification, swfdec, sylpheed,
  7200. uemacs, util-linux, valgrind, vpnc, vsftpd, webkit, xstroke
  7201. Issues resolved (http://bugs.uclibc.org):
  7202. #75: arm buildroot "unrecognized option" error
  7203. #699: Buildroot fails to copy libstdc++ to target when using external...
  7204. #1693: NTP trys IPV6 even if not configured error: 'IPV6_MULTICAST...
  7205. #1729: alsamixergui fails to build
  7206. #1801: Avahi-autoipd doesn't create TARGET_DIR/var/lib
  7207. #1819: pciutils small bugs
  7208. #2065: Internal toolchain: bump gcc 4.3.x series to 4.3.5
  7209. 2010.05-rc2, Released May 11th, 2010:
  7210. Fixes all over the tree.
  7211. Updated/fixed packages: busybox, customize, gawk, gnuchess,
  7212. hal, hostapd, less, libgcrypt, libnl, libxcb, linux-fusion,
  7213. ltp-testsuite, mplayer, netplug, pciutils, php, sed,
  7214. shared-mime-info usb_modeswitch, usbutils, vlc wpa_supplicant,
  7215. xapp_bdftopcf, xapp_mkfontdir, xdriver_xf86-video-openchrome,
  7216. xfont_encodings, xlib_libX11, xlib_libXfont, xlib_xtrans,
  7217. xproto_fontcacheproto, xproto_fontsproto, xvkbd
  7218. Removed packages: vice
  7219. Issues resolved (http://bugs.uclibc.org):
  7220. #849: "customize" package copies files to wrong place in target tree
  7221. #985: Bump usb_modeswitch package to 1.1.0
  7222. #1135: Package customize. Wrong copying
  7223. #1525: Package hal deletes a whole <target>/etc/rc.d directory
  7224. #1531: libxcb 1.5 build fails, due to missing xcbgen Python module
  7225. #1669: Busybox failed to compile when using an external toolchain
  7226. #1699: Fix usbutils dependencies and bump
  7227. #1705: Fix pciutils broken cross compiling
  7228. #1717: External toolchain fixes for hostapd & wpa_supplicant
  7229. 2010.05-rc1, Released May 3rd, 2010:
  7230. Cleaned up / restructured package menu.
  7231. Toolchain: uClibc 0.9.30.3 / 0.9.31, older 0.9.30.x removed.
  7232. 2.6.33 kernel headers, binutils 2.20.1, GCC 4.4.4,
  7233. removed broken nios2 support, ppc e300cX/e500mc support,
  7234. improved external toolchain support, GDB 7.x support.
  7235. X.org updated to 7.5.
  7236. New packages: cdrkit, cramfs, genext2fs, genromfs,
  7237. libatomic_ops, librsync, libusb-compat, lmbench, netperf,
  7238. squashfs, squashfs3, squid
  7239. Updated/fixed packages: alsa-utils, argus, autoconf, bison,
  7240. busybox, bzip2, directfb, dnsmasq, dosfstools, e2fsprogs,
  7241. eeprog, fakeroot, fbv, findutils, freetype, haserl, hostapd,
  7242. iperf, iptables, iw, less, libaio, libcgi, libcgicc, libdrm,
  7243. libgcrypt, libglib2, libid3tag, libmad, liboil, libosip2,
  7244. libpng, libraw1394, libsysfs, libxml2, libxslt, linux-fusion,
  7245. ltrace, lua, lzma, madplay, makedevs, matchbox, mdadm,
  7246. memstat, mesa3d, mtd-utils, nano, ncurses, openssl, patch,
  7247. pciutils, php, pixman, portage, pppd, pthread-stubs, python,
  7248. qt, radvd, samba, setserial, smartmontools, tar, tslib,
  7249. udpcast, usb_modeswith, vtun, wget, xdata_xcursor-themes,
  7250. xdriver_xf86-video-intel, xkeyboard-config, xlib_libX11,
  7251. xlib_libXaw, xlib_libXfont, xlib_libXfontcache,
  7252. xlib_libXxf86misc, xlib_libXtst, xlib_libpciaccess,
  7253. xproto_dri2proto, xproto_eviext, xproto_fontcacheproto,
  7254. xproto_xf86miscproto, xserver_xorg-server
  7255. Removed packages: xapp_xtrap, xlib_libXTrap, xlib_libXevie,
  7256. xlib_libXxf86misc, xxproto_evieext, proto_trapproto,
  7257. xproto_xf86miscproto
  7258. Issues resolved (http://bugs.uclibc.org):
  7259. #513: Add new squid package
  7260. #661: lmbench: new package
  7261. #719: Add lua option to haserl
  7262. #800: [PATCH] iperf update to 2.0.4
  7263. #803: [PATCH] lua - add shared library patch and config option for...
  7264. #805: [PATCH] mdadm - version update
  7265. #817: integrator926_defconfig uses unsupported uboot board name
  7266. #851: Add option to specify --sysroot value for external toolchain
  7267. #1093: Upgrade libusb to v1.0.3 and add new libusb-compat
  7268. package for compatibility with old packages that expect
  7269. the pre-1.0 API.
  7270. #1105: Add new netperf package
  7271. #1111: Bump wget to 1.12 and migrate to Makefile.autotools.in
  7272. #1117: Bump nano to 2.2.3 and migrate to Makefile.autotools.in
  7273. #1123: Bump less to 436 and migrate to Makefile.autotools.in
  7274. #1129: Bump memstat to 0.8 and migrate to Makefile.package.in
  7275. #1189: Wrong u-boot configuration name for integrator926 target
  7276. #1219: kernel headers not correctly installed into toolchain/staging
  7277. #1267: Wrong BR2_EXTRA_VERSION
  7278. #1273: BR2_INET_IPV6 does not enable IPv6 in pppd
  7279. #1303: Add librsync package
  7280. #1321: Busybox link fails due to lack of --sysroot option
  7281. #1327: mtd-utils compile failure due to lack of --sysroot in CFLAGS
  7282. #1345: Bump pppd to 2.4.5 and convert to Makefile.autotools.in
  7283. #1369: cannot build radvd (flex problem)
  7284. #1387: xlib_libX11-1.3.2 can't find libjpeg
  7285. #1411: [SECURITY] Update openssl package to 0.9.8n
  7286. #1417: Bump iptables to 1.4.7
  7287. #1423: Bump e2fsprogs to 1.41.11
  7288. #1429: [SECURITY] Update php to 5.2.13
  7289. #1441: Add binutils 2.20.1
  7290. #1447: Package installation on target with debug symbols is broken
  7291. #1459: Misc QA fixes
  7292. #1489: radvd update to 1.6
  7293. #1513: Enable powerpc e300c2, e300c3 and e500mc optimization
  7294. #1537: dev entries not created anymore
  7295. #1555: Fix default uclibc-0.9.31 configuration
  7296. #1561: [SECURITY] Update samba to 3.3.12
  7297. #1567: openssl0.9.8n fails to compile
  7298. #1573: Alsa-utils alsactl/init/* not installed to target
  7299. #1591: portmap fails to compile
  7300. #1615: Convert eeprog package to gentargets
  7301. #1645: Bump hostapd package to 0.7.2
  7302. 2010.02, Release February 26th, 2010:
  7303. Fixes all over the tree.
  7304. Updated/fixed packages: avahi, busybox, cramfs, ipsec-tools, libcgicc,
  7305. libgtk2, libraw1394, madplay, netsnmp, pango, squashfs, sylpheed, qt,
  7306. xfont_font-util
  7307. Removed packages: hostap, openmotif, xpdf
  7308. Issues resolved (http://bugs.uclibc.org):
  7309. #165: openmotif does not build
  7310. #1147: Remove obsolete hostap package
  7311. #1183: make source fails to download gmp, mpfr and patches
  7312. 2010.02-rc2, Released February 23th, 2010:
  7313. Fixes all over the tree and new features.
  7314. New packages: intltool
  7315. Updated/fixed packages: ace_of_penguins, alsa-lib, alsa-utils, argus,
  7316. at, automake, ccache, dosfstools, e2fsprogs, flex, gob2, gmpc,
  7317. gst-plugins-good, imagemagick, iw, kexec, libeXosip, libgtk2,
  7318. libpcap, libpng, libsoup, libxcb, libxml-parser-perl, libxml2,
  7319. libxslt, lvm2, matchbox, mplayer, rsync, rubix, shared-mime-info,
  7320. tcl, webkit, xapp_mkfontscale, xfont_encodings, xfont_font-util,
  7321. xlib_libfontenc, xproto_trapproto, zlib
  7322. Removed package: xboard
  7323. Issues resolved (http://bugs.uclibc.org):
  7324. #335: atk looks for the path to the gnome library on the host
  7325. #355: Please update WebKit - it doesn't compile!
  7326. #453: libglib2 autoreconf
  7327. #457: e2fsprogs link problem
  7328. #459: libgtk2 autoreconf
  7329. #469: build of libgtk2 for host incorrectly assumes that X.org ...
  7330. #671: Bash fails to build when building buildront on Ubuntu 9.04
  7331. #711: WebKit host dependencies problems
  7332. #821: cp: illegal operation
  7333. #1039: Not compiled on ubuntu karmic
  7334. #1069: [PATCH] The AT91BOOTSTRAP makefile contains a typo
  7335. 2010.02-rc1, Released February 9th, 2010:
  7336. Fixes all over the tree and new features.
  7337. Generalized autotools infrastructure to be usable for
  7338. non-autotools packages, see package/Makefile.package.in for
  7339. details.
  7340. Cleaned up avr32 toolchain config, external source-based
  7341. toolchain support is gone.
  7342. Dependency checks: Also check for makeinfo, only print output
  7343. on errors.
  7344. Toolchain: uClibc 0.9.30.2, gcc 4.4.3
  7345. New packages: libcdaudio, libdvdnav, libdvdread, hostapd, ser2net,
  7346. tcpreplay
  7347. Updated/fixed packages: alsa-lib, alsa-utils, at, autoconf, bash,
  7348. bind, binutils, bootutils, busybox, dbus, directfb, dnsmasq,
  7349. e2fsprogs, gstreamer, gperf, gst-plugins-bad, gvfs, fbdump, flex,
  7350. hal, iptables, iw, jpeg, kismet, libfuse, libglib2, liboil, libpcap,
  7351. libungif, libxml2, libxslt, lighttpd, mesa, mpg123, mtd-utils, nbd,
  7352. neon, netstat-nat, newt, openvpn, pcre, php, qt, rdesktop, readline,
  7353. rpm, sawman, sdl, sdl_ttf, sqlite, sshfs, tremor, u-boot,
  7354. usb_modeswitch, usbutils, webkit, wpa_supplicant, xfsprogs, zlib
  7355. Removed package: asterisk, openswan
  7356. Issues resolved (http://bugs.uclibc.org):
  7357. #515: tcpreplay: new package
  7358. #553: Wrong DirectFB ps2mouse limitation
  7359. #559: mesa3d build fails
  7360. #679: Autoconf cannot find M4
  7361. #739: New/updated hostapd package
  7362. #749: Bump usbutils package to version 0.86
  7363. #751: Kernel 2.6 snapshot fetch fail
  7364. #753: Bump lighttpd package to 1.4.25
  7365. #757: U-Boot: mkimage cannot be installed using external toolchain
  7366. #761: Add binutils 2.20 to toolchain options
  7367. #763: [SECURITY] Update pcre to 7.9
  7368. #765: Add buildroot branding to gcc
  7369. #767: Bump iw package to 0.9.18
  7370. #773: [SECURITY] Update bind to 9.5.2-P1
  7371. #795: Minor edits to fix typos, grammar, spelling, usage in documen...
  7372. #813: Drop not very useful generic package selection options ...
  7373. #823: Editor backup files (~) is copied from the target_skeleton
  7374. #827: Bump mtd-utils package to version 1.2.0
  7375. #841: Build error
  7376. #913: Bump iptables to 1.4.6
  7377. #919: Bump usb_modeswitch package to 1.0.7
  7378. #925: Bump wpa_supplicant package to 0.6.10
  7379. #931: Bump kismet package to 2010-01-R1
  7380. #937: Bump openvpn package to 2.1.1
  7381. #943: Bump sqlite package to 3.6.22
  7382. #961: Bump dnsmasq to 2.52
  7383. #967: Bump netstat-nat to 1.4.10
  7384. #973: Bump iw to 0.9.19
  7385. #1003: DHCP options disabled with busybox-1.16.0
  7386. #1009: [SECURITY] Bump php to 5.2.12
  7387. #1015: [SECURITY] Bump bind to 9.5.1-P2
  7388. #1027: Busybox flash commands conflict with those from mtd-utils
  7389. #1063: [SECURITY] Update lighttpd to 1.4.26
  7390. 2009.11, Released December 1st, 2009:
  7391. Additional fixes and cleanups.
  7392. Updated/fixed packages: alsamixergui, autoconf, coreutils, fltk,
  7393. microperl, ncurses, vim
  7394. Issues resolved (http://bugs.uclibc.org):
  7395. #707: Cant configure fltk-1.1.7. configure: error: Configure could ...
  7396. 2009.11-rc2, Released November 29th, 2009:
  7397. Additional fixes and cleanups.
  7398. Updated/fixed packages: busybox, dbus, fltk, gvfs, ltrace
  7399. 2009.11-rc1, Released November 23rd, 2009:
  7400. Fixes all over the tree and new features.
  7401. Cleaned up / Simplified build directory layout. Refer to
  7402. docs/buildroot.html#using for details.
  7403. Target defconfig files moved to configs/ and listed in 'make help'
  7404. output.
  7405. Fixed *clean targets. Now clean removes everything generated,
  7406. so you can do a fresh rebuild. Distclean furthermore removes
  7407. kbuild tools and .config, bringing the source tree back in a
  7408. pristine state.
  7409. Toolchain: ARM cortex A8 support, GCC 4.4.2, sensible default
  7410. soft / hardfloat setting for architecture, ensure target-ldd
  7411. gets installed.
  7412. New packages: divine, gvfs, libarchive, libmicrohttpd,
  7413. sdl_sound, swfdec, sysstat
  7414. Updated/fixed packages: alsa-lib, alsamixergui, autoconf, bootutils,
  7415. busybox, gcc, directfb, dnsmasq, e2fsprogs, festival, gamin, gperf,
  7416. gqview, gstreamer, gst-plugins-bad, gst-plugins-base, gst-plugins-good,
  7417. imagemagick, ipkg, iptables, iw, kernel-headers, kismet, leafpad,
  7418. libelf, libevent, libglib2, libidn, liblockfile, libmad, libpcap,
  7419. libupnp, libuuid, libxml2, lighttpd, ltrace, lua, lzma, magiccube4d,
  7420. matchbox, mdadm, nbd, ncftp, ncurses, netkittelnet, netsnmp,
  7421. ng-spice-rework, ntfs-3g, openntp, openssl, pcmanfm, php, psmisc,
  7422. python, quagga, radvd, rpm, rsync, rubix, samba, sawman, sdl, sdl_image,
  7423. shared-mime-info, sfdisk, spawn-fcgi, speech-tools, sqlite, squashfs,
  7424. synergy, syslinux, sysklogd, target-binutils, tcpdump, torsmo, u-boot,
  7425. udpcast, util-linux, valgrind, vsftpd, wipe, wpa-supplicant, x11vnc,
  7426. xdata_xcursor-themes, xboard, xfsprogs, xstroke, zlib[5~
  7427. Removed package: mdnsresponder, mpatrol, gcc 3.4.6 + 4.0.4, vice
  7428. Issues resolved (http://bugs.uclibc.org):
  7429. #301: allow to install libsmbclient
  7430. #303: add gvfs package
  7431. #477: Add sdl_sound package
  7432. #487: Make kismet package sexier
  7433. #511: New package usb_modeswitch
  7434. #527: misc fixes for dnsmasq package
  7435. #565: libevent: Bump version and clean up makefile
  7436. #587: Use iptables multipurpose binaries and bump to 1.4.4
  7437. #593: Missing early check for patch(1)
  7438. #597: (REOP) Selecting busybox in buildroot's config clobbers ar ...
  7439. #609: libmicrohttpd: New package
  7440. #615: python: Don't delete .py files unless asked
  7441. #617: netkit/inetd requires RPC and fails to build if RPC is disabled
  7442. #619: netkittelnet requires netkitbase to install, but there's no ...
  7443. #645: allow to build nbd-server with NBD package
  7444. #653: [SECURITY] Update php package to version 5.2.11
  7445. #655: Update sqlite package to version 3.6.18
  7446. #657: Bug in imagemagick-clean target
  7447. #663: Add option for NAND flash with 512B Page and 16 kB erasesize ...
  7448. #665: [PATCH] Samba package
  7449. #667: [PATCH] e2fsprogs
  7450. #683: SDL-dfb does not select directfb
  7451. #701: make install problem with unstripped binaries
  7452. #703: [SECURITY] Update openssl package to 0.9.8l
  7453. #705: Bump spawn-fcgi package to 1.6.3
  7454. #709: Bump lighttpd package to 1.4.24
  7455. #713: Migrate openntpd package to Makefile.autotools.in
  7456. #715: Bump libidn package to 1.15 and other fixes
  7457. #717: Bump dnsmasq to 2.51 and introduce new IDN option
  7458. #731: Bump iw package to 0.9.17
  7459. 2009.08, Released August 31th, 2009:
  7460. Additional fixes and cleanups.
  7461. Updated/fixed packages: ctorrent, saveconfig/getconfig,
  7462. sdl_net, util-linux.
  7463. Issues resolved (http://bugs.uclibc.org):
  7464. #529: util-linux doesn't find headers and include libs correctly
  7465. #557: Build ctorrent with SSL support if available
  7466. 2009.08-rc3, Released August 26th, 2009:
  7467. Additional fixes and cleanups.
  7468. Updated/fixed packages: alsa-utils, berkeleydb, busybox, dbus,
  7469. directfb, enchant, kernel headers.
  7470. Issues resolved (http://bugs.uclibc.org):
  7471. #471: Allow directfb compilation with debug
  7472. #541: Removal of CVS directories in target filesystem broken
  7473. #547: berkeleydb: Update config.{sub, guess}
  7474. #549: enchant: Fix dependencies.
  7475. #569: Fix alsa-utils build for x86 on x86-64
  7476. 2009.08-rc2, Released August 6th, 2009:
  7477. Additional fixes and new features.
  7478. New packages: libuuid, gcc 4.3.4.
  7479. Updated/fixed packages: busybox, classpath, gzip, ipsec-tools,
  7480. jamvm, libusb, microperl, neon, popt, sed, webkit.
  7481. Fixed issue with 'make oldconfig'
  7482. Issues resolved (http://bugs.uclibc.org):
  7483. #525: sed broken with external toolchain
  7484. #537: Fix gzip build with recent glibc
  7485. 2009.08-rc1, Released August 2nd, 2009:
  7486. Fixes all over the tree and new features.
  7487. Improvement of external toolchain support:
  7488. - Support for glibc toolchains.
  7489. - The toolchain configuration announced to Buildroot is
  7490. verified against the real toolchain configuration.
  7491. - Fixes, documentation.
  7492. Cleanup X.org support: clarified configuration options, and
  7493. removed mandatory dependency on useless libraries such as
  7494. libXt or libXaw.
  7495. New QT-based configurator, usable using 'make xconfig'.
  7496. Support for the Xtensa architecture.
  7497. Toolchain: GCC 4.4.1, 2.6.30 kernel headers, removed < 2.6.26
  7498. headers.
  7499. New packages: bmon, ctorrent, dosfstools, enchant,
  7500. gst-plugins-bad, iw, libmms, libnl, netstat-nat, ntfsprogs,
  7501. sdl_gfx, spawn-fcgi.
  7502. Updated packages: bind, busybox, coreutils, sqlite, directfb,
  7503. expat, gamin, gnuconfig, haserl, ipsec-tools, classpath,
  7504. libcurl, libglib2, liblockfile, libpng, libsoup, libxml2,
  7505. lighttpd, ltp-testsuite, lvm2, matchbox, memstat,
  7506. gst-plugins-good, gstreamer, libogg, libvorbis, mplayer,
  7507. neon, openssl, pciutils, php, qt, ruby, sawman, webkit,
  7508. wpa-supplicant, xdriver_xf86-input-synaptics,
  7509. xdriver_xf86-video-intel, xlib_libXfont, xlib_libXft,
  7510. xlib_libXt, xproto_xproto, xserver-xorg, xutil_makedepend,
  7511. xutil_util-macros.
  7512. Issues resolved (http://bugs.uclibc.org):
  7513. #83: liblockfile fails to compile due to eaccess redefinition
  7514. #163: Xtensa architecture port
  7515. #171: xorg-server / kernel headers 2.6.26 - vm86.c compilation issue
  7516. #241: device mapper + lvm2: build together
  7517. #243: ctorrent: new package
  7518. #247: ntfsprogs: new package
  7519. #271: Library 'libgcc_s.so.1' not installed in search path
  7520. #287: New package libnl
  7521. #289: New package iw
  7522. #331: Update MPlayer to version 1.0rc2
  7523. #333: Bump sqlite package to 3.6.15
  7524. #349: update libsoup to version 2.26.2
  7525. #357: New package netstat-nat
  7526. #359,#413: Upgrade openvpn to Makefile.autotools.in
  7527. #367: linux kernel compile error for arm926t
  7528. #369: Add SDL_gfx package
  7529. #373: Support for building gstreamer without libxml
  7530. #379: update DirectFB to version 1.4.0
  7531. #383: gst-plugins-good: Allow soup plugin to be configured
  7532. #385: neon: Fix pkgconfig dependency
  7533. #387: Tremor not installed to toolchain
  7534. #389: New package bmon
  7535. #391: gstreamer: Bump version to 0.10.23
  7536. #393: gst-plugins-base: Bump version to 0.10.23
  7537. #395: gst-plugins-bad: New package
  7538. #403: Error while building iso9660 image
  7539. #409: Bump php package to 5.2.10
  7540. #411: ipsec-tools: Bump version to 0.7.2
  7541. #417: New package spawn-fcgi
  7542. #419: Bump lighttpd package to 1.4.23
  7543. #421: toolchain: Clean up toolchain locale support menu
  7544. #427: webkit: Update to WebKit svn r44552
  7545. #437: ltp-testsuite: Bump version to 20090630
  7546. #451: Upgrade from unmaintained dosfstools-2.11 to dosfstools-3.0.3
  7547. #467: DirectFB 1.4.1
  7548. #473: memstat_0.5.tar.gz has install with -D and that fails "make"
  7549. #491: libxml2: Bump version to 0.7.3
  7550. #495: Bump bind package to 9.5.1-P3 (security)
  7551. #497: OpenSSL RSA key generation hangs on x86_64
  7552. #509: Bump sqlite package to 3.6.16
  7553. #523: pciutils broken with external toolchain
  7554. #533: Update gamin to 0.1.10 to fix compilation
  7555. 2009.05, Released June 1st, 2009:
  7556. Fixes for dropbear & diffutils, bump linux-advanced 2.6.29.x
  7557. version and marked ubifsroot as broken.
  7558. 2009.05-rc3, Released May 27th, 2009:
  7559. Fixes for toolchain (gcc arm pr37436), stable kernel versions,
  7560. busybox, curl, libusb, readline, python and strace.
  7561. Issues resolved (http://bugs.uclibc.org):
  7562. #345: libcurl package needs a urandom fix
  7563. 2009.05-rc2, Released May 19th, 2009:
  7564. Fixes for toolchain (gcc w/softfloat on ppc, 3.4.6 buildfix
  7565. for newer hosts), stable kernel versions, busybox, cups,
  7566. dmraid, docker, mesa3d, rsync and updated defconfigs.
  7567. xserver marked as broken on AVR32 and atngw100-expanded
  7568. config removed.
  7569. Issues resolved (http://bugs.uclibc.org):
  7570. #167: metacity does not build
  7571. #295: gamin installs python support even if python is disabled
  7572. #323: gen_matypes fails to execute during build of Mesa when us...
  7573. 2009.05-rc1, Released May 5th, 2009:
  7574. Fixes all over the tree, further conversion of packages to
  7575. Makefile.autotools.in and we now build host versions of
  7576. packages where needed for build time dependencies instead of
  7577. relying on the correct versions being available on the build
  7578. host. Ancient toolchain / busybox versions have furthermore
  7579. been removed as announced in the 2009.02 release notes.
  7580. New packages: flac, gob2, lzop, taglib, wpa_supplicant
  7581. Updated packages: avahi, bind, binutils, busybox, dbus, dbus-glib,
  7582. directfb, dnsmasq, freetype, gcc, gmp, gstreamer, iptables, kernel
  7583. headers, kexec, libglib2, libpng, libsndfile, lua, mpfr, ntfs-3g,
  7584. openssl, php, qtopia4, rsync, samba, sqlite, tar, uboot, uclibc,
  7585. util-linux, xorg7, xerces
  7586. Issues resolved (http://bugs.uclibc.org):
  7587. #5,#77,#141,#143: Convert php package to Makefile.autotools.in
  7588. and a ton of other improvements
  7589. #19: page.h missing by util-linux
  7590. #37: update libglib2 to version 2.18.4
  7591. #61: tslib puts staging_dir into pkgconfig file
  7592. #69: tar refuses to build
  7593. #71,#175: ./wchar.h:41:12: error: empty filename in #include
  7594. #73: Bump openssl package to the latest version
  7595. #81: New package wpa_supplicant
  7596. #99: new package: flac
  7597. #101: update gstreamer packages
  7598. #105,#313: menuconfig segfaults on tinyx if wchar is not
  7599. selected
  7600. #107: convert libvorbis to Makefile.autotools.in
  7601. #109: Make pppd package avoid bsd err
  7602. #111: binutils 2.17 fails to build when texinfo >= 4.10
  7603. #133: Modify ncurses5-config to get correct include path
  7604. #137: Bump php to version 5.2.9
  7605. #139: Bump sqlite to 3.6.11 and convert to
  7606. Makefile.autotools.in
  7607. #145: Bump bind package to 9.5.1-P1 (security)
  7608. #147: buildroot toolchain fails to build w/binutils-2.19.1
  7609. #151: openssl package trivial fixes
  7610. #161: vim fails on patching with errors in configure.patch
  7611. #169: blackbox-0.70.1 does not build
  7612. #177: xdriver_xf86-input-keyboard does not build
  7613. #179: Upgrade dropbear to Makefile.autotools.in
  7614. #181: Update to Xorg 7.4
  7615. #187: ntfs-3g: could not build cross
  7616. #191: alsa-lib ARM binaries always built with EABI
  7617. #213: Bump wpa_supplicant package to version 0.6.9
  7618. #217: Bump openssl package to 0.9.8k (security)
  7619. #219: Toolchain build fails on m4
  7620. #225: m4 macros are out of place
  7621. #233: make ipv6 optional in iptables
  7622. #237: ncftp: convert to Makefile.autotools.in
  7623. #239: ntfs-3g: convert to Makefile.autotools.in
  7624. #245: lzop: new package
  7625. #271: Bump bind package to 9.5.1-P2 (security)
  7626. #277: Bump sqlite package to 3.6.16
  7627. #279: update libglib2 to version 2.20.1
  7628. #281: update DirectFB to version 1.2.8
  7629. #283: add taglib
  7630. #285: compilation of samba fails if IPV6 support is missing
  7631. #293: update samba to version 3.3.3
  7632. #299: add shared-mime-info package
  7633. #307: make openssl package respect build flags