CHANGES 381 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671
  1. 2020.08, released September 1st, 2020
  2. Various fixes.
  3. Updated/fixed packages: am33x-cm3, avahi, bluez-tools,
  4. busybox, chocolate-doom, collectd, dhcp, docker-cli, domoticz,
  5. gobject-introspection, graphite2, haproxy, ibm-sw-tpm2,
  6. imagemagick, libeXosip2, libressl, lxc, mbedtls, menu-cache,
  7. mongodb, mosquitto, nvidia-driver, paho-mqtt-c, pixz,
  8. postgresql, python-django, rtty, squid, stress-ng, systemd,
  9. trousers, uclibc, wireshark, wolfssl, zbar
  10. 2020.08-rc3, released August 28th, 2020
  11. Fixes all over the tree.
  12. Infrastructure: Ensure RPATH entries that may be needed for
  13. dlopen() are not dropped by patchelf.
  14. Toolchain: Drop old GCC 6 based external Sourcery AMD64
  15. toolchain.
  16. Updated/fixed packages: assimp, davfs2, dillo, glibc,
  17. gnuradio, hostapd, ibm-sw-tpm2, ipmitool, json-c, libroxml,
  18. linux, mender, netopeer2, openal, openjpeg, python-matplotlib,
  19. ripgrep, shadowsocks-libev, trousers, xlib_libX11,
  20. xserver_xorg-server
  21. Issues resolved (http://bugs.uclibc.org):
  22. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  23. 2020.08-rc2, released August 24th, 2020
  24. Fixes all over the tree, including a number of fixes for
  25. compilation with GCC-10.
  26. Toolchain: Disallow building uClibc-ng for RISC-V 64-bit,
  27. because of issues with a missing __riscv_flush_icache()
  28. implementation.
  29. Defconfigs: CI20: Use mainline Linux and U-boot. Update
  30. Microchip sama5d27_wlsom1_ek_mmc_dev to use bluez5-utils
  31. instead of (the removed) legacy bluez-utils
  32. Updated/fixed packages: 18xx-ti-utils, aircrack-ng, apache,
  33. atest, bandwidthd, bellagio, bind, bird, bluez-alsa, boost,
  34. c-periphery, capnproto, chrony, collectd, cpio, cvs,
  35. dieharder, domoticz, dovecot, dovecot-pigeonhole, drbd-utils,
  36. dump1090, efl, elixir, f2fs-tools, feh, fluidsynth, fping,
  37. gdbm, gdk-pixbuf, ghostscript, gst1-plugins-bad,
  38. gstreamer1-editing-services, htop, ibm-sw-tpm2, ifplugd,
  39. iftop, igd2-for-linux, ima-evm-utils, iprutils, iputils,
  40. keepalived, kmsxx, libabseil-cpp, libcamera, libcurl,
  41. libfuse3, libnss, librtlsdr, libubox, libunwind, live555,
  42. lttng-tools, luabitop, mender-artifact, minizip,
  43. mjpg-streamer, mpd, mpv, mtd, ncftp, open-lldp, openal,
  44. opencv, opencv3, openfpgaloader, optee-os, owfs, php,
  45. pistache, prosody, pulseview, python-decorator,
  46. python-gunicorn, python-rpi-gpio, python-spidev,
  47. python3-decorator, python3-mako, python3-pyselftools, qt5,
  48. qt5webengine, rauc, redis, ripgrep, rtl8188eu, rtl8821au,
  49. setools, smstools3, supertux, tftpd, tpm2-abrmd,
  50. wpa_supplicant, xen, xlib_libX11, xserver_xorg-server
  51. New packages: python3-cython, python3-pycryptodomex
  52. Issues resolved (http://bugs.uclibc.org):
  53. #12876: nodejs fails to build when host-icu has been built before
  54. #13111: python-gunicorn: missing dependency on python-setuptools
  55. #13121: wpa_supplicant fails to build without libopenssl enabled
  56. #13146: raspberrypi3_defconfig: "Inappropriate ioctl for device"..
  57. #13156: package live555 new license
  58. #13166: python-rpi-gpio: does not work against aarch64, unint..
  59. 2020.08-rc1, released August 6th, 2020
  60. Toolchain:
  61. - GCC 10.x added, GCC 9.x is the default
  62. - binutils 2.34 added, binutils 2.33 is the default, binutils
  63. 2.31 removed
  64. - glibc updated to 2.31
  65. - ARC toolchain components updated to 2020.03-release.
  66. - Enable uClibc-ng usage for RISC-V 64-bit
  67. Infrastructure:
  68. - qmake-package was fixed to be compatible with
  69. BR2_PER_PACKAGE_DIRECTORIES
  70. - complete rewrite of the Gitlab CI Yaml configuration file,
  71. now generated directly by the Gitlab CI pipeline itselfs
  72. Misc:
  73. - cargo and cargo-bin packages removed, as cargo is now part
  74. of Rust itself
  75. Filesystem: ubinize configuration files can now use
  76. BINARIES_DIR to refer to the $(O)/images directory.
  77. New packages: bitwise, earlyoom, fuse-overlayfs, gloox,
  78. kodi-pvr-octonet, kodi-pvr-zattoo, libabseil-cpp, libcutl,
  79. libnids, libnpupnp, libodb, libodb-boost, libodb-mysql,
  80. libodb-pgsql, mbpfan, netopeer2, odb, parprouted,
  81. python-colorzero, python-gpiozero, python-pybind, python-yatl,
  82. python3-decorator, qt5quicktimeline, resiprocate, ttyd,
  83. unclutter-xfixes, urandom-scripts,
  84. New defconfigs: bananapi_m2_zero, freescale_imx8mnevk,
  85. globalscale_espressobin, imx6ullevk,
  86. microchip_sama5d27_wlsom1_ek, rock_pi_4, rock_pi_n10
  87. Removed packages: cargo, cargo-bin,
  88. kodi-peripheral-steamcontroller
  89. Issues resolved (http://bugs.uclibc.org):
  90. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_DIRECTORIES
  91. #12946: Grub: Decompressor is too big.
  92. #12986: Mtools: Error converting to codepage 850
  93. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  94. #13011: Incorrect selection of gcc version
  95. #13021: Minor code error when building granite-0.4.1
  96. #13026: rpi-firmware: must not rename start files
  97. #13046: Optimize for fast -Ofast is not compliant
  98. #13081: host-e2fsprogs attempts to create udev rules.d on build host if not exists
  99. #13101: BR audit2allow support
  100. 2020.05.2, released August 29th, 2020
  101. Important / security related fixes.
  102. Infrastructure: Ensure RPATH entries that may be needed for
  103. dlopen() are not dropped by patchelf.
  104. BR_VERSION_FULL/setlocalversion (used by make print-version
  105. and /etc/os-release): Properly handle local git tags
  106. Updated/fixed packages: apache, assimp, at91bootstrap3, bind,
  107. boost, busybox, capnproto, cegui, chrony, collectd, cpio,
  108. cryptsetup, cups, cvs, dbus, docker-engine, domoticz, dovecot,
  109. dovecot-pigeonhole, dropbear, efl, elixir, f2fs-tools, ffmpeg,
  110. gd, gdk-pixbuf, ghostscript, glibc, gnuradio, grub2,
  111. gst1-plugins-bad, gstreamer1-editing-services, hostapd,
  112. ibm-sw-tpm2, iputils, jasper, json-c, libcurl, libressl,
  113. libwebsockets, linux, live555, mesa3d, mongodb, mosquitto,
  114. mpv, nodejs, opencv, opencv3, openfpgaloader, openjpeg,
  115. patchelf, perl, php, postgresql, prosody, python-django,
  116. python-gunicorn, python-matplotlib, ripgrep, rtl8188eu,
  117. rtl8821au, ruby, shadowsocks-libev, squid, systemd,
  118. tpm2-abrmd, tpm2-tools, trousers, uboot, webkitgtk, wireshark,
  119. wolfssl, wpa_supplicant, wpewebkit, xen, xlib_libX11,
  120. xserver_xorg-server
  121. Issues resolved (http://bugs.uclibc.org):
  122. #12876: nodejs fails to build when host-icu has been built before
  123. #13111: python-gunicorn: missing dependency on python-setuptools
  124. #13121: wpa_supplicant fails to build without libopenssl enabled
  125. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  126. #13156: package live555 new license
  127. 2020.05.1, released July 25th, 2020
  128. Important / security related fixes.
  129. Toolchain:
  130. - Make external toolchain version check also work for
  131. toolchains configured with --with-gcc-major-version-only
  132. - Do not handle SOURCE_DATE_EPOCH in toolchain wrapper if the
  133. compiler supports it, fixing an issue with precompiled
  134. headers
  135. - Ensure debug libs from external toolchains are not installed
  136. into target if debugging is disabled
  137. Download:
  138. - Correct reproducibility issue in handling of git submodules
  139. for older git versions.
  140. - Fix file locking over NFS
  141. fs: Ensure cpio archive element order is reproducible
  142. Br2-external: Fix error reporting for invalid br2-external trees
  143. Per-package:
  144. - Fix an issue with python3 sysconfig data not getting
  145. correctly expanded
  146. - Fix per-package building for packages using the qmake
  147. infrastructure
  148. Updated/fixed packages: a10disp, asterisk, bind, brltty,
  149. cdrkit, clamav, cryptodev-linux, dbus, docker-cli,
  150. docker-engine, dvb-apps, e2fsprogs, exim, exiv2, freerdp, gdb,
  151. gdk-pixbuf, gerbera, gnutls, go, granite, grub2, gssdp,
  152. gst1-plugins-good, gst1-plugins-ugly, gupnp, intel-microcode,
  153. iproute2, irrlicht, iwd, jq, kodi, libcamera, libcec,
  154. libconfuse, libcurl, libevdev, libhttpserver, libmicrohttpd,
  155. libnss, libressl, libvncserver, libxml2, libxmlrpc, lxc,
  156. mbedtls, mediastreamer, mesa3d, meson, minizip, mongodb,
  157. mtools, mutt, nano, network-manager, nghttp2, ngircd, nodejs,
  158. ntp, open-plc-utils, open2300, openjdk-bin, openssh,
  159. oracle-mysql, paho-mqtt-c, pango, php, poco, prosody, putty,
  160. python-greenlet, python-urllib3, python-validators, python3,
  161. readline, redis, rpi-firmware, rtl8821au, samba4, sdl2,
  162. sqlite, squid, strace, sunxi-mali-mainline-driver, syslog-ng,
  163. systemd, tcpreplay, tinydtls, upmpdcli, upx, vlc, webkitgtk,
  164. wireguard-linux-compat, wireshark, wpebackend-fdo, wpewebkit,
  165. x11vnc, znc, zstd
  166. Issues resolved (http://bugs.uclibc.org):
  167. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_..
  168. #12946: Grub: Decompressor is too big.
  169. #12986: Mtools: Error converting to codepage 850
  170. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  171. #13011: Incorrect selection of gcc version
  172. #13021: Minor code error when building granite-0.4.1
  173. #13026: rpi-firmware: must not rename start files
  174. #13031: nodejs: RangeError at new ArrayBuffer()
  175. #13046: Optimize for fast -Ofast is not compliant
  176. 2020.05, released June 1st, 2020
  177. Various fixes.
  178. Updated/fixed packages: arm-trusted-firmware, gcc, mp4v2, fmc,
  179. fmlib, glib-networking, libusb-compat, linux, qt5webengine,
  180. sysrepo, wampcc, xen
  181. 2020.05-rc3, released May 29th, 2020
  182. Fixes all over the tree.
  183. Infrastructure: Support checking download hashes for packages
  184. coming from Subversion.
  185. Defconfigs: Increase boot partition size to 64MB for Freescale
  186. boards to allow space for bigger kernels.
  187. Updated/fixed packages: audit, bind, dovecot, efl, erlang,
  188. ffmpeg, fio, gerbera, gnupg, leveldb, lrzip, ltrace, matio,
  189. mesa3d, mp4v2, prosody, qemu, qt5declarative, speexdsp,
  190. systemd, tremor, uboot-tools, unbound, wireshark
  191. Removed packages: wiringpi
  192. Issues resolved (http://bugs.uclibc.org):
  193. #12361: Init system (systemd) kills login on Raspberry Pi Zero
  194. #12686: recipe for target 'install_dev' failed (libcrypto.so..)
  195. 2020.05-rc2, released May 22nd 2020
  196. Fixes all over the tree.
  197. U-Boot: Support building with Python 3.x instead of Python
  198. 2.x. Since U-Boot 2020.01, various U-Boot build scripts use
  199. Python 3.x instead of Python 2.x, so add an option to pull in
  200. host-python3 rather than host-python. Also fix a number of
  201. defconfigs to use this new option.
  202. Updated/fixed packages: apparmor, binutils, bison, brltty,
  203. c-icap, cegui, checkpolicy, clamav, crda, cvs, docker-cli,
  204. docker-engine, domoticz, elf2flt, exfatprogs, fakeroot,
  205. ffmpeg, freerdp, gcc, glibc, gnuconfig, irrlicht, kmod,
  206. libexif, libpam-tacplus, libssh2, libv4l, libvncserver,
  207. localedef, lrzip, mariadb, matchbox, mbuffer, mesa3d,
  208. mesa3d-headers, meson, netsniff-ng, openldap, openocd,
  209. optee-os, p7zip, paho-mqtt-c, php, piglit, pigz,
  210. python-argon2-cffi, python-attrs, python-future,
  211. python-markdown, python-pycryptodomex, python-pyqt5, qt5base,
  212. rpi-firmware, rustc, squashfs, squid, stella, suricata,
  213. systemd, uacme, uclibc, util-linux, vboot-utils
  214. New packages: python3-pyelftools
  215. Removed packages: ezxml, mtdev2tuio, python-pycrypto
  216. Issues resolved (http://bugs.uclibc.org):
  217. #10551: PowerPC SPE and Musl
  218. #12256: package tar is outdated (1.29 is 3 years old)
  219. #12271: python-iptables runtime dependencies
  220. #12321: host-generic-package: PKG_DL_OPTS not used for host package
  221. #12391: CMake-based host package fails to include output/host/include
  222. #12431: ethernet no detected on nanopi neo 2
  223. #12521: RISCV RV32IA selected, RV64GC output
  224. #12586: avahi failure
  225. #12596: host-e2fsprogs: tune2fs incompatibility on older glibc..
  226. #12611: ntp hash is not matching with upstream 4.2.8p13
  227. #12626: PHP missing header files within 2020.02
  228. #12631: glibc support Power-PC SPE
  229. #12656: bison fails to relocate with relocate-sdk.sh
  230. #12661: cups problems in buildroot
  231. #12686: recipe for target 'install_dev' failed (libcrypto.so:..
  232. #12691: host-rust build fails
  233. #12761: Buildroot fails when building GCNano binaries for the STM..
  234. #12786: Systemd spawns two getty processes when the getty port..
  235. #12806: There are multiple issues in buildroot that faults cups..
  236. #12826: nodejs-12.16.1: error: 'uv_sleep' was not declared in..
  237. #12831: RPI-firmware package: DTB-overlay dependency
  238. #12836: libunwind: package does not show up in menuconfig for..
  239. #12841: util-linux/sfdisk 2.35.1 fails on sector-size header
  240. #12866: should we be disabling bash executable path caching?
  241. #12886: GMP built in wrong order (?)
  242. #12891: QEMU, libvirt-bin, qemu-kvm Package Support required
  243. #12901: GStreamer doesn't build on 2020-05 rc1 with GObject..
  244. #12906: qt PrefixPath is wrong on 2020.05-rc1
  245. #12921: nodejs-12.16.1: error: overriding 'virtual icu_65::..
  246. 2020.05-rc1, released May 7th 2020
  247. Addition of support for gobject-introspection: both the
  248. gobject-introspection package itself, but also introspection
  249. support was enabled in a number of other packages.
  250. Support for Qt 5.6 was dropped as its support was dropped
  251. upstream, only one version of Qt is supported at the moment:
  252. Qt 5.14.2.
  253. Addition of support for the apparmor Linux security module, by
  254. adding the necessary user-space packages.
  255. Addition of a qmake package infrastructure, now used by most
  256. Qt-related packages.
  257. The Luarocks package infrastructure has been extended to
  258. support build host packages.
  259. The package infrastructure was improved to allow each package
  260. to indicate the Linux kernel configuration options it needs.
  261. Addition of support for generating filesystem images using the
  262. EROFS filesystem.
  263. The logic that calculates the list of files installed by each
  264. package was reworked to be compatible with the top-level
  265. parallel build functionality.
  266. Addition of a package for a pre-compiled ARM32 bare-metal
  267. toolchain, which can be used to build ARM32 code in ARM64
  268. configurations, such as firmware/bootloader code.
  269. The Qemu defconfigs are now boot-tested in Qemu as part of the
  270. Gitlab continuous integration.
  271. Toolchain: gcc 9.x bumped to 9.3.0, gcc 8.x bumped to 8.4.0,
  272. gdb bumped to 8.3.1.
  273. New packages: apcupsd, apparmor, arm-gnu-a-toolchain, bearssl,
  274. belle-sip, belr, cage, chartjs, erofs-utils, exfatprogs,
  275. gobject-introspection, ibm-sw-tpm2, imx-seco, jbig2dec,
  276. libapparmor, libiberty, libfuse3, libtextstyle, libudfread,
  277. libuhttpd, libuwsc, lua-lyaml, matio, mbuffer, netdata,
  278. openfpgaloader, perl-i18n, perl-locale-maketext-lexicon,
  279. perl-lwp-protocol-https,
  280. perl-mojolicious-plugin-authorization,
  281. perl-mojolicious-plugin-cspheader,
  282. perl-mojolicious-plugin-i18n,
  283. perl-mojolicious-plugin-securityheader, perl-mozilla-ca,
  284. perl-path-class, pistache, pkcs11-helper, prelink-cross,
  285. python-argon2-cffi, python-canopen, python-cbor2,
  286. python-filelock, python-flatbuffers, python-greenlet,
  287. python-modbus-tk, python-pyalsa, python-pysftp, python-regex,
  288. python-snappy, rtty, tinyproxy, udev-gentoo-scripts, unbound,
  289. vuejs, wlroots.
  290. New defconfigs: freescale_imx6ullevk, freescale_imx8qmmek,
  291. nanopi_neo4, nanopi_r1, nitrogen8mm, nitrogen8mn, olpc_xo1,
  292. olpc_xo175, roc_rk3399_pc, stm32mp157a_dk1, zynq_qmtech
  293. Issues resolved (http://bugs.uclibc.org):
  294. #10386: Add an option to put all compiled executables that
  295. show up on target/ in staging/ as well
  296. #11866: iniramfs file system fails to boot using Grub on EFI x86_64
  297. #12666: Doesn't pick up a custom bash profile
  298. #12696: Uboot 2020.01 Problem loading Linux kernel on Nano PI NEO
  299. #12701: [patch] wpa_supplicant must depend on openssl
  300. #12711: host-localedef 2.30-20 fails to compile on fedora 32 (gcc 10.0.1)
  301. #12716: bio.h not found
  302. #12726: systemctl preset-all failed for ctrl-alt-del.target
  303. #12731: rtl8188eu not buildung for banana pi M1 (glib, systemd, 4.18.12)
  304. #12746: "sysdig" package description points to
  305. http://sysdig.org, which bounces to malware site
  306. #12751: OpenJdk package installation issues on target
  307. #12796: Update OpenSSL to Version 1.1.1g to patch CVE-2020-1967
  308. #12811: bootstrap stuck and no login prompt
  309. 2020.02.6, released September 5th, 2020
  310. Important / security related fixes.
  311. Fix a 2020.02.5 build regression in busybox when systemd (and
  312. not less) are enabled because of missing infrastructure.
  313. Updated/fixed packages: alsa-utils, avahi, busybox, cups,
  314. docker-cli, graphite2, imagemagick, libeXosip2, mbedtls,
  315. nvidia-driver, paho-mqtt-c, python-django, systemd, uclibc,
  316. usb_modeswitch, wolfssl
  317. Issues resolved (http://bugs.uclibc.org):
  318. #12911: usb_modeswitch installation race condition
  319. 2020.02.5, released August 29th, 2020
  320. Important / security related fixes.
  321. Infrastructure: Ensure RPATH entries that may be needed for
  322. dlopen() are not dropped by patchelf.
  323. BR_VERSION_FULL/setlocalversion (used by make print-version
  324. and /etc/os-release): Properly handle local git tags
  325. Updated/fixed packages: apache, at91bootstrap3, bind, boost,
  326. busybox, capnproto, chrony, collectd, cpio, cryptsetup, cups,
  327. cvs, dbus, docker-engine, domoticz, dovecot,
  328. dovecot-pigeonhole, dropbear, efl, elixir, f2fs-tools, ffmpeg,
  329. gd, gdk-pixbuf, ghostscript, glibc, grub2, gst1-plugins-bad,
  330. hostapd, iputils, jasper, json-c, libcurl, libwebsockets,
  331. linux, live555, mesa3d, mosquitto, mpv, nodejs, opencv,
  332. opencv3, openjpeg, patchelf, perl, php, postgresql,
  333. python-django, python-gunicorn, python-matplotlib, ripgrep,
  334. rtl8188eu, rtl8821au, ruby, shadowsocks-libev, squid,
  335. tpm2-abrmd, tpm2-tools, trousers, uacme, webkitgtk, wireshark,
  336. wolfssl, wpa_supplicant, wpewebkit, xen, xlib_libX11,
  337. xserver_xorg-server
  338. Issues resolved (http://bugs.uclibc.org):
  339. #12876: nodejs fails to build when host-icu has been built before
  340. #13111: python-gunicorn: missing dependency on python-setuptools
  341. #13121: wpa_supplicant fails to build without libopenssl enabled
  342. #13141: Target-finalize fail with "depmod: ERROR: Bad version passed"
  343. #13156: package live555 new license
  344. 2020.02.4, released July 26th, 2020
  345. Important / security related fixes.
  346. Toolchain:
  347. - Make external toolchain version check also work for
  348. toolchains configured with --with-gcc-major-version-only
  349. - Do not handle SOURCE_DATE_EPOCH in toolchain wrapper if the
  350. compiler supports it, fixing an issue with precompiled
  351. headers
  352. - Ensure debug libs from external toolchains are not installed
  353. into target if debugging is disabled
  354. Download:
  355. - Correct reproducibility issue in handling of git submodules
  356. for older git versions.
  357. - Fix file locking over NFS
  358. fs: Ensure cpio archive element order is reproducible
  359. Br2-external: Fix error reporting for invalid br2-external trees
  360. Per-package:
  361. - Fix an issue with python3 sysconfig data not getting
  362. correctly expanded
  363. - Fix per-package building for packages using the qmake
  364. infrastructure
  365. Updated/fixed packages: a10disp, asterisk, bind, cdrkit,
  366. checkpolicy, clamav, dbus, docker-cli, docker-engine,
  367. dvb-apps, e2fsprogs, exim, exiv2, freerdp, gnutls, go, grub2,
  368. gssdp, gst1-plugins-good, gst1-plugins-ugly, gupnp,
  369. intel-microcode, iproute2, irrlicht, iwd, jq, kodi, libcamera,
  370. libconfuse, libcurl, libglib2, libhttpserver, libmicrohttpd,
  371. libopenssl, libvncserver, libxml2, libxmlrpc, lxc, mbedtls,
  372. mesa3d, meson, mongodb, mtools, mutt, nghttp2, ngircd, nodejs,
  373. ntp, open-plc-utils, open2300, openjdk-bin, openssh,
  374. oracle-mysql, paho-mqtt-c, pcre, php, poco, prosody, putty,
  375. python-twisted, python-urllib3, python-validators, python3,
  376. qt5xmlpatterns, redis, rpi-firmware, rtl8821au, samba4, sdl2,
  377. sqlite, squid, syslog-ng, systemd, tcpreplay, tinydtls,
  378. upmpdcli, upx, vlc, webkitgtk, wireguard-linux-compat,
  379. wireshark, wpebackend-fdo, wpewebkit, zstd
  380. Issues resolved (http://bugs.uclibc.org):
  381. #12941: Python GObject fails to build when using BR2_PER_PACKAGE_..
  382. #12946: Grub: Decompressor is too big.
  383. #12986: Mtools: Error converting to codepage 850
  384. #13001: openjdk-bin replaces libfreetype.so from host-freetype
  385. #13011: Incorrect selection of gcc version
  386. #13026: rpi-firmware: must not rename start files
  387. #13031: nodejs: RangeError at new ArrayBuffer()
  388. #13046: Optimize for fast -Ofast is not compliant
  389. 2020.02.3, released June 3rd, 2020
  390. Important / security related fixes.
  391. Fix various build issues of host packages on hosts using GCC
  392. 10.
  393. Updated/fixed packages: arm-trusted-firmware, audit, bind,
  394. binutils, bison, clamav, crda, dovecot, dtc, efl, elf2flt,
  395. erlang, fakeroot, ffmpeg, fmc, fmlib, freerdp, gcc, git,
  396. glib-networking, gnupg, leveldb, libexif, libssh2,
  397. libusb-compat, linux-headers, lrzip, ltrace, mariadb, mesa3d,
  398. mp4v2, openldap, openocd, perl, php, prosody,
  399. python-pycryptodomex, python-pyqt5, qemu, rpi-firmware, rustc,
  400. speexdsp, sysrepo, systemd, tremor, vboot-utils, wireshark,
  401. xen
  402. Removed packages: python-pycrypto
  403. Issues resolved (http://bugs.uclibc.org):
  404. #12361: Init system (systemd) kills login on Raspberry Pi Zero
  405. #12656: bison fails to relocate with relocate-sdk.sh
  406. #12671: leveldb won't detect that snappy is present (static..
  407. #12691: host-rust build fails
  408. #12831: RPI-firmware package: DTB-overlay dependency
  409. 2020.02.2, released May 12th, 2020
  410. Important / security related fixes.
  411. Musl: Disallow on PPC64 cores without AltiVec support
  412. (E.G. e5500).
  413. fs/cpio: Correctly handle booting with 'console='
  414. release: Ensure temporary .br2-external.* files are not
  415. included in the release tarball
  416. Defconfigs: Fix various mistyped config options, or config
  417. options where the dependencies were no longer met.
  418. Updated/fixed packages: apache, azure-iot-sdk-c, binutils,
  419. boinc, c-ares, cvs, docker-cli, docker-containerd,
  420. docker-engine, domoticz, e2fsprogs, efl, evtest, exim, ffmpeg,
  421. freerdp, gcc, gflags, glibc, gnuconfig, haproxy, imx-gpu-2d,
  422. irrlicht, jpeg kodi-pvr-vuplus, libarchive, libcoap,
  423. libfpm-extra, libglib2, libhtp, libid3tag, libinput, libmad,
  424. libopenssl, libsepol, libssh, libv4l, libvncserver, libwpe,
  425. localedef, mariadb, matchbox, mbedtls, mc, mesa3d-headers,
  426. meson, midori, msgpack, netsnmp, nginx, ogre, openjdk,
  427. openldap, openvpn, p7zip, paho-mqtt-c, php, polkit, python,
  428. python-attrs, python-crossbar, python-dpkt, python-flask,
  429. python-future, python-iptables, python-jedi, python-markdown2,
  430. python3, qemu, qpdf, qt5, samba4, squashfs, squid, strongswan,
  431. suricata, tzdata, util-linux, vlc, wget, webkitgtk,
  432. wireguard-linux-compat, wireshark, wpebackend-fdo, wpewebkit,
  433. zic
  434. Issues resolved (http://bugs.uclibc.org):
  435. #11866: initramfs file system fails to boot using Grub on EFI x86_64
  436. #12271: python-iptables runtime dependencies
  437. #12726: systemctl preset-all failed for ctrl-alt-del.target
  438. #12751: OpenJdk package installation issues on target
  439. #12796: Update OpenSSL to Version 1.1.1g to patch CVE-2020-1967
  440. #12811: bootstrap stuck and no login prompt
  441. #12841: util-linux/sfdisk 2.35.1 fails on sector-size header
  442. 2020.02.1, released April 10th, 2020
  443. Important / security related fixes.
  444. core: Also fixup /lib references in libtool .la files, similar
  445. to how it is done for /usr/*.
  446. Various fixes for builds with per-package target/host
  447. directories.
  448. toolchain: Fix kernel headers validation check for external
  449. toolchains. Fix make 4.3+ compatibility in external toolchain
  450. logic.
  451. fs/initramfs: fix show-info so it also shows the usual
  452. rootfs-related variables.
  453. Updated/fixed packages: arm-trusted-firmware, barebox-aux,
  454. bluez5_utils, bubblewrap, busybox, civetweb, cog, collectd,
  455. ffmpeg, gcc, gnutls, gssdp, gvfs, haproxy, hiredis, hostapd,
  456. kmscube, kodi-screensaver-rsxs, libical, libinput, libexif,
  457. libopenssl, libsndfile, linux, linux-tools, llvm, localedef,
  458. mcrypt, mesa3d, meson, monit, nftables, ntp, opencv3,
  459. oprofile, php, pinentry, polkit, pure-ftpd, python-pyyaml,
  460. qt5, quagga, radvd, rcw, redis, rocksdb, samba4, screen,
  461. sdbusplus, swupdate, sysdig, sysklogd, syslinux, syslog-ng,
  462. tor, tslib, uacme, util-linux, vala, vlc,
  463. wireguard-linux-compat, wireguard-tools, wireshark,
  464. wpa_supplicant, xserver_xorg-server
  465. Issues resolved (http://bugs.uclibc.org):
  466. #12711: host-localedef 2.30-20 fails to compile on fedora 32
  467. #12746: "sysdig" package description points to http://sysdig.org, ..
  468. 2020.02, released March 8th, 2020
  469. Various fixes.
  470. br2-external: Fix compatibility with make 4.3+
  471. Updated/fixed packages: bash, bcm2835, binutils, cups,
  472. erlang-p1-acme, fbgrab, gr-osmosdr, gst1-plugins-base,
  473. gst1-validate, gstreamer1, guile, jhead, libdrm, libevdev,
  474. libinput, libnss, libsndfile, libvncserver, linux-firmware,
  475. mesa3d, nodejs, openjdk-bin, openvmtools, optee-test, patch,
  476. php, piglit, pppd, python-django, qemu, qt5base, ruby,
  477. ser2net, swupdate, thrift, zziplib
  478. Removed packages: classpath, jamvm
  479. Issues resolved (http://bugs.uclibc.org):
  480. #12606: fbgrab location has changed
  481. 2020.02-rc3, released March 2nd, 2020
  482. Fixes all over the tree.
  483. Infrastructure: Rework file list handling to fix race
  484. conditions when building with per-package target and host
  485. directories and top-level parallel builds.
  486. Updated/fixed packages: aufs, binutils, blktrace, brltty,
  487. cairo, dnsmasq, docker-compose, elf2flt, exim, exiv2, git,
  488. kodi-inputstream-adaptive, libarchive, libcgroup, libgdiplus,
  489. libssh2, libvncserver, libvorbis, linknx, linux-firmware, lxc,
  490. lz4, mosquitto, openjpeg, openrc, poco, proftpd, pure-ftpd,
  491. python3, python-multidict, python-setuptools-scm-git-archive,
  492. qpdf, qt5tools, rdesktop, rocksdb, shellinabox, squid,
  493. suricata, swig, systemd, taglib, util-linux, wireshark, zsh
  494. Issues resolved (http://bugs.uclibc.org):
  495. #12571: ltp-testsuite : Build failure
  496. #12576: 2020.02-RC1: error while loading shared libraries: ...
  497. #12581: 2020.02-rc1 glibc failing to build on fedora 31
  498. 2020.02-rc2, released February 26th, 2020
  499. Fixes all over the tree.
  500. Toolchain: Ensure strong SSP can only be enabled if the
  501. (external) toolchain supports it.
  502. Fix a race condition related to creating the output/staging
  503. symlink on systems with coreutils < 8.27.
  504. Drop support for the (end of life) Qt 5.6 variant.
  505. Updated/fixed packages: at, armadillo, audiofile, bash,
  506. busybox, erlang, fail2ban, fluidsynth, ipsec-tools, jpeg-turbo,
  507. kvm-unit-tests, libftdi1, libinput, libsvgtiny, libtomcrypt,
  508. libupnpp, libxml2, linux-tools, luv, mbedtls, mesa3d, minicom,
  509. openvmtools, php, qt5, qt5webengine, qwt, radvd, rcw,
  510. sdbusplus, systemd, tpm2-tss, vorbis-tools
  511. Issues resolved (http://bugs.uclibc.org):
  512. #12581: 2020.02-rc1 glibc failing to build on fedora 31
  513. 2020.02-rc1, released February 18th, 2020
  514. Fixes all over the tree and new features.
  515. Add experimental support for building with a per-package
  516. target and host directory. This still has some rough edges,
  517. but brings a number of advantages:
  518. - Packages will only be able to access the explicitly listed
  519. dependencies and not any other packages that happen to be
  520. built before, ensuring correct dependency information in
  521. Buildroot.
  522. - Possibility for top-level parallel builds, speeding up
  523. builds on multicore machines.
  524. Core: Ensure package-file-lists data is correct after
  525. incremental builds as well.
  526. Architecture: Add support for ARC-HS38 with 64bit multiplier
  527. variant, allow building glibc for big endian ARC, handle 16KB
  528. MMU page size for ARC in toolchain wrapper.
  529. Toolchain: Add binutils 2.33.1, GCC 7.5.0, Arm 9.2-2019.12
  530. toolchains, ARC 2019.09 toolchain. Allow using custom kernel
  531. headers newer than what is known by Buildroot.
  532. pkg-stats: Support for CVE vulnerability reporting by
  533. comparing to NVD database.
  534. Reproducible builds: The go -trimpath option is now used to
  535. get rid of absolute build paths, __FILE__ and __BASE_FILE__
  536. defines are now handled in the toolchain wrapper.
  537. Systemd: Build host variant and use systemctl to automatically
  538. enable unit files rather than manually managing symlinks.
  539. Util-linux: Ensure that hwclock is built without GPLv3
  540. code. Notice that builds with hwclock has contained
  541. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  542. New defconfigs: Beelink GS1, Raspberrypi4 64bit
  543. New packages: alura, avro-c, bubblewrap, cctz, cereal,
  544. cpuburn-arm, elixir, erlang-base64url, erlang-idna,
  545. erlang-jose, erlang-p1-acme, erlang-p1-mqtree,
  546. erlang-p1-yconf, fluid-soundfont, fluidsynth, gcnano-binaries,
  547. gensio, glslsandbox-player, libargon2, libmodsecurity,
  548. libpam-nfc, libtelnet, lua-codegen, lua-livr, lua-livr-extra,
  549. lua-rotas, lua-silva, mfoc, network-manager-openvpn,
  550. nginx-modsecurity, perl-crypt-openssl-aes,
  551. perl-math-prime-util, pipewire, ptm2human, python-aenum,
  552. python-aiohttp-debugtoolbar, python-aiohttp-mako,
  553. python-aiologstash, python-aiosignal, python-aiozipkin,
  554. python-async-lru, python-avro, python-bunch, python-crontab,
  555. python-dnspython, python-entrypoints, python-esptool,
  556. python-frozenlist, python-future, python-gitdb, python-janus,
  557. python-lockfile, python-logstash, python-nested-dict,
  558. python-pbr, python-pyaes, python-pydantic, python-smmap2,
  559. python-sockjs, python-zc-lockfile, raspi-gpio, rocksdb,
  560. sdbusplus, spidermonkey, thermald, ti-sgx-libgbm, tinyssh,
  561. tio, umtprd, weston-imx, wireguard-linux-compat,
  562. wireguard-tools, xdg-dbus-proxy
  563. Removed packages: bluez_utils, celt051, erlang-p1-iconv, fis,
  564. gadgetfs-test, libplayer, gstreamer, gst-ffmpeg,
  565. gst-fsl-plugins, gst-omapfb, gst-plugins-bad,
  566. gst-plugins-base, gst-plugins-good, gst-plugins-ugly,
  567. perl-digest-md5, perl-mime-base64, perl-net-ping,
  568. python-scapy3k, wireguard
  569. Issues resolved (http://bugs.uclibc.org):
  570. #11906: the new version of mesa3d cannot support etnaviv when..
  571. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  572. #12121: PyQt5.QtSerialPort and other modules not being built
  573. #12256: package tar is outdated (1.29 is 3 years old
  574. #12286: Can't import gobject in python 3.8
  575. #12376: python-scapy3k is deprecated
  576. #12386: carriage return issue when "make menuconfig"
  577. #12441: qt5webengine build error: asm/errno.h: No such file or..
  578. #12446: Buildroot fails to finish installing packages
  579. #12456: qtvirtualkeyboard: No such file or directory
  580. #12461: libglib2 build files with deep directory structure
  581. #12481: minicom fails when output directory path contains "m4"
  582. #12501: libnss-3.49.1: ld error: multiple definition of `gcm_..
  583. #12526: host-nodejs 12.14.1: configure fail: AttributeError: ..
  584. #12536: Linux-Headers extracting failure
  585. #12546: Ninja 1.10 build Error
  586. 2019.11.3, released April 10th, 2020
  587. Important / security related fixes.
  588. core: Fix compatibility with make 4.3+. Also fixup /lib
  589. references in libtool .la files, similar to how it is done for
  590. /usr/*.
  591. toolchain: Fix kernel headers validation check for external
  592. toolchains.
  593. fs/initramfs: fix show-info so it also shows the usual
  594. rootfs-related variables.
  595. Updated/fixed packages: barebox-aux, bluez5_utils, busybox,
  596. civetweb, cog, collectd, ffmpeg, gcc, gnutls, gssdp, gvfs, haproxy,
  597. hiredis, hostapd, kmscube, libical, libopenssl, libsndfile,
  598. linux-tools, llvm, monit, ntp, php, pure-ftpd, radvd, redis,
  599. samba4, screen, sysdig, syslinux, syslog-ng, tor, uacme,
  600. util-linux, vala, vlc, wpa_supplicant, xserver_xorg-server
  601. Issues resolved (http://bugs.uclibc.org):
  602. #12746: "sysdig" package description points to http://sysdig.org, ..
  603. 2019.11.2, released March 16th, 2020
  604. Important / security related fixes.
  605. Core: Ensure package-file-lists data is correct after
  606. incremental builds as well.
  607. Fix a race condition related to creating the output/staging
  608. symlink on systems with coreutils < 8.27.
  609. Toolchain: ARC tools bumped to arc-2019.09.
  610. Br2-external: Fix patch handling when external linux-extension
  611. packages are used. Fix compatibility with make 4.3+
  612. Util-linux: Ensure that hwclock is built without GPLv3
  613. code. Notice that builds with hwclock has contained
  614. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  615. Updated/fixed packages: armadillo, at, bcm2835, binutils,
  616. blktrace, bluez-alsa, bootstrap, brltty, busybox, cairo,
  617. clamav, cog, cups, czmq, dnsmasq, docker-containerd, dovecot,
  618. dovecot-pigeonhole, e2fsprogs, elf2flt, eudev, exim, exiv2,
  619. fbgrab, gettext-tiny, glibc, go, grep, gst1-validate, guile,
  620. imagemagick, jhead, jpeg-turbo, kvm-unit-tests, lapack,
  621. libarchive, libcgroup, libdrm, libevent, libexif, libftdi1,
  622. libgdiplus, libjpeg, libsigrok, libsndfile, libssh2,
  623. libsvgtiny, libvncserver, libvorbis, libxml2, libxslt, linknx,
  624. lxc, lz4, mariadb, mbedtls, meson, mongoose, mosquitto, musl,
  625. ncurses, nodejs, ntfs-3g, ogre, opencv3, openjdk, openjpeg,
  626. openrc, openswan, openvmtools, optee-test, patch, php, piglet,
  627. postgresql, pppd, proftpd, pure-ftpd, python-django,
  628. python-pyqt5, python-setuptools-scm-git-archive, python3,
  629. qemu, qt5base, qt5tools, qt5virtualkeyboard, qt5webengine,
  630. qwt, rdesktop, ruby, runc, samba4, shellinabox,
  631. skeleton-init-openrc, smartmontools, spdlog, sqlcipher, squid,
  632. suricata, swig, swupdate, sysklogd, taglib, thrift,
  633. ti-cgt-pru, uclibc, util-linux, vorbis-tools, webkitgtk,
  634. wireshark, wpebackend-fdo, wpewebkit, xen,
  635. xserver_xorg-server, zeromq, zsh, zziplib
  636. Issues resolved (http://bugs.uclibc.org):
  637. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  638. #12331: meson issue
  639. #12456: qtvirtualkeyboard: No such file or directory
  640. #12461: libglib2 build files with deep directory structure
  641. #12481: minicom fails when output directory path contains "m4"
  642. #12606: fbgrab location has changed
  643. 2019.11.1, released January 12th, 2020
  644. Important / security related fixes.
  645. Infrastructure: kconfig: Fix reconfigure logic, python: Ensure
  646. correct compiler and linker flags are used for compiled code
  647. utils/scanpypi: Remind users to update DEVELOPERS
  648. Defconfigs: imx6-sabresd: Fix the Qt5 display names,
  649. imx8: Drop extra copy of U-Boot DTB
  650. Updated/fixed packages: acsccid, bitcoin, boost, busybox,
  651. cc-tool, cmocka, cpio, cups, dante, dialog, dillo, docker-cli,
  652. docker-containerd, docker-engine, easy-rsa, ebtables,
  653. ecryptfs-utils, efl, ffmpeg, gdb, git, glibc, gnupg2, go,
  654. gpsd, grpc, gst1-plugins-bad, iputils, jasper,
  655. kf5-kcoreaddons, leveldb, libarchive, libfribi, libgit2,
  656. libkrb5, libp11, librsvg, libssh, libtomcrypt, libuio, libv4l,
  657. lirc-tools, log4cplus, lrzip, lvm2, mali-t76x,
  658. matchbox-desktop, mender-grubenv, mmc-utils, mosquitto,
  659. nodejs, ntp, openipmi, opencv3, openpowerlink, openrc, pango,
  660. perl-sys-cpu, pimd, postgresql, pulseaudio, python-brotli,
  661. python-coherence, python-crc16, python-django, python-dpkt,
  662. python-gobject, python-pyasn-modules, python-pypcap,
  663. python-pyqt5, python-subprocess32, python3, qpdf,
  664. qt-webkit-kiosk, qt5virtualkeyboard, qt5webengine, quota,
  665. rabbitmq-c, rauc, rpcbind, rtl8821au, runc, rygel, samba4,
  666. sdl2, setserial, snort, spidev_test,
  667. sunxi-mali-mainline-driver, syslog-ng, sysrepo, tcllib, tftpd,
  668. usbmount, w_scan, wavpack, wsapi, wsapi-fcgi, wsapi-xavante,
  669. x265, xserver_xorg-server, ytree, zip
  670. Issues resolved (http://bugs.uclibc.org):
  671. #12121: PyQt5.QtSerialPort and other modules not being built
  672. #12286: Can't import gobject in python 3.8
  673. 2019.11, released December 1st, 2019
  674. Various fixes.
  675. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  676. <pkg>_DL_OPTS by default, just like it is done for a number of
  677. other package variables.
  678. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  679. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  680. the (rare) case where the .py files are needed at runtime
  681. rather than .pyc.
  682. Updated/fixed packages: am33x-cm3, bind, collectd, go, gob2,
  683. gst1-plugins-bad, haproxy, jasper, jpeg-turbo, libdrm,
  684. libftdi, libftdi1, libnss, libselinux, libstrophe, lzma,
  685. minicom, network-manager, nodejs, oniguruma, opencv3,
  686. openvmtools, perl-gdgraph, perl-gdtextutil, prosody,
  687. python-cchardet, systemd, tiff, wolfssl,
  688. Issues resolved (http://bugs.uclibc.org):
  689. #11416: check-uniq-files staging issue
  690. #12146: Oprofile runtime issue
  691. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  692. #12171: Python-opencv needs config.py and config-3.7.py to run..
  693. #12196: duma package
  694. #12211: host-nodejs 10.15.3 package fail to build
  695. #12316: tzdata fails to install with empty "default local time"
  696. #12326: network-manager build fails with missing glib error
  697. #12366: Gstreamer1 gst1-plugins-bad do not compile with RPI-Userland
  698. 2019.11-rc3, released November 24th, 2019
  699. Fixes all over the tree.
  700. Updated/fixed packages: asterisk, clamav, domoticz, faifa,
  701. gerbera, kmod, kvm-unit-tests, libupnp18, linux-serial-test,
  702. lsof, ltp-testsuite, lxc, mesa3d, mesa3d-headers, perl, php,
  703. postgresql, qemu, rauc, redis, rpcbind, spice, spice-protocol,
  704. systemd, tftpd, waylandpp, webkitgtk, zip
  705. 2019.11-rc2, released November 16th, 2019
  706. Fixes all over the tree.
  707. Toolchain: ARC tools bumped to arc-2019.09-rc1, ensure
  708. external toolchain kernel headers version check correctly stop
  709. the build on mismatch
  710. Meson: Fix generation of global cross-compilation.conf
  711. Download: Also use the package download method for extra
  712. downloads from the same site, so it does not get confused by
  713. URLs containing '+'
  714. Defconfigs: Fix boot issue for beaglebone
  715. Updated/fixed packages: bird, chrony, connman, dhcp, domoticz,
  716. dropwatch, dtc, elf2flt, gettext-tiny, glog, intel-microcode,
  717. ipsec-tools, jailhouse, kodi, libfribi, libmbim, libressl,
  718. libsigrokdecode, libsvgtiny, linux-serial-test, ltp-testsuite,
  719. lvm2, lxc, mariadb, mesa3d, minizip, ndisc6, neardal, ninja,
  720. ofono, openvmtools, oracle-mysql, qt5wayland, safeclib, socat,
  721. sudo, systemd, wpewebkit, xserver_xorg-server
  722. 2019.11-rc1, released November 5th, 2019
  723. Fixes all over the tree and new features.
  724. Dependencies: Gcc/g++ 4.8 or newer is now required on the
  725. build host.
  726. Ensure host has JSON::PP perl module installed if
  727. webkitgtk/wpewebkit packages are enabled as it is needed
  728. during their build process.
  729. Toolchain: Add support for the D programming language (GCC
  730. 9.x, Glibc).
  731. GCC 9.x updated to 9.2.0, Glibc updated to 2.30, Musl updated
  732. to 1.1.24, uClibc-ng updated to 1.0.32, ARC toolchain updated
  733. to arc-2019.09-eng002.
  734. Musl: Add a patch to add support for
  735. sched_{get,set}scheduler() and sched_{get,set}param() for
  736. compatibility.
  737. Generate check-headers program under BUILD_DIR rather than
  738. /tmp to fix issues with distributions mounting /tmp noexec.
  739. Also copy libssp.so for external toolchains if SSP
  740. to handle toolchains providing SSP support in libssp rather
  741. than in the C library
  742. New defconfigs: Beaglebone AI, FriendlyARM Nanopi NEO Plus2,
  743. Libre Computer "La Frite", QEMU Armv7-A with trustzone/OP-TEE,
  744. STM32MP157 Discovery Kit
  745. Arch: RISC-V: Default to a sensible floating point ABI based
  746. on the selected ISA extensions rather than always defaulting
  747. to ILP32/64
  748. Graph-size: Package sizes are now shown in human readable form
  749. (Kib/Mib/Gib) rather than always in Kib. Binary (KB/MB/GB)
  750. format can be selected using the --binary option. The cut-off
  751. limit for classifying packages as "other" is now configurable
  752. using the --size-limit option.
  753. Br2-external: Linux kernel extensions can now also be provided
  754. in an external tree by adding packages under
  755. linux/linux-ext-*.mk. See the manual for details.
  756. Fakeroot now works correctly under Microsoft Windows 10
  757. Services for Linux, which does not provide SYSV IPC support
  758. The check-uniq-files logic which would complain if multiple
  759. packages would touch the same files has been removed as it
  760. causes issues in certain situations (when packages are
  761. rebuilt) and the issue is no longer considered a problem for
  762. toplevel parallel builds as those will use a per-package
  763. staging/target directory.
  764. With this removed, Python is no longer required for a basic
  765. build (only for optional scripts).
  766. support/scripts/genimage.sh will no longer make a copy of
  767. TARGET_DIR, speeding up post-build/image scripts.
  768. The runtime test logic now uses Python 3.x.
  769. A 'v' prefix has been dropped from the <pkg>_SOURCE variable
  770. for a number of packages to match the version numbers used by
  771. https://release-monitoring.org
  772. New packages: caps, collectl, dav1d, fstrcmp, ima-evm-utils,
  773. jitterentropy-library, kodi-vfs-rar, kodi-vfs-sftp, libavl,
  774. libhttpserver, libmspack, libnetconf2, libolm, libyang,
  775. linux-serial-test, lrzip, mdevd, minimodem, musl-fts, netifrc,
  776. ogre, openlayers, python-aioredis, python-asgiref,
  777. python-backports-functools-lru-cache, python-bluezero,
  778. python-brotli, python-channels, python-channels-redis,
  779. python-colorlog, python-daphne, python-django-enumfields,
  780. python-jaraco-functools, python-kiwisolver, python-msgfy,
  781. python-rpi-ws281x, python-setuptools-scm-git-archive,
  782. python-simplelogging, python-soupsieve, python-sqliteschema,
  783. python-sqlparse, python-tqdm, python-webencodings, qt5webview,
  784. restclient-cpp, ripgrep, snmpclitools, sunwait, sysrepo,
  785. uacme, utf8proc, uvw, ytree
  786. Removed packages: alljoyn, alljoyn-base, alljoyn-tcl-base,
  787. devmem2, eventlog, kodi-audiodecoder-opus,
  788. kodi-screensaver-planestate, kodi-visualisation-waveforhue,
  789. python-pysnmp-apps, riscv-pk, ustr
  790. Issues resolved (http://bugs.uclibc.org):
  791. #9881: systemd-resolved not setting resolv.conf link
  792. #10171: devmem2 w (word) is 8 bytes in x86 64 systems
  793. #10586: musl gcc has ifunc enabled when musl doesn't support it
  794. #10806: Allow nfs-utils to use ipv6
  795. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  796. #11411: check-uniq-files target issue
  797. #11766: Console (getty) issues with systemd
  798. #11781: mariadb build error
  799. #12031: Build of cups-filters fails while linking, apparently due..
  800. #12116: console prompt does not appear after login
  801. #12141: eudev package is missing "render" and "kvm" groups
  802. #12181: dropbear: norootlogin (-w) no longer works when PAM is enabled
  803. #12186: Raspberry Pi Zero-W build fails on newer kernel versions
  804. #12191: cmake BUILDDIR
  805. #12241: Permission denied while running "make"
  806. #12261: sudo versions prior to 1.8.28 are affected.
  807. #12276: make clean/distclean does not remove BR2_DL_DIR and BR2_HOST_DIR
  808. #12281: Custom configuration fails to build (based on raspberrypi3_..
  809. 2019.08.3, released December 7th, 2019
  810. Important / security related fixes.
  811. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  812. <pkg>_DL_OPTS by default, just like it is done for a number of
  813. other package variables
  814. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  815. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  816. the (rare) case where the .py files are needed at runtime
  817. rather than .pyc.
  818. Fix <pkg>-reconfigure handling for packages using the kconfig
  819. infrastructure.
  820. Toolchain: ensure external toolchain kernel headers version
  821. check correctly stop the build on mismatch
  822. Deconfigs: beaglebone: fix boot issue
  823. Updated/fixed packages: am33x-cm3, asterisk, bind, chrony,
  824. clamav, cmocka, collectd, connman, dhcp, dropwatch, faifa,
  825. gettext-tiny, gob2, haproxy, intel-microcode, ipsec-tools,
  826. jailhouse, jasper, jpeg-turbo, kodi, kvm-unit-tests, libftdi,
  827. libftdi1, libnss, libressl, libstrophe, libsvgtiny, lvm2,
  828. lzma, mariadb, minicom, mosquitto, neardal, ninja, nodejs,
  829. oniguruma, openvmtools, oracle-mysql, perl-gdgraph,
  830. perl-gdtextutil, php, postgresql, prosody, python-cchardet,
  831. python-django, qt5wayland, rabbitmq, rauc, redis, rpcbind,
  832. socat, spice, spice-protocol, tftpd, tiff, webkitgtk
  833. New packages: libmspack
  834. Issues resolved (http://bugs.uclibc.org):
  835. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  836. #12171: Python-opencv needs config.py and config-3.7.py to run..
  837. #12211: host-nodejs 10.15.3 package fail to build
  838. #12316: tzdata fails to install with empty "default local time"
  839. 2019.08.2, released November 9th, 2019
  840. Important / security related fixes.
  841. Toolchain: Also copy libssp.so for external toolchains if SSP
  842. to handle toolchains providing SSP support in libssp rather
  843. than in the C library
  844. Download: Also use the package download method for extra
  845. downloads from the same site, so it does not get confused by
  846. URLs containing '+'
  847. Fakeroot now works correctly under Microsoft Windows 10
  848. Services for Linux, which does not provide SYSV IPC support
  849. utils/test-pkg: ensure to exit with an error upon failure
  850. Updated/fixed packages: asterisk, azmq, binutils,
  851. cups-filters, domoticz, dtc, duma, elf2flt, eudev, exfat,
  852. exfat-utils, fakeroot, fdk-aac, file, freerdp, gcc, gd,
  853. ghostscript, go, gpsd, grpc, gst1-plugins-base, gvfs, icu,
  854. intel-microcode, kvm-unit-tests, libfribidi, libnspr, libnss,
  855. libopenssl, libpcap, libpciaccess, librsvg, libseccomp,
  856. libsigrok, libtorrent, libunwind, libva, linux-tools,
  857. lua-sdl2, lxc, minizip, mjpegtools, mongoose, mono, nbd,
  858. nfs-utils, php, piglit, python, python-autobahn,
  859. python-pysnmp-apps, python-tornado, python3, qemu, qt5base,
  860. ruby, safeclib, samba4, sdl_mixer, sox, sudo, suricata,
  861. systemd, tcpdump, unscd, util-linux, vdr-plugin-vnsiserver,
  862. vtun, wireshark, xvisor, yaffs2utils
  863. Issues resolved (http://bugs.uclibc.org):
  864. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  865. #12261: sudo versions prior to 1.8.28 are affected
  866. 2019.08.1, released October 3rd, 2019
  867. Important / security related fixes.
  868. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  869. Use default console settings
  870. Dependencies: Ensure host has JSON::PP perl module installed
  871. if webkitgtk/wpewebkit packages are enabled as it is needed
  872. during their build process.
  873. Toolchain: Generate check-headers program under BUILD_DIR
  874. rather than /tmp to fix issues with distributions mounting
  875. /tmp noexec.
  876. Updated/fixed packages: asterisk, augeas, axel, bind, bwm-ng,
  877. cups, cups-filters, docker-cli, docker-engine, docker-proxy,
  878. e2fsprogs, eudev, exim, expat, gcc, go, haveged, ifplugd, joe,
  879. kf5-extra-cmake-modules, kf5-modemmanager-qt,
  880. kf5-networkmanager-qt, libcamera, libcurl, libgcrypt,
  881. libglib2, libgpg-error, libnspr, libnss, libopenssl,
  882. logrotate, luksmeta, mariadb, mbedtls, mongodb, mosquitto,
  883. ncurses, nfs-utils, nghttp2, nodejs, openvmtools, php,
  884. protobuf, putty, qemu, samba4, snort, swupdate,
  885. systemd-bootchart, thttpd, uclibc, unzip, util-linux,
  886. wireshark
  887. Issues resolved (http://bugs.uclibc.org):
  888. #10806: Allow nfs-utils to use ipv6
  889. #11781: mariadb build error
  890. #12031: Build of cups-filters fails while linking, apparently due..
  891. #12141: eudev package is missing "render" and "kvm" groups
  892. #12241: Permission denied while running "make"
  893. 2019.08, released September 1st, 2019
  894. Various fixes.
  895. Defconfigs: Removed nanopc t4, nanopi m4 and neo4, pine64
  896. rockpro64 and raxda rock pi4 as they rely on a ARM32 toolchain
  897. on the build host to build ATF. These defconfigs will be added
  898. back once a package providing such toolchain is
  899. available. Also dropped ts4800 defconfig as it does not build
  900. with GCC >= 8.x.
  901. Updated/fixed packages: libxcb, php, python-numpy, webkitgtk,
  902. wpewebkit, xfont_font-util
  903. Issues resolved (http://bugs.uclibc.org):
  904. #12156: buildroot-2019.08-rc3 does not build for Pi Zero W
  905. 2019.08-rc3, released August 28th, 2019
  906. Fixes all over the tree.
  907. Updated/fixed packages: clamav, dovecot, dovecot-pigeonhole,
  908. gcc, intel-microcode, libmicrohttpd, libmodplug, mpg123,
  909. nginx, openldap, python, qemu, samba4, squid, strace, vlc
  910. Issues resolved (http://bugs.uclibc.org):
  911. #11686: fbdev_drv.so: undefined symbol: shadowUpdatePackedWeak,..
  912. 2019.08-rc2, released August 20th, 2019
  913. Fixes all over the tree.
  914. Compile fixes for a number of defconfigs.
  915. Updated/fixed packages: apache, autofs, batctl, batman-adv,
  916. bind, collectd, cwiid, dahdi-linux, dahdi-tools, daq,
  917. dehydrated, dhcp, dtc, efl, enlightenment, evtest, giflib,
  918. gnutls, go, gst-plugins-bad, gst-plugins-base,
  919. gst1-plugins-bad, gst1-plugins-base, gst1-rtsp-server, gtkmm3,
  920. gupnp, harfbuzz, imagemagick, lftp, libbsd, libcpprestsdk,
  921. libdnet, libfm, libgit2, libgtk2, libgtk3, libpri, librsvg,
  922. libss7, libssh2, libwpe, lua-cqueues, metacity, micropython,
  923. mpd, mpg123, musl, mpv, openblas, openbox, opencv, pango,
  924. pcmanfm, piglit, pigpio, pinentry, postgresql, qemu, qt5base,
  925. qt5enginio, qt5multimedia, qt5serialbus, quagga, quazip,
  926. rrdtool, rygel, samba4, stellarium, tcpreplay, ti-gfx, vte,
  927. wampcc, wilink-bt-firmware, wireless-regdb, wpebackend-fdo,
  928. xscreensaver
  929. Removed packages: libamcodec, odroid-mali, odroid-scripts
  930. Issues resolved (http://bugs.uclibc.org):
  931. #9481: NetworkManager/Ping unable to resolve domains
  932. #10566: php.mk is missing option --with-pgsql
  933. #10861: Package batman_adv Makefile is missing include header direct..
  934. #11641: linux kernel .config timestamp always out of date fixed with..
  935. #11671: russian locale ru_RU:145: LC_TIME: syntax error
  936. #11701: recuuring of usr and in bin shortcuts are created
  937. #11741: pigpio does not build host-pigpio
  938. #11876: automount using host mount/umount
  939. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  940. #11921: dahdi fails to build
  941. #11936: libcpprestsdk should install to staging
  942. #11946: wilink-bt-firmware: moved from github to http://git.ti.com/ti-bt
  943. #11961: libpri build failure
  944. #12086: dhcp shared libraries not installed to target
  945. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  946. #12106: daq: build fails if libdumbnet-dev is installed in the host
  947. #12126: vc4 has neon as hard dependency
  948. 2019.08-rc1, released August 9th, 2019
  949. Fixes all over the tree and new features.
  950. toolchain: ARC toolchain updated to 2019.03 (binutils 2.32.51
  951. / GCC 8.3.1 / glibc 2.29), ARM AAarch64/ARM toolchains updated
  952. to 2019.03. Add GCC 9.1.0, remove GCC 4.9 and 6.5, add GDB
  953. 8.3, remove GDB 7.12 and 8.0.1, default to GDB 8.2, GCC
  954. 8.3.0. Musl updated to 1.1.23, bringing support for RISC-V 64.
  955. Architectures: Internal toolchain support for C-SKY, support
  956. for ARC HS48 v3.1 and HS38 with Quad MAC & FPU, support for
  957. ARM A76, A76/A55 big.LITTLE, emag, neoverse-N1, phecda and
  958. tsv110.
  959. Filesystems: Pass extra pax options to tar for binary
  960. reproducibility. Build host-cpio for the --reproducible option
  961. support when BR2_REPRODUCIBLE is enabled. Genimage updated to
  962. version 11, bringing GPT support.
  963. Br2-external: Add support for injecting additional options to
  964. the list of preconfigured external toolchains and libjpeg and
  965. openssl providers using files under provides/. See the manual
  966. for details.
  967. Ensure custom <pkg>_OVERRIDE_SRCDIR_RSYNC_EXCLUSIONS are
  968. passed before the standard exclusions so they are not ignored
  969. by rsync when using override-srcdir.
  970. Gnuconfig updated to 2019-05-28, adding C-SKY support.
  971. test-pkg: Correct long option handling and clean output dir
  972. after a successful build to save disk space.
  973. support/testing: Emulate a machine with 256MB RAM to fix
  974. issues with certain tests running out of memory, use
  975. virtio-rng to provide needed entrophy.
  976. pkg-stats: support outputting in JSON format with --json for
  977. easier post processing. The classic HTML output is still
  978. available with --html. Parallelize access to
  979. release-monitoring.org to speed up runtime.
  980. Drop non-conventional version prefix/suffix/separators for
  981. packages for better compatibility with release-monitoring.org
  982. Packages:
  983. Init systems: Add basic openrc support and
  984. <pkg>_INSTALL_INIT_OPENRC variable in the infrastructure to
  985. install openrc service scripts if enabled.
  986. busybox: Build each applet as a separate binary when SELinux
  987. is enabled for more finegrained policy control. Use daemon
  988. mode for mdev rather than legacy hotplug.
  989. linux: Workaround -Werror related build failure on powerpc,
  990. by forcing CONFIG_PPC_DISABLE_WERROR on.
  991. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  992. partition is available before mounting.
  993. New defconfigs: HiFive Unleashed, I.MX8MM EVK and Pico, Nanopi
  994. m4 and neo4, Nanopc t4, Olimex A33 olinuxino, Pine64
  995. Rockpro64, PowerPC mac99, QEMU C-SKY 610/807/810/860 virt,
  996. Raspberry Pi 4, Raxda rock pi4, Solidrun Clearfog GT-8K
  997. Removed defconfigs: Odroid C2
  998. New packages: bitcoin, c-capnproto, fatcat, ifmetric, jack1,
  999. jailhouse, libubootenv, luasyslog, mender-grubenv,
  1000. murata-cyw-fw, openrc, piglit, python-colorama, python-cycler,
  1001. python-hiredis, python-ifaddr, python-inflection,
  1002. python-iptables, python-matplotlib, python-periphery,
  1003. python-pycairo, python-redis, python-termcolor,
  1004. python-tinyrpc, python-txdbus, skeleton-init-openrc, spdlog,
  1005. sshguard, stellarium, zziplib
  1006. Removed packages: xapp_mkfontdir
  1007. Issues resolved (http://bugs.uclibc.org):
  1008. #11096: Upgrade from glibc 2.26 to 2.27 broke some locales...
  1009. #11271: utils/check-package fails with exception depending on..
  1010. #11991: [numpy] segfault when compiling for RPi3 64bits
  1011. #12016: Grub fails to boot bzImage after upgrade to 2019.05
  1012. #12046: Can’t login as root user after upgrading to buildroot..
  1013. #12051: package/dhcp installs libtool wrapper scripts on tar...
  1014. #12076: Patchelf can link against an incompatible libc++ ver...
  1015. 2019.05.3, Released October 3rd, 2019
  1016. Important / security related fixes.
  1017. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  1018. Use default console settings
  1019. Dependencies: Ensure host has JSON::PP perl module installed
  1020. if webkitgtk/wpewebkit packages are enabled as it is needed
  1021. during their build process.
  1022. Toolchain: Generate check-headers program under BUILD_DIR
  1023. rather than /tmp to fix issues with distributions mounting
  1024. /tmp noexec.
  1025. Updated/fixed packages: asterisk, augeas, bind, bwm-ng, cups,
  1026. cups-filters, docker-cli, docker-engine, docker-proxy,
  1027. e2fsprogs, eudev, exim, expat, gcc, go, haveged, ifplugd,
  1028. iptables, joe, kf5-extra-cmake-modules, kf5-modemmanager-qt,
  1029. kf5-networkmanager-qtlibcamera, libcurl, libgcrypt,
  1030. libgpg-error, libnftl, libnspr, libnss, libopenssl,
  1031. libtorrent-rasterbar, luksmeta, mariadb, mbedtls, mongodb,
  1032. mosquitto, ncurses, nfs-utils, nghttp2, nodejs, openvmtools,
  1033. php, protobuf, putty, qemu, samba4, swupdate,
  1034. systemd-bootchart, thttpd, uclibc, unzip, util-linux,
  1035. wireshark
  1036. Issues resolved (http://bugs.uclibc.org):
  1037. #10806: Allow nfs-utils to use ipv6
  1038. #11781: mariadb build error
  1039. #12031: Build of cups-filters fails while linking, apparently due..
  1040. #12141: eudev package is missing "render" and "kvm" groups
  1041. #12241: Permission denied while running "make"
  1042. 2019.05.2, Released September 3rd, 2019
  1043. Important / security related fixes.
  1044. Filesystems: Pass extra pax options to tar for binary
  1045. reproducibility.
  1046. Updated/fixed packages: apache, arm-trusted-firmware,
  1047. asterisk, atk, autofs, batctl, batman-adv, berkeleydb,
  1048. busybox, bzip2, clamav, cloop, cmake, collectd, connman-gtk,
  1049. dahdi-linux, dahdi-tools, daq, dehydrated, dhcp, dovecot,
  1050. dovecot-pigeonhole,, elfutils, evtest, exim, expect, giflib,
  1051. git, glib-networking, glibc, gnupg2, gnutls, go,
  1052. gst1-rtsp-server, gtkperf, gupnp-tools, gvfs, imagemagick,
  1053. imx-uuc, intel-microcode, json-glib, lftp, libbsd, libcurl,
  1054. libgit2, libgtk2, libgtk3, libmodplug, libnss, libpri,
  1055. libshout, libss7, libssh2, libvips, libxcb, linux-headers,
  1056. mdadm, mesa3d, metacity, mpg123, mosquitto, musl, nginx,
  1057. oniguruma, openblas, opencv3, openjdk, openjdk-bin, openldap,
  1058. openvmtools, pcmanfm, php, pigpio, postgresql, prboom,
  1059. proftpd, proj, python, python-django, python-idna,
  1060. python-numpy, python-urllib3, python3, qemu, qt5, qt5base,
  1061. qt5enginio, quagga, rygel, squid, subversion, tcpreplay,
  1062. unzip, vlc, vte, webkitgtk, wireless-regdb, xen,
  1063. xfont_font-util, xlib_libICE, xlib_libXfont, xlib_libXfont2,
  1064. yad, zeromq
  1065. Issues resolved (http://bugs.uclibc.org):
  1066. #11741: pigpio does not build host-pigpio
  1067. #11876: automount using host mount/umount
  1068. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  1069. #11921: dahdi fails to build
  1070. #11961: libpri build failure
  1071. #12086: (dhcpd-missing-libs) - dhcp shared libraries not installed to..
  1072. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  1073. #12106: daq: build fails if libdumbnet-dev is installed in the host
  1074. #12126: vc4 has neon as hard dependency
  1075. 2019.05.1, Released July 7th, 2019
  1076. Important / security related fixes.
  1077. arch: x86: Fix typo breaking 'core-avx2' variant
  1078. linux: Workaround -Werror related build failure on powerpc,
  1079. by forcing CONFIG_PPC_DISABLE_WERROR on.
  1080. support/testing: Emulate a machine with 256MB RAM to fix
  1081. issues with certain tests running out of memory.
  1082. test-pkg: Correct long option handling and clean output dir
  1083. after a successful build to save disk space.
  1084. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  1085. partition is available before mounting.
  1086. Updated/fixed packages: barebox, busybox, bzip2, davfs2,
  1087. dialog, docker-cli, docker-engine, exim, expat, faad2,
  1088. haveged, irssi, libcamera, libcdaudio, libcurl, libglib2,
  1089. libressl, libsecret, lmbench, meson, monit, php, postgresql,
  1090. psplash, python-django, qt5base, tvheadend, webkitgtk,
  1091. xserver_xorg-server, znc
  1092. 2019.05, released June 2nd, 2019
  1093. Various fixes.
  1094. Toolchain: Ensure pre-built Andes toolchains can only be
  1095. selected when x86 32bit support is available on the host.
  1096. Disallow PowerPC SPE ABI for GCC >= 8.x, as it is no longer
  1097. supported.
  1098. Infra: pkg-config: Use a dedicated timestamp file rather than
  1099. .config as that gets touched by linux-4.19+, causing repeated
  1100. builds.
  1101. Add C-SKY support to our config.sub (gnuconfig)
  1102. Updated/fixed packages: dosfstools, botan, brotli, dropbear,
  1103. flare-engine, gst1-plugins-bad, libhtp, libnss, libopenssl,
  1104. linuxptp, matchbox-panel, mender, mutt, netsurf,
  1105. network-manager, opencv3, openjdk, openmpi, php,
  1106. python-cython, qt5multimedia, qtwayland, qt5webkit-examples,
  1107. supertux, suricata, tpm2-totp, v4l2loopback, wireshark,
  1108. wpewebkit
  1109. 2019.05-rc3, released May 25th, 2019
  1110. Fixes all over the tree.
  1111. check-bin-arch: Ignore /usr/lib/grub, similar to how /lib/grub
  1112. is ignored.
  1113. check-package: Warn about utf-8 characters in .mk files
  1114. Linux: Default to 5.1.x series
  1115. Updated/fixed packages: assimp, atop, chocolate-doom, cjson,
  1116. ddrescue, dhcp, ffmpeg, gerbera, glibmm, gpsd, gst-ffmpeg,
  1117. intel-microcode, jasper, keepalived, kismet, libcpprestsdk,
  1118. libcurl, libssh2, libupnp18, luarocks, mono-gtksharp3, opus,
  1119. postgresql, pcsc-lite, python, tslib, webkitgtk,
  1120. wpebackend-fdo, wpewebkit
  1121. 2019.05-rc2, released May 15th, 2019
  1122. Fixes all over the tree.
  1123. Updated/fixed packages: bind, bullet, ca-certificates,
  1124. collectd, cracklib, dhcp, gdb, libinput, libtorrent-rasterbar,
  1125. linknx, lynx, mono, netsurf, optee-os, postgresql, qt5enginio,
  1126. qt5multimedia, rpm, samba4, sqlite, strace, uclibc, woff2
  1127. Issues resolved (http://bugs.uclibc.org):
  1128. #11841: grub-efi.cfg not used when building EFI disk image
  1129. 2019.05-rc1, Released May 8th, 2019
  1130. Fixes all over the tree and new features.
  1131. Architecture: Andes 32-bit (nds32) support added.
  1132. Only build host-lzip / host-xz when really needed by packages,
  1133. not just when not available on the build host.
  1134. Toolchain: Glibc bumped to 2.29, musl bumped to 1.1.22,
  1135. binutils 2.32 added, 2.28/2.29 removed, default changed to
  1136. 2.31.1.
  1137. fs: Set FAKEROOTDONTTRYCHOWN environment variable to not
  1138. forward {f,l,}chown calls to libc when running under fakeroot
  1139. to fix issues when building in restricted environments
  1140. (E.G. user namespace with bubblewrap).
  1141. Linux: Also build default make target to ensure extra files
  1142. like the gdb scripts enabled by CONFIG_GDB_SCRIPTS are also
  1143. built. Notice: This may mean that extra host utilities like
  1144. uboot-mkimage are needed.
  1145. Infrastructure: show-info and <pkg>-show-info make targets
  1146. added to output package metadata in JSON format for external
  1147. use.
  1148. pkg-generic: Only tweak .la files needing it to ensure they
  1149. are not included in subsequent package file lists.
  1150. test-pkg: Generate a basic package config if none is
  1151. specified.
  1152. Gettext-tiny package added as an lightweight replacement for
  1153. GNU gettext for situations where NLS support is not needed.
  1154. New defconfigs: Andes AE3XX, Freescale imx8mpico / imx8qxpmek
  1155. / T2080 QDS RDB, Licheepi zero, Orangepi R1
  1156. Removed defconfigs: Olimx A20 Olinuxino Lime legacy
  1157. New packages: bats-core, bayer2rgb-neon, brickd, cog, dacapo,
  1158. enet, gettext-tiny, gli, gst1-plugins-bayer2rgb-neon,
  1159. imx-sc-firmware, intel-mediadriver, intel-mediasdk, libcamera,
  1160. libhtp, libp11, libwpe, lua-binaryheap, lua-gd, lua-lunitx,
  1161. mender-artifact, most, oniguruma, openjdk, openjdk-bin,
  1162. opensbi, optee-benchmark, optee-client, optee-examples,
  1163. optee-os, optee-test, paho-mqtt-cpp, python-aioblescan,
  1164. python-aioconsole, python-aiohttp-cors, python-aiomonitor,
  1165. python-backcall, python-jedi, python-parso, python-pyjwt,
  1166. python-terminaltables, suricata, tpm2-totp, uftp,
  1167. wpebackend-fdo, wpewebkit
  1168. Removed packages: libump, lunit, sunxi-mali
  1169. Issues resolved (http://bugs.uclibc.org):
  1170. #11716: Typo on website, saying latest release is 2018.2.11
  1171. #11756: package/syslinux: MBR's don't fit because of binutils..
  1172. #11761: Building custom kernel 5.1-rc3 or later breaks on objtool
  1173. #11816: Only selected coreutils binaries are installed
  1174. 2019.02.11, released April 9th, 2020
  1175. Important / security related fixes.
  1176. core: Fix compatibility with make 4.3+. Also fixup /lib
  1177. references in libtool .la files, similar to how it is done for
  1178. /usr/*.
  1179. toolchain: Fix kernel headers validation check for external
  1180. toolchains.
  1181. Updated/fixed packages: barebox-aux, bluez5_utils, busybox,
  1182. civetweb, collectd, ffmpeg, gcc, gnutls, gvfs, haproxy,
  1183. hiredis, kmscube, libical, libopenssl, libsndfile,
  1184. linux-tools, ntp, php, pure-ftpd, screen, sysdig, tor,
  1185. util-linux, vala, vlc, xserver_xorg-server
  1186. Issues resolved (http://bugs.uclibc.org):
  1187. #12746: "sysdig" package description points to http://sysdig.org, ..
  1188. 2019.02.10, released March 16th, 2020
  1189. Important / security related fixes.
  1190. Core: Ensure package-file-lists data is correct after
  1191. incremental builds as well.
  1192. Fix a race condition related to creating the output/staging
  1193. symlink on systems with coreutils < 8.27.
  1194. Br2-external: Fix compatibility with make 4.3+
  1195. Util-linux: Ensure that hwclock is built without GPLv3
  1196. code. Notice that builds with hwclock has contained
  1197. GPLv3-licensed code since util-linux 2.30 (Buildroot 2017.08+)
  1198. Updated/fixed packages: armadillo, at, binutils, blktrace,
  1199. bootstrap, busybox, cairo, cups, czmq, dnsmasq,
  1200. docker-containerd, dovecot, dovecot-pigeonhole, e2fsprogs,
  1201. eudev, exim, exiv2, fbgrab, grep, gst1-validate, guile,
  1202. imagemagick, jhead, kvm-unit-tests, lapack, libcgroup,
  1203. libftdi1, libjpeg, libsigrok, libsndfile, libssh2, libsvgtiny,
  1204. libvncserver, libvorbis, libxml2, libxslt, linux, lz4,
  1205. mariadb, mbedtls, meson, mfgtools, mongoose, ncurses, ntfs-3g,
  1206. opencv3, openjpeg, openswan, openvmtools, patch, php,
  1207. postgresql, pppd, proftpd, pure-ftpd, python-django,
  1208. python-pyqt5, python3, qemu, qt5base, qt5webengine, qwt,
  1209. rdesktop, ruby, runc, samba4, shellinabox, smartmontools,
  1210. sqlcipher, squid, swupdate, sysklogd, taglib, thrift,
  1211. ti-cgt-pru, uboot, util-linux, vorbis-tools, webkitgtk,
  1212. wireshark, xen, xserver_xorg-server, zeromq, zsh
  1213. Issues resolved (http://bugs.uclibc.org):
  1214. #11996: opencv3 SIGILL on Cortex-A5 with VFPv4-D16
  1215. #12331: meson issue
  1216. #12461: libglib2 build files with deep directory structure
  1217. #12606: fbgrab location has changed
  1218. 2019.02.9, released January 12th, 2020
  1219. Important / security related fixes.
  1220. pkg-python infrastructure: Ensure correct compiler and linker
  1221. flags are used for compiled code
  1222. utils/scanpypi: Remind users to update DEVELOPERS
  1223. Updated/fixed packages: busybox, cc-tool, cpio, cups, dante,
  1224. dillo, docker-cli, docker-containerd, docker-engine, easy-rsa,
  1225. ecryptfs-utils, efl, git, glibc, gnupg2, gst1-plugins-bad,
  1226. kf5-kcoreaddons, libarchive, libgit2, libkrb5, librsvg,
  1227. libssh, libtomcrypt, libuio, lirc-tools, lvm2,
  1228. matchbox-desktop, nodejs, ntp, opencv3, openpowerlink,
  1229. python-django, python-ecdsa, python-pyasn-modules,
  1230. python-pyqt5, python-subprocess32, python3, qpdf, runc, rygel,
  1231. samba4, sdl2, wavpack, xserver_xorg-server, zip
  1232. Issues resolved (http://bugs.uclibc.org):
  1233. #12121: PyQt5.QtSerialPort and other modules not being built
  1234. 2019.02.8, released December 7th, 2019
  1235. Important / security related fixes.
  1236. Infrastructure: Make HOST_<pkg>_DL_OPTS inherit from
  1237. <pkg>_DL_OPTS by default, just like it is done for a number of
  1238. other package variables
  1239. Add <pkg>_KEEP_PY_FILES to exclude specific python .py files
  1240. from the removal done by BR2_PACKAGE_PYTHON{,3}_PYC_ONLY for
  1241. the (rare) case where the .py files are needed at runtime
  1242. rather than .pyc.
  1243. Fix <pkg>-reconfigure handling for packages using the kconfig
  1244. infrastructure.
  1245. Toolchain: ensure external toolchain kernel headers version
  1246. check correctly stop the build on mismatch
  1247. Deconfigs: beaglebone: fix boot issue
  1248. Updated/fixed packages: am33x-cm3, asterisk, bind, chrony,
  1249. clamav, collectd, connman, faifa, gob2, haproxy,
  1250. intel-microcode, ipsec-tools, jasper, jpeg-turbo, kodi,
  1251. kvm-unit-tests, libftdi, libftdi1, libnss, libstrophe,
  1252. libsvgtiny, lvm2, lzma, mariadb, minicom, neardal, nodejs,
  1253. opencv3, openvmtools, oracle-mysql, perl-gdgraph,
  1254. perl-gdtextutil, php, postgresql, prosody, python-django,
  1255. rabbitmq-c, rauc, redis, rpcbind, socat, spice,
  1256. spice-protocol, tftpd, tiff, webkitgtk
  1257. New packages: libmspack
  1258. Issues resolved (http://bugs.uclibc.org):
  1259. #12166: Compiling nodejs for SAMA5D3 always crash with illegal inst..
  1260. #12171: Python-opencv needs config.py and config-3.7.py to run..
  1261. #12211: host-nodejs 10.15.3 package fail to build
  1262. #12316: tzdata fails to install with empty "default local time"
  1263. 2019.02.7, Released November 10th, 2019
  1264. Important / security related fixes.
  1265. support/testing: use a kernel with HW_RANDOM_VIRTIO to work
  1266. around issues with lack of entrophy
  1267. Toolchain: Also copy libssp.so for external toolchains if SSP
  1268. is enabled to handle toolchains providing SSP support in
  1269. libssp rather than in the C library
  1270. Download: Also use the package download method for extra
  1271. downloads from the same site, so it does not get confused by
  1272. URLs containing '+'
  1273. Fakeroot now works correctly under Microsoft Windows 10
  1274. Services for Linux, which does not provide SYSV IPC support
  1275. utils/test-pkg: ensure to exit with an error upon failure
  1276. Updated/fixed packages: asterisk, azmq, cups-filters,
  1277. domoticz, duma, elf2flt, eudev, exfat, exfat-utils, fakeroot,
  1278. file, freerdp, gd, ghostscript, go, gvfs, intel-microcode,
  1279. kvm-unit-tests, libarchive, libnspr, libnss, libopenssl,
  1280. libpcap, libpciaccess, librsvg, libseccomp, libsigrok,
  1281. libtorrent, libunwind, linux-tools, lua-sdl2, lxc, minizip,
  1282. mjpegtools, mongoose, php, python, python-pysnmp-apps,
  1283. python3, qemu, qt5base, ruby, safeclib, samba4, sdl_mixer,
  1284. sox, sudo, systemd, tcpdump, unscd, util-lkinux, vtun, xvisor,
  1285. yaffs2utils
  1286. Issues resolved (http://bugs.uclibc.org):
  1287. #11366: [2018.08] SysV IPC not available for fakeroot on WSL
  1288. #12261: sudo versions prior to 1.8.28 are affected
  1289. 2019.02.6, Released October 3rd, 2019
  1290. Important / security related fixes.
  1291. Defconfigs: AArch64-efi: Fix grub configuration, Beaglebone:
  1292. Use default console settings
  1293. Dependencies: Ensure host has JSON::PP perl module installed
  1294. if webkitgtk/wpewebkit packages are enabled as it is needed
  1295. during their build process.
  1296. Toolchain: Generate check-headers program under BUILD_DIR
  1297. rather than /tmp to fix issues with distributions mounting
  1298. /tmp noexec.
  1299. Updated/fixed packages: asterisk, augeas, bind, bwm-ng, cups,
  1300. cups-filters, docker-cli, docker-engine, docker-proxy,
  1301. dropbear, e2fsprogs, eudev, exim, expat, gcc, go, ifplugd,
  1302. haveged, iptables, joe, kf5-extra-cmake-modules,
  1303. kf5-modemmanager-qt, kf5-networkmanager-qt, libcurl,
  1304. libgcrypt, libgpg-error, libnftl, libnspr, libnss, libopenssl,
  1305. luksmeta, mariadb, mbedtls, mongodb, mosquitto, ncurses,
  1306. nfs-utils, nghttp2, nodejs, openvmtools, php, protobuf, putty,
  1307. qemu, qt5base, samba4, swupdate, systemd-bootchart, thttpd,
  1308. uclibc, unzip, util-linux, wireshark
  1309. Issues resolved (http://bugs.uclibc.org):
  1310. #10806: Allow nfs-utils to use ipv6
  1311. #11781: mariadb build error
  1312. #12031: Build of cups-filters fails while linking, apparently due..
  1313. #12141: eudev package is missing "render" and "kvm" groups
  1314. #12181: dropbear: norootlogin (-w) no longer works when PAM is enabled
  1315. #12241: Permission denied while running "make"
  1316. 2019.02.5, Released September 2nd, 2019
  1317. Important / security related fixes.
  1318. Filesystems: Pass extra pax options to tar for binary
  1319. reproducibility.
  1320. Updated/fixed packages: apache, arm-trusted-firmware,
  1321. asterisk, atk, autofs, batctl, batman-adv, berkeleydb, brotli,
  1322. busybox, bzip2, clamav, cloop, cmake, collectd, connman-gtk,
  1323. cryptopp, dahdi-linux, dahdi-tools, daq, dehydrated, dovecot,
  1324. dovecot-pigeonhole,, elfutils, evtest, exim, expect, giflib,
  1325. git, glib-networking, glibc, gnupg2, gnutls, go,
  1326. gst1-rtsp-server, gtkperf, gupnp-tools, gvfs, imagemagick,
  1327. imx-uuc, intel-microcode, json-glib, lftp, libbsd, libcurl,
  1328. libgit2, libgtk3, libmodplug, libnss, libpri, libshout,
  1329. libss7, libssh2, libvips, libxcb, linux-headers, mdadm,
  1330. mesa3d, metacity, mpg123, mosquitto, musl, nginx, openblas,
  1331. opencv3, openldap, openvmtools, pcmanfm, php, pigpio,
  1332. postgresql, prboom, proftpd, proj, python, python-django,
  1333. python-idna, python-numpy, python-urllib3, python3, qemu, qt5,
  1334. qt5base, qt5enginio, quagga, rygel, squid, subversion,
  1335. tcpreplay, unzip, vlc, vte, webkitgtk, weston, wireless-regdb,
  1336. xen, xfont_font-util, xlib_libICE, xlib_libXfont,
  1337. xlib_libXfont2, yad, zeromq
  1338. Issues resolved (http://bugs.uclibc.org):
  1339. #11741: pigpio does not build host-pigpio
  1340. #11876: automount using host mount/umount
  1341. #11881: Build breaks with lftp package enabled and libexpat1-dev inst..
  1342. #11921: dahdi fails to build
  1343. #11961: libpri build failure
  1344. #12096: tcpreplay: build fails if libdumbnet-dev is installed in the..
  1345. #12106: daq: build fails if libdumbnet-dev is installed in the host
  1346. #12126: vc4 has neon as hard dependency
  1347. 2019.02.4, Released July 10th, 2019
  1348. Important / security related fixes.
  1349. arch: x86: Fix typo breaking 'core-avx2' variant, add Westmere
  1350. variant.
  1351. linux: Workaround -Werror related build failure on powerpc,
  1352. by forcing CONFIG_PPC_DISABLE_WERROR on.
  1353. support/testing: Emulate a machine with 256MB RAM to fix
  1354. issues with certain tests running out of memory.
  1355. test-pkg: Correct long option handling and clean output dir
  1356. after a successful build to save disk space.
  1357. Ensure custom <pkg>_OVERRIDE_SRCDIR_RSYNC_EXCLUSIONS are
  1358. passed before the standard exclusions so they are not ignored
  1359. by rsync when using override-srcdir.
  1360. Defconfigs: QEMU: use 'rootwait' kernel option to ensure root
  1361. partition is available before mounting.
  1362. Updated/fixed packages: barebox, bzip2, davfs2, dbus, dialog,
  1363. docker-cli, docker-engine, expat, faad2, ffmpeg, freeswitch,
  1364. gerbera, haveged, irssi, libcdadio, libgit2, libglib2,
  1365. libsecret, libvncserver, lmbench, logrotate, mariadb, meson,
  1366. mongoose, monit, mpd, openblas, php, postgresql, psplash,
  1367. python, python-django, python3, qt5base, samba4, taglib,
  1368. tvheadend, vlc, webkitgtk, xserver_xorg-server, znc
  1369. 2019.02.3, Released June 7th, 2019
  1370. Important / security related fixes.
  1371. Infra: pkg-config: Use a dedicated timestamp file rather than
  1372. .config as that gets touched by linux-4.19+, causing repeated
  1373. builds.
  1374. check-bin-arch: Also ignore /usr/lib/grub to support merged
  1375. /usr setups, similar to how /lib/grub is ignored.
  1376. gnuconfig/config.sub: Add C-SKY architecture support.
  1377. Updated/fixed packages: assimp, atftp, atop, botan, busybox,
  1378. ca-certificates, chocolate-doom, cjson, coreutils, cracklib,
  1379. ddrescue, dhcp, docker-cli, docker-containerd, docker-engine,
  1380. dosfstools, dovecot, dovecot-pigeonhole, dropbear, exim,
  1381. ffmpeg, flare-engine, gcc, gdb, gerbera, glibmm, go, gpsd,
  1382. gst-ffmpeg, gst1-plugins-bad, gst1-plugins-base, imagemagick,
  1383. intel-microcode, jasper, kf5-kcoreaddons, kismet, libcurl,
  1384. libglib2, libnss, libopenssl, libsigrok, libssh2, libupnp18,
  1385. linuxptp, luajit, lynx, matchbox-panel, mender,
  1386. netcat-openbsd, netsurf, nfs-utils, opus, orc, owfs,
  1387. pcsc-lite, php, popt, postgresql, python, python-cython,
  1388. python-django, python-ply, qt5enginio, rpm, runc, samba4,
  1389. sqlite, subversion, supertux, systemd, tslib, uclibc,
  1390. v4l2loopback, webkitgtk, woff2
  1391. Issues resolved (http://bugs.uclibc.org):
  1392. #11816: Only selected coreutils binaries are installed
  1393. #11841: grub-efi.cfg not used when building EFI disk image
  1394. #11911: systemd v240 memory leak in systemd-journald
  1395. 2019.02.2, Released April 29th, 2019
  1396. Important / security related fixes.
  1397. Only build host-lzip / host-xz when really needed by packages,
  1398. not just when not available on the build host.
  1399. fs: Set FAKEROOTDONTTRYCHOWN environment variable to not
  1400. forward {f,l,}chown calls to libc when running under fakeroot
  1401. to fix issues when building in restricted environments
  1402. (E.G. user namespace with bubblewrap).
  1403. Linux: Also build default make target to ensure extra files
  1404. like the gdb scripts enabled by CONFIG_GDB_SCRIPTS are also
  1405. built. Notice: This may mean that extra host utilities like
  1406. uboot-mkimage are needed.
  1407. Defconfigs: ASUS tinker and Amarula vyasa rk3822: Support
  1408. larger kernel images, Atmel SAM5D27, SAM5D2,3,4 xplained:
  1409. Increase rootfs size to fit utilities, Raspberry Pi 64bit:
  1410. Include overlays in sdcard image
  1411. Updated/fixed packages: android-tools, apache, bind, binutils,
  1412. busybox, civetweb, cjson, copas, davfs2, docker-cli,
  1413. docker-containerd, docker-engine, dovecot, dovecot-pigeonhole,
  1414. freerdp, gerbera, ghostscript, git, gnutls, go, gst-omx,
  1415. gst1-plugins-base, gst1-plugins-ugly, haproxy, hostapd,
  1416. ipsec-tools, libfreefare, libfuse, libkrb5, libpng, libxml2,
  1417. libxslt, linknx, linux, linux-firmware, linux-tools, live555,
  1418. lldp, lrzsz, lynx, madplay, make, minicom, mongodb, msmtp,
  1419. musl, mutt, neon, netsnmp, numactl, opus, perl, php,
  1420. postgresql, pure-ftpd, python-urllib3, python3, qt5base,
  1421. rapidxml, rpm, rsyslog, ruby, runc, samba4, sane-backends,
  1422. softether, stunnel, sysklogd, syslinux, syslog-ng,
  1423. systemd-bootchart, thttpd, thrift, tiff, tor, tpm2-tools,
  1424. tpm2-tss, webkitgtk, yaffs2utils, wget, wpa_supplicant, wsapi,
  1425. xapp_xfd, xapp_xload, xlib_libXpm, xserver_xorg-server, xz,
  1426. znc
  1427. Issues resolved (http://bugs.uclibc.org):
  1428. #11756: package/syslinux: MBR's don't fit because of binutils..
  1429. #11761: Building custom kernel 5.1-rc3 or later breaks on objtool
  1430. 2019.02.1, Released March 29th, 2019
  1431. Important / security related fixes.
  1432. pkg-generic: Only tweak .la files needing it to ensure they
  1433. are not included in subsequent package file lists.
  1434. test-pkg: Generate a basic package config if none is
  1435. specified.
  1436. Updated/fixed packages: asterisk, avahi, bash, beecrypt,
  1437. binutils, busybox, clamav, cups, efl, eigen, fetchmail, file,
  1438. flashrom, fltk, gerbera, git, glibc, gnuradio, go,
  1439. gst-plugins-bad, intel-gmmlib, jq, kexec, kf5-modemmanager-qt,
  1440. leveldb, libcurl, libdrm, libftdi1, libglib2, libiio, libpcap,
  1441. libseccomp, libssh2, log4cplus, lvm2, mariadb, mender,
  1442. mongodb, mosquitto, musl, nodejs, ntp, openjpeg, owfs, php,
  1443. pure-ftpd, putty, python-aiojobs, qt5webkit, rdesktop, samba4,
  1444. sunxi-tools, supertux, swupdate, tpm2-abrmd, tpm2-tss,
  1445. wavemon, wireshark, vsftpd, xapp_xdm, xen,
  1446. xdriver_xf86-video-fbdev, xlib_libXdmcp
  1447. Issues resolved (http://bugs.uclibc.org):
  1448. #11716: Typo on website, saying latest release is 2018.2.11
  1449. 2019.02, released March 4th, 2019
  1450. Minor fixes.
  1451. Libressl support added for Qt 5.6 as a replacement for
  1452. openssl, as 5.6 is not compatible with openssl 1.1.x.
  1453. Updated/fixed packages: cutelyst, devmem2, gqrx,
  1454. gst-plugins-bad, libraw, libsoxr, qt5base, runc, systemd, tor
  1455. 2019.02-rc3, released March 1st, 2019
  1456. Fixes all over the tree.
  1457. Openssl support dropped from Qt 5.6, as it isn't compatible
  1458. with openssl 1.1.x.
  1459. Toolchain: GCC 8.x updated to 8.3.0, fixing a number of
  1460. issues.
  1461. Dependencies: Require CMake 3.8 or newer to fix compilation
  1462. issue with certain packages. If not available, host-cmake will
  1463. instead be built.
  1464. Printvars: Fix performance regression since 2018.02
  1465. Scanypi: Correctly handle underscores in python package names.
  1466. Updated/fixed packages: botan, clamav, cryptopp, i2pd,
  1467. ibrcommon, iproute2, libcpprestsdk, libssh, lua-curl,
  1468. luaexpat, qt5base, runc, stress-ng, syslinux, systemd,
  1469. upmpdcli, zbar
  1470. Issues resolved (http://bugs.uclibc.org):
  1471. #9966: util-linux-2.30/.stamp_built' failed
  1472. #11696: possible typo in board/pc/post-build.sh
  1473. 2019.02-rc2, released February 23th, 2019
  1474. Fixes all over the tree.
  1475. Removed zynq_zybo defconfig, as it hasn't seen any update
  1476. since it was added in 2016, and uses a U-Boot version not
  1477. compatible with openssl-1.1.x.
  1478. Linux: Ignore user supplied downloadable hashes, as no hash
  1479. checksums are available for those.
  1480. Updated/fixed packages: bind, cryptopp, docker-containerd,
  1481. dtc, efivar, gdb, imagemagick, ipmiutil, libcpprestsdk,
  1482. libcurl, libgpiod, libid3tag, libv4l, log4cplus, luvi,
  1483. madplay, mender, mosquitto, poco, postgresql, proftpd,
  1484. pulseaudio, python-django, qemu, qt5base, qwt, rabbitmq-c,
  1485. reaver, safeclip, stress-ng, swupdate, syslog-ng, systemd,
  1486. tor, unzip, xenomai
  1487. Issues resolved (http://bugs.uclibc.org):
  1488. #11501: compile sdl2 with enable wayland
  1489. #11681: .. unable to initialize decompress status for section..
  1490. 2019.02-rc1, released February 13th, 2019
  1491. Fixes all over the tree and new features.
  1492. Dependencies:
  1493. Require Python >= 2.7 as it is needed for E.G. building
  1494. libglib2.
  1495. Ensure GNU gzip is used for reproducible tarballs (instead of
  1496. pigz)
  1497. Infrastucture:
  1498. Ensure the PLATFORM and OS environment variables are not set,
  1499. as they cause build issues for some packages.
  1500. The package list infrastructure now correctly handles packages
  1501. installing files with old mtime.
  1502. Add a config option to force all optional host utilities to be
  1503. built, even if suitable versions are available on the build
  1504. machine.
  1505. graph-build-time: Also show time spent downloading
  1506. Download: fixes for SSH/SCP support
  1507. Ensure user provided permissions override permissions from
  1508. packages.
  1509. SDK: Fix handling of relative symlinks (targets starting with
  1510. '.' or '..')
  1511. BR2_SYSTEM_DEFAULT_PATH setting to customize the default path
  1512. for processes.
  1513. The custom skeleton logic will now populate the needed /bin,
  1514. /lib, /sbin directories/symlinks if not present. Merged /usr
  1515. can now be used with a custom skeleton.
  1516. Rootfs overlays can now override symbolic links from
  1517. packages. This was disabled to ensure the correct symbolic
  1518. links are present when merged /usr is used. Instead validate
  1519. that the rootfs overlays do not include invalid /bin, /sbin
  1520. and /lib entries.
  1521. The waf infrastructure now support the <pkg>_SUBDIR variable,
  1522. similar to the other package types.
  1523. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  1524. Various improvements to the meson infrastructure.
  1525. Luarocks: A Buildroot addon has been added to automate
  1526. creating a Buildroot package from luarocks, similar to
  1527. scancpan and scanpypi.
  1528. scanpypi: protect against zip-slip vulnerability in zip/tar
  1529. handling
  1530. check-package: fix Python 3 support
  1531. get-developers: Fix behaviour when called from elsewhere than
  1532. the toplevel directory.
  1533. pkg-stats: Show latest upstream version of each package, based
  1534. on data from release-monitoring.org
  1535. kconfig: Fix for make linux-menuconfig / uboot-menuconfig from
  1536. a clean tree when ccache is enabled.
  1537. Default to sha256 password encoding, drop md5 support.
  1538. Architecture:
  1539. Support for RISC-V 32bit architecture, ARM A55, 75 and Saphira
  1540. variants, MIPS support for mips32r3, mips64r3 and Marvell
  1541. Octeon II/III variants.
  1542. Toolchain:
  1543. ARC toolchain 2018.09, ARM 8.2-2018.11, Codescape IMG/MTI MIPS
  1544. 2018.09-02, MUSL 1.1.21, GCC 6.5.0 / 7.4.0, GDB 8.2.1
  1545. Packages:
  1546. openssl: Bump to 1.1.1x series, bringing TLSv1.3 support and
  1547. long term support.
  1548. fftw: Split into fftw-{single,double,long-double,quad}
  1549. packages for the different data precision options.
  1550. libcurl: Now has explicit TLS backend selection options.
  1551. linux: Support building device tree blobs with the -@ option
  1552. for device tree overlays.
  1553. weston: The weston-imx i.MX variant is now used when
  1554. imx-gpu-viv is enabled
  1555. pkgconf: Update to 1.5.3, which brings support for
  1556. --define-prefix (used by GStreamer)
  1557. Add host-python3-setuptools package to handle host python
  1558. packages needing python3 with setuptools support.
  1559. New defconfigs: Aarch64 EFI, Orangepi one plus, Orangepi lite
  1560. 2, QEMU RISC-V 32bit virt, Rock64
  1561. New packages: brcm-patchram-plus, clinfo, cunit, docker-cli,
  1562. erlang-p1-eimp, exempi, fail2ban, fftw-double,
  1563. fftw-double-long, fftw-quad, fftw-single, gerbera, grpc,
  1564. gst1-shark, intel-gmmlib, iwd, kf5-kcoreaddons, libeastl,
  1565. libpackagekite, libtorrent-rasterbar, lua-std-debug,
  1566. lua-std-normalize, mini-snmpd, netsurf, pamtester, pcm-tools,
  1567. python-aiodns, python-aiohttp, python-aiohttp-jinja2,
  1568. python-aiohttp-remotes, python-aiohttp-security,
  1569. python-aiohttp-session, python-aiohttpd-sse, python-aiojobs,
  1570. python-cchardet, python-pycares, python-sentry-sdk,
  1571. python-wtforms, python3-setuptools, rcw, rtc-tools, shim,
  1572. utp_com, vmtouch, websocketpp
  1573. Removed packages: fftw, lua 5.2.x, luacrypto, perl-time-hires,
  1574. python-pyqt, qt, qtuio, tn5250
  1575. Issues resolved (http://bugs.uclibc.org):
  1576. #10851: Patch to handle numpad Enter key properly
  1577. #11066: x11r7 X11 S40xorg leads to a black screen on QEMU x86..
  1578. #11126: Bash Shell Programming using Buildroot
  1579. #11426: pps-tools bash dependency
  1580. #11476: stdio2.h error invalid use of __builtin_va_arg_pack
  1581. #11536: dt-utils building fails with glibc 2.28
  1582. #11546: open-vm-tools with glibc 2.28
  1583. #11566: Fix init script
  1584. #11576: Unable to start apache with event MPM on raspberry pi 3
  1585. #11591: [pkgconf 1.5.3] xserver OpenGL support is missing
  1586. #11606: libjpeg has no Config.in
  1587. #11616: 2018.02.09 fails to build libzlib with full RELRO..
  1588. #11656: Custom device tree and u-boot boot.scr not integrated..
  1589. #11666: Touchscreen with (Py)Qt5 should use tslib instead of evdev
  1590. 2018.11.4, Released March 28th, 2019
  1591. Important / security related fixes.
  1592. Updated/fixed packages: avahi, beecrypt, binutils, botan,
  1593. busybox, clamav, cups, devmem2, efl, fetchmail, file, fltk,
  1594. gcc, gdb, git, go, gst-plugins-bad, iproute2, jq,
  1595. kf5-modemmanager-qt, leveldb, libopenssl, libraw, libseccomp,
  1596. libsoxr, libssh2, mariadb, mosquitto, nodejs, ntp, openjpeg,
  1597. perl, php, putty, qt5webkit, rdesktop, runc, samba4, swupdate,
  1598. systemd, tor, vsftpd, wireshark, xapp_xdm, xen, xlib_libXdmcp
  1599. 2018.11.3, Released February 23th, 2019
  1600. Important / security related fixes.
  1601. Ensure the PLATFORM and OS environment variables are not set,
  1602. as they cause build issues for some packages.
  1603. The package list infrastructure now correctly handles packages
  1604. installing files with old mtime.
  1605. Linux: Skip hash checks for user supplied downloadable
  1606. patches, as no hash checksums are available for those.
  1607. scanpypi: protect against zip-slip vulnerability in zip/tar
  1608. handling
  1609. Download: fixes for SSH/SCP support
  1610. SDK: Fix handling of relative symlinks (targets starting with
  1611. '.' or '..')
  1612. Updated/fixed packages: bind, dhcpcd, docker-compose,
  1613. docker-containerd, docker-engine, dovecot, dovecot-pigeonhole,
  1614. dtc, efivar, ghostscript, gnuradio, imagemagick, jpeg-turbo,
  1615. libarchive, libb64, libcurl, libgeotiff, libgpiod, libid3tag,
  1616. libupnp18, log4cplus, madplay, meson, mosquitto, openssh, php,
  1617. poco, postgresql, proftpd, pulseaudio, python, python-django,
  1618. python3, qt5base, reaver, runc, sg3_utils, sqlcipher,
  1619. swupdate, systemd, unzip, webkitgtk, xenomai
  1620. 2018.11.2, Released January 30th, 2019
  1621. Important / security related fixes.
  1622. Defconfigs: Fixes for imx6slevk, imx7dsabresd, imx8mqevk, Lego
  1623. EV3, QEMU AArch64-virt
  1624. Download: Fix scp download handling
  1625. check-package: fix Python 3 support
  1626. get-developers: Fix behaviour when called from elsewhere than
  1627. the toplevel directory.
  1628. kconfig: Fix for make linux-menuconfig / uboot-menuconfig from
  1629. a clean tree when ccache is enabled.
  1630. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  1631. Updated/fixed packages: acpica, apache, apr, avrdude, cargo,
  1632. cc-tool, dash, dhcpdump, dmalloc, docker-containerd, efivar,
  1633. fwts, glibc, gnuchess, gnupg2, go, leveldb, libarchive,
  1634. libassuan, libftdi1, libgpg-error, libhttpparser, libkcapi,
  1635. libmad, libsndfile, libsquish, liburiparser, libwebsock,
  1636. libxml2, lighttpd, llvm, lm-sensors, lua-msgpack-native, lxc,
  1637. mariadb, mbedtls, meson, mosquitto, netatalk, nodejs, odhcp6c,
  1638. openresolv, openssh, pango, patchelf, php, python-django,
  1639. python-numpy, python-pyyaml, rauc, rp-pppoe, s6-networking,
  1640. samba4, sdl_sound, shairport-sync, sqlite, subversion,
  1641. sunxi-cedarx, swupdate, systemd, tcpreplay, tekui, tmp2-abrmd,
  1642. tpm2-tools, tpm2-tss, udisks, unixodbc, usb_modeswitch,
  1643. webkitgtk, wireshark, wolfssl, xapp_rgb, xenomai, xerces
  1644. Issues resolved (http://bugs.uclibc.org):
  1645. #11576: Unable to start apache with event MPM on raspberry pi 3
  1646. 2018.11.1, Released December 20th, 2018
  1647. Important / security related fixes.
  1648. defconfigs: Fixes for bananapi m2 ultra, ci20
  1649. Download wrapper: Fix for urlencode handling
  1650. Updated/fixed packages: asterisk, docker-compose,
  1651. docker-engine, dt-utils, gnutls, go, grub, libbsd, libcurl,
  1652. libpgpme, libiscsi, liblo, libmpd, libopenssl, liboping,
  1653. libpam-tacplus, libpjsip, linux-firmware, liquid-dsp,
  1654. lua-cqueue, luvi, lxc, lynx, nginx, nodejs, openzwave, php,
  1655. pps-tools, proftpd, prosody, sdl2_net, squashfs, swupdate,
  1656. uclibc, vtu, webkitgtk, wine, xen
  1657. New packages: docker-cli
  1658. Issues resolved (http://bugs.uclibc.org):
  1659. #11426: pps-tools bash dependency
  1660. #11536: dt-utils building fails with glibc 2.28
  1661. 2018.11, Released December 1st, 2018
  1662. Minor fixes.
  1663. Updated/fixed packages: c-ares, quagga, squid
  1664. 2018.11-rc3, released November 30th, 2018
  1665. Fixes all over the tree.
  1666. Defconfigs: Fixes for Armadeus APF27, imx6sabre, Olimex A20
  1667. olinuxino lime legacy, Orangepi zero plus 2, PC, Riotboard.
  1668. graph-depends: Fix for package names starting with a non-alpha
  1669. character.
  1670. Updated/fixed packages: alsa-utils, botan, dante, domoticz,
  1671. dtc, freetype, gauche, gcc, gdb, ghostscript, glibc,
  1672. imx-usb-loader, libbsd, libid3tag, libkrb5, libmicrohttpd,
  1673. libopenssl, libsoxr, linux, motion, msgpack, mtd,
  1674. perl-net-ssleay, php, popt, python-numpy, qt5declarative,
  1675. samba4, shadowsocks-libev, stress-ng, systemd, usb_modeswitch,
  1676. webkitgtk, valgrind, weston, xfsprogs
  1677. 2018.11-rc2, released November 21th, 2018
  1678. Fixes all over the tree.
  1679. fs: Drop intermediate tarball from the filesystem handling to
  1680. fix an issue with xattrs handling related to fakeroot. Ensure
  1681. tarball target includes xattrs.
  1682. download: Fix confusion in git submodule handling if dl/ is a
  1683. symlink.
  1684. genrandconfig: Fix missing newline in BR2_WGET handling,
  1685. causing the following line to be ignored. This would affect
  1686. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  1687. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  1688. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  1689. show-build-order: Also include the dependencies of
  1690. rootfs-common.
  1691. Fix a number of build issues in packages for the recently
  1692. merged RISC-V architecture support.
  1693. Updated/fixed packages: dt-utils, easydbus, elfutils,
  1694. flare-engine, flatcc, glibc, gstreamer, gstreamer1, imx-uuc,
  1695. libassuan, libcorrect, libiscsi, libkrb5, libmicrohttpd,
  1696. libnftnl, libnspr, libnss, libsemanage, libsigsegv, libv4l,
  1697. ltp-testsuite, luv, luvi, make, ncmpc, netplug, openocd,
  1698. prosody, qemu, rpm, sconeserver, shadowsocks-libev,
  1699. supertuxcart, syslinux, systemd, trace-cmd, uclibc,
  1700. uclibc-ng-test, vtun, webkitgtk, weston, wireshark, xen,
  1701. xlib_libfontenc
  1702. Issues resolved (http://bugs.uclibc.org):
  1703. #11086: download/git submodule breaks on symlinked dl folder
  1704. #11216: Capabilities not applied to filesystem
  1705. 2018.11-rc1, released November 9th, 2018
  1706. Fixes all over the tree and new features.
  1707. Architecture: RISC-V support (64bit) added.
  1708. Toolchain: Glibc bumped to 2.28. Fortran support for external
  1709. toolchains. ARM (Linaro) toolchains updated to 8.2-2018.08.
  1710. Hardening flags (RELRO) are now handled by the toolchain
  1711. wrapper instead of explicitly through CFLAGS/LDFLAGS, fixing a
  1712. number of issues.
  1713. Filesystems: Support for creating btrfs and f2fs filesystems
  1714. added.
  1715. Add a number of patches to fix build errors for host utilities
  1716. on modern distributions using glibc-2.28.
  1717. mkusers: Ensure existing group members are preserved when a
  1718. group is reprocessed.
  1719. printvars: Fix issue with exceeding shell command line length
  1720. limits for certain setups.
  1721. Workaround added for incompatibility issues between host-dtc
  1722. and older U-Boot and Linux kernel versions.
  1723. Detect and reject build paths containing '@', as this confuses
  1724. a number of packages, including GCC.
  1725. utils/diffconfig: Make it work for (non-Buildroot) config
  1726. files not using the BR2_ prefix.
  1727. New defconfigs: Amarula a64-relic, Bananapi m2 ultra, Embest
  1728. riotboard, Hardkernel Odroid XU-4, QEMU riscv64-virt.
  1729. olimex_a20_olinuxion_lime_mali is renamed to _legacy.
  1730. OpenCL infrastructure support added, similar to how OpenGL is
  1731. handled.
  1732. Linux-headers: Support for kernel headers from a custom
  1733. tarball / git repo added.
  1734. New packages: bird, bluez5_utils-headers, btrfs-progs,
  1735. checksec, davici, duktape, ell, haproxy, libclc, libcorrect,
  1736. libopencl, libopenresolv, nss-myhostname,
  1737. perl-apache-logformat-compiler, perl-appconfig,
  1738. perl-astro-suntime, perl-class-inspector, perl-class-load,
  1739. perl-class-method-modifiers, perl-class-std,
  1740. perl-class-std-fast, perl-cookie-baker, perl-data-dump,
  1741. perl-data-optlist, perl-data-uuid, perl-data-manip,
  1742. perl-dbd-mysql, perl-dbi, perl-devel-globaldestruction,
  1743. perl-devel-stacktrace, perl-devel-stacktrace-ashtml,
  1744. perl-device-serialport, perl-dist-checkconflicts,
  1745. perl-exporter-tiny, perl-file-sharedir, perl-file-slurp,
  1746. perl-filesys-notify-simple, perl-hash-multivalue,
  1747. perl-http-entity-parser, perl-http-headers-fast,
  1748. perl-http-multipartparser, perl-io-interface,
  1749. perl-io-socket-multicast, perl-json-maybexs, perl-mime-tools,
  1750. perl-module-implementation, perl-module-runtime, perl-moo,
  1751. perl-number-bytes-human, perl-package-stash, perl-params-util,
  1752. perl-plack, perl-posix-strftime-compiler, perl-role-tiny,
  1753. perl-streams-buffered, perl-sub-exporter-progressive,
  1754. perl-sub-install, perl-sub-quote, perl-sys-cpu,
  1755. perl-sys-meminfo, perl-sys-mmap, perl-time-parsedate,
  1756. perl-type-tiny, perl-www-form-urlencoded, perl-x10, pigpio,
  1757. python-async-timeout, python-falcon, python-fire,
  1758. python-mimeparse, python-multidict, python-passlib,
  1759. python-pigpio, python-pip, python-ply, python-py,
  1760. python-pyasn1, python-pyasn1-modules, python-pycryptodomex,
  1761. python-pyhamcrest, python-pysmi, python-scapy, python-semver,
  1762. python-serial-asyncio, python-typing, python-uvloop,
  1763. pythonwrapt, python-yarl, python-zeroconf, riscv-pk, sedutil,
  1764. spandsp, tini, waffle, xapian
  1765. Removed packages: bootutils, dsp-tools, expedite, gst-dsp,
  1766. xloader
  1767. Issues resolved (http://bugs.uclibc.org):
  1768. #11116: Buildroot should set PYTHON_EGG_CACHE instead of writing ..
  1769. #11156: In python3 module 'socket' has no attribute 'AF_BLUETOOTH'
  1770. #11166: Erlang bad argument on valid uint64 when crosscompiled on..
  1771. #11206: zlib: fails to build with Linaro toolchain, BR2_RELRO_FULL..
  1772. #11241: ACPID shouldn't depend on BR2_x86_64 || BR2_i386
  1773. #11251: Util scanpypi failes when package change - to _ in tar file
  1774. #11266: qt5base-5.11.1 does not compile with musl, complains about..
  1775. #11286: python-rpi-gpio only should depend on BR2_arm || BR2_aarch64
  1776. #11321: Latest master fails to build readline with RELRO FULL
  1777. #11326: sysvinit fails to build in latest GIT master
  1778. #11331: Internal application no longer builds with latest GIT master
  1779. #11336: nfs-utils fails to build in latest GIT master
  1780. #11351: build root-2018-08, linaro aarch64 compile error
  1781. #11376: mdmon binary missing
  1782. #11391: Valgind availability on ARM
  1783. #11396: uboot environment image checksum invalid if target is big endian
  1784. #11421: GCC error message for ARM Cortex-A9/ARM.V7
  1785. #11451: Can't find libmpfr.so.4 when using external toolchain on ubuntu..
  1786. #11481: Docs: Is external.desc required?
  1787. 2018.08.4, Released December 20th, 2018
  1788. Important / security related fixes.
  1789. Defconfigs: Fixes for ci20, orangepi zero plus 2
  1790. Download wrapper: Fix for urlencode handling
  1791. Updated/fixed packages: c-ares, dante, docker-compose,
  1792. domoticz, freetype, ghostscript, gnutls, libcurl, libgpgme,
  1793. libid3tag, libiscsi, libmpd, libopenssl, liboping, libpjsip,
  1794. linux-firmware, liquid-dsp, luvi, lynx, msgpack, nginx,
  1795. nodejs, php, popt, pps-tools, prosody, python-numpy,
  1796. python-requests, samba4, sdl2_net, squashfs, swupdate,
  1797. systemd, uclibc, vte, webkitgtk, wine, xfsprogs
  1798. Issues resolved (http://bugs.uclibc.org):
  1799. #11426: pps-tools bash dependency
  1800. 2018.08.3, Released November 26th, 2018
  1801. Important / security related fixes.
  1802. fs: Drop intermediate tarball from the filesystem handling to
  1803. fix an issue with xattrs handling related to fakeroot. Ensure
  1804. tarball target includes xattrs.
  1805. download: Fix confusion in git submodule handling if dl/ is a
  1806. symlink.
  1807. toolchain: Only allow enabling stack protection on
  1808. architectures with control flow integrity (CFI) support. Only
  1809. allow FORTIFY_SOURCE support on gcc >= 6.
  1810. genrandconfig: Fix missing newline in BR2_WGET handling,
  1811. causing the following line to be ignored. This would affect
  1812. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  1813. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  1814. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  1815. show-build-order: Also include the dependencies of
  1816. rootfs-common.
  1817. Defconfigs: Fixes for Armadeus APF27, imx6sabre, Olimex A20
  1818. olinuxino lime legacy, Orangepi zero plus 2.
  1819. graph-depends: Fix for package names starting with a non-alpha
  1820. character.
  1821. Updated/fixed packages: attr, audit, bind, brotli, busybox,
  1822. dtc, easydbus, elfutils, flare-engine, flatcc, gauche, gcc,
  1823. giflib, gpsd, lcdproc, libcurl, libiscsi, libkcapi, libnfs,
  1824. libnspr, libnss, libsemanage, liburiparser, lighttpd,
  1825. lua-curl, mariadb, mmc, mosquitto, mysql, ncmpc, neardal,
  1826. netplug, network-manager, nfs-utils, nginx, openocd, openswan,
  1827. p11-kit, postgresql, prosody, qemu, qt, rpm, ruby, samba4,
  1828. squid, supertuxkart, systemd, tar, trace-cmd, traceroute,
  1829. twolame, uclibc, usb_modeswitch, vtun, webkitgtk, weston,
  1830. xdriver_xf86-video-geode, xlib_libfontenc, xserver_xorg-server
  1831. Issues resolved (http://bugs.uclibc.org):
  1832. #11086: download/git submodule breaks on symlinked dl folder
  1833. #11481: Docs: Is external.desc required?
  1834. 2018.08.2, Released October 25th, 2018
  1835. Important / security related fixes.
  1836. Workaround added for incompatibility issues between host-dtc
  1837. and older U-Boot and Linux kernel versions.
  1838. Detect and reject build paths containing '@', as this confuses
  1839. a number of packages, including GCC.
  1840. utils/get-developers: Add -e option for use with git
  1841. send-email.
  1842. utils/diffconfig: Make it work for (non-Buildroot) config
  1843. files not using the BR2_ prefix.
  1844. u-boot: Fix for environment image handling on big endian
  1845. systems.
  1846. Updated/fixed packages: binutils, ca-certificates,
  1847. cups-filters, dtc, erlang, file, freetype, gcc, git, gvfs,
  1848. jasper, leveldb, libarchive, libssh, live555, ljlinenoise,
  1849. mariadb, mongoose, netsnmp, nmap, nodejs, ntp, open-plc-utils,
  1850. poco, psmisc, ptpd2, python-enum34, qemu, qt, qt5base,
  1851. setools, spice, spice-protocol, tinc, ustr, wireshark,
  1852. Issues resolved (http://bugs.uclibc.org):
  1853. #11396: uboot environment image checksum invalid if target is big endian
  1854. 2018.08.1, Released October 7th, 2018
  1855. Important / security related fixes.
  1856. Add a number of patches to fix build errors for host utilities
  1857. on modern distributions using glibc-2.28.
  1858. mkusers: Ensure existing group members are preserved when a
  1859. group is reprocessed.
  1860. printvars: Fix issue with exceeding shell command line length
  1861. limits for certain setups.
  1862. Updated/fixed packages: acpid, android-tools, apache,
  1863. arp-scan, bandwidthd, bind, brltty, clamav, connman, cppcms,
  1864. domoticz, dtc, fio, gcc, gdb, ghostscript, gnupg, httpping,
  1865. igmpproxy, imlib2, ipsec-tools, libesmtp, libnfs, libxslt,
  1866. links, lua, mosquitto, nilfs-utils, ocrad, parted, php,
  1867. python-django, screen, shairport-sync, strongswan,
  1868. vboot-utils, webkitgtk, wireguard, x265 xen, xlib_libXdmcp,
  1869. xlib_libXfont, xlib_libXft, xlib_libxshmfence,
  1870. xutil_makedepend, zeromq
  1871. 2018.08, Released September 6th, 2018
  1872. Minor fixes.
  1873. Known issues:
  1874. - Glibc 2.28 on the build host breaks compilation of a number
  1875. of host packages. 2018.08 contains fixes for some of these
  1876. packages, but not all. Consider building on hosts (or in
  1877. containers) using older Glibc versions.
  1878. - host-dtc 1.4.7 breaks compilation of older U-Boot and Linux
  1879. kernel configurations using FDT/DTC. Consider updating the
  1880. Linux kernel to >= 4.17 and U-Boot to >= 2018.07 or
  1881. backporting commit 9130ba8846 (scripts/dtc: Update to
  1882. upstream version v1.4.6-9-gaadd0b65c987) for the Linux
  1883. kernel / commit db405d1980 for U-Boot.
  1884. Alternatively revert commit 7b929ddcf0 (dtc: bump version to
  1885. 1.4.7) and ensure your build host does not have the libfdt
  1886. development headers installed.
  1887. Updated/fixed packages: busybox, chipmunk, cutelyst,
  1888. domoticz, gcc, imagemagick, lcms2, libcurl, mediastreamer,
  1889. moarvm, php, qt, qt5virtualkeyboard, qt5webengine, screen,
  1890. sdl2, squashfs, uboot, xen
  1891. Issues resolved (http://bugs.uclibc.org):
  1892. #11261: ccache using wrong cached objects
  1893. #11276: Understanding the patch for kernel-4.9 and other..
  1894. 2018.08-rc3, Released August 31th, 2018
  1895. Fixes all over the tree.
  1896. linux: additional improvements to the flex / bison dependency
  1897. handling, use system provided variant if available. Ensure
  1898. toolchain is available when configuring for 4.18+ support.
  1899. Download: Fix handling of primary sites using file://
  1900. Toolchain: Correct external toolchain musl detection for
  1901. static toolchains.
  1902. Updated/fixed packages: aircrack-ng, bison, brltty, busybox,
  1903. cutelyst, dropbear, gr-osmosdr, i2c-tools, json-c, libconfuse,
  1904. libkcapi, libsoup, libssh, liburiparser, mbedtls, mender,
  1905. mesa3d, minicom, mjpegtools, mutt, openpowerlink, openssh,
  1906. oracle-mysql, php, postgresql, pv, qt5base, qt5quickcontrols,
  1907. rauc, shairport-sync, systemd, xlib_libX11, zeromq,
  1908. Issues resolved (http://bugs.uclibc.org):
  1909. #11091: BR2_PRIMARY_SITE doesn't work (wget is selected...
  1910. #11141: WF111 package no longer available
  1911. #11211: Internal compiler error: Killed (program cc1plus)..
  1912. #11236: util-linux fails to build on Travis CI when python..
  1913. #11246: Glibc 2.28 - fails to build host-bison and host-m4
  1914. #11256: Add python-falcon and python-mimeparse packages
  1915. 2018.08-rc2, Released August 20th, 2018
  1916. Fixes all over the tree.
  1917. pkg-kconfig: Support dependencies needed to run the
  1918. configurator, E.G. recent Linux kernel versions needing flex
  1919. and bison.
  1920. Defconfigs: ARM Juno: Bump ATF to fix a build
  1921. issue. Raspberrypi2: Bump rootfs size. Snps_archs38_vdk:
  1922. Correct /etc/inittab. Technologic ts7680: Correct genimage
  1923. configuration. Orange PI PC / Zero, Sheevaplug: Bump U-boot to
  1924. 2018.07 to fix build issue. Ensure host-openssl is pulled in
  1925. for kernel builds where needed.
  1926. Updated/fixed packages: aircrack-ng, bind, boost,
  1927. boot-wrapper-aarch64, bzip2, busybox, chrony, cryptsetup,
  1928. dahdi-tools, dbus, domoticz, eigen, ipsec-tools, libarchive,
  1929. libfuse, libgit2, libopenssl, libselinux, lighttpd, lvm2, m4,
  1930. makedevs, mariadb, mesa3d-headers, mono, ncmpc, ncurses,
  1931. nodejs, php, python-django, python-pyqt5, qt5base,
  1932. qt5serialbus, ruby, samba4, uboot-tools, uclibc, vlc,
  1933. waylandpp, wireless_tools, wireshark, wpa_supplicant, mtd,
  1934. xdriver_xf86-video-ati, xserver_xorg-server
  1935. Issues resolved (http://bugs.uclibc.org):
  1936. #10781: cryptsetup luksOpen container_file container causes..
  1937. #10996: bogus musl ARM toolchain
  1938. #11191: xattr and check-package issue
  1939. 2018.08-rc1, Released August 5th, 2018
  1940. Toolchain:
  1941. - add support for gcc 8.x, switch to gcc 7.x as the default
  1942. version
  1943. - add support for gdb 8.1, switch to gdb 8.0 as the default
  1944. and remove gdb 7.10/7.11
  1945. - add support for binutils 2.31
  1946. - NIOSII CodeSourcery toolchain updated
  1947. - Linaro AArch64 BE toolchain added, and other Linaro
  1948. toolchains updated
  1949. - Synopsys ARC pre-built toolchain updated
  1950. Architecture: add support for ARM Cortex-M7
  1951. Major updates:
  1952. - systemd bumped to 239
  1953. - Qt5 bumped to 5.11.1
  1954. - Rust bumped to 1.27
  1955. - GStreamer stack bumped to 1.14.2
  1956. - X.org server bumped to 1.20, and all X.org proto packages
  1957. replaced by the single xorgproto package
  1958. - i.MX6 support packages bumped to 6.2.4
  1959. - i.MX Vivante graphics version bumped to 6.2.4.p1.2,
  1960. adding support for Wayland and i.MX8MQ platforms
  1961. Linux: bumped to 4.17 by default.
  1962. Infrastructure: new package infrastructure added for packages
  1963. using the Meson build system
  1964. New packages: at-spi2-atk, at-spi2-core, capnproto, cmocka,
  1965. corkscrew, cutelyst, davfs2, flatcc, libidn2, libgit2,
  1966. libopusenc, mender, nghttp2, perl-convert-asn1, perl-crypt-blowfish,
  1967. perl-crypt-cbc, perl-digest-md5, perl-mime-base64-urlsafe,
  1968. perl-mojolicious-plugin-authentication, perl-net-ping,
  1969. perl-net-snmp, perl-net-ssh2, perl-net-telnet, pigz,
  1970. python-reentry, python-request-id, python-validators,
  1971. python-webob, shadowsocks-libev, speexdsp, xorgproto, wampcc
  1972. New defconfigs: NXP i.MX7D SDB, Boundary Devices Nitrogen 8M,
  1973. Olimex A10 OLinuxino, ZynqMP ZCU106
  1974. Removed packages: all xproto_* have been removed and replaced
  1975. by xorgproto
  1976. Issues resolved (http://bugs.uclibc.org):
  1977. #9411: MUSL build with RT Error relocating /lib/libgcc_s.so.1:
  1978. __cpu_indicator_init: symbol not found
  1979. #9921: lockfile module within python-daemon not available
  1980. #10341: gdb install of py files when using buildroot toolchain
  1981. includes build path
  1982. #10661: /etc/init.d/S29netplug starts multiple instances of netplugd
  1983. #10751: Missing dependency in pulseaudio package
  1984. #10811: kodi-17.6-Krypton does not compile for freescale_* devices
  1985. #10856: openblas on qemu_x86_64_defconfig fails with
  1986. "sgemm_kernel.o: No such file or directory"
  1987. #11056: Compiling a file that uses libdrm headers fails with:
  1988. fatal error: drm.h: No such file or directory
  1989. #11061: support/download: git version=master broken
  1990. #11071: Building postgresql package on Debian 9.4 x64 for armel target fails
  1991. #11076: Docker containerd installed to incorrect path
  1992. #11101: host-patchelf Endian Issue with relative RPATH
  1993. #11111: raspberry pi 3 b+: missing BSP for 64-bit kernel
  1994. #11121: statfs call corrupts memory struct statfs too small
  1995. #11181: Switching toolchain does not work
  1996. 2018.05.3, Released October 6th, 2018
  1997. Important / security related fixes.
  1998. Add a number of patches to fix build errors for host utilities
  1999. on modern distributions using glibc-2.28.
  2000. mkusers: Ensure existing group members are preserved when a
  2001. group is reprocessed.
  2002. printvars: Fix issue with exceeding shell command line length
  2003. limits for certain setups.
  2004. Updated/fixed packages: acpid, android-tools, apache,
  2005. arp-scan, bandwidthd, bind, bison, brltty, chipmunk, connman,
  2006. cppcms, fio, gcc, ghostscript, gnupg, httping, igmpproxy,
  2007. imagemagick, imlib2, ipsec-tools, lcm2, libcurl, libesmtp,
  2008. libnfs, libssh, libxslt, links, mediastreamer, minicom,
  2009. moarvm, nilfs-utils, ocrad, parted, php, postgresql, pv,
  2010. python-django, qt, qt5quickcontrols, qt5webengine, screen,
  2011. sdl2, shairport-sync, squashfs, strongswan, vboot-utils,
  2012. webkitgtk, wireguard, x265, xen, xlib_libXfont, xlib_libXft,
  2013. xlib_libxshmfence, zeromq
  2014. 2018.05.2, Released August 28th, 2018
  2015. Important / security related fixes.
  2016. Defconfigs: Raspberrypi2: Bump rootfs size, T7680: Fix
  2017. genimage.cfg issue, ARM Juno: Bump ATF to v1.3 to fix build
  2018. issue.
  2019. Updated/fixed packages: acl, attr, apache, bind,
  2020. boot-wrapper-aarch64, brltty, bzip2, chrony, crda, cryptsetup,
  2021. dahdi-tools, dmidecode, dropbear, eigen, ffmpeg, gawk, gcc,
  2022. ghostscript, gnutls, imx-gpu-viv, ipsec-tools, libarchive,
  2023. libfuse, libglib2, libopenssl, libselinux, libsoup, lighttpd,
  2024. linuxptp, lttng-modules, lttng-tools, lua-flu, lvm2, m4,
  2025. makedevs, mariadb, mbedtls, mesa3d-heders, mtd, ncurses,
  2026. nodejs, openssh, php, python-django, rauc, ruby, samba4,
  2027. stress-ng, ti-utils, uboot-tools, uclibc, vim, waylandpp,
  2028. wireless_tools, wireless-regdb, wireshark, wpa_supplicant,
  2029. xorriso, znc
  2030. Issues resolved (http://bugs.uclibc.org):
  2031. #10781: cryptsetup luksOpen container_file container causes..
  2032. #10986: Installing package attr when already supplied by..
  2033. #11191: xattr and check-package issue
  2034. 2018.05.1, Released July 20th, 2018
  2035. Important / security related fixes.
  2036. U-Boot: Ensure host version of ncurses is picked up and not
  2037. host-ncurses built by buildroot, as that otherwise causes
  2038. widechar/non-widechar conflicts and corrupted menuconfig
  2039. menus.
  2040. Linux: Enable CONFIG_PERF_EVENTS when perf is enabled.
  2041. Toolchain: ARC tools updated to arc-2018.03.
  2042. pkg-stats: Fix python 3.x compatibility.
  2043. dl-wrapper: Fix support for URIs containing '+', fix
  2044. no-check-hash for inferred site method.
  2045. Defconfigs: Raspberrypi3: Bump rootfs size, Minnowboard-max:
  2046. Support ethernet on Turbot variant.
  2047. Updated/fixed packages: audit, bind, btrfs-progs, cifs-utils,
  2048. clamav, collectd, coreutils, docker-containerd, dos2unix,
  2049. edid-decode, file, gcc, gdb, gnupg, gnupg2, heimdal, hidapi,
  2050. imagemagick, libcurl, libgcrypt, libglib2, liblogging,
  2051. libostree, libressl, libsoup, libv4l, libvncserver, libvorbis,
  2052. libwebsockets, libxslt, lm-sensors, mariadb, mpg123, ncurses,
  2053. network-manager, nodejs, patchelf, perl, php-amqp, pinentry,
  2054. pixiewps, qpdf, qt53d, qt5base, qt5charts, qt5script, redis,
  2055. systemd, triggerhappy, uboot, wireguard, wireless-regdb,
  2056. wireshark
  2057. 2018.05, Released June 1st, 2018
  2058. Minor fixes.
  2059. Download: Work around for hanging connections for packages
  2060. from CVS, by adding a 10 minute max timeout.
  2061. Updated/fixed packages: binutils, clang, dash, expect, git,
  2062. glibc, jpeg-turbo, libjpeg, log4cplus, openvmtools, xen,
  2063. Issues resolved (http://bugs.uclibc.org):
  2064. #11051: runtime issue on STM32 with usage of binutils 2.29.x
  2065. 2018.05-rc3, Released May 28th, 2018
  2066. Fixes all over the tree.
  2067. Toolchain: ARC tools updated to arc-2018.03-rc2.
  2068. Fs: Ensure hard links in TARGET_DIR are correctly copied for
  2069. filesystem input. With the recent changes to the file system
  2070. generation logic, hard links were "expanded" in file system
  2071. images leading to bloated rootfs images for setups with hard
  2072. links.
  2073. Infrastructure: Error out for packages using the 'local'
  2074. method but forgetting to specify <pkg>_SITE.
  2075. Build rpcgen for the host when needed to support distributions
  2076. no longer shipping rpcgen with glibc (E.G. recent Fedora).
  2077. Updated/fixed packages: autofs, bash-completion, binutils,
  2078. busybox, cjson, elf2flt, libcoap, libcurl, libtirpc, lrzsz,
  2079. poppler, procps-ng, qt-webkit-kiosk, quota, samba4, xfsprogs
  2080. Issues resolved (http://bugs.uclibc.org):
  2081. #11031: ld-elf2flt: host/bin/ld.real': execvp: No such file..
  2082. #11036: C compiler cannot create executables
  2083. #11046: Git package binaries are ~180MB (compared to ~20MB in..
  2084. 2018.05-rc2, Released May 22nd, 2018
  2085. Fixes all over the tree.
  2086. Dependencies: Check that the current working directory (.)
  2087. isn't listed in PATH as that causes various build issues.
  2088. Manual: Clarify that git branch names may not be used as
  2089. version identifiers. This has never been supported, but was
  2090. kind of working (with some limitations) before the git
  2091. download rework - Now it does not work at all.
  2092. Linux: Ensure host version of ncurses is picked up and not
  2093. host-ncurses built by buildroot, as that otherwise causes
  2094. widechar/non-widechar conflicts and corrupted menuconfig
  2095. menus.
  2096. Packages: Renamed a number of package options not prefixed
  2097. with BR2_PACKAGE_<pkg> for consstency.
  2098. Download infrastructure: Fix file:// protocol handling after
  2099. download rework.
  2100. Updated/fixed packages: acl, apr-util, asterisk, attr,
  2101. bluez5_utils, cifs-utils, clamav, clang, cups-filters,
  2102. dahdi-linux, exim, faketime, gdb, go, gst1-plugins-bad,
  2103. imx-mkimage, ipsec-tools, jamvm, janus-gateway,
  2104. jquery-ui-themes, libcap, libcurl, libftdi, libkcapi, libkrb5,
  2105. libmediaart, libmodbus, libmodplug, libmpd,
  2106. libnetfilter_cthelper, libnetfilter_cttimeout, libnfc,
  2107. libnfnetlink, libnss, liboauth, libogg, libosip2,
  2108. libpam-radius-auth, libpcap, libpciaccess, llvm, log4cplus,
  2109. ltrace, lynx, mbedtls, modem-manager, nfs-utils,
  2110. python-cython, python-websockets, qt5cinex, qt5wayland, rauc,
  2111. snort, strace, ti-sgx-km, transmission, wavpack, wget, woff2,
  2112. xen, zmqpp, znc, zstd
  2113. Issues resolved (http://bugs.uclibc.org):
  2114. #10986: Installing package attr when already supplied by...
  2115. #11011: BUildroot for Raspberry Pi 2
  2116. #11016: Wrong compiler used for external user host packages
  2117. 2018.05-rc1, Released May 9th, 2018
  2118. Toolchain: glibc bumped to 2.27, musl bumped to 1.1.19,
  2119. uClibc-ng 1.0.30, Linux kernel headers bumped to 4.16.x.
  2120. Architecture: support for the Blackfin architecture has been
  2121. removed, as it was removed from Linux upstream, poorly
  2122. maintained in binutils/gdb, and abandoned by Analog Devices.
  2123. Numerous packages updated to have hashes for their license
  2124. files.
  2125. Systemd can now be built with uClibc toolchains.
  2126. Linux: addition of BR2_LINUX_KERNEL_NEEDS_HOST_LIBELF and
  2127. BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL to support building Linux
  2128. kernel configurations that need libelf on the host or openssl
  2129. on the host.
  2130. Coding style:
  2131. - all Python scripts are now verified with flake8
  2132. - check-package extended to check all Config.in and .mk files
  2133. in tree, not only the ones in package/
  2134. Infrastructure:
  2135. - The download infrastructure has seen a major overhaul, with
  2136. the main visible new feature being Git caching: a package
  2137. fetched from Git no longer needs to be re-cloned entirely
  2138. everytime its version is changed. Anoter visible change is
  2139. that the download folder now has subfolders per package. See
  2140. http://lists.busybox.net/pipermail/buildroot/2018-April/217923.html
  2141. for more details about those changes.
  2142. - The logic that generates the root filesystem images has been
  2143. reworked, with the main goal of allowing several filesystem
  2144. images to be produced in parallel, also a requirement for
  2145. top-level parallel build. Now, a .tar filesystem image is
  2146. always created, and re-extracted in a private directory to
  2147. create each format-specific filesystem image.
  2148. - A new package infrastructure was introduced for Go-based
  2149. packages: golang-package.
  2150. - Dependencies on extraction tools are now handled as proper
  2151. per-package dependencies, using
  2152. <pkg>_EXTRACT_DEPENDENCIES. Beyond a cleanup, this is also a
  2153. preparation step for top-level parallel build support.
  2154. - When a file being downloaded is part of a package with a
  2155. .hash file, but there is no hash listed for this file, the
  2156. file is now preserved in the download directory rather than
  2157. removed. This helps when updating a package, as it gives the
  2158. ability to easily calculate the hash of the file.
  2159. - Addition of '<pkg>-show-recursive-depends' and
  2160. '<pkg>-show-recursive-rdepends' make targets, to
  2161. respectively display the recursive list of dependencies and
  2162. the recursive list of reverse dependencies of a given
  2163. package.
  2164. - The /etc/shells file is now automatically generated with the
  2165. list of shell programs installed on the system.
  2166. - Addition of -Ofast optimization level as an available
  2167. option.
  2168. Major updates: Go updated to 1.10, Erlang bumped to 20.3, Qt5
  2169. bumped to 5.10.1.
  2170. New packages: 18xx-ti-utils, abootimg, bluez-alsa, brotli,
  2171. chipmunk, clang, docker-compose, docker-proxy, flare-engine,
  2172. flare-game, gst1-interpipe, gstreamer1-editing-services,
  2173. hackrf, i2pd, imx-alsa-plugins, imx-mkimage, libcdio-paranoia,
  2174. libkrb5, llvm, pixiewps, python-backports-ssl-match-hostname,
  2175. python-cached-property, python-cython, python-docker,
  2176. python-dockerpty, python-docker-pycreds,
  2177. python-flask-sqlalchemy, python-functools32, python-influxdb,
  2178. python-json-models, python-libusb1, python-networkx,
  2179. python-psycopg2, python-pymodbus, python-sqlalchemy,
  2180. python-subprocess32, python-texttable,
  2181. python-websocket-client, python-yieldfrom, quotatool, reaver,
  2182. snort, sunxi-mali-mainline, sunxi-mali-mainline-driver, tk,
  2183. tpm2-abrmd, tpm2-tools, tpm2-tss, udftools, vte, woff2.
  2184. New defconfigs: ARC HS Development Kit, Arcturus ucls1012a,
  2185. Freescale i.MX6UL EVK (with vendor kernel), Freescale i.MX6
  2186. SoloLite EVK (with vendor kernel), Freescale i.MX31 3Stack,
  2187. Freescale i.MX8Q EVK Freescale p1025twr, Freescale t1040d4rdb,
  2188. Qemu PPC64 E5500, SolidRun ClearFog Base, Tinker RK3288, Vyasa
  2189. RK3288,
  2190. Removed packages: iqvlinux, kodi-adsp-*, mplayer
  2191. Removed defconfigs: ci40, firefly_rk3288,
  2192. freescale_p1010rdb_pa, freescale_mpc8315erdb, riotboard,
  2193. teliv_evk_pro3
  2194. Issues resolved (http://bugs.uclibc.org):
  2195. #10151: toolchain eclipse register : fails with a custom
  2196. BR2_HOST_DIR
  2197. #10511: Packages get downloaded uncompressed with wget
  2198. #10531: QtWebengine doesn't build if the host hasn't a 32 bits
  2199. C++ compiler working
  2200. #10846: error in compiling gnutls
  2201. #10886: openssl-1.0.2n fails to build
  2202. #10896: /bin/sh not in /etc/shells
  2203. #10961: Grub2 fails to build for x86_64 when BR2_SSP_ALL is
  2204. enabled
  2205. 2018.02.12, Released March 29th, 2019
  2206. Important / security related fixes.
  2207. Updated/fixed packages: avahi, beecrypt, busybox, clamav,
  2208. cups, devmem2, fetchmail, file, fltk, gcc, gdb, git, jq,
  2209. leveldb, libopenssl, libraw, libseccomp, libssh2,
  2210. libunistring, mariadb, mosquitto, nodejs, ntp, openjpeg, perl,
  2211. php, putty, qt5webkit, rdesktop, systemd, wireshark, vsftpd,
  2212. xapp_xdm, xlib_libXdmcp
  2213. 2018.02.11, Released February 23th, 2019
  2214. Important / security related fixes.
  2215. Ensure the PLATFORM and OS environment variables are not set,
  2216. as they cause build issues for some packages.
  2217. The package list infrastructure now correctly handles packages
  2218. installing files with old mtime.
  2219. Linux: Skip hash checks for user supplied downloadable
  2220. patches, as no hash checksums are available for those.
  2221. scanpypi: protect against zip-slip vulnerability in zip/tar
  2222. handling
  2223. Updated/fixed packages: bind, dhcpcd, dovecot, ghostscript,
  2224. gnuradio, imagemagick, jpeg-turbo, libarchive, libb64,
  2225. libcurl, libid3tag, madplay, mosquitto, openssh, php,
  2226. postgresql, proftpd, python, python-django, python3, qt5base,
  2227. sqlcipher, swupdate, systemd, unzip, webkitgtk
  2228. 2018.02.10, Released January 31th, 2019
  2229. Important / security related fixes.
  2230. Defconfigs: Fixes for Lego EV3, QEMU AArch64-virt
  2231. check-package: fix Python 3 support
  2232. get-developers: Fix behaviour when called from elsewhere than
  2233. the toplevel directory.
  2234. cmake: Also set CMAKE_SYSTEM_VERSION in toolchainfile.cmake
  2235. Updated/fixed packages: acpica, apache, apr, asterisk,
  2236. avrdude, cargo, cc-tool, dash, dhcpdump, dmalloc, gnuchess,
  2237. gnupg2, leveldb, libarchive, libassuan, libftdi1,
  2238. libgpg-error, libhttpparser, libmad, libsndfile, libsquish,
  2239. liburiparser, libwebsock, libxml2, lighttpd, lm-sensors,
  2240. lua-msgpack-native, mbedtls, mosquitto, netatalk, nodejs,
  2241. openssh, pango, patchelf, php, python-django, python-pyyaml,
  2242. rauc, rp-pppoe, s6-networking, samba4, sdl_sound,
  2243. shairport-sync, sqlite, subversion, sunxi-cedarx, tcpreplay,
  2244. tekui, usb_modeswitch, webkitgtk, wireshark, wolfssl,
  2245. xapp_rgb, xenomai, xerces
  2246. Issues resolved (http://bugs.uclibc.org):
  2247. #11576: Unable to start apache with event MPM on raspberry pi 3
  2248. 2018.02.9, Released December 20th, 2018
  2249. Important / security related fixes.
  2250. defconfigs: Fixes for ci20
  2251. Updated/fixed packages: c-ares, dante, freetype, ghostscript,
  2252. glibc, gnutls, go, libcurl, libgpgme, libid3tag, libiscsi,
  2253. libmpd, libopenssl, libpjsip, linux, liquid-dsp, luvi, lynx,
  2254. msgpack, nginx, nodejs, php, popt, pps-tools, python-numpy,
  2255. python-requests, samba4, sdl2_net, squashfs, swupdate, uclibc,
  2256. wine, webkitgtk, xfsprogs
  2257. Issues resolved (http://bugs.uclibc.org):
  2258. #11426: pps-tools bash dependency
  2259. 2018.02.8, Released November 26th, 2018
  2260. Important / security related fixes.
  2261. fs: Drop intermediate tarball from the filesystem handling to
  2262. fix an issue with xattrs handling related to fakeroot. Ensure
  2263. tarball target includes xattrs.
  2264. download: Fix confusion in git submodule handling if dl/ is a
  2265. symlink.
  2266. toolchain: Only allow enabling stack protection on
  2267. architectures with control flow integrity (CFI) support. Only
  2268. allow FORTIFY_SOURCE support on gcc >= 6.
  2269. genrandconfig: Fix missing newline in BR2_WGET handling,
  2270. causing the following line to be ignored. This would affect
  2271. BR2_ENABLE_DEBUG, BR2_INIT_BUSYBOX, BR2_INIT_SYSTEMD,
  2272. BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV, BR2_STATIC_LIBS or
  2273. BR2_PACKAGE_PYTHON_PY_ONLY depending on the randomization.
  2274. show-build-order: Also include the dependencies of
  2275. rootfs-common.
  2276. Defconfigs: Fixes for Armadeus APF27, imx6sabre.
  2277. graph-depends: Fix for package names starting with a non-alpha
  2278. character.
  2279. Updated/fixed packages: attr, audit, bind, brotli, easydbus,
  2280. elfutils, gauche, gcc, giflib, gpsd, lcdproc, libcurl,
  2281. libiscsi, libnfs, libnspr, libnss, libkcapi, libsemanage,
  2282. liburiparser, lighttpd, linux, lua-curl, mariadb, mmc-utils,
  2283. mosquitto, mysql, neardal, netplug, network-manager,
  2284. nfs-utils, nginx, openocd, openswan, p11-kit, postgresql,
  2285. prosody, qemu, qt, rpm, ruby, samba4, squid, supertuxkart,
  2286. systemd, tar, trace-cmd, traceroute, twolame, uclibc,
  2287. usb_modeswitch, vtun, webkitgtk, xdriver_xf86-video-geode,
  2288. xlib_libfontenc, xproto_inputproto, xserver_xorg-server
  2289. Issues resolved (http://bugs.uclibc.org):
  2290. #11086: download/git submodule breaks on symlinked dl folder
  2291. #11251: Util scanpypi failes when package change - to _ in..
  2292. #11476: stdio2.h error invalid use of __builtin_va_arg_pack
  2293. #11481: Docs: Is external.desc required?
  2294. 2018.02.7, Released October 25th, 2018
  2295. Important / security related fixes.
  2296. Detect and reject build paths containing '@', as this confuses
  2297. a number of packages, including GCC.
  2298. utils/get-developers: Add -e option for use with git
  2299. send-email.
  2300. utils/diffconfig: Make it work for (non-Buildroot) config
  2301. files not using the BR2_ prefix.
  2302. u-boot: Fix for environment image handling on big endian
  2303. systems.
  2304. Updated/fixed packages: binutils, ca-certificates,
  2305. cups-filters, erlang, file, freetype, gcc, git, gvfs, leveldb,
  2306. libarchive, libcurl, libssh, live555, ljlinenoise, mariadb,
  2307. mongoose, netsnmp, nmap, nodejs, ntp, open-plc-utils, poco,
  2308. psmisc, ptpd2, python-enum34, qemu, qt, qt5base, setools,
  2309. spice, spice-protocol, tinc, ustr, wireshark
  2310. Issues resolved (http://bugs.uclibc.org):
  2311. #11396: uboot environment image checksum invalid if target is big endian
  2312. 2018.02.6, Released October 7th, 2018
  2313. Important / security related fixes.
  2314. Add a number of patches to fix build errors for host utilities
  2315. on modern distributions using glibc-2.28.
  2316. mkusers: Ensure existing group members are preserved when a
  2317. group is reprocessed.
  2318. printvars: Fix issue with exceeding shell command line length
  2319. limits for certain setups.
  2320. Updated/fixes packages: acpid, android-tools, apache,
  2321. arp-scan, bandwidthd, bind, bison, clamav, connman, cppcms,
  2322. cramfs, fio, gcc, ghostscript, glibc, gnupg, httping,
  2323. igmpproxy, imagemagick, imlib2, ipsec-tools, lcms2, libcurl,
  2324. libesmtp, libnfs, libssh, libxslt, links, linuxptp,
  2325. mediastreamer, minicom, moarvm, nilfs-utils, ocrad, parted,
  2326. php, pv, python-django, qt, qt5quickcontrols, qt5webengine,
  2327. screen, sdl2, shairport-sync, squashfs, strongswan,
  2328. vboot-utils, webkitgtk, wireguard, x265, xen, xlib_libXfont,
  2329. xlib_libXft
  2330. New packages: brotli, woff2
  2331. 2018.02.5, Released August 29th, 2018
  2332. Important / security related fixes.
  2333. Defconfigs: Raspberrypi2: Bump rootfs size, T7680: Fix
  2334. genimage.cfg issue, ARM Juno: Bump ATF to v1.3 to fix build
  2335. issue.
  2336. Updated/fixed packages: acl, apache, attr, bind,
  2337. boot-wrapper-aarch64, brltty, bzip2, chrony, crda, cryptsetup,
  2338. dahdi-tools, dmidecode, dropbear, eigen, erlang, ffmpeg, gawk,
  2339. gcc, ghostscript, gnutls, ipsec-tools, libarchive, libfuse,
  2340. libopenssl, libselinux, libsoup, lighttpd, linuxptp,
  2341. lttng-modules, lttng-tools, lua-flu, lvm2, m4, makedevs,
  2342. mariadb, mbedtls, mesa3d-headers, mtd, ncurses, nodejs,
  2343. openssh, php, postgresql, python-django, qt5xmlpatterns, ruby,
  2344. samba4, shairport-sync, stress-ng, ti-utils, uboot-tools, vim,
  2345. waylandpp, wireless_tools, wireshark, wpa_supplicant, xorriso,
  2346. znc
  2347. Issues resolved (http://bugs.uclibc.org):
  2348. #10781: cryptsetup luksOpen container_file container causes..
  2349. #10986: Installing package attr when already supplied by..
  2350. #11191: xattr and check-package issue
  2351. 2018.02.4, Released July 21th, 2018
  2352. Important / security related fixes.
  2353. U-Boot: Ensure host version of ncurses is picked up and not
  2354. host-ncurses built by buildroot, as that otherwise causes
  2355. widechar/non-widechar conflicts and corrupted menuconfig
  2356. menus.
  2357. Linux: Enable CONFIG_PERF_EVENTS when perf is enabled.
  2358. Defconfigs: Raspberrypi3: Bump rootfs size, Minnowboard-max:
  2359. Support ethernet on Turbot variant.
  2360. Updated/fixed packages: bind, clamav, collectd, dos2unix,
  2361. edid-decode, gcc, gdb, heimdal, hidapi, imx-gpu-viv, libcurl,
  2362. libglib2, liblogging, libostree, libsoup, libv4l, lm-sensors,
  2363. ncurses, network-manager, patchelf, pinentry, procps-ng, qpdf,
  2364. qt5, qt53d, qt5base, qt5charts, qt5script, qt5serialport,
  2365. systemd, wireguard, wireless-regdb
  2366. Issues resolved (http://bugs.uclibc.org):
  2367. #11101: host-patchelf Endian Issue with relative RPATH
  2368. 2018.02.3, Released June 18th, 2018
  2369. Important / security related fixes.
  2370. Various fixes for building on modern distributions (GCC 8.x,
  2371. no rpcgen utility).
  2372. ARM: Default to binutils 2.28 and warn about newer binutils
  2373. versions, which are known to cause boot failures for Linux
  2374. kernels built in thumb mode.
  2375. Busybox/mdev: Fix module autoloading.
  2376. Busybox/sysvinit: inittab: Add /dev/{stdin,stdout,stderr}
  2377. symlinks, call swapon -a to activate any configured swap
  2378. devices.
  2379. Dependencies: Check that PATH does not contain current working
  2380. directory, which triggers a number of build failures.
  2381. Infrastructure: Error out for packages erroneously using the
  2382. 'local' site method but not defining a _SITE.
  2383. Linux: Fix cuImage.<dtb> / simpleImage.<dtb> handling. Ensure
  2384. kconfig uses ncurses from the host to fix a ncurses/ncursesw
  2385. mixup, causing menuconfig display corruption.
  2386. Toolchain: Workarounds for fix-rpath issues with binutils and
  2387. elf2flt.
  2388. Util-linux: Fix blocking on getrandom() issue with recent
  2389. kernels.
  2390. Remove broken freescale_imx31_3stack,
  2391. freescale_imx6sololiteevk and freescale_imx6ulevk defconfigs.
  2392. Updated/fixed packages: apr-util, asterisk, attr, audit,
  2393. autofs, binutils, busybox, cifs-utils, cups-filters, dash,
  2394. ebtables, exim, expect, f2fs-tools, faketime, file, gdb, git,
  2395. glibc, gnupg, gnupg2, gst1-plugins-bad, imagemagick, jamvm,
  2396. jpeg-turbo, libcap, libcoap, libcurl, libgcrypt, libjpeg,
  2397. libnss, libressl, libtirpc, libvncserver, libvorbis, libxslt,
  2398. log4cplus, lrzsz, ltrace, lynx, mariadb, mbedtls, mpg123,
  2399. nasm, netplug, network-manager, nfs-utils, nodejs,
  2400. openvmtools, patch, perl, php-amqp, poppler, procps-ng,
  2401. python, python-websockets, quota, redis, samba4, sysvinit,
  2402. transmission, triggerhappy, util-linux, wavpack, wget,
  2403. wireshark, xen, zmqpp
  2404. Issues resolved (http://bugs.uclibc.org):
  2405. #10986: Installing package attr when already supplied by busybox..
  2406. #11031: ld-elf2flt: host/bin/ld.real': execvp: No such file or..
  2407. 2018.02.2, Released May 4th, 2018
  2408. Important / security related fixes.
  2409. Tweak package size/file instrumentation to better handle
  2410. package rebuilds.
  2411. Revert /etc/shells creation when bash is enabled.
  2412. Exclude /lib/firmware from the rpath fixup logic, as it may
  2413. contain non-native ELF files.
  2414. Scanpypi: Support the new PyPi infrastructure.
  2415. Handle GCC 8.x on the host.
  2416. Ensure timestamp of /usr is updated to support the systemd
  2417. ConditionNeedsUpdate option.
  2418. Updated/fixed packages: bluez5_utils, flann, gdb, gnupg2,
  2419. grub2, libcec, libcgi, libglib2, libgpg-error, libgpgme,
  2420. libtomcrypt, mbedtls, mkpasswd, php, python, python-requests,
  2421. python-watchdog, qt53d, qt5websockets, sdl2, sdl2_image,
  2422. syslog-ng, systemd, tcl, tcllib, uclibc, usb_modeswitch,
  2423. wireguard, wmctrl
  2424. Issues resolved (http://bugs.uclibc.org):
  2425. #10896: /bin/sh not in /etc/shells
  2426. #10961: Grub2 fails to build for x86_64 when BR2_SSP_ALL is enabled
  2427. 2018.02.1, Released April 9th, 2018
  2428. Important / security related fixes.
  2429. Removed unmaintained defconfigs: Creator Ci40, Firefly rk3288,
  2430. Freescale mpc8315erdb / p1010rdb_pa, Riotboard, Teliv EVK
  2431. Pro3.
  2432. Infrastructure: Speed up instrumentation for package size by
  2433. comparing timestamps instead of md5 checksums, as doing
  2434. checksums could lead to up to 25% longer build time for big
  2435. configurations.
  2436. Rename the internal <pkg>_BASE_NAME variable to <pkg>_NASENAME
  2437. to avoid name clashes with packages ending on '-base'.
  2438. Add a better fix for build issues for autotools based packages
  2439. checking for C++ support on toolchains without C++ support.
  2440. Build host-tar if tar is older than 1.27 on the build machine
  2441. to work around reproducibility issues with git archives
  2442. containing long paths.
  2443. check-unique-files: Fix for filenames not representable in the
  2444. users' locale.
  2445. Check-bin-arch: Add support for per-package ignore paths
  2446. (<pkg>_BIN_ARCH_EXCLUDE).
  2447. Toolchain: Fix SSP support detection for external toolchains.
  2448. linux: Add _NEEDS_HOST_OPENSSL / LIBELF options to ensure
  2449. these dependencies are available for Linux configurations
  2450. needed these dependencies, similar to how it is done for
  2451. U-Boot.
  2452. Support custom (not in tree) device tree files in addition to
  2453. in-tree ones.
  2454. U-Boot / uboot-tools: Fix header conflict with libfdt-devel
  2455. installed on host.
  2456. Updated/fixed packages: apache, busybox, c-ares, cmake,
  2457. docker-engine, enlightenment, eudev, fbgrab, freescale-imx,
  2458. gtest, imagemagick, intel-microcode, irssi, jimtcl, kmod,
  2459. kodi, ktap, libcoap, libcurl, libfcgi, libhttpparser,
  2460. libminiupnpc, libopenssl, libpjsip, libss7, libssh2, libupnp
  2461. libupnpp, libuv, libvorbis, memcached, motion, musl, nodejs,
  2462. ntp, openblas, opencv3, openocd, opus-tools, patch, php,
  2463. pkgconf, postgresql, powerpc-utils, python-jsonschema,
  2464. python-webpy, qemu, qt5bsae, qt5script, qt5webkit, rapidjson,
  2465. rauc, sam-ba, samba4, sngrep, systemd, tremor, uboot-tools,
  2466. uclibc-ng-test, upmpdcli, wireshark, xerces, xterm, zstd
  2467. New packages: docker-proxy, python-functools32
  2468. Issues resolved (http://bugs.uclibc.org):
  2469. #10766: upmpdcli: Segmentation fault
  2470. #10776: ktap fails to build
  2471. #10846: error in compiling gnutls
  2472. #10856: openblas on qemu_x86_64_defconfig fails with "sgemm_..
  2473. 2018.02, Released March 4th, 2018
  2474. Fixes all over the tree.
  2475. Issues with systemd with a readonly rootfs and DBus fixed.
  2476. Instructure:
  2477. - check-uniq-files: fix Python 2.6 compatibility.
  2478. - dependencies.sh: check for external argparse module for
  2479. Python 2.6.
  2480. - Add infrastructure to detect and use a UTF-8 locale on the
  2481. host, needed by systemd.
  2482. Update/fixed packages: clamav, dash, dhcp, dovecot, efl,
  2483. ffmpeg, libv4l, mono, mosquitto, php, postgresql, qt,
  2484. scanpypi, sdl2, systemd, tor, tvheadend, uboot, wavpack
  2485. Issues resolved (http://bugs.uclibc.org):
  2486. #10831: qemu_x86_64_defconfig build fails on linux-headers..
  2487. 2018.02-rc3, Released February 27th, 2018
  2488. Fixes all over the tree.
  2489. check-bin-arch: skip /lib/modules to allow 32-bit userland
  2490. with 64bit kernel.
  2491. dependencies: Blacklist tar 1.30+ and build our own host-tar
  2492. if needed as tar 1.30+ changed the --numeric-owner output for
  2493. long path names. Build host-tar before other host-dependencies
  2494. as they need it to extract their source tarballs.
  2495. Update/fixed packages: asterisk, azmq, bluez5_utils, domoticz,
  2496. e2fsprogs, erlang, exim, glibc, gpsd, jq, libglib2, libvorbis,
  2497. mariadb, mbedtls, mesa3d, mesa3d-headers, mpv, patch, pcre2,
  2498. php, qt5, qt5multimedia, qt5wayland, qt5webengine, qt5webkit,
  2499. systemd, quagga, rustc, uboot, wireguard, zic, zlib-ng
  2500. Issues resolved (http://bugs.uclibc.org):
  2501. #10726: Current libglib2.mk creates broken libglib2 binary...
  2502. #10786: Linux fails to build unless make linux-menuconfig...
  2503. #10796: Cannot generate cpio image without selecting CON...
  2504. 2018.02-rc2, Released February 15th, 2018
  2505. Fixes all over the tree.
  2506. Dependencies: Ensure C++ support is available like for C
  2507. support for packages needing 32bit host support.
  2508. utils/genrandconfig: Check host dependencies for config.
  2509. Updated/fixed packages: busybox, dnsmasq, dropbear, ffmpeg,
  2510. glibc, keepalived, libcpprestsdk, libgpiod, libmaxminddb,
  2511. librsvg, libtasn1, libv4l, libxml2, lightning, ltp-testsuite,
  2512. mesa3d, mesa3d-demos, mesa3d-headers, nftables, open-lldp,
  2513. php, postgresql, python-crossbar, qt5, qt53d, qt5enginio,
  2514. qt5tools, qt5webengine, qt5webkit, rsync, rust-bin, rustc,
  2515. systemd
  2516. Issues resolved (http://bugs.uclibc.org):
  2517. #9781: ti-sgx-km build on kernel >4.1
  2518. #10141: Squashfs extended attribute failures
  2519. 2018.02-rc1, Released February 5th, 2018
  2520. The global source-check and per-package <pkg>-source-check
  2521. targets have been removed.
  2522. Architecture: Add x86 Silvermont variant. Add several new ARM
  2523. variants, rework MIPS NaN logic. Support mainline binutils/gcc
  2524. for ARC.
  2525. Toolchains: Linaro toolchains upgraded to 2017.11 release, ARC
  2526. external toolchains upgraded to arc-2017.09. Libatomic is now
  2527. also copied for external musl based toolchains.
  2528. Add binutils 2.30.x and switch to binutils 2.29.x by default.
  2529. Added hardening options to build with RELRO and FORTITY.
  2530. New defconfigs: Bananapi M64, FriendlyARM Nanopi A64 & NEO2,
  2531. imx6slevk, imx6sx-sdb, imx6ulevk, Olimex A64-OLinuXino,
  2532. Orangepi lite / pc plus / pc / prime / win / win plus / zero
  2533. plus2, Pine64, Solidrun MacchiatoBin. Sopine.
  2534. Add utils/diffconfig, a simple utility for comparing
  2535. configuration files - Adapted from the version in the
  2536. Linux kernel.
  2537. Infrastructure: Check that the same file is not touched by
  2538. multiple packages, as a preparation for toplevel parallel
  2539. builds.
  2540. Hashes for the license files for a large number of packages
  2541. have been added, ensuring that license changes will not be
  2542. missed when packages are bumped.
  2543. Fix build issue for autotools based packages checking for C++
  2544. support on toolchains without C++ support and on a distro
  2545. lacking /lib/cpp (E.G. Arch Linux).
  2546. Support for the meson build system.
  2547. Pie charts generated by 'graph-build' or 'graph-size' are now
  2548. sorted according to the size of each piece.
  2549. System: Only show getty options when busybox init or sysvinit
  2550. are used.
  2551. ARM-trusted-firmware: Support ATF bundled in U-Boot as
  2552. well as U-Boot bundled in ATF.
  2553. Zlib is now a virtual package, provided by either libzlib or
  2554. zlib-ng, similar to openssl.
  2555. Support for the Rust programming language.
  2556. New packages: aoetools, armbian-firmware, binaries-marvell,
  2557. brltty, cargo, cargo-bin, cups-filters, curlpp, daq,
  2558. flatbuffers, gconf, glorytun, gstreamer1-mm, imx-m4fwloader,
  2559. imx-gpu-g2d, json-for-modern-cpp, libcpprestsdk, libgta,
  2560. libostree, libupnp18, luadbi, luadbi-sqlite3, lua-utf8, lynx,
  2561. meson, mv-ddr-marvell, nilfs-utils, opentracing-cpp,
  2562. open-lldp, pimd, proj, python-flask-cors,
  2563. python-jaraco-classes, python-more-itertools, python-oauthlib,
  2564. python-raven, python-remi, python-requests-oauthlib,
  2565. python-schedule, python-secretstorage, python-see,
  2566. python-tabledata, python-txtorcon, python-xlib, qt5charts,
  2567. rtl8189fs, rtl8723bu, rust, rustc, rust-bin, rygel, safeclib,
  2568. solatus, tcf-agent, traceroute, waylandpp, wolfssl,
  2569. zisofs-tools, zlib-ng
  2570. Removed packages: eeprog
  2571. 2017.11.2, Released January 21st, 2018
  2572. Important / security related fixes.
  2573. External toolchain: libatomic is now also copied for musl
  2574. based toolchains.
  2575. nconfig: Fix for ncurses/ncursesw linking issue causing crashes.
  2576. System: Only show getty options when busybox init or sysvinit
  2577. are used.
  2578. Infrastructure: Fix build issue for autotools based packages
  2579. checking for C++ support on toolchains without C++ support and
  2580. on a distro lacking /lib/cpp (E.G. Arch Linux).
  2581. Pie charts generated by 'graph-build' or 'graph-size' are now
  2582. sorted according to the size of each piece.
  2583. Updated/fixed packages: asterisk, avahi, bind, busybox,
  2584. coreutils, eeprog, intel-microcode, iputils, irssi, kmsxx,
  2585. libiio, linux-firmware, lz4, mariadb, matchbox-lib, mcookie,
  2586. ntp, php, pound, rpcbind, tar, ti-cgt-pru, webkitgtk, xen,
  2587. xlib_libXpm
  2588. Issues resolved (http://bugs.buildroot.org):
  2589. #9996: lz4 package does not install lz4 binaries in target
  2590. #10176: Rsyslog's S01logging is deleted by Busybox.mk from...
  2591. #10216: package/x11r7/mcookie/mcookie.c:207: bad size ?
  2592. #10301: systemd/getty unused options
  2593. #10331: kmsxx, host installation fails with BR2_SHARED_...
  2594. #10556: Building ntp package with SSL library libressl...
  2595. #10641: avahi-autoipd not starting when using systemd-tmpfiles
  2596. 2017.11.1, Released December 31th, 2017
  2597. Important / security related fixes.
  2598. Updated/fixed packages: asterisk, checkpolicy, dhcp, flann,
  2599. gdb, glibc, heimdal, kodi-pvr-mediaportal-tvserver,
  2600. kodi-pvr-stalker, libcue, libopenssl, libpqxx, libsoxr,
  2601. linknx, linux-tools, lldpd, ltp-testsuite, mariadb, mfgtools,
  2602. nodejs, nut, pulseaudio, python-cffi, qemu, rsync, tor, uboot,
  2603. uboot-tools, vlc, webkitgtk, weston, wireguard, wireshark,
  2604. xenomai, xfsprogs
  2605. 2017.11, Released November 30, 2017
  2606. Fixes all over the tree.
  2607. Toolchain: Use github mirror for Glibc.
  2608. Defconfigs: Correct boot.cmd for bananapi-m1.
  2609. Makefiles: Workaround include order issues for certain make
  2610. versions by explicitly sorting the result of wildcard where it
  2611. matters.
  2612. Download: Ensure subversion runs in non-interactive mode.
  2613. Updated/fixed packages: asterisk, boost, chrony, dovecot,
  2614. dvb-apps, exim, feh, freerdp, fwup, google-breakpad, jose,
  2615. kvm-unit-test, lftp, libcurl, libevent, libfastjson, libpjsip,
  2616. libupnp, linphone, localedef, lttng-tools, mp4v2, mtools,
  2617. ndisc6, oracle-mysql, parted, pdbg, qt, qt5connectivity,
  2618. qt5declarative, qt5webkit, rauc, runc, samba4, shairport-sync,
  2619. systemd-bootchart, webkitgtk, wireguard, xlib_libXcursor,
  2620. xlib_libXfont, xlib_libXfont2,
  2621. Issues resolved (http://bugs.buildroot.org):
  2622. 10501: host-localedef fails to compile on Ubuntu 17.10
  2623. 10506: Changed kernel image type (e.g. zImage to uImage)...
  2624. 2017.11-rc2, Released November 13th, 2017
  2625. Fixes all over the tree.
  2626. Updated/fixed packages: collectd, ffmpeg, freerdp,
  2627. go-bootstrap, imagemagick, jimtcl, libpjsip, libplist, libuv,
  2628. mesa3d, nodejs, ntp, openjpeg, postgresql, python-numpy, ruby,
  2629. snmp++, usb_modeswitch, util-linux, vboot-utils, webkitgtk,
  2630. wireshark, wpa_supplicant, xapp_xdriinfo
  2631. Issues resolved (http://bugs.buildroot.org):
  2632. #10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  2633. #10491: Cannot output security warning when compiled with buildroot..
  2634. 2017.11-rc1, Released November 6th, 2017
  2635. Fixes all over the tree and new features.
  2636. Openssl is now a virtual package, which may be provided by
  2637. OpenSSL (now renamed to libopenssl) or LibreSSL.
  2638. libssh2: there is now an explicit choice of the backend to use
  2639. (mbedtls, gnutls or openssl). Previously, the choice was implicit
  2640. based on the TLS library that was selected. Now, it is possible to
  2641. choose the backend, which is important if several TLS libraries are
  2642. selected.
  2643. netsnmp: all MIB files are now installed, making the target filesystem a
  2644. bit bigger than before. To remove unneeded MIBS, you should use a
  2645. post-build script.
  2646. Toolchain: Linaro toolchains updated to 2017.08, ARC toolchain
  2647. updated to 2017.09, Glibc updated to 2.26, Glibc support for
  2648. ARCv2. The toolchain wrapper now handles SOURCE_DATE_EPOCH for
  2649. older (pre-gcc7.x) toolchains for BR2_REPRODUCIBLE.
  2650. New defconfigs: Atmel SAM45D27, Bananapi M1 and M2 Plus,
  2651. Engicam i.CoreM6 Qt5 configuration, i.MX6 sabreauto (mainline
  2652. kernel/u-boot), i.MX6Q sabresd Qt5 configuration, i.MX7d-pico,
  2653. QEMU ppc64le, Raspberry pi3 Qt5 webengine configuration,
  2654. Technologic TS-7680.
  2655. New packages: asterisk, azmq, bcg729, boinc, dahdi-linux,
  2656. dahdi-tools, freeswitch-mod-bcg729, fscryptctl, libb64,
  2657. libpri, libss7, lua-basexx, lua-compat53, lua-cqueues,
  2658. lua-curl, lua-datafile, lua-fifo, lua-httpd,
  2659. lua-lpeg-patterns, lua-markdown, lua-sailor, lua-value,
  2660. luksmeta, minetest, minetest-game, pdmenu, prosody,
  2661. python-aiocoap, python-automat, python-ibmiotf,
  2662. python-iso8601, python-m2r, python-simplesqlite,
  2663. python-websockets, python-xmltodict, qt5wayland, qt5webengine,
  2664. restorecond, selinux-python, semodule-utils, uhubctl,
  2665. wireguard, wsapi-fcgi, wsapi-xavante
  2666. Removed packages: aiccu, rfkill, sepolgen
  2667. Issues resolved (http://bugs.buildroot.org):
  2668. #10281: lsblk does not compile for util-linux
  2669. #10336: lttng compilation fails : linking error
  2670. #10351: glibc missing in rootfs
  2671. #10356: nfs-utils missing header
  2672. #10361: python3 python-config script generates invalid includes
  2673. #10366: dropbear download url has changed
  2674. #10391: WiringPi retrieves wrong (old) version
  2675. #10406: Beaglebone black: Buggy SGX driver version, swapped...
  2676. #10426: uboot-tools' fw_setenv does not update the redundant...
  2677. #10451: libpcap 1.8.x and 1.7x does not compile on PPC
  2678. 2017.08.2, Released November 28th, 2017
  2679. Important / security related fixes.
  2680. Qt: 5.6 version updated to 5.6.3.
  2681. Reproducible: Do not override SOURCE_DATE_EPOCH if already set
  2682. in the environment.
  2683. Makefiles: Workaround include order issues for certain make
  2684. versions by explicitly sorting the result of wildcard where it
  2685. matters.
  2686. Updated/fixed packages: apr, apr-util, arqp-standalone,
  2687. azure-iot-sdk-c, collectd, dvb-apps, ffmpeg, go-bootstrap,
  2688. google-breakpad, gstreamer, imagemagick, irssi, jimtcl,
  2689. kvm-unit-test, libcurl, libfastjson, libglib2, libidn,
  2690. libpjsip, libplist, localedef, lttng-tools, luajit, mesa3d,
  2691. moarvm, mp4v2, openssh, openssl, oracle-mysql, postgresql,
  2692. python3, python-pyqt5, qt, qt5base, qt5canvas3d,
  2693. qt5connectivity, qt5declarative, qt5engineio,
  2694. qt5graphicaleffects, qt5imageformats, qt5location,
  2695. qt5multimedia, qt5quickcontrols, qt5quickcontrols2, qt5script,
  2696. qt5sensors, qt5serialbus, qt5serialport, qt5svg, qt5tools,
  2697. qt5webchannel, qt5webkit, qt5websockets, qt5x11extras,
  2698. qt5xmlpatterns, quagga, redis, ruby, samba4, sdl2, snmppp,
  2699. swupdate, ti-gfx, uboot-tools, usb_modeswitch, vboot-utils,
  2700. webkitgtk, wget, wireshark, xapp_xdriinfo.
  2701. Issues resolved (http://bugs.buildroot.org):
  2702. 10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  2703. 10361: python3 python-config script generates invalid includes
  2704. 10501: host-localedef fails to compile on Ubuntu 17.10
  2705. 2017.08.1, Released October 23rd, 2017
  2706. Important / security related fixes.
  2707. Webkitgtk bumped to the 2.18.x series, fixing a large number
  2708. of security issues.
  2709. Defconfigs: galileo: fix ext4 related kernel config, bump
  2710. kernel for gcc 6.x compatibility, enable wchar support for
  2711. grub2. wandboard: correct rootfs offset
  2712. support: Ensure gzip compression level 6 is used for git
  2713. tarballs. check-bin-arch: Correctly handle (ignore) symbolic
  2714. links. check-rpath: Also handle PIE binaries
  2715. External toolchain: Correctly handle glibc Buildroot
  2716. toolchains built with merged /usr
  2717. musl: fix ARMv4 build with binutils 2.27.51+, fix for
  2718. CVE-2017-15650
  2719. Updated/fixed packages: apache, augeas, bind, bluez5_utils,
  2720. busybox, bzip2, cmake, dnsmasq, ejabberd, gcc, git, go, ffmpeg, file,
  2721. flashrom, gd, gdk-pixbug, gnupg2, hostapd, ifupdown-scripts,
  2722. imagemagick, iucode-tool, kernel-module-imx-gpu-viv, lame,
  2723. libarchive, libcurl, libffi, libidn, libmbim, libnspr, libnss,
  2724. libressl, librsync, libsoup, libxml2, libzip, mbedtls, musl,
  2725. netplug, nginx, openvpn, pkgconf, poppler, proxychains-ng,
  2726. qemu, qt, rpi-userland, syslog, ruby, samba4, softether,
  2727. sqlite, strongswan, subversion, supertuxkart, supervisor, tcpdump,
  2728. tor, unrar, urq, vboot-utils, webkitgtk, wpa_supplicant, xen,
  2729. xmlstarlet, xlib_libXfont, xlib_libXfont2,
  2730. xserver_xorg-server, zsh
  2731. 2017.08, Released September 1st, 2017
  2732. Minor fixes.
  2733. Toolchain: Don't allow internal toolchain builds for MIPS
  2734. M6201/P6600, as support for these are not yet in mainline GCC.
  2735. Updated/fixed packages: bcusdk, connman, dialog, dnsmasq,
  2736. gnupg, grub2, iostat, iucode-tool, libgcrypt, libkcapi,
  2737. libphidget, libv4l, linux-tools, mediastreamer, minidlna,
  2738. nss-pam-ldapd, nvidia-driver, qt-webkit-kiosk, rpcbind, squid,
  2739. transmission, vde2, vim
  2740. Updated/fixed defconfigs:
  2741. Removed packages: simicfs.
  2742. Issues resolved (http://bugs.buildroot.org):
  2743. #10261: Grub2 fails to build for x86_64
  2744. 2017.08-rc3, Released August 23rd, 2017
  2745. Fixes all over the tree.
  2746. Updated/fixed packages: alsa-lib, alsa-utils, cc-tool,
  2747. dbus-cpp, e2fsprogs, elf2flt, faad2, fakeroot, gcc, git, gpsd,
  2748. gst1-validate, kvmtool, libconfuse, libepoxy, librsync,
  2749. libspatialindex, libunwind, linux, linux-headers, lua,
  2750. mariadb, mesa3d, mtd, openocd, python3, syslinux, sysvinit,
  2751. whois, xen, zmqpp.
  2752. Updated/fixed defconfigs: ci20, socrates_cyclone5,
  2753. toradex_apalis_imx6.
  2754. Removed defconfig: Armadeus APF9328.
  2755. skeleton-* packages introduced in -rc1 have been renamed to
  2756. skeleton-init-* instead.
  2757. Issues resolved (http://bugs.buildroot.org):
  2758. #10141: Squashfs extended attribute failures
  2759. 2017.08-rc2, Released August 11th, 2017
  2760. Fixes all over the tree.
  2761. Updated/fixed packages: bind, dbus, erlang-p1-xml, faad2,
  2762. ficl, gcc, gdb, glibc, jack2, libcurl, linux, linux-headers,
  2763. lua, mutt, nvme, qt5base, skeleton-common, snappy, stella,
  2764. swupdate, uclibc, valgrind, webkitgtk.
  2765. Updated/fixed defconfigs: beaglebone_qt5, minnowboard_max,
  2766. nanopi_m1{, _plus}, olimex_a20_olinuxino_lime, qemu_sparc,
  2767. qemu_sparc64.
  2768. The cmake-package infrastructure for host packages has been
  2769. fixed to not incorrectly detect target packages through
  2770. pkg-config.
  2771. Issues resolved (http://bugs.buildroot.org):
  2772. #9926: systemd-resolved.service: Failed at step NAMESPACE (systemd 233)
  2773. #10021: libqeglfs-viv-integration.so file is missing for qt5 on armv7
  2774. #10026: lua-5.3.4: fix lua linker error in swupdate
  2775. #10146: package/skeleton-common fix recursive variable
  2776. #10156: glibc compilation fails for X86 32bits (i386)
  2777. #10201: toolchain-wrapper.c:192: (error) Memory leak:
  2778. #10221: Buildroot Support
  2779. 2017.08-rc1, Released August 2nd, 2017
  2780. Infrastructure:
  2781. - The skeleton package has been split into multiple packages:
  2782. skeleton-sysv (when Busybox or SysV init are used),
  2783. skeleton-systemd (when systemd is used), skeleton-none (when
  2784. no init system is used) and skeleton-custom (when a custom
  2785. skeleton is used). Those packages, except skeleton-custom,
  2786. share common logic and data in a new package called
  2787. skeleton-common. The skeleton package becomes a virtual
  2788. package. This change allows to generate a filesystem that is
  2789. compliant with systemd expectations.
  2790. - Support for using a read-only filesystem with systemd has
  2791. been fixed.
  2792. - Major revamp of the gettext handling, with user-visible
  2793. effect:
  2794. - prior to this revamp, when BR2_ENABLE_LOCALE=y, each
  2795. package could decide to enable or not NLS support. When
  2796. BR2_ENABLE_LOCALE was disabled, NLS support was forced off
  2797. by passing --disable-nls to packages.
  2798. - after this revamp, a new BR2_SYSTEM_ENABLE_NLS option
  2799. controls whether NLS support should be enabled or not in
  2800. packages. This option defaults to disabled, which means
  2801. that now, NLS support is by default disabled in all
  2802. packages.
  2803. Therefore, if you need NLS support in packages, you must now
  2804. explicitly enable the BR2_SYSTEM_ENABLE_NLS option.
  2805. - The host directory no longer has a usr/ component. This
  2806. makes it much more natural to use that directory as an
  2807. externally used toolchain. For compatibility with existing
  2808. scripts, a usr -> . link is still added.
  2809. - Hashes are now checked on tarballs by Buildroot when a
  2810. package is sourced from a Git repository.
  2811. - Patches are no longer being downloaded from Github, since
  2812. auto-generated patches could change over time, and break
  2813. hashes. All patches that were downloaded from Github are now
  2814. stored in their respective package directories.
  2815. - Hash files in packages can now contain hashes for the
  2816. license files contained in the package source code. This
  2817. allows to detect changes in such license files.
  2818. - Binaries in $(TARGET_DIR) are now cleaned up from invalid
  2819. RPATHs at the end of the build.
  2820. - A new "make sdk" target prepares $(HOST_DIR) to be
  2821. relocatable: turns RPATHs in host binaries into relocatable
  2822. ones, removes bogus RPATHs from staging binaries/libraries,
  2823. and provides a relocate-sdk script that can be executed to
  2824. relocate the SDK after installation.
  2825. - Addition of utils/genrandconfig which generates a random
  2826. configuration based on a set of pre-defined toolchain
  2827. configurations (support/config-fragments/autobuild/) and a
  2828. random selection of packages. It is now used by the
  2829. autobuilders to generate the random configurations.
  2830. Filesystems:
  2831. - ext2/3/4 filesystems are now generated using mkfs.ext from
  2832. e2fsprogs instead of using genext2fs.
  2833. Architecture:
  2834. - Addition of support for ARM big.LITTLE variants
  2835. - Improved MIPS support, with options to select NaN encoding
  2836. and FP32 mode.
  2837. Toolchain:
  2838. - Switch to gcc 6.x as the default gcc version, add support
  2839. for gcc 7.x, remove support for gcc 4.8
  2840. - Switch to binutils 2.28 as the default binutils version, add
  2841. support for binutils 2.29, remove support for binutils 2.26
  2842. - Support added for gdb 8.0
  2843. - uClibc-ng bumped to 1.0.26
  2844. - CodeSourcery toolchains for x86 and SuperH have been
  2845. removed, they were using a too old glibc version
  2846. (2.17). External toolchains with glibc 2.17 or earlier are
  2847. no longer supported.
  2848. - The version selection in the glibc package has been
  2849. removed. Like musl and uClibc-ng, we now use the latest
  2850. glibc version.
  2851. - Improved support for Xtensa toolchain overlays, which can
  2852. now be downloaded.
  2853. Tools:
  2854. - Numerous improvements to the runtime test infrastructure
  2855. - Tests are now executed by Gitlab CI on a regular basis
  2856. - Tools that are directly useful to the user have been moved
  2857. from support/scripts/ to utils/: brmake, check-package,
  2858. get-developers, scancpan, scanpipy, size-stats-compare,
  2859. test-pkg.
  2860. New defconfigs: A13 Olinuxino, Engicam platforms (i.CoreM6
  2861. Solo/Dual/DualLite/Quad, RQS SOM, GEAM6UL SOM, Is.IoT MX6UL
  2862. SOM), Nano Pi M1 (Plus), OrangePi Zero and Plus.
  2863. New packages: azure-iot-sdk-c, cracklib, dt-utils, easy-rsa,
  2864. erlang-jiffy, erlang-p1-oauth2, erlang-p1-xmpp,
  2865. ifupdown-scripts, irrlicht, kodi-inputstream-adaptive,
  2866. kodi-inputstream-rtmp, kvazaar, let-me-create, libloki,
  2867. libpwquality, libressl, libspatialindex, libva-utils,
  2868. linuxconsoletools, linuxptp, luaossl, lua-sdl2, lua-stdlib,
  2869. lsscsi, paxtest, pcre2, pixz, python-asn1crypto,
  2870. python-backports-shutil-get-terminal-size, python-bcrypt,
  2871. python-cheroot, python-h2, python-hpack, python-hyperframe,
  2872. python-hyperlink, python-ipython-genutils, python-pathlib2,
  2873. python-pickleshare, python-priority, python-portend,
  2874. python-scandir, python-systemd, python-tempora,
  2875. python-traitlets, python-typepy, qt5virtualkeyboard,
  2876. ratpoison, rauc, refpolicy, rhash, sdl2_mixer, sdl2_net,
  2877. xr819-xradio, zstd
  2878. Removed packages: cloog, input-tools, mke2img
  2879. Issues resolved (http://bugs.buildroot.org):
  2880. #7892: systemd-journald is broken
  2881. #9341: avahi-utils does not compile with uClibc + libglib2
  2882. #9441: Link BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY to
  2883. BR2_ENABLE_DEBUG
  2884. #9746: ext4 image generated by Buildroot is not working
  2885. properly with U-Boot
  2886. #9886: Build fails with "unexpected EOF while looking for
  2887. matching `"'" if PATH contains a newline
  2888. #9891: parted 3.1 => 3.2?
  2889. #9911: qt5 does not build on sparc
  2890. #9916: qt5 does not build on
  2891. arm-buildroot-linux-uclibcgnueabihf for ARMv8 cores
  2892. #9936: Host QEMU does not build with SDL support because of
  2893. pkg-config
  2894. #9941: nodejs option disappears for arm
  2895. #9951: SCANCPAN failure
  2896. #9966: util-linux-2.30/.stamp_built' failed
  2897. #9976: License file for package 'rtl8821au' incorrect
  2898. #9991: SGX Error implicit declaration of function
  2899. ‘dmac_map_area’
  2900. #10011: wget does not work from Buildroot
  2901. #10036: Buildroot builds Raspbian Jessie headless image
  2902. presenting incorrect prompt
  2903. #10051: make: *** No rule to make target
  2904. 'raspberrpi3_defconfig'. Stop reported with Buildroot
  2905. v2017.05.1
  2906. #10056: No .config file was produced in /buildroot folder
  2907. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer
  2908. failure
  2909. #10071: fakeroot: replace hard-coded paths in post install
  2910. #10076: Makefile:4113: recipe for target 'all-gcc' failed
  2911. #10091: gcc7.1 does not build with graphite support due to old
  2912. isl
  2913. #10121: webkit without the multimedia option causes build
  2914. error
  2915. 2017.05.2, Released July 27th, 2017
  2916. Important / security related fixes.
  2917. Webkitgtk bumped to the 2.16.x series, fixing a large number
  2918. of security issues.
  2919. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  2920. which default to PIE mode.
  2921. Updated/fixed packages: aespipe, apache, bind, binutils,
  2922. busybox, ccache, collectd, dieharder, efibootmgr, efivar,
  2923. expat, ffmpeg, gcc, heimdal, iproute2, irssi, libglib2,
  2924. libmemcached, libosip2, libtirpc, libxml-parser-perl,
  2925. linux-fusion, linux-zigbee, mpg123, orc, pcre, php, protobuf,
  2926. pulseaudio, python-setproctitle, qt5base, rpi-firmware,
  2927. samba4, syslinux, systemd, spice, tcpdump, tiff, uboot-tools,
  2928. webkitgtk, x265, xserver_xorg-server, xvisor
  2929. Issues resolved (http://bugs.buildroot.org):
  2930. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  2931. 2017.05.1, Released July 4th, 2017
  2932. Important / security related fixes.
  2933. Update support/scripts/scancpan to use METACPAN v1 API as v0
  2934. has been shutdown.
  2935. Update support/scripts/mkusers to handle setups where
  2936. /etc/shadow is a symlink.
  2937. External toolchain: Don't create musl dynamic loader symlink
  2938. for static builds.
  2939. Setlocalversion: Correct detection of mercurial revisions for
  2940. non-tagged versions.
  2941. Defconfigs: at91sam9x5ek_mmc: workaround boot rom issue.
  2942. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  2943. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, glmark2,
  2944. gnutls, gst1-plugins-bad, imagemagick, imx-uuc, intltool,
  2945. iperf, ipsec-tools, irssi, kmod, libcurl, libgcrypt, libmad,
  2946. libnl, lugaro, mosquitto, mpg123, ncurses, nodejs, ntp,
  2947. openssh, openvpn, pngquant, python-simplegeneric, qt5base,
  2948. qt5multimedia, rtl8821au, socat, spice, systemd, tor, trinity,
  2949. tslib, vlc, x264, xen, xlib_libxshmfenc, xserver_xorg-server
  2950. Issues resolved (http://bugs.buildroot.org):
  2951. #9976: License file for package 'rtl8821au' incorrect
  2952. 2017.05, Released May 31st, 2017
  2953. Minor fixes.
  2954. External toolchain: musl dynamic linker symlink for mips-sf
  2955. corrected.
  2956. Updated/fixed packages: agentpp, bash, exim, hans, madplay,
  2957. qpid-proton, rtl8188eu, snmppp, stm32flash, strongswan, sudo,
  2958. xen
  2959. Issues resolved (http://bugs.buildroot.org):
  2960. #9906: genimage: Disk full
  2961. 2017.05-rc3, Released May 30th, 2017
  2962. Fixes all over the tree.
  2963. ARC toolchain bumped to 2017.03
  2964. Runtime testing improvements and cleanups.
  2965. Updated/fixed packages: acpica, armadillo, audiofile, c-icap,
  2966. cppcms, dhcp, docker-engine, dropbear, elfutils, erlang,
  2967. fbgrab, ffmpeg, flashrom, ftop, gnutls, google-breakpad,
  2968. keepalived, kodi, libcdio, libepoxy, libev, libminiupnpc,
  2969. libqmi, libtasn1, libv4l, mariadb, mono, mosh, mosquitto,
  2970. mxml, ntp, opencv, openpowerlink, oracle-mysql, popt,
  2971. pulseview, python-enum34, rabbitmq-c, redis, samba4, stella,
  2972. xen
  2973. Removed packages: firejail, ola
  2974. Issues resolved (http://bugs.buildroot.org):
  2975. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  2976. #9876: aarch64 support with gcc 4.8 toolchain
  2977. #9896: host-gcc-initial error downloading because incorrect URL
  2978. 2017.05-rc2, Released May 17th, 2017
  2979. Fixes all over the tree.
  2980. ARC toolchain bumped to 2017.03-rc2
  2981. Updated/fixed packages: bluez_utils, boost, clamav, daemon,
  2982. efibootmgr, efl, espeak, expedite, faketime, ffmpeg, fxload,
  2983. git, gpsd, kvm-unit-tests, libcdio, libv4l, lua, mke2img,
  2984. mpir, mpv, odroid-scripts, openblas, opencv3, openvpn, php,
  2985. postgresql, protobuf, qt5declarative, qwt, radvd, rpcbind,
  2986. rtmpdump, strongswan, sudo, ltp-testsuite, uclibc-ng-test,
  2987. vlc, x11vnc, xfsprogs
  2988. Issues resolved (http://bugs.buildroot.org):
  2989. #9796: source-check broken for Git downloads
  2990. #9866: BASE_DIR usage
  2991. 2017.05-rc1, Released May 8th, 2017
  2992. Fixes all over the tree and new features.
  2993. Infrastructure:
  2994. - Installed binaries are now checked for correct architecture
  2995. to catch natively built binaries or binaries built for other
  2996. architecture variants.
  2997. - Luarocks infrastructure improvements to extraction handling,
  2998. support for upstream name != Buildroot package name.
  2999. - 'make printvars' output format has changed to make it easier
  3000. to use in scripts. It now has options to quote the variables
  3001. and to show the expanded/unexpanded values.
  3002. - Automatic ext2 rootfs size calculation has been removed. The
  3003. logic was not working working reliable in all setups as it
  3004. depends on the host filesystem behaviour, so instead now the
  3005. size has to be specified explicitly (defaults to 60MB).
  3006. - The git download infrastructure now ensures that GNU format
  3007. tar files are created.
  3008. - Fixed a variable clashing issue in the mkusers script with
  3009. internal bash variables.
  3010. - Fakeroot now links against libacl to fix issues on
  3011. distributions using acls.
  3012. - Correct permissions for /dev/pts/ptmx when systemd is used
  3013. with recent glibc versions.
  3014. - br2-external: Improve error reporting.
  3015. - A wrapper script for genimage has been added in
  3016. support/scripts/genimage.sh for easy use of genimage from
  3017. post-image scripts.
  3018. - A script to check for common style issues in new packages
  3019. before submitting has been added in support/scripts/check-package
  3020. - Defconfigs are now tested by gitlab-CI instead of Travis:
  3021. https://gitlab.com/buildroot.org/buildroot
  3022. - Infrastructure for runtime testing has been added to
  3023. support/testing
  3024. Toolchain:
  3025. - External linaro toolchains updated to 2017.02, ARC toolchain
  3026. updated to 2017.03-rc1, NIOSII CodeSourcery to 2017.05
  3027. - A number of fixes and improvements to the external toolchain
  3028. handling, including C library detection, multilib and ld.so
  3029. handling
  3030. - Glibc 2.25 and uClibc-ng 1.0.24 added, wordexp support enabled
  3031. for uClibc-ng
  3032. - Binutils 2.28 added and default changed to 2.27
  3033. Architectures:
  3034. - Support for the C-SKY architecture has been added.
  3035. License handling:
  3036. - The package license markings for legal info now uses the
  3037. SPDX short identifiers for the license string where possible.
  3038. - License info has been improved / added for a number of packages.
  3039. Misc:
  3040. - Cmake 3.7.x installed on the host is no longer ignored as a
  3041. workaround for the RPATH issues has been implemented.
  3042. - Docker-engine can now be built statically on an otherwise
  3043. dynamic linked build for docker-in-docker setups.
  3044. - U-Boot now supports out-of-tree device trees, similar to
  3045. Linux
  3046. - Nodejs 0.10.x support (and with it, support for <ARMv6) has
  3047. been removed as this is now EOL upstream.
  3048. New defconfigs: AT91sam9x5ek dev/mmc/mmc-dev, banana pro,
  3049. Nationalchip gx6605s, MIPS creator ci40, nexbox a95x, 64bit
  3050. defconfig for raspberry pi 3, stm32f429-disc1.
  3051. The raspberry pi zero-w and rpi3 compute module are now also
  3052. supported by the rpi0 / rpi3 defconfigs, beaglebone green is
  3053. supported by the beaglebone defconfig.
  3054. Removed defconfig: minnowboard, via imx6 vab820, altera
  3055. socdk/sockit
  3056. New packages: arp-scan, atest, augeas, bluez-tools, daemon,
  3057. dc3dd, dieharder, execline, fmt, ghostscript, gqrx,
  3058. gst1-vaapi, jo, keepalived, kmscube, kodi-jsonschemabuilder,
  3059. kodi-skin-confluence, kodi-texturepacker, lensfun, leptonica,
  3060. libbson, libcsv, libgphoto2, libkcapi, libmaxminddb,
  3061. libmediaart, libnpth, libscrypt, lua-bit32, lua-resty-http,
  3062. lugaru, memtool, mpir, nanomsg, physfs, phytool, pngquant,
  3063. python-decorator, python-simplegeneric,
  3064. python-sortedcontainers, rpi-bt-firmware, rpi-wifi-firmware,
  3065. s6, s6-dns, s6-linux-init, s6-linux-utils, s6-networking,
  3066. s6-portable-utils, s6-rc, supertux, tesseract-ocr,
  3067. uccp420wlan, wilink-bt-firmware
  3068. Broken packages: ola
  3069. Removed packages: cosmo, kodi-visualisation-fountain,
  3070. polarssl, portmap, xdriver_xf86-video-glide,
  3071. xdriver_xf86-video-v4l, xdriver_xf86-video-wsfb
  3072. Issues resolved (http://bugs.buildroot.org):
  3073. #8831: image generation fails on host ZFS due to "no free space"
  3074. #9436: e2fsprogs remove busybox applets even of unselected e2fs..
  3075. #9456: mkusers script bash errors
  3076. #9496: mke2img fails during build on ntfs-3g host partition
  3077. #9531: NPM fails to build embedded modules
  3078. #9596: KODI: --enable-lirc needs "HAVE_LIRC" compiler definition..
  3079. #9691: Wrong cryptsetup package include files location
  3080. #9696: Wrong cryptsetup package include files location
  3081. #9706: Can't download newer revisions of package from PyPI
  3082. #9711: Recent libCEC version bump seems to break kodi package
  3083. #9716: exit, shutdown, reboot from kodi
  3084. #9721: version 2017.02: no acceptable m4 could be found in $PATH
  3085. #9726: Raspberry Pi version B - Problems with UART speed in..
  3086. #9751: expat legal info - manifest.csv: GPLv2 Source site: MIT..
  3087. #9756: glibc fails to build on buildroot-sh4*-buildroot-linux-gnu
  3088. #9766: support/scripts/pkgutil.py conflicts with the pkgutil.py..
  3089. #9776: libubox build failed
  3090. #9791: Python searches for packages in the user site directory
  3091. #9806: libseccomp is not available when BR2_arm=y
  3092. #9826: post-build scritp - symlinks created in post-build script..
  3093. #9836: triggerhappy: systemd unit broken
  3094. #9846: musl libc not installed correctly in target folder
  3095. #9856: build libubox failed on ubuntu 17.04 64bit
  3096. 2017.02.11, Released April 11th, 2018
  3097. Important / security related fixes.
  3098. dependencies: Blacklist tar 1.30+ and build our own host-tar
  3099. if needed as tar 1.30+ changed the --numeric-owner output for
  3100. long path names. Build host-tar before other host-dependencies
  3101. as they need it to extract their source tarballs.
  3102. Updated/fixed packages: apache, busybox, clamav, dhcp,
  3103. dnsmasq, dovecot, exim, imagemagick, irssi, jq, libcurl,
  3104. libpjsip, librsvg, libtasn1, libvorbis, libxml2, lz4, mariadb,
  3105. mbedtls, mosquitto, ntp, openblas, opencv3, openssl, patch,
  3106. postgresql, python-webpy, qt53d, qt5tools, quagga, rsync,
  3107. samba4, sngrep, tremor, wavpack, wireshark, xerces, xterm
  3108. Issues resolved (http://bugs.uclibc.org):
  3109. #10856: openblas on qemu_x86_64_defconfig fails with "sgemm_..
  3110. 2017.02.10, Released January 31st, 2018
  3111. Important / security related fixes.
  3112. nconfig: Fix for ncurses/ncursesw linking issue causing crashes.
  3113. System: Only show getty options when busybox init or sysvinit
  3114. are used.
  3115. Infrastructure: Fix build issue for autotools based packages
  3116. checking for C++ support on toolchains without C++ support and
  3117. on a distro lacking /lib/cpp (E.G. Arch Linux).
  3118. Updated/fixed packages: avahi, berkeleydb, bind, busybox,
  3119. ccache, clamav, coreutils, dovecot, eeprog, eudev, fis,
  3120. intel-microcode, iputils, irssi, kmsxx, libcurl, liberation,
  3121. libiio, lz4, mariadb, matchbox-lib, mcookie, openocd, php,
  3122. pound, rpcbind, squid, tar, ti-cgt-pru, transmission,
  3123. util-linux, webkitgtk, wireshark, xen
  3124. Issues resolved (http://bugs.buildroot.org):
  3125. #9996: lz4 package does not install lz4 binaries in target
  3126. #10176: Rsyslog's S01logging is deleted by Busybox.mk from...
  3127. #10216: package/x11r7/mcookie/mcookie.c:207: bad size ?
  3128. #10301: systemd/getty unused options
  3129. #10331: kmsxx, host installation fails with BR2_SHARED_...
  3130. #10536: Finding non-relative paths in the ccache
  3131. #10641: avahi-autoipd not starting when using systemd-tmpfiles
  3132. 2017.02.9, Released January 1st, 2018
  3133. Important / security related fixes.
  3134. Fix divide by zero issue in size-stats script.
  3135. Fix makefile include ordering issue with certain make versions
  3136. in the external toolchain handling.
  3137. Updated/fixed packages: dhcp, exim, flann, gdb, heimdal,
  3138. libcue, libcurl, libevent, libpqxx, libsoxr, linphone, lldpd,
  3139. mariadb, mfgtools, mtools, nodejs, nut, openssl, rsync,
  3140. samba4, tor, vlc, webkitgtk, wireshark, xfsprogs,
  3141. xlib_libXcursor, xlib_libXfont, xlib_libXfont2
  3142. 2017.02.8, Released November 27th, 2017
  3143. Important / security related fixes.
  3144. Qt: 5.6 version updated to 5.6.3.
  3145. Reproducible: Do not override SOURCE_DATE_EPOCH if already set
  3146. in the environment.
  3147. Updated/fixed packages: apr, apr-util, arqp-standalone,
  3148. collectd, dvb-apps, ffmpeg, google-breakpad, gstreamer,
  3149. imagemagick, libfastjson, libglib2, libpjsip, libplist,
  3150. localedef, luajit, mesa3d, openssh, openssl, postgresql,
  3151. python3, python-pyqt5, qt5base, qt5canvas3d, qt5connectivity,
  3152. qt5declarative, qt5engineio, qt5graphicaleffects,
  3153. qt5imageformats, qt5location, qt5multimedia, qt5quickcontrols,
  3154. qt5quickcontrols2, qt5script, qt5sensors, qt5serialbus,
  3155. qt5serialport, qt5svg, qt5tools, qt5webchannel, qt5webkit,
  3156. qt5websockets, qt5x11extras, qt5xmlpatterns, quagga, ruby,
  3157. samba4, snmppp, ti-gfx, vboot-utils, webkitgtk, wireshark,
  3158. xapp_xdriinfo.
  3159. Issues resolved (http://bugs.buildroot.org):
  3160. 10326: mesa3d package fails to build when BR2_SHARED_STATIC_LIBS=y
  3161. 10361: python3 python-config script generates invalid includes
  3162. 10501: host-localedef fails to compile on Ubuntu 17.10
  3163. 2017.02.7, Released October 28th, 2017
  3164. Important / security related fixes.
  3165. Webkitgtk bumped to the 2.18.x series, fixing a large number
  3166. of security issues.
  3167. Defconfigs: wandboard: Correct rootfs offset
  3168. Toolchain: Linaro toolchains updated to 2017.08 release,
  3169. fixing a number of issues. Musl: fix for CVE-2017-15650.
  3170. Updated/fixed packages: busybox, bzip2, dnsmasq, git, go,
  3171. hostapd, irssi, iucode-tool, lame, libcurl, libffi, libnspr,
  3172. libnss, nodejs, openssh, openvpn, qemu, qt, redis, sdl2,
  3173. webkitgtk, wget, wpa_supplicant, xen, xlib_libXfont,
  3174. xlib_libXfont2, xserver_xorg-server
  3175. 2017.02.6, Released September 24th, 2017
  3176. Important / security related fixes.
  3177. Cmake: Ensure correct pkg-config is used when building host
  3178. packages
  3179. fs/iso9660: Ensure files from earlier builds are not included.
  3180. Updated/fixed packages: apache, bcusdk, bind, binutils,
  3181. bluez5_utils, botan, cmake, connman, dbus, dialog, e2fsprogs,
  3182. faad2, fakeroot, ffmpeg, file, flashrom, gcc, gd, gdb,
  3183. gdk-pixbuf, git, gnupg, gpsd, grub2, gst1-plugins-bad,
  3184. imagemagick, iostat, iucode-tool, jack2, libarchive, libcurl,
  3185. libgcrypt, libidn, libphidget, librsync, librsvg, libsoup,
  3186. libxml2, linux-tools, lua, mariadb, mbedtls, mediastreamer,
  3187. minidlna, netplug, nss-pam-ldapd, nvidia-driver, openjpeg,
  3188. postgresql, proxychains-ng, python-libconfig,
  3189. python-service-identity, qt, rpcbind, ruby, samba4, squashfs,
  3190. squid, strongswan, subversion, supervisor, sysvinit, tcpdump,
  3191. tor, transmission, unrar, valgrind, vim, webkitgtk, whois,
  3192. xen, zmqpp
  3193. Issues resolved (http://bugs.buildroot.org):
  3194. #10141: Squashfs extended attribute failures
  3195. #10261: Grub2 fails to build for x86_64
  3196. #10276: BR2_PACKAGE_LINUX_TOOLS_GPIO fails for MIPS with...
  3197. 2017.02.5, Released July 27th, 2017
  3198. Important / security related fixes.
  3199. Webkitgtk bumped to the 2.16.x series, fixing a large number
  3200. of security issues.
  3201. host-aespipe compile fix for Debian/Gentoo/Ubuntu toolchains
  3202. which default to PIE mode.
  3203. Updated/fixed packages: aespipe, apache, bind, binutils,
  3204. busybox, ccache, collectd, efibootmgr, efivar, expat, ffmpeg,
  3205. gcc, heimdal, iproute2, irssi, libglib2, libmemcached,
  3206. libosip2, libtirpc, libxml-parser-perl, linux-fusion,
  3207. linux-zigbee, mpg123, nodejs, orc, pcre, php, pulseaudio,
  3208. python-setproctitle, qt5base, rpi-firmware, samba4, syslinux,
  3209. systemd, spice, tcpdump, tiff, webkitgtk, x265, xen,
  3210. xserver_xorg-server, xvisor
  3211. Issues resolved (http://bugs.buildroot.org):
  3212. #10061: gcc5.4 buildroot toolchain for powerpc libsanitizer...
  3213. 2017.02.4, Released July 4th, 2017
  3214. Important / security related fixes.
  3215. Update support/scripts/scancpan to use METACPAN v1 API as v0
  3216. has been shutdown.
  3217. Update support/scripts/mkusers to handle setups where
  3218. /etc/shadow is a symlink.
  3219. External toolchain: Don't create musl dynamic loader symlink
  3220. for static builds.
  3221. Setlocalversion: Correct detection of mercurial revisions for
  3222. non-tagged versions.
  3223. Updated/fixed packages: apache, automake, bind, botan, c-ares,
  3224. dhcp, expat, fcgiwrap, gcc, gdb, gesftpserver, glibc, gnutls,
  3225. gst1-plugins-bad, imagemagick, imx-uuc, intltool, iperf,
  3226. ipsec-tools, irssi, libgcrypt, libmad, libnl, mosquitto,
  3227. mpg123, ncurses, nodejs, ntp, openssh, openvpn, qt5base,
  3228. qt5multimedia, rtl8821au, socat, spice, systemd, tor, tslib,
  3229. vlc, x264, xserver_xorg-server
  3230. Issues resolved (http://bugs.buildroot.org):
  3231. #9976: License file for package 'rtl8821au' incorrect
  3232. 2017.02.3, Released June 2nd, 2017
  3233. Important / security related fixes.
  3234. Download: <pkg>-source-check fixed for packages from git.
  3235. External toolchain: musl dynamic linker symlink for mips-sf
  3236. corrected.
  3237. Updated/fixed packages: armadillo, audiofile, bash,
  3238. bluez_utils, cppcms, dbus, dhcp, dropbear, efibootmgr, efl,
  3239. elfutils, faketime, fbgrab, flashrom, ftop, gdb, git,
  3240. google-breakpad, gpsd, hans, kvm-unit-tests, kyua, libev,
  3241. libmicrohttpd, libminiupnpc, libtasn1, libubox, ltp-testsuite,
  3242. lua, madplay, mariadb, mono, mosquitto, mxml, ntp,
  3243. nvidia-driver, openblas, openvpn, oracle-mysql, picocom, popt,
  3244. postgresql, pulseview, qt5base, qwt, rabbitmq-c, redis,
  3245. rpcbind, rtmpdump, samba4, strongswan, sudo, vlc
  3246. Issues resolved (http://bugs.buildroot.org):
  3247. #9796: source-check broken for Git downloads
  3248. #9871: fbgrab 1.3 won't build with BR2_REPRODUCIBLE set
  3249. 2017.02.2, Released May 1st, 2017
  3250. Important / security related fixes.
  3251. Use HTTPS for the Codesourcery external toolchains as the HTTP
  3252. URLs no longer work.
  3253. Updated/fixed packages: bind, busybox, dovecot, freetype,
  3254. ghostscript, glibc, granite, hiredis, icu, imagemagick,
  3255. gst-plugins-base, gst1-plugins-base, libcroco, libcurl, libnl,
  3256. libnspr, libnss, libsamplerate, libsndfile, libunwind,
  3257. minicom, mplayer, mpv, nodejs, python-django, python-pyyaml,
  3258. python-web2py, samba4, syslinux, systemd, tiff, trinity,
  3259. uboot, wireshark, xen
  3260. Issues resolved (http://bugs.buildroot.org):
  3261. #9791: Python searches for packages in the user site directory
  3262. 2017.02.1, Released April 4th, 2017
  3263. Important / security related fixes.
  3264. Fix a variable clashing issue in the mkusers script with
  3265. internal bash variables.
  3266. Improve external toolchain version detection.
  3267. Correct permissions for /dev/pts/ptmx when systemd is used
  3268. with recent glibc versions.
  3269. Fix python module name clash for graph-depends.
  3270. Fakeroot now links against libacl to fix issues on
  3271. distributions using acls.
  3272. Ensure that the git download infrastructure creates GNU format
  3273. tar files.
  3274. br2-external: Improve error reporting.
  3275. Updated/fixed packages: acl, apr, audiofile, busybox, cairo,
  3276. dbus-cpp, dbus-glib, dbus-triggerd, domoticz, elfutils,
  3277. fakeroot, filemq, fmc, gdb, git, gnutls, gst-ffmpeg,
  3278. gst1-plygins-bad, harfbuzz, htop, imagemagick, jasper, libcec,
  3279. libiio, libplatform, librsvg, libselinux, libsidplay2, libsoc,
  3280. libwebsockets, libxkbcommon, linux-firmware, logrotate,
  3281. lpt-testsuite, lttng-libust, mariadb, mbedtls, memcached,
  3282. mesa3d, mpd, mplayer, nbd, ncftp, ntp, openssh, opentyrian,
  3283. pcre, perl-gd, python, qt5base, rpi-userland, rpm, samba4,
  3284. skalibs, slang, sngrep, squashfs, syslog-ng, taglib,
  3285. tcpreplay, tor, upmpdcli, wget, wireshark,
  3286. xdriver_xf86-video-vmware, xlib_libXv, zmqpp
  3287. Issues resolved (http://bugs.buildroot.org):
  3288. #9456: mkusers script bash errors
  3289. 2017.02, Released February 28th, 2017
  3290. Minor fixes, mainly fixing autobuilder issues.
  3291. Don't use cmake 3.7.x from the build host as it is also
  3292. affected by the RPATH handling issues, and instead build our
  3293. own if needed.
  3294. Updated/fixed packages: assimp, classpath, genimage, mplayer,
  3295. mpv, openocd, python-libconfig, qt5base, qt5quickcontrols,
  3296. vlc, xterm
  3297. 2017.02-rc3, Released February 26th, 2017
  3298. Fixes all over the tree.
  3299. Cmake reverted to version 3.6.3 to workaround regressions
  3300. related to RPATH handling.
  3301. Updated/fixed packages: bctoolbox, berkeleydb, binutils,
  3302. btrfs-progs, classpath, directfb, glibc, gstreamer1,
  3303. gst1-plugins-{base,good,bad,ugly}, gst1-libav,
  3304. gst1-rtsp-server, gst1-validate, gst-omx, htop, libcurl,
  3305. libepoxy, libimxvpuapi, libpcap, libuv, ncurses, openssh,
  3306. oracle-mysql, poco, python, qt5base, qt5webkit, sslh, synergy,
  3307. trousers, uclibc-ng-test, util-linux, vlc, xfsprogs
  3308. Issues resolved (http://bugs.buildroot.org):
  3309. #9251: Shared C++ libraries for Microblaze results in Segmentation...
  3310. #9456: mkusers script bash errors
  3311. #9506: Collectd 5.7.0 fails to build with libcrypt
  3312. #9581: VagrantFile provisioning step fails due to issue with grub-pc
  3313. #9586: usbmount: usbmount slows down the system... to a state of...
  3314. #9616: CMake host packages cannot provide CONF_ENV
  3315. #9641: Need raptor package installed in staging
  3316. #9671: stunnel build error
  3317. 2017.02-rc2, Released February 20th, 2017
  3318. Fixes all over the tree.
  3319. Support for SOURCE_DATE_EPOCH in the toolchain wrapper for
  3320. older gcc versions for reproducible builds has been
  3321. (temporarily) reverted because of licensing compatiblity
  3322. concerns.
  3323. Defconfigs: SD card generation fix for the Udoo Neo board
  3324. Infrastructure to handle .lz compressed tarballs added, and
  3325. affected packages updated to use it.
  3326. Updated/fixed packages: bctoolbox, bind, canelloni,
  3327. cbootimage, ccache, classpath, cups, dbus, ddrescue, directfb,
  3328. ed, erlang, gcc, gdb, glmark2, gstreamer, gstreamer1, hiredis,
  3329. kmod, kmsxx, lcdapi, libasplib, libgpiod, libnss, libraw,
  3330. libv4l, mesa3d-headers, mosquitto, mpd, mpv, musl, ntfs-3g,
  3331. ocrad, openswan, postgresql, qt5base, qt5quickcontrols, redis,
  3332. riemann-c-client, samba4, sunxi-mali, tcping, trousers,
  3333. uclibc, util-linux, vim, wavpack, wget, wiringpi, xfsprogs,
  3334. xserver_xorg-server
  3335. Issues resolved (http://bugs.buildroot.org):
  3336. #8941: Valgrind fails to build with stack protection turned on
  3337. #9291: perl: SysV message queues not configured, even if available
  3338. #9651: libxcb-1.12 built Error
  3339. #9656: util-linux: schedutils doesn't build on target w/o enabl...
  3340. #9666: qt5quickcontrols install fails
  3341. 2017.02-rc1, Released February 11th, 2017
  3342. Fixes all over the tree and new features.
  3343. Infrastructure:
  3344. - numerous improvements to support reproducible builds
  3345. - new waf-package package infrastructure to support packages
  3346. that use the Waf build system. 6 packages converted to
  3347. this infrastructure.
  3348. - add option <pkg>_PREFER_INSTALLER to the perl package
  3349. infrastructure
  3350. Architecture:
  3351. - add support for the OpenRISC CPU architecture
  3352. - merge description of the ARM and ARM64 options, and add
  3353. support for selecting a specific ARM64 core
  3354. Toolchain:
  3355. - major rework of the external toolchain support. It is now
  3356. split into several packages, one per external toolchain,
  3357. and a common infrastructure.
  3358. - important fix for musl to prevent a conflict between musl
  3359. and kernel headers (fixes the build of numerous packages
  3360. with musl)
  3361. - uClibc-ng bumped to 1.0.22, and therefore enable uClibc
  3362. for ARM64, mips32r6 and mips64r6
  3363. - add gdb 7.12.1, and switch to gdb 7.11 as the default
  3364. - Linaro toolchains updated to 2016.11, ARC toolchain
  3365. components updated to arc-2016.09, MIPS Codescape
  3366. toolchains bumped to 2016.05-06, CodeSourcery AMD64 and
  3367. NIOS2 toolchains bumped
  3368. - remove Analog Devices toolchain for the Blackfin
  3369. architecture, remove pre-built musl toolchains from
  3370. musl.codu.org
  3371. New defconfigs: Freescale i.MX23EVK, Qemu OpenRISC emulation,
  3372. Qemu NIOS2 emulation, Grinn chiliBoard, Freescale i.MX6Q
  3373. SabreSD, BeagleBoard X15, OrangePi One, ARC HS38 HAPS
  3374. New packages: angular-websocket, aubio, bctoolbox, darkhttpd,
  3375. ddrescue, easydbus, fakedate, git-crypt, hiredis, ifenslave,
  3376. jsmn, libgpiod, libgsm, linux-syscall-support, mariadb, mimic,
  3377. nginx-dav-ext, nmon, opkg-utils, policycoreutils,
  3378. pru-software-support, python-arrow, python-attrs,
  3379. python-babel, python-bitstring, python-chardet,
  3380. python-constantly, python-flask-babel, python-gunicorn,
  3381. python-incremental, python-jsonschema, python-logbook,
  3382. python-markdown2, python-mbstrdecoder, python-mutagen,
  3383. python-pathpy, python-pudb, python-pyqrcode,
  3384. python-pytablereader, python-setuptools-scm, python-sh,
  3385. python-toml, python-vcversioner, python-whoosh,
  3386. raspberrypi-usbboot, riemann-c-client, rtl8723bs, skalibs,
  3387. sslh, sngrep, ti-cgt-pru, uclibc-ng-test, udpxy, uhttpd,
  3388. upower, ustream-ssl, waf, xlib_libXfont2
  3389. Removed packages: perl-db-file, snowball-hdmiservice,
  3390. snowball-init
  3391. Tooling: addition of a test-pkg script to help contributors
  3392. build test their package.
  3393. Issues resolved (http://bugs.buildroot.org):
  3394. #8946: Valgrind fails to build with stack protection turned on
  3395. #9461: odroidc2 - toolchain Linaro AArch64 2016.11 compile error
  3396. #9466: VIM_REMOVE_DOCS removes rgb.txt
  3397. #9486: xorg-server 1.19 fails to compile for glibc with systemd init (x86_64)
  3398. #9501: eudev fails to build with older kernel headers
  3399. #9526: Embedded NPM fails to start with "no such file or directory" error
  3400. #9541: Platform drivers autoloading from info in device tree does not work
  3401. #9546: seems BR2_PACKAGE_RPI_FIRMWARE_INSTALL_DTB_OVERLAYS do nothing
  3402. #9551: Coreutils fails to build target src/src_libsinglebin_pinky_a-pinky.o
  3403. #9566: [kmod] Compilation fails with uclibc
  3404. #9571: buildroot fails while building opencv for arm64 platform
  3405. #9576: External tree with BR 2016.11 does not work anymore
  3406. #9606: xorg-server cannot build for ARM target
  3407. 2016.11.3, Released March 9th, 2017
  3408. Important / security related fixes.
  3409. Updated/fixed packages: bind, dbus, gnutls, imagemagick,
  3410. lcms2, libcurl, ntfs-3g, ntp, openssl, php, quagga, redis,
  3411. squid, stunnel, tcpdump, vim, wavpack, wireshark, xlib_libXpm
  3412. 2016.11.2, Released January 25th, 2017
  3413. Important / security related fixes.
  3414. A fix for BR2_EXTERNAL trees referenced using relative paths,
  3415. which broke in 2016.11.
  3416. Updated/fixed packages: bind, docker-engine, gd, gnutls, go,
  3417. imagemagick, irssi, libpng, libvncserver, musl, opus, php,
  3418. php-imagick, rabbitmq-server, runc, wireshark,
  3419. Issues resolved (http://bugs.buildroot.org):
  3420. #9576: External tree with BR 2016.11 does not work anymore
  3421. 2016.11.1, Released December 29th, 2016
  3422. Important / security related fixes.
  3423. Updated/fixed packages: apache, cryptopp, docker-engine,
  3424. dovecot, exim, gdk-pixbuf, libcurl, libupnp, links, monit,
  3425. nodejs, openssh, php, python, python-bottle, samba4, squid,
  3426. uboot, vim, wireshark, xorg-server uboot
  3427. Issues resolved (http://bugs.buildroot.org):
  3428. #9466: VIM_REMOVE_DOCS removes rgb.txt
  3429. 2016.11, Released November 30th, 2016
  3430. Minor fixes.
  3431. Updated/fixed packages: bzip2, gcc, jasper, sane-backends,
  3432. uboot, uclibc
  3433. Issues resolved (http://bugs.buildroot.org):
  3434. #9451: packages/postgresql/postgresql.mk contains wrong POST...
  3435. 2016.11-rc3, Released November 28th, 2016
  3436. Fixes all over the tree, including a number of security fixes.
  3437. The move from fakeroot to pseudo unfortunately brought a
  3438. number of issues. The SELinux issue described in #9386 which
  3439. triggered the move to pseudo has been investigated further and
  3440. a workaround implemented and the pseudo changes reverted.
  3441. Linux kernel: update default to 4.8.11.
  3442. Defconfigs: Updates/fixes for imx28ek, mx6udoo, imx6ulpico,
  3443. olimex a20 olinuxino lime mali, roseapplepi, synopsis aarch64
  3444. vdk, axs101, axs103 and hs38 smd vdk.
  3445. Updated/fixed packages: autossh, chrony, dosfstools,
  3446. dtv-scan-tables, e2fsprogs, gcc, gdb, gnuchess, gnuradio,
  3447. gpsd, gst1-plugins-bad, gst1-plugins-good, imagemagick,
  3448. kvm-unit-tests, libfribi, libuv, mesa3d, mpfr, mplayer, mpv,
  3449. ntp, ola, olsr, openblas, openjpeg, openssh, postgresql,
  3450. ptpd2python3, qemu, qextserialport, qt5base, quagga, xqwt,
  3451. taskd, tiff, tremor, trousers, udisks, uclibc, wireshark,
  3452. xapp_xload, xenomai, xmlstarlet
  3453. Issues resolved (http://bugs.buildroot.org):
  3454. #9386: ubinize fails with or without custom config
  3455. #9431: A misspelling
  3456. #9446: make raspberrypi3_defconfig compilation failure
  3457. 2016.11-rc2, Released November 13th, 2016
  3458. Fixes all over the tree.
  3459. Architecture: add support for MIPS XBurst cores; remove MIPS
  3460. support for M5100 cores.
  3461. Updated/fixed packages: mesa3d, lttng-babeltrace, tinyalsa, pseudo,
  3462. czmq, libxml2, makedevs, binutils, kvm-unit-tests, libnss, privoxy,
  3463. qemu, ser2net, net-tools, ffmpeg, assimp, libmpeg2, ccache, mpv,
  3464. libxslt, python, python3, php, valgrind, guile, domoticz, efl,
  3465. jasper, kvmtool, go, wget, sane-backends, weston, tinymembench,
  3466. strace, openjpeg, lcms2, quota.
  3467. Linux kernel: update default to 4.8.7.
  3468. CMake support: fix cmake wrapper to properly pass NDEBUG flag.
  3469. Filesystems: use a wrapper to pseudo, to better mimick the behaviour
  3470. of fakeroot; makedevs no longer breaks of the destination already
  3471. exists and is of the correct type/major/minor.
  3472. Defconfigs: a few legacy and broken defconfigs have been removed
  3473. because they now fail to build: kb9202_defconfig, mini2440_defconfig,
  3474. freescale_p2020ds, qmx6, calao*, atmel_sama5d4ek. Other defconfigs
  3475. have been updated: nanopi-neo, olimex_a20_olinuxino_lime_mali,
  3476. armadeus_apf51, armadeus_apf28, freescale_imx31_3stack, ci20,
  3477. olimex_a20_olinuxino_lime2, atmel_at91sam9260eknf,
  3478. atmel_at91sam9rlek, atmel_at91sam9g20dfc, atmel_at91sam9g45m10ek,
  3479. atmel_sama5d3xek.
  3480. 2016.11-rc1, Released November 3rd, 2016
  3481. Fixes all over the tree and new features.
  3482. It is now possible to specify multiple BR2_EXTERNAL
  3483. directories. The required files in a BR2_EXTERNAL directory
  3484. have changed to accomodate this feature. Refer to the
  3485. documentation for details of how to update them. External
  3486. trees now have a name and a description. Also, it is possible
  3487. to override a defconfig in the external tree.
  3488. The default skeleton now uses UID 65534 for the "nobody"
  3489. user instead of UID 99, like most distros do. See
  3490. https://lwn.net/Articles/695478/ for a complete discussion.
  3491. Programs and configuration files that explicitly refer to UID
  3492. 99 will have to be updated.
  3493. When the build environment already has a suitable cmake version
  3494. (3.1 or later), that one will be used instead of building
  3495. host-cmake. This can speed up the build significantly.
  3496. The ExtUtils::MakeMaker perl module is now required in the
  3497. build environment.
  3498. An additional check is done during the build that files are
  3499. not installed in the output directory within the output
  3500. directory. This happens e.g. when the target directory is
  3501. contained both in --prefix and in DESTDIR. The build will
  3502. terminate with an error message that specifies which package
  3503. and which file caused the failure.
  3504. The concept of "deprecated packages" and the BR2_DEPRECATED
  3505. option have been removed. Instead, packages are removed
  3506. immediately. Packages are only removed when they don't work
  3507. for some reason. If you still need a removed package and
  3508. you have a solution for the problem(s) that caused the
  3509. removal, please contribute it.
  3510. Architecture: support for sh64 removed, improved support for
  3511. MIPS core selection.
  3512. Toolchain: support for musl powerpc64le, mips64 and mipsr6
  3513. toolchains, ARC toolchain components updates, gcc 6.x series
  3514. bumped to 6.2.0, default binutils version switched to 2.26,
  3515. default gcc version switched to gcc 5.x, Linaro toolchains
  3516. updated, uclibc-ng bumped to 1.0.19. GCC is now always built
  3517. with TLS support. Checking of unsafe compiler options (that
  3518. point to host directories) has been extended with -isystem,
  3519. -idirafter and -iquote.
  3520. Package infrastructure: new variable $(PKG)_DL_OPTS, addition
  3521. of <pkg>-show-rdepends to list reverse dependencies, and
  3522. <pkg>-graph-rdepends to graph reverse dependencies. Linux tools
  3523. are now in a separate linux-tools package instead of in the
  3524. kernel build. Fakeroot has been replaced by pseudo.
  3525. CMake support: the toolchainfile.cmake file now provides a
  3526. definition of the CMAKE_BUILD_TYPE variable. The
  3527. toolchainfile.cmake also no longer forces the compiler/linker
  3528. flags defined by Buildroot.
  3529. New defconfigs: WaRP7, Solidrun's MX6 Cubox/Hummingboard,
  3530. TS-4900, Grinn's liteBoard, Udoo MX6Q/DL, Qemu ARM noMMU,
  3531. BeagleBone Qt5 demo, Digilent Zybo, FriendlyARM Nanopi NEO.
  3532. New packages: arm-trusted-firmware, amd-catalyst, atop, aufs,
  3533. aufs-util, fwts, gst1-rtsp-server, libglob, libite, mfgtools,
  3534. mksh, motion, paho-mqtt-c, php-amqp, pseudo, python-couchdb,
  3535. python-crcmod, python-cssutils, python-docutils,
  3536. python-futures, python-mwclient, python-mwscrape,
  3537. python-mwscrape2slob, python-pyelftools, python-pyicu,
  3538. python-pylru, python-pyqt5, python-requests-toolbelt,
  3539. python-simpleaudio, python-slob, rabbitmq-server, shapelib,
  3540. vdr, vdr-plugin-vnsiserver, vexpress-firmware, xvisor, iio and
  3541. gpio linux tools.
  3542. Removed packages: binutils 2.24, fakeroot, gcc 4.7, ipkg,
  3543. kodi-addon-xvdr, libgail, sstrip, torsmo, webkit, webkitgtk24,
  3544. wvdial, wvstreams.
  3545. Documentation: the list of packages that was present in the
  3546. Buildroot manual has been removed.
  3547. Legal info: the "licenses.txt" file that concatenates all
  3548. license texts is no longer generated - it was not considered
  3549. useful. The manifest.csv contains an empty cell instead of
  3550. "not saved" when no license file is available.
  3551. Other: addition of a DEVELOPERS file listing developers taking
  3552. care of packages or architectures.
  3553. Issues resolved (http://bugs.buildroot.org):
  3554. #7802: host-python build hangs compiling getbuildinfo.o
  3555. #8206: mplayer uses host xorg development files
  3556. #8516: mkcubiecard.sh uses outdated sfdisk switch -D
  3557. #8536: Building sudo with PAM results in unusable sudo
  3558. #8646: check-host-rpath script returns false positives when rpath
  3559. contains symlink
  3560. #8696: xdriver_xf86-input-mouse install header files in target
  3561. directory
  3562. #8811: rp-pppoe - generated scripts commands use HOST pathnames,
  3563. not necessarily TARGET
  3564. #8846: Orphaned/missing toolchain borks eclipse plugin
  3565. #8856: python tornado runtime wasn't met on buildroot 2016.02
  3566. #8901: gcc failes to build if fortran is enabled
  3567. #8916: LDFLAGS pass to openssh
  3568. #8941: "ls" of an NFSv4 share only works when pumped through strace
  3569. #8946: Valgrind fails to build with stack protection turned on
  3570. #9021: Kodi - Broken: Illegal instruction (core dumped)
  3571. #9096: rootfs.ubi not created
  3572. #9111: glibc 2.23: libmvec.so not copied
  3573. #9176: minnowboard : USB not mounted
  3574. #9196: raspberry pi 3 default build seem broken
  3575. #9201: Permission denied make: *** [core-dependencies] Error 126 in
  3576. Buildroot-2015.08.1
  3577. #9216: log4cpp package build fails to build within install
  3578. #9221: Kodi needs "Python .py and .pyc support" otherwise it crashes when
  3579. pressing buttons.
  3580. #9229: Firefly boot fails with: "failed to find part:boot"
  3581. #9256: [Config file] New device: Odroid-U2/U3
  3582. #9296: Buildroot Fails on applying patches
  3583. #9301: U-boot fails to build with default zynq_zed_defconfig configuration
  3584. #9316: U-boot fails to build if libssl-dev is not installed
  3585. #9321: Vanilla libcrypt++ v5.6.3 doesn't allow to work Nvidia Tegra's
  3586. flash utility (tegrarcm)
  3587. #9326: Odroid-C2 build results in non-bootable image
  3588. #9336: Improve iconv support for external toolchain based builds
  3589. #9356: gdb package
  3590. #9366: no link rootfs.ext4 -> rootfs.ext2
  3591. #9371: openssl: download failes with "Only allow downloads from primary
  3592. download site" + local server
  3593. #9381: check-host-rpath issues
  3594. #9386: ubinize fails with or without custom config
  3595. 2016.08, Released September 1st, 2016
  3596. Minor fixes.
  3597. Toolchain: ARC tools updated to arc-2016.09-eng010.
  3598. Updated/fixed packages: libshout, luajit, mpd, mplayer
  3599. Issues resolved (http://bugs.buildroot.org):
  3600. #7520: CodeSourcery toolchain ARM: C++11 std::exception_ptr..
  3601. #8341: Getting EGL Error: Could not create the egl surface:..
  3602. #9121: gst1-imx for i.MX6 compile failed, cannot find PXP, ..
  3603. 2016.08-rc3, Released August 29th, 2016
  3604. Fixes all over the tree.
  3605. Toolchain: C++ support for the internal blackfin toolchain
  3606. re-enabled.
  3607. Architecture: Default to bf532 CPU variant for blackfin,
  3608. Fix flat one memory region support for m68k and disable flat
  3609. seperate data support because of compatibility issues.
  3610. Defconfigs: Minnowboard and Raspberrypi: Fix errors with
  3611. post-build scripts when systemd is used.
  3612. Zynq microzed/zc706/zed: Fix u-booot configuration.
  3613. netbsd-queue package extended and renamed to
  3614. musl-compat-headers. With this, a number of musl compatibility
  3615. patches are no longer needed.
  3616. Updated/fixed packages: aircrack-ng, android-tools, babeld,
  3617. bcusdk, binutils, boa, busybox, connman, cpupower,
  3618. docker-engine, domoticz, elf2flt, ffmpeg, fwup, gcc,
  3619. glib-networking, gnupg, hplip, igd2-for-linux, imagemagick,
  3620. imx-uuc, iputils, jack2, kismet, kmsxx, libaio, libamcodec,
  3621. libconfuse, libffi, libfreeimage, libgcrypt, libgpg-error,
  3622. libiio, libraw, libsepol, libserialport, libxmlrpc, linknx,
  3623. linux-pam, lirc-tools, lldpd, logrotate, lshw, musl, ncurses,
  3624. neon, nettle, norm, ntfs-3g, openblas, openmpi, openswan,
  3625. pinentry, pixman, protobuf, python-meld3, qlibc, qt, qt5base,
  3626. quagga, rpcbind, rt-tests, runc, sane-backends, sconeserver,
  3627. squeezelite, stella, tftpd, tinycbor, tinydtls, trace-cmd,
  3628. trousers, tstools, uboot-tools, uclibc, ulogd, ustr, vlc,
  3629. webkitgtk, wireshark, xdriver_xf86-video-intel
  3630. Issues resolved (http://bugs.buildroot.org):
  3631. #9101: Error on support/download/git with system git older than 1.8.4
  3632. #9181: Compiling linux kernel fails if BR2_LINUX_KERNEL_TOOL_CPU..
  3633. 2016.08-rc2, Released August 17th, 2016
  3634. Fixes all over the tree.
  3635. Toolchain: disable broken C++ support for internal blackfin
  3636. toolchains, ARC toolchain bumped to arc-2016.09-eng008 (GCC 6)
  3637. to fix various issues.
  3638. System: Zoneinfo is available for the musl C library as well.
  3639. Updated/fixed packages: am33x-cm3, axel, barebox, bdwgc,
  3640. blktrace, cairo, dante, enlightenment, fbterm, ffmpeg, flex,
  3641. fontconfig, gcc, gmp, gnuplot, gnuradio, gst1-imx, hidapi,
  3642. inotify_tools, iproute2, kmsxx, lftp, libaio, libcofi,
  3643. libical, libpjsip, libsidplay2, libunwindow, libxml2,
  3644. linux-zigbee, lttng-libust, mpv, mtd, ncdu, netplug, ntp,
  3645. openblas, openipmi, owfs, php, poco, procps, qt, quota,
  3646. sg3_utils, spidev_test, systemd-bootchart, thrift,
  3647. uboot-tools, uclibc, webrtc-audio-processing, wayland, weston,
  3648. xdriver_xf86-video-savage, xserver_xorg-server, xen
  3649. Issues resolved (http://bugs.buildroot.org):
  3650. #9136: make graph-size fails with "ValueError: too many values to..
  3651. #9151: qt: fix build with ALSA >= 1.1.x
  3652. #9156: qt: Fix missing runtime Qt3Support dependency
  3653. #9161: modsetting patch not applied to xserver 1.18.4
  3654. #9166: Missing overlays directory in VFAT image for raspberry pi 3
  3655. 2016.08-rc1, Released August 6th, 2016
  3656. Fixes all over the tree and new features.
  3657. Toolchain: Fortran support added. eglibc support removed, musl
  3658. support no longer experimental. Blackfin and Microblaze
  3659. support for internal uClibc-ng toolchain, m68k/coldfire
  3660. improvements. The check for unsafe (build host) directories
  3661. access (/usr/include and /usr/lib) is now enabled by default.
  3662. Unused locales are now purged by default to save space (and
  3663. the default list of locales shrunk). The option to control
  3664. this has now moved from the toolchain menu to system
  3665. configuration.
  3666. Legal info improvements: sources are now hardlinked instead of
  3667. copied if possible to save space. Patches and extra downloads
  3668. are also saved.
  3669. An experimental configuration knob (BR2_REPRODUCIBLE) has been
  3670. added to make the builds more reproducible (E.G. less
  3671. differences in the binary output between builds of the same
  3672. configuration). This is still work in progress.
  3673. An option to execute a custom script inside the fakeroot
  3674. environment used to the generate the filesystem (E.G. to tweak
  3675. permissions or similar) has been added.
  3676. Git support now supports git submodules if
  3677. <pkg>_GIT_SUBMODULES is enabled.
  3678. Hash files for integritry validation have been added for all
  3679. packages.
  3680. Scanpypi utility to help creating packages from the Python
  3681. package index (pypi) has been added.
  3682. The makedevs utility now has support for adding file
  3683. capabilities using extended attributes.
  3684. New defconfigs: Arcturus uCP1020, Atmel sama5d{2,3,4} xplained
  3685. development configs, Blackfin GDB simulator, Linksprite
  3686. pcDuino, Minnow Board Max graphical demo, NXP i.MX25 PDK,
  3687. i.MX51 EVK, i.MX6UL Pico, i.MX7 sabresd, QEMU MIPS32r6{,el} and
  3688. MIPS64r6{,el} malta, Roseapple Pi, Samsung Snow chromebook,
  3689. Toradex Apalis i.MX6 COM, TS-4800, x86-64 PC BIOS and EFI
  3690. demos. A number of defconfigs have been updated and extended
  3691. to generate SD card images. Synopsys HS38 VDK defconfig removed.
  3692. New packages: 4th, acpica, acpitool, alljoyn, alljoyn-base,
  3693. alljoyn-tcl, alljoyn-tcl-base, argparse, babeld, batman-adv,
  3694. circus, dante, docker-containerd, docker-engine, domoticz,
  3695. efibootmgr, efivar, ficl, fwup, gsettings-desktop-schemas,
  3696. gtksourceview, gupnp-dlna, gupnp-tools, igd2-for-linux,
  3697. jemalloc, kmsxx, lapack, lft, libaacs, libamcodec, libbdplus,
  3698. libcoap, libdvdcss, libebur128, libfastjson, libminiupnpc,
  3699. libnatpmp, libpqxx, libuio, libvdpau, log4cpp, minissdpd,
  3700. mxsldr, nginx-nasxi, nginx-upload, ninja, nodm, odroid-mali,
  3701. odroid-scripts, omxplayer, openblas, openmpi, openzwave,
  3702. p7zip, pdbg, python-argh, python-dataproperty,
  3703. python-dateutil, python-dialog3, python-dicttoxml,
  3704. python-dominate, python-engineio, python-flask-jsonrpc,
  3705. python-flask-login, python-humanize, python-pathtools,
  3706. python-pathvalidate, python-pillow, python-prompt-toolkit,
  3707. python-pytablewriter, python-pytz, python-scapy3k,
  3708. python-sdnotify, python-socketio, python-tomako,
  3709. python-ubjson, python-u-msgpack, python-watchdog,
  3710. python-wcwidth, python-xlrd, python-xlsxwriter,
  3711. python-xlutils, python-xlwt, rs485conf, runc, sdl2_gfx,
  3712. sdl2_image, sdl2_ttf, shellinabox, sphinxbase, stella,
  3713. supertuxkart, systemd-bootchart, tekui, terminology, tinycbor,
  3714. tinydtls, ti-sgx-demos, ti-sgx-km, ti-sgx-um, tunctl, wavemon,
  3715. wiringpi, xen
  3716. Deprecated packages: ipkg, sstrip
  3717. Removed packages: sunxi-mali-prop
  3718. Issues resolved (http://bugs.buildroot.org):
  3719. #8931: segment fault when compile argp-help.c using aarch64-bu...
  3720. #8966: eglfs error. buildroot don't compile the library libeglfs.so
  3721. #8971: build for beaglebone fails
  3722. #8986: qt5imageformats fails to build on AArch64
  3723. #8991: grub2 fails to compile
  3724. #9001: Nodejs option not available
  3725. #9006: gcc with c++ support v4 and v5 fail to compile on fedora 24
  3726. #9016: arceb-buildroot-linux-uclibc ld uses incorrect default format
  3727. #9066: 8139TOO - faulty behaviour
  3728. #9086: Syntax Error (missing ")" in boot/uboot/uboot.mk on line 203)
  3729. #9091: U-Boot fails to boot with large ramdisk
  3730. 2016.05, Released May 31st, 2016
  3731. Minor fixes.
  3732. External toolchain: Fix for symlink handling when copying
  3733. links to target.
  3734. Updated/fixed packages: gcc, grantlee, gst-ffmpeg,
  3735. ipsec-tools, iptraf-ng, libcurl, libdrm, libsigsegv, ltris,
  3736. lttng-babeltrace, mbedtls, mesa3d, moarvm, mplayer, mtools,
  3737. net-tools, openpowerlink, pulseview, rpm, tinyalsa,
  3738. xdriver_xf86-video-fbturbo, xserver_xorg-server
  3739. 2016.05-rc3, Released May 26th, 2016
  3740. Fixes all over the tree.
  3741. Tweaks for SSP handling for external toolchains.
  3742. Updated/fixed packages: aircrack-ng, bluez5_utils, connman,
  3743. cups, erlang-p1-stringprep, expat, ffmpeg, flann, flannel, go,
  3744. gst1-libav, hidapi, hplip, iptraf-ng, jamvm, kodi,
  3745. kodi-screensaver-matrixtrails, libcurl, libepoxy, libgpgme,
  3746. libsemanage, libxslt, liquid-dsp, ltris, lxc, mesa3d, midori,
  3747. mpg123, mtr, openpgm, openpowerlink, oprofile, php,
  3748. postgresql, putty, python-service-identity, python-treq,
  3749. qlibc, qt5serialbus, ruby, stress-ng, strongswan, time, tinc,
  3750. ustr, valgrind, webkitgtk, libxml2, xorriso,
  3751. xserver_xorg-server
  3752. Issues resolved (http://bugs.uclibc.org):
  3753. #8936: Aircrack-ng - Alot of missing dependencies
  3754. 2016.05-rc2, Released May 17th, 2016
  3755. Fixes all over the tree.
  3756. Rootfs overlay handling now refuses to overwrite
  3757. /{usr,bin,sbin,lib} symlinks from BR2_ROOTFS_MERGED_USR option
  3758. even if these directories are present in the overlay.
  3759. External toolchain: Unbreak user provided libraries deployment
  3760. (BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS) handling after refactoring.
  3761. QEMU coldfire: Fix for signal handling kernel issue, enable
  3762. networking support.
  3763. Updated/fixed packages: android-tools, assimp, boost, gcc,
  3764. glibc, glmark2, gmrender-resurrect, go, go-bootstrap, iputils,
  3765. jack2, kodi-screensaver-asterwave, kodi-screensaver-rsxs,
  3766. kodi-visualisation-shadertoy, libarchive, libinput, libpjsip,
  3767. mali-t76x, mtr, nginx, opencv, openvpn, python-coherence,
  3768. qt5multimeda, quagga, samba4, sg3-utils, stress-ng, turbolua
  3769. 2016.05-rc1, Released May 10th, 2016
  3770. Fixes all over the tree and new features.
  3771. Architectures: new ARM variants: Cortex A17 and M4, improved
  3772. nonmmu (cortex-M) support, m68k has been re-enabled with
  3773. support for ColdFire. For x86, support for the i386 variant
  3774. has been dropped.
  3775. Toolchain: Add GCC 6 support, remove GCC 4.5, mark GCC 4.7 as
  3776. deprecated. Go programming language support, Add Binutils 2.26
  3777. support. Old Sourcery PowerPC external toolchains removed,
  3778. Sourcery MIPS 2016.06-8, AMD64 2015.11-139, NiosII 2015.11-130
  3779. added, Linaro ARM/ARMeb/Aarch64 toolchains updated.
  3780. New defconfigs: Firefly RK3288, Boundary Devices i.MX7 Nitrogen7,
  3781. STM32F429 and STM32F469 Discovery boards, Hardkernel ODROID-C2,
  3782. Raspberry Pi Zero and Raspberry Pi 3. Some Qemu defconfigs were
  3783. added for m68k, eXtensa-nommu and ColdFire.
  3784. Linux: use zImage by default on ARM, subversion repository
  3785. support (for u-boot as well).
  3786. New packages: aer-inject, android-tools, cannelloni,
  3787. cbootimage, cgroupfs-mount, connman-gtk, crudini, dt,
  3788. gmrender-resurrect, flannel, font-awesome, freeswitch, go,
  3789. go-bootstrap, gr-osmosdr, granite, i7z, imx-uuc,
  3790. kodi-adsp-basic, kodi-adsp-freesurround,
  3791. kodi-audiodecoder-opus, kodi-pvr-hdhomerun,
  3792. kodi-screensaver-asterwave, kodi-screensaver-cpblobs,
  3793. kodi-screensaver-matrixtrails, kodi-screensaver-planestate,
  3794. kodi-screensaver-rsxs, kodi-visualisation-fishbmc,
  3795. kodi-visualisation-fountain, kodi-visualisation-goom, libgee,
  3796. libimxvpuapi, libpjsip, libtomcrypt, libtommath, libusbgx,
  3797. lksctp-tools, mali-t76x, mkpimage, mpv, msr-tools, nload,
  3798. norm, nvme, owfs, pound, privoxy, procrank_linux, putty,
  3799. python-autobahn, python-characteristic, python-crossbar,
  3800. python-cryptography, python-iniparse, python-iowait,
  3801. python-lmdb, python-pexpect, python-ptyprocess,
  3802. python-pyasn-modules, python-pygments, python-pymysql,
  3803. python-pynacl, python-pyopenssl, python-pysocks,
  3804. python-pytrie, python-rpi-gpio, python-service-identity,
  3805. python-setproctitle, python-shutilwhich, python-treq,
  3806. python-txaio, python-ujson, python-wsaccel, qt5canvas3d,
  3807. qt5location, qt5quickcontrols2, qt5serialbus, qt5tools,
  3808. raptor, scrub, taskd, tegrarcm, turbolua, valijson,
  3809. wayland-protocols, webkitgtk, wilc1000-firmware, wpan-tools,
  3810. xdriver_xf86-video-amdgpu
  3811. Removed packages: foomatic-filters, python-m2crypto,
  3812. qt5quick1, qt5webkit-examples, samba, xdriver_xf86-input-void
  3813. Issues resolved (http://bugs.buildroot.org):
  3814. #6830: Qt5: no fonts are installed
  3815. #7562: musl buildroot-toolchain and BR2_MIPS_SOFT_FLOAT break
  3816. #7580: Invalid filesystem in Pandaboard defconfig
  3817. #8346: wf111 package removes all kernel module dependencies
  3818. #8436: xserver_xorg-server Segmentation fault
  3819. #8736: IPV6 forced on in busybox
  3820. #8746: At startup system stops with 'cannot set terminal proces..
  3821. #8751: make fail [fio does not build on sh]
  3822. #8766: Compiling host-gcc-final-4.9.3 broken on i386
  3823. #8771: make savedefconfig modifies sources
  3824. #8781: Unable to build uboot for imx28evk
  3825. #8786: gdb fails to build with xz and expat support at the same
  3826. #8801: Compilation of Buildroot 2016.2 for Raspberry Pi with...
  3827. #8806: Buildroot 2016.2 for Raspberry Pi requires that ext4...
  3828. #8836: Can't select Vim in menuconfig
  3829. #8851: Make sure fio can compile with libaio support if it...
  3830. #8861: With buildroot 2016.02 trying to build for corei7-avx
  3831. fails while trying to build host-binutils
  3832. #8866: Making an USB flash bootable with extlinux build with
  3833. buildroot does not work
  3834. 2016.02, Released March 1st, 2016
  3835. Minor fixes, mostly security related.
  3836. Circular dependency issue with same-as-kernel linux-headers
  3837. option fixed.
  3838. Updated/fixed packages: bluez5_utils, heirloom-mailx,
  3839. imx-gpu-viv, kodi-pvr-argustv, kodi-pvr-mediaportal-tvserver,
  3840. kodi-pvr-nextpvr, libfcgi, openssl, pifmrds, powerpc-utils,
  3841. python-m2crypto, slang, sox, squid, tn5250, xerces, zsh
  3842. 2016.02-rc3, Released February 27th, 2016
  3843. Fixes all over the tree.
  3844. Defconfigs: Ensure EABIhf is correctly enabled for ARM cores
  3845. where VFP is optional (but present on the specific hw). Fix
  3846. ARM variant selection for freescale_imx31_3stack_defconfig.
  3847. Ensure tarballs of downloaded git trees do not contain a
  3848. timestamp.
  3849. Clarify license of patches in COPYING.
  3850. Updated/fixed package: avahi, binutils, cairo, can-festival,
  3851. chrony, cifs-utils, dnsmasq, dvdauthor, e2fsprogs, efl,
  3852. erlang-rebar, eudev, fbterm, gawk, gnupg2, gnuradio, gpm,
  3853. gst1-plugins-good, hostapd, imagemagick, iproute2, iputils,
  3854. jack2, kexec, kismet, lftp, libarchive, libeXosip2, libfm,
  3855. libglib2, libsoil, libssh, libssh2, libuci, links, lshw, lxc,
  3856. mediastreamer, mono, mraa, mutt, nfs-utils, numactl, ofono,
  3857. omniorb, openipmi, openobex, patch, pax-utils, perf,
  3858. pulseaudio, pure-ftp, qhull, qt, quagga, quota, sdl_sound,
  3859. shairport-sync, spice, sysklogd, syslog-ng, trace-cmd,
  3860. trousers, tvheadend, util-linux, vim, webkitgtk24, wireshark,
  3861. wpa_supplicant, xerces, zsh
  3862. Issues resolved (http://bugs.uclibc.org):
  3863. #8651: libMonoPosixHelper.so wrong link reference in buildroot..
  3864. 2016.02-rc2, Released February 18th, 2016
  3865. Fixes all over the tree.
  3866. Toolchain: PR19405 backport to binutils 2.25.1 to fix NIOS ld
  3867. crash, backport of Xtensa .init/.fini literals handling.
  3868. glibc security patches for CVE-2014-8121, CVE-2015-1781
  3869. and CVE-2015-7547.
  3870. Defconfigs for Acmesystems Arietta g25 added.
  3871. Updated/fixed packages: binutils, boost, chrony, dovecot,
  3872. e2fsprogs, fio, gdb, glibc, graphite2, icu, kbd, libbsd,
  3873. libcue, libgcrypt, libraw, links, mc, mosquitto, nodejs,
  3874. postgresql, pptp-linux, pulseaudio, samba4, spice, squid,
  3875. sysklogd, systemd, tiff, uclibc, ulogd, util-linux, valgrind.
  3876. Issues resolved (http://bugs.uclibc.org):
  3877. #8576: Building embedded Linux for Atmel SAMA5D4_Xplained...
  3878. #8606: Problem compiling on Arch Linux
  3879. #8681: kbd 2.0.3 does not build on rpi
  3880. 2016.02-rc1, Released February 10th, 2016
  3881. Fixes all over the tree and new features.
  3882. Toolchain: Support for GCC 5.3.x. ARC toolchain updated to
  3883. arc-2015.12. Support for legacy uClibc dropped, default to
  3884. uClibc-ng instead. Added sys/queue.h implementation for MUSL
  3885. for compatibility. Updated versions of Code sourcery and
  3886. Linaro toolchains. MIPS Codescape toolchains added. Version
  3887. selection for preconfigured external toolchains removed.
  3888. New Defconfigs: ARM Juno r0/r1 development boards, Freescale
  3889. i.MX6UL Evaluation Kit, Intel Galileo Gen 2, Orange Pi PC.
  3890. A number of defconfigs have been extended to generate complete
  3891. system images using genimage.
  3892. Linux: Automatically patch timeconst.pl for <3.9 kernels,
  3893. which isn't compatible with modern perl versions, breaking the
  3894. build when building on recent (Fedora 23, Debian
  3895. Testing/Unstable, ..) distributions.
  3896. Makedevs utility now accepts textual (non-numerical) user and
  3897. group names.
  3898. Vagrant file to easily setup a working development environment
  3899. in a VM has been added.
  3900. Size-stats-compare script to compare rootfs sizes between
  3901. builds has been added.
  3902. Infozip package renamed to zip. EFL packages restructured.
  3903. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  3904. angularjs, apache, apr, argp-standalone, armadillo, arptables,
  3905. at, atk, audiofile, aumix, autoconf-archive, avahi, bash, bc,
  3906. bcache-tools, bdwgc, beecrypt, bind, binutils, bluez5_utils,
  3907. bluez_utils, bonnie, boost, busybox, cairo, cdrkit, chrony,
  3908. clamav, cmake, collectd, connman, coreutils, cppcms, crda,
  3909. cryptodev-linux, cryptsetup, cups, cwiid, cxxtest, dbus,
  3910. dbus-cpp, dbus-glib, debianutils, dhcp, dhcpcd, dhrystone,
  3911. dillo, directfb, directfb-examples, dmraid, dnsmasq, doom-wad,
  3912. dovecot, dovecot-pigeonhole, dropbear, dtv-scan-tables,
  3913. dvb-apps, dvbsnoop, ecryptfs-utils, eigen, ejabberd,
  3914. elementary, elfutils, enlightenment, erlang, espeak, eudev,
  3915. eventlog, exfat, exfat-utils, exiv2, expedite, faifa,
  3916. fakeroot, fastd, fbgrab, fetchmail, ffmpeg, findutils, fio,
  3917. firmware-imx, flann, flashrom, flite, flot, fmlib, freerdp,
  3918. freescale-imx, freetype, gauche, gawk, gcc, gcc-final, gcr,
  3919. gdb, gdk-pixbuf, geoip, gesftpserver, gettext, giflib, git,
  3920. glibc, glibmm, glog, gmp, gnupg, gnupg2, gnutls, gob2, gpsd,
  3921. gptfdisk, grep, gst1-libav, gst1-plugins-{bad,base,good,ugly},
  3922. gst-ffmpeg, gst-plugins-{bad,base,good,ugly}, gstreamer,
  3923. gstreamer1, guile, gvfs, gzip, harfbuzz, haserl, hiawatha,
  3924. hostapd, hplip, icu, ifupdown, imagemagick, imx-gpu-viv,
  3925. imx-kobs, imx-lib, input-tools, intel-microcode, iperf3,
  3926. ipmitool, iproute2, iprutils, ipsec-tools, ipset, iptables,
  3927. iputils, irda-utils, irssi, iucode-tool, jack2, janus-gateway,
  3928. jpeg-turbo, jquery-datetimepicker, jquery-keyboard,
  3929. jquery-sparkline, jquery-ui, jquery-ui-themes,
  3930. jquery-validation, json-c, kbd, kernel-module-imx-gpu-viv,
  3931. keyutils, kmod, knock, kodi, lcdproc, lcms2, leafnode2,
  3932. leafpad, libass, libatomic_ops, libbroadvoice, libbsd,
  3933. libcap-ng, libcdaudio, libcue, libcurl, libdrm, libecore,
  3934. libedbus, libedit, libedje, libeet, libefreet, libeina,
  3935. libeio, libelementary, libembryo, libepoxy, libethumb, libev,
  3936. libevas, libevas-generic-loaders, libevdev, libevent, libffi,
  3937. libfm, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  3938. libftdi, libfuse, libgail, libglew, libglib2, libgtk2,
  3939. libgtk3, libgudev, libhttpparser, libidn, libinput, libiscsi,
  3940. libjpeg, liblinear, libmbim, libmicrohttpd, libndp, libnspr,
  3941. libnss, liboauth, liboping, libpciaccess, libplist, libpng,
  3942. libraw, libraw1394, librsvg, libseccomp, libsecret,
  3943. libserialport, libsigc, libsigrok, libsigrokdecode,
  3944. libsndfile, libsoc, libsodium, libsoup, libssh2, libsvg,
  3945. libsvg-cairo, libtasn1, libtirpc, libtorrent, libungif,
  3946. libunwind, libupnpp, liburcu, libuv, libv4l, libva,
  3947. libva-intel-driver, libvips, libvncserver, libxml2, libxmlpp,
  3948. lightning, lighttpd, linknx, linux-firmware, linux-fusion,
  3949. linux-headers, liquid-dsp, lirc-tools, live555, lm-sensors,
  3950. lockdev, lshw, ltp-testsuite, ltrace, lttng-babeltrace,
  3951. lttng-libust, lttng-modules, lttng-tools, lua, luabitop,
  3952. luarocks, luv, lvm2, lxc, makedevs, mc, memcached, memtest86,
  3953. mesa3d, mesa3d-demos, mesa3d-headers, micropython,
  3954. micropython-lib, minicom, minidlna, mjpg-streamer, mke2img,
  3955. moarvm, modem-manager, mongoose, mongrel2, monkey, mono,
  3956. monolite, mosh, mosquitto, mpd, mplayer, msgpack, mtdev2tuio,
  3957. musepack, musl, mysql, nano, nasm, nbd, neard, netatalk,
  3958. netsnmp, nettle, net-tools, network-manager, nfs-utils, nginx,
  3959. nmap, nodejs, ntfs-3g, ntp, numactl, nut, nvidia-driver,
  3960. odhcp6c, ofono, ola, olsr, omniorb, opencv, opencv3, openipmi,
  3961. openldap, openntpd, openobex, openocd, openpgm,
  3962. open-plc-utils, openpowerlink, openssh, openssl, openswan,
  3963. openvpn, opkg, oprofile, opus, opusfile, p11-kit, package,
  3964. pango, pax-utils, pciutils, pcmanfm, perl, perl-db-file,
  3965. perl-io-socket-ssl, perl-libwww-perl, perl-net-dns, perl-uri,
  3966. perl-xml-libxml, php, php-ssh2, picocom, pinentry, pixman,
  3967. polarssl, popt, portaudio, pppd, procps-ng, proftpd, protobuf,
  3968. psmisc, ptpd2, pulseaudio, pulseview, pv, python, python3,
  3969. python-alsaaudio, python-can, python-cffi, python-cherrypy,
  3970. python-httplib2, python-jinja2, python-lxml, python-m2crypto,
  3971. python-mako, python-msgpack, python-psutil, python-pyasn,
  3972. python-pycparser, python-pydal, python-pyftpdlib,
  3973. python-pyroute2, python-pyxml, python-pyzmq, python-requests,
  3974. python-serial, python-setuptools, python-six, python-spidev,
  3975. python-tornado, python-twisted, python-web2py, python-webpy,
  3976. python-werkzeug, python-zope-interface, qemu, qhull, qpdf, qt,
  3977. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  3978. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  3979. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  3980. qt5serialport, qt5svg, qt5webchannel, qt5webkit,
  3981. qt5webkit-examples, qt5websockets, qt5x11extras,
  3982. qt5xmlpatterns, qt-webkit-kiosk, racehound, radvd, read-edid,
  3983. readline, redis, rpcbind, rpi-firmware, rpi-userland, rrdtool,
  3984. rsync, rsyslog, rtai, rtorrent, rt-tests, rubix, ruby, samba4,
  3985. sconeserver, setools, shairport-sync, sigrok-cli, skeleton,
  3986. smack, snowball-init, socat, sp-oops-extract, sqlite,
  3987. squashfs, squeezelite, squid, sredird, sshfs,
  3988. start-stop-daemon, strace, strongswan, stunnel, subversion,
  3989. sunxi-tools, swig, sysdig, syslog-ng, sysstat, systemd,
  3990. sysvinit, taglib, tcl, tcpreplay, thrift, ti-gfx, tinyalsa,
  3991. tor, torsmo, trace-cmd, transmission, tremor, triggerhappy,
  3992. trinity, tvheadend, tzdata, uboot-tools, uclibc, udisks,
  3993. udpcast, unionfs, upmpdcli, usb_modeswitch,
  3994. usb_modeswitch_data, ustr, util-linux, vala, valgrind,
  3995. vboot-utils, vde2, vlc, vnstat, webkit, webkitgtk24, weston,
  3996. wget, whetstone, whois, wine, wipe, wireless-regdb, wireshark,
  3997. wpa_supplicant, w_scan, x11r7, xapp_xbacklight, xapp_xcompmgr,
  3998. xapp_xinput, xapp_xkbcomp, xdriver_xf86-input-evdev,
  3999. xdriver_xf86-input-libinput, xdriver_xf86-input-synaptics,
  4000. xdriver_xf86-video-ati, xdriver_xf86-video-fbturbo,
  4001. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  4002. xfont_encodings, xfont_font-adobe-100dpi,
  4003. xfont_font-adobe-75dpi, xfont_font-adobe-utopia-100dpi,
  4004. xfont_font-adobe-utopia-75dpi, xfont_font-adobe-utopia-type1,
  4005. xfont_font-alias, xfont_font-arabic-misc,
  4006. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  4007. xfont_font-bh-lucidatypewriter-100dpi,
  4008. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  4009. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  4010. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  4011. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  4012. xfont_font-daewoo-misc, xfont_font-dec-misc,
  4013. xfont_font-ibm-type1, xfont_font-isas-misc,
  4014. xfont_font-jis-misc, xfont_font-micro-misc,
  4015. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  4016. xfont_font-misc-meltho, xfont_font-misc-misc,
  4017. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  4018. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  4019. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  4020. xfont_font-xfree86-type1, xfsprogs, xkeyboard-config, xl2tp,
  4021. xlib_libfontenc, xlib_libXi, xmlstarlet, xscreensaver,
  4022. xserver_xorg-server, xtables-addons, xvkbd, xz, yad, yasm,
  4023. ympd, zeromq, zic, znc, zsh,
  4024. New packages: acsccid, assimp, atkmm, autofs, bcm2835,
  4025. cairomm, cantarell, chocolate-doom, comix-cursors, cxxtest,
  4026. edid-decode, emlog, gcr, gtkmm3, hidapi, jquery-sidebar,
  4027. kernel-module-imx-gpu-viv, libasplib, libcroco, libdvbpsi,
  4028. libfreeglut, libgdiplus, libglfw, libhdhomerun, libnet,
  4029. libsoil, lldpd, luvi, mbedtls, minizip, miraclecast, mongodb,
  4030. mraa, netbsd-queue, netsniff-ng, nss-pam-ldapd,
  4031. obsidian-cursors, openal, openbox, pangomm,
  4032. python-backports-abc, python-beautifulsoup4, python-cbor,
  4033. python-click, python-cssselect, python-ecdsa, python-html5lib,
  4034. python-idna, python-ipaddress, python-mistune, python-netaddr,
  4035. python-paho-mqtt, python-paramiko, python-pyparted,
  4036. python-pysmb, python-pyudev, python-singledispatch,
  4037. python-smbus-cffi, python-urllib3, qt53d, rabbitmq-c, rfkill,
  4038. sbc, spi-tools, tpm-tools, trousers, ubus, unrar, unscd,
  4039. unzip, v4l2grab, xdriver_xf86-video-nouveau, xdotool, zbar
  4040. Removed packages: libungif, python-pyxml,
  4041. Issues resolved (http://bugs.uclibc.org):
  4042. #7886: gettext: link failure with locally-installed libxml2
  4043. #7892: systemd-journald is broken
  4044. #8066: nodejs crashes when built with gcc 4.9
  4045. #8296: nodejs 0.12.7 - npm crashes (seg core dump)
  4046. #8501: gunzip fails to uncompress files
  4047. #8541: fail to build host-fakeroot-1.20.2
  4048. #8546: build instructions for raspberry pi don't work
  4049. #8571: strace for ARC compile error
  4050. #8581: pciutils.mk PCIUTILS_MAKE_OPTS typo
  4051. #8616: Fail to build for raspberrypi_defconfig with big endian
  4052. #8621: sqlite package, properly enable readline
  4053. 2015.11, Released November 30th, 2015
  4054. Minor fixes.
  4055. Merged/seperate /usr handling is now also performed for
  4056. staging so cross-gdb / gdbserver can find the libraries.
  4057. Updated/fixed packages: autossh, conntrack-tools, dcron,
  4058. espeak, gcc, glmark2, gpsd, gstreamer1, libglib2, libsigsegv,
  4059. libsoc, libv4l, minidlna, mongrel2, opencv, polarssl,
  4060. rpi-userland, rubix, skeleton, tovid, uemacs, valgrind, yad,
  4061. zmqpp
  4062. Issues resolved (http://bugs.uclibc.org):
  4063. #8441: Invalid directory for X11 fonts in target (RPi2)
  4064. #8491: libglib2 2.46.1 not Building for armv5 on 2015.11-rc3
  4065. 2015.11-rc3, Released November 26th, 2015
  4066. Fixes all over the tree.
  4067. We have a new modern website!
  4068. Updated/fixed packages: apitrace, audiofile, autossh, bullet,
  4069. c-ares, collectd, conntrack-tools, cryptodev-linux, dropbear,
  4070. fastd, gmp, gpsd, gst-plugins-bad, gst-plugins-base,
  4071. gst-plugins-good, gst-plugins-ugly, gstreamer, gstreamer1,
  4072. guile, iodine, iproute2, jimtcl, kompexsqlite, libethumb,
  4073. libfreeimage, libgsasl, libgtk3, libxml2, localedef,
  4074. lttng-tools, macchanger, mongrel2, mpd, openntpd, openssl,
  4075. oprofile, pcre, qt5base, quagga, rpi-userland, sconeserver,
  4076. sdl, spidev_test, sqlite, strongswan, ustr, xapp_sessreg,
  4077. yajl, zmqpp
  4078. Issues resolved (http://bugs.uclibc.org):
  4079. #6872: gpsd: disabled on microblaze
  4080. #8321: invalid opcode error with minidlna and ffmpeg
  4081. #8336: Default systemd configuration fails to boot correctly in 2015-08
  4082. #8446: rpi-userland failed to build with glibc 2.22
  4083. 2015.11-rc2, Released November 19th, 2015
  4084. Fixes all over the tree.
  4085. LD_LIBRARY_PATH is no longer used to ensure host binaries find
  4086. their libraries, fixing issues on recent Fedora.
  4087. Toolchain fixes for powerpc e5500 / e6500. Fix for an issue
  4088. with ${TARGET}-cc after the move to use a toolchain wrapper
  4089. for the internal toolchain.
  4090. Appy-patches.sh now correctly applies all files listed in
  4091. series files.
  4092. Fixes for merged /usr handling when a custom skeleton is used.
  4093. Updated/fixed packages: axfsutils, boost, busybox, dhcp,
  4094. directfb, dropbear, ebtables, fastd, ffmpeg, gauche, gcc,
  4095. gettext, gst1-plugins-bad, hostapd, ibrdtnd, libcurl,
  4096. libecore, libgudev, libnss, libpng, libserial, libssh2,
  4097. libuecc, libxml2, linux-headers, liquid-dsp, ltris,
  4098. lua-periphery, minidlna, mongrel2, mpd, mpg123, mplayer,
  4099. mysql, opencv, opencv3, package, perl-file-util, php-ssh2,
  4100. polarssl, pulseaudio, python-protobuf, qemu, qt5base, ranger,
  4101. ruby, skeleton, slang, squeezelite, strongswan, tovid, uclibc,
  4102. ushare, wine, wpa_supplicant, x265,
  4103. xdriver_xf86-video-siliconmotion, zxing-cpp
  4104. Issues resolved (http://bugs.uclibc.org):
  4105. #4790: Running udhcpc on a system with NFS root kills NFS
  4106. #8456: Building host-pkgconf on Fedora 23 fails due to..
  4107. 2015.11-rc1, Released November, 7th 2015
  4108. Fixes all over the tree and new features.
  4109. Architectures:
  4110. - Support for sparc64 added (internal toolchain with glibc
  4111. only).
  4112. - Support for mips32r6 and mips64r6 added.
  4113. - Support for Intel Quark X1000 CPU.
  4114. - Switch to EABIhf by default on ARM when a VFP is available.
  4115. Toolchains:
  4116. - glibc 2.22, gdb 7.10, use gdb 7.9 by default, musl 1.1.12,
  4117. uclibc-ng 1.0.8, host-gdb enabled on AArch64.
  4118. - The toolchain wrapper which was used only for external
  4119. toolchains is now also used for Buildroot internal
  4120. toolchains. This allowed to fix the ccache support, prepare
  4121. the way for top-level parallel build support and remove gcc
  4122. patches used to detect header/library path poisoning.
  4123. - Remove Analog Devices Blackfin toolchain 2012R2.
  4124. - Fix several Xtensa build failures by switching from
  4125. text-section-literals to auto-litpools.
  4126. - Enable MIPS64 support in uClibc-ng, use uClibc on ARC
  4127. rather than a specific fork.
  4128. - Linaro toolchains for ARM, ARMeb and AArch64 updated to
  4129. 2015.08. 2014.09 version is kept since 2015.08 only runs on
  4130. x86_64 hosts.
  4131. Bootloaders:
  4132. - Fix ARM64 support in U-Boot.
  4133. Defconfigs:
  4134. - Added: ARC HS38 VDK virtual boards, Avnet Microzed, Boundary
  4135. Devices Nitrogen SoloX, Freescale i.MX6 SoloX Sabre SD,
  4136. OLinuxino A20 Lime2, Qemu Sparc64, Qemu SuperH 4 big endian,
  4137. Synopsys AArch64 VDK virtual platform.
  4138. - Updated: calao_qil_a9260, calao_usb_a9g20_lpw, ci20,
  4139. cubieboad, freescale_imx6_*, imx53loco, imx6_vab820,
  4140. mpc8315erdb, qmx6, p1010rdb, qemu, raspberrypi,
  4141. raspberrypi2, riotboard, snps_axs10*, wandboard.
  4142. - Removed: at91rm9200df, at91sam9260dfc, at91sam9263ek,
  4143. calao_snowball_defconfig, gnublin, integrator926_defconfig.
  4144. Infrastructure:
  4145. - Support for fetching from Mercurial tags fixed.
  4146. - Introduce LINUX_NEEDS_MODULES, which allows to enforce
  4147. module support to be enabled in the kernel when a package
  4148. builds out-of-tree kernel modules (through the
  4149. pkg-kernel-module infrastructure or on its own).
  4150. - Improve the perl package infrastructure to automatically add
  4151. the dependency to the perl interpreter to target perl module
  4152. packages.
  4153. - Remove trailing slashes in <pkg>_SITE and addition of a
  4154. check to ensure such trailing slashes are no longer added.
  4155. - Extend the legal infrastructure to allow packages to declare
  4156. their actual source code. This is useful for packages for
  4157. which <pkg>_SOURCE points to pre-built binaries (as is the
  4158. case for external toolchains). The new <pkg>_ACTUAL_SOURCE
  4159. variable allows to point to the source code in such cases.
  4160. - Improved ccache support, thanks to the usage of a toolchain
  4161. wrapper for internal toolchain. Now a single cache directory
  4162. can be shared between different Buildroot builds.
  4163. - Addition of a 'graph-size' make targets, which generates a
  4164. PDF graph of per-package size of the root filesystem.
  4165. - Addition of <pkg>_EXCLUDES so that packages can request
  4166. certain parts of the source code tarball to not be
  4167. extracted. This feature is currently used by gcc and
  4168. toolchain-external.
  4169. - Packages can now use the <pkg>_PKGDIR variable, provided by
  4170. the package infrastructure, to reference their package
  4171. directory, instead of explicitly using package/<pkg>/.
  4172. Filesystems:
  4173. - Add high lz4 compression to squashfs.
  4174. - Simplification of shell profile files in the default
  4175. skeleton.
  4176. - Remove ftp user and /home/ftp from the skeleton, and let ftp
  4177. server packages create these when needed.
  4178. - Add support for /bin, /sbin and /lib to be symlinks to their
  4179. corresponding directories in /usr. This is enforced for
  4180. systemd configurations, and optional for other
  4181. configurations.
  4182. - Support for AXFS filesystem image generation added.
  4183. - New options to add extra space/inodes to ext2/3/4 images.
  4184. Updated/fixed packages:
  4185. adwaita-icon-theme, apache, apitrace, atk, audit, avahi,
  4186. barebox, bash, batctl, bind, binutils, bluez_utils, boost,
  4187. bridge-utils, cairo, ccache, chrony, clapack, cloog, cmake,
  4188. collectd, connman, conntrack-tools, coreutils, cpio,
  4189. cryptsetup, dbus, dbus-cpp, devmem2, dhcp, dhcpcd, dhcpdump,
  4190. dhrystone, dillo, directfb, directfb-examples, dmraid,
  4191. dos2unix, dovecot, dovecot-pigeonhole, drbd-utils, dropbear,
  4192. dropwatch, dtc, e2fsprogs, ebtables, efl, eigen, ejabberd,
  4193. elf2flt, elfutils, erlang, ethtool, eudev, evemu, exfat,
  4194. exfat-utils, expat, faifa, fbterm, fdk-aac, feh, ffmpeg, file,
  4195. flashrom, fping, freerdp, freescale-imx, freetype, gdk-pixbuf,
  4196. genimage, gettext, git, glib-networking, glmark2, gnupg2,
  4197. gnuradio, gnutls, gpsd, grep, grub2, gst1-imx, gst1-libav,
  4198. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  4199. gst1-plugins-ugly, gst1-validate, gst-fsl-plugins,
  4200. gst-plugins-bad, gstreamer1, guile, gvfs, harfbuzz, haveged,
  4201. hostapd, icu, imagemagick, impiutil, imx-gpu-viv, imx-vpu,
  4202. inadyn, intltool, iostat, iperf3, ipmiutil, iproute2,
  4203. iptables, iw, jpeg-turbo, jq, jsoncpp, kexec-lite, kmod, kodi,
  4204. kodi-audioencoder-flac, kodi-pvr-argustv, kodi-pvr-filmon,
  4205. kodi-pvr-hts, kodi-pvr-mythtv, kodi-pvr-pctv,
  4206. kodi-pvr-stalker, kodi-pvr-vbox,
  4207. kodi-visualisation-waveforhue, less, lftp, libbluray,
  4208. libcgroup, libconfuse, libcurl, libdcadec, libdrm, libevdev,
  4209. libffi, libfribidi, libfslcodec, libfslparser, libfslvpuwrap,
  4210. libgcrypt, libglew, libglib2, libgtk3, libidn, liblinear,
  4211. liblockfile, libmicrohttpd, libnetfilter_conntrack, libnfs,
  4212. libnftnl, libnl, libnspr, libnss, libpcap, libpfm4, libpng,
  4213. libselinux, libserial, libsoup, libsoxr, libstrophe, libtasn1,
  4214. libtirpc, libtorrent, libupnpp, liburcu, libusb-compat, libuv,
  4215. libv4l, libva, libva-intel-driver, libxcb, lighttpd, links,
  4216. linux, linux-firmware, linux-fusion, linux-headers,
  4217. lirc-tools, localedef, lpeg, lsof, ltp-testsuite,
  4218. lttng-libust, lttng-tools, lua-periphery, luaposix, lvm2, lxc,
  4219. lz4, mdadm, mesa3d, mesa3d-headers, minicom, minidlna, moarvm,
  4220. modem-manager, mosquitto, mpd, mpdecimal, mpg123, mplayer,
  4221. mrouted, msmtp, mtd, mutt, nettle, network-manager, nfs-utils,
  4222. nftables, nginx, nodejs, noip, ntp, ofono, opencv3, openpgm,
  4223. openssl, openswan, openvpn, pango, parted, perl, perl-cross,
  4224. perl-crypt-openssl-random, perl-http-message,
  4225. perl-io-socket-ssl, perl-module-build, perl-mojolicious,
  4226. perl-netaddr-ip, perl-net-dns, perl-net-http, perl-net-ssleay,
  4227. perl-uri, perl-xml-libxml, php, picocom, pixman, pkgconf,
  4228. poco, polarssl, portaudio, portmap, postgresql, proftpd,
  4229. protobuf, protobuf-c, pulseaudio, python-configshell-fb,
  4230. python-networkmanager, python-numpy, python-pyparsing,
  4231. python-pypcap, python-rtslib-fb, python-spidev, python-urwid,
  4232. python-web2py, qemu, qt5base, redis, rngtools, rng-tools,
  4233. rpi-firmware, rpi-userland, rtmpdump, rtorrent, ruby, samba,
  4234. samba4, sane-backends, sconeserver, sdl, sed, setools,
  4235. shairport-sync, shared-mime-info, sland, smartmontools,
  4236. softether, spice-protocol, sqlcipher, sqlite, squid,
  4237. strongswan, stunnel, subversion, sudo, sunxi-tools,
  4238. supervisor, systemd, tar, targetcli-fb, tcpdump, tiff, tor,
  4239. tvheadend, tzdata, uboot-tools, udisks, unionfs, upmpdcli,
  4240. util-linux, vala, valgrind, vim, vlc, vorbis-tools, vsftpd,
  4241. vtun, wavpack, webkitgtk24, weston, whois, wireless-regdb,
  4242. wireshark, wpa_supplicant, xdriver_xf86-input-vmmouse,
  4243. xdriver_xf86-video-imx-viv, xdriver_xf86-video-intel,
  4244. xdriver_xf86-video-sis, xlib_libXi, xorg-server,
  4245. xtables-addons, xterm, xz, zic, znc, zsh
  4246. New packages:
  4247. axfsutils, bitstream, check, dvblast, eventlog, fastd, gauche,
  4248. gmock, graphite2, gssdp, gupnp, gupnp-av, ibrcommon, ibrdtn,
  4249. ibrdtnd, ibrdtn-tools, imx-kobs, iqvlinux, irssi,
  4250. kompexsqlite, libbroadvoice, libcddb, libcodec2, libcrossguid,
  4251. libg7221, libhttpparser, libilbc, libldns, libmng,
  4252. libopenh264, libpam-radius-auth, libpam-tacplus, libsilk,
  4253. libsoundtouch, libssh, libuecc, libyuv, liquid-dsp, luv,
  4254. micropython, micropython-libs, python-pyratemp,
  4255. python-pyroute2, python-ranger, rapidxml, scrypt, sdl2,
  4256. sp-oops-extract, squeezelite, stress-ng, swupdate, syslog-ng,
  4257. x265, xdriver_xf86-video-fbturbo, xxhash, yad, zxing-cpp
  4258. Removed packages:
  4259. blackbox (was deprecated), divine (merged in directfb),
  4260. kobs-ng (replaced by imx-kobs), mediactl (merged in libv4l),
  4261. sawman (merged in directfb), schifra (marked broken since a
  4262. long time), texinfo (host variant only, no longer used), zxing
  4263. (replaced by zxing-cpp),
  4264. Issues resolved (http://bugs.uclibc.org):
  4265. #4099: cut utility from GNU coreutils works incorrect
  4266. #7772: libxml-parser-perl build failure: missing dependency
  4267. ExtUtils/MakeMaker
  4268. #7931: Default configuration for Cubieboard v1 is outdated
  4269. #8116: 2015.05-rc2 raspberrypi2_defconfig network interface
  4270. not coming up
  4271. #8246: X.org DRI2 build issue
  4272. #8256: pointing to /usr/bin/objcopy old version (x86) instead
  4273. of the generated one
  4274. #8266: mplayer build issue
  4275. #8281: pyrexc fails to run when path is too long
  4276. #8316: lttng-tools and lttng-babeltrace executables contain
  4277. bad RPATH pointing to host machine
  4278. #8331: kexec wants shutdown in /sbin, but systemd installs it
  4279. in /usr/sbin
  4280. #8361: Buildroot 2015.08.1 skeleton inittab overwritten by
  4281. busybox's version
  4282. #8366: libevent does not build
  4283. #8386: build failed with external toolchain
  4284. #8391: Node.js 0.12.7 fails to build on raspberry_pi defconfig
  4285. #8396: CCACHE initialization
  4286. #8401: gpsd 3.15 NMEA support
  4287. #8416: cups depends on BR2_DEPRECATED_SINCE_2015_05
  4288. #8421: util-linux installs systemd files in output/target/home/
  4289. 2015.08, Released August 31st, 2015
  4290. Minor fixes.
  4291. OpenCV 3.x package renamed to opencv3. OpenCV 2.4.x
  4292. reintroduced as opencv.
  4293. Updated/fixed packages: bootutils, canfestival, cppcms,
  4294. curlftpfs, dhcpdump, dropbear, erlang-p1-tls, exfat, gnuradio,
  4295. ipkg, libgudev, libmbim, libwebsock, linux-pam, lm-sensors,
  4296. ltrace, midori, network-manager, openssh, perl-file-listing,
  4297. perl-http-cookies, perl-http-daemon, perl-http-negotiate,
  4298. perl-www-robotrules, python-can, qt5base, qt5multimedia,
  4299. setools, sysvinit, tinyalsa, tn5250, tvheadend, uboot, vlc,
  4300. x264, xserver_xorg-server, zyre
  4301. 2015.08-rc2, Released August, 24th 2015
  4302. Fixes all over the tree.
  4303. Toolchain: fix gcc build on NIOS-II.
  4304. Infrastructure: add <fs>_POST_GEN_HOOKS mechanism to fix
  4305. hybrid ISO image generation.
  4306. Architectures: add arm1136j-s variant.
  4307. Updated/fixed packages: apitrace, audit, bcusdk, bdwgc,
  4308. beecrypt, boost, bwm-ng, cdrkit, c-icap, cifs-utils, clapack,
  4309. c-periphery, cpio, cramfs, czmq, dawgdic, dnsmasq, dosfstools,
  4310. dropbear, elfutils, empty, eudev, fan-ctrl, filemq, gnutls,
  4311. guile, haveged, imlib2, libcec, libepoxy, libev, libgpgme,
  4312. libiio, libnetfilter_queue, libnfnetlink, libpfm4, libpthsem,
  4313. librtas, libselinux, libsigsegv, libsodium, libv4l, lightning,
  4314. linux, lirc-tools, lrzsz, mono, mosh, mpd, msmtp, nbd,
  4315. netatalk, nodejs, ola, opencv, oprofile, php, poco,
  4316. postgresql, powertop, protobuf, protobuf-c, qt5base,
  4317. qt5quickcontrols, rapidjson, rng-tools, squid, sysdig,
  4318. sysstat, tftpd, tinc, tz, util-linux, webkitgtk24, weston,
  4319. wireshark, wvstreams, xdriver_xf86-input-synaptics, zyre.
  4320. Issues resolved (http://bugs.uclibc.org):
  4321. #8276: package/dropbear: symlink resolution incorrect
  4322. #8286: Error with buildroot
  4323. #8301: ldconfig parameter in Makefile
  4324. 2015.08-rc1, Released August, 5th 2015
  4325. Fixes all over the tree and new features.
  4326. Architectures:
  4327. - Refactor how the availability of an MMU is described.
  4328. - Minimal support for Cortex-M3
  4329. - Minimal support for AArch64 big-endian
  4330. Toolchains:
  4331. - Add CodeSourcery MIPS 2015.05, remove MIPS 2013.11
  4332. - Use uClibc-ng as the default uClibc version, instead of the
  4333. official uClibc, which hasn't done any release since 3+
  4334. years
  4335. - eglibc is now marked as deprecated
  4336. - GCC: gcc 4.9.x is now the default and was updated to 4.9.3,
  4337. support for gcc 5.x added.
  4338. - Binutils: use Binutils 2.24 as the default, 2.25.x series
  4339. bumped to 2.25.1, remove old Binutils 2.22.
  4340. - Update ARC toolchain components to 2015.06
  4341. - Add support for Fortran when building gcc
  4342. Bootloaders:
  4343. - Support for using the kconfig configuration system in
  4344. U-Boot
  4345. New Defconfigs:
  4346. - VIA VAB-820/AMOS-820
  4347. - OLimex OLinuxino A20 Lime
  4348. - Many new defconfigs for Atmel evaluation boards:
  4349. at91sam9rlek, at91sam9x5ek, sama5d3xek, sama5d4ek, sama5d4
  4350. Xplained Ultra, sama5d3 Xplained.
  4351. - ACME Systems Aria G25
  4352. - WarPboard
  4353. - Altera Cyclone 5 Development Board
  4354. - Xilinx zc706
  4355. - ARC AXS101 and AXS103 Software Development Platforms
  4356. - Significant updates to Raspberry Pi / Raspberry Pi 2
  4357. Infrastructure:
  4358. - Buildroot takes better care now of generating predictable
  4359. permissions in the target filesystem. However, existing
  4360. permissions on a custom skeleton or rootfs overlay will no
  4361. longer be preserved. Therefore, it is necessary to add a
  4362. permission table (BR2_ROOTFS_DEVICE_TABLE) to set the
  4363. required permissions.
  4364. - Add support for kconfig fragments.
  4365. - No longer pass --{enable,disable}-debug to autotools
  4366. packages depending on the value of
  4367. BR2_ENABLE_DEBUG. BR2_ENABLE_DEBUG now only controls
  4368. whether we build with -g or not.
  4369. - Support for extracting archives in .lzma in the generic
  4370. package infrastructure.
  4371. - Remove random-seed file from the default skeleton, since
  4372. seeding the entropy pool with a known seed makes more harm
  4373. than good.
  4374. - In the CVS download helper, add support to use a date as
  4375. the version.
  4376. - Add support for a per-package <pkg>_STRIP_COMPONENTS
  4377. variable, which packages can use to specify how many path
  4378. components should be stripped when extracting the tarball.
  4379. - Addition of a 'kernel-module' package infrastructure, which
  4380. simplifies the packaging of external kernel modules. Many
  4381. existing packages are converted to use it.
  4382. - Allow bootloaders to be implemented in $(BR2_EXTERNAL)
  4383. - Remove /etc/securetty from the default skeleton.
  4384. - Migration of sysV initscripts from the default skeleton to
  4385. a package called 'initscripts', installed only when Busbox
  4386. init or sysvinit are used.
  4387. - Migration of the skeleton logic to a proper 'skeleton'
  4388. package.
  4389. - Addition of a 'linux-tools' infrastructure in the 'linux'
  4390. package, to support building user-space tools bundled
  4391. within the Linux kernel sources, such as perf and cpupower.
  4392. - Usage of backticks instead of make $(shell ...) to execute
  4393. shell commands. This allows to delay the evaluation of such
  4394. commands when actually needed, and not when expanding the
  4395. variables. It is useful to make 'make printvars' less
  4396. noisy, and as a preparation to support top-level parallel
  4397. build.
  4398. - Libtool .la files are not mungled for all package types,
  4399. instead of being handled only for packages using the
  4400. autotools-package infrastructure.
  4401. - Add mechanism to allow packages to express a dependency on
  4402. gcc versions. This is needed for packages that use C++11 or
  4403. C11 support for example.
  4404. Important package updates:
  4405. - Complete rework of the matchbox packaging
  4406. - Lots of fixes in packages for compatibility with musl and
  4407. gcc 5.
  4408. - Hash files added to a large number of packages.
  4409. - Update a significant number of packages to use a new
  4410. hosting, after the announcement of Google Code and
  4411. Gitorious closing.
  4412. - Major packages needed for SELinux support have been merged,
  4413. but the support is not complete yet.
  4414. - Significant update of OpenCV to version 3.0, and addition
  4415. of lots of eatures.
  4416. - Significant update of all packages supporting the GPU and
  4417. VPU of i.MX ARM processors.
  4418. - Addition of systemd support in a significant number of
  4419. packages.
  4420. - Qt5 updated to 5.5.0
  4421. - Use modular X.org server by default instead of KDrive
  4422. Filesystems:
  4423. - Complete overhaul of the iso9660 support. Now allows to use
  4424. directly IS9660 as the root filesystem format and not only
  4425. an initrd, and supports Grub 2 and isolinux in addition to
  4426. Grub.
  4427. Updated packages: a10disp, agentpp, apache, at91bootstrap3,
  4428. audit, barebox, bc, bind, bmon, boost, btrfs-progs,
  4429. ca-certificates, can-utils, ccache, cloog, collectd, connman,
  4430. coreutils, c-periphery, cryptsetup, dado, dbus, dejavu,
  4431. dhcpcd, dnsmasq, dosfstools, dovecot, dovecot-pigeonhole,
  4432. e2fsprogs, ejabberd, erlang-p1-cache-tab, erlang-p1-sip,
  4433. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  4434. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml, ethtool,
  4435. eudev, evtest, exim, expect, explorercanvas, feh, ffmpeg,
  4436. file, flashrom, freescale-imx, freetype, gawk, gcc, gdb,
  4437. gettext, git, glib-networking, gnupg2, gnutls, gpsd, gptfdisk,
  4438. gpu-viv-bin-mx6q, gst-fsl-plugins, harfbuzz, hdparm, heimdal,
  4439. i2c-tools, imagemagick, imx-vpu, iproute2, ipset, isl, iw,
  4440. kodi, kodi-addon-xvdr, kodi-audioencoder-flac,
  4441. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  4442. kodi-audioencoder-wav, lftp, libass, libassuan, libcec,
  4443. libconfi, libcurl, libdrm, libevdev, libfreefare, libfslcodec,
  4444. libfslparser, libfslvpuwrap, libfuse, libglib2, libgpgme,
  4445. libgtk2, libgtk3, libical, libidn, libiio, libinput, libiscsi,
  4446. libllcp, libmicrohttpd, libnfc, libnss, libpcap, libpciaccess,
  4447. libpng, libserialport, libsigrok, libsoc, libtirpc, libubox,
  4448. libunistring, libupnp, libuv, libv4l, libva,
  4449. libva-intel-driver, libXrandr, lighttpd, linenoise, linux,
  4450. linux-firmware, linux-headers, live555, ltrace, lua,
  4451. lua-csnappy, lua-ev, luajit, lua-messagepack, luaperiphery,
  4452. lvm2, lxc, lzo, mesa3d, mesa3d-headers, midori, mmc-utils,
  4453. modem-manager, mono, mosquitto, mpd, mpd-mpc, mpfr, mpg123,
  4454. mtd, musl, nano, netperf, network-manager, nfs-utils, nginx,
  4455. nodejs, ntp, ola, opencv, openldap, openssh, openssl,
  4456. openswan, openvmtools, openvpn, opkg, orbit, orc, pcmanfm,
  4457. perl-cross, perl-encode-locale, perl-io-socket-ssl,
  4458. perl-mojolicious, perl-net-ssleay, perl-path-tiny, perl-uri,
  4459. perl-xml-libxml, php, pinentry, polarssl, postgresql,
  4460. pulseview, pure-ftpd, python, python-dpkt, python-lxml,
  4461. python-networkmanager, python-pyinotify, python-pypcap,
  4462. python-tornado, qextserialport, qt, qt5, rapidjson, redis,
  4463. rpcbind, rpi-firmware, rpi-userland, samba4, shairport-sync,
  4464. snmpp, sqlite, squid, strongswan, stunnel, sudo, sunxi-boards,
  4465. sunxi-mali, sysdig, sysstat, systemd, tcpdump, tiff, tmux,
  4466. tor, txheadend, tzdata, uboot, uclibc, ulogd, upmpdcli,
  4467. usb_modeswitch, usb_modeswitch_data, vala, vsftpd, wayland,
  4468. weston, whois, wireless-regdb, wireshark, x264, xapp_xvinfo,
  4469. xdriver_xf86-input-libinput, xdriver_xf86-input-vmmouse,
  4470. xdriver_xf86-video-cirrus, xdriver_xf86-video-geode,
  4471. xdriver_xf86-video-imx-viv, xdriver_xf86-video-mach64,
  4472. xdriver_xf86-video-neomagic, xdriver_xf86-video-r128,
  4473. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  4474. xdriver_xf86-video-vesa, xkeyboard-config, xlib_libfontenc,
  4475. xlib_libFS, xlib_libXaw, xlib_libxkbfile, xlib_libXrender,
  4476. xlib_libXt, xproto_kbproto, xproto_xproto, xproto_xrandrproto,
  4477. xscreensaver, xserver_xorg-server, xtables-addons, yaml-cpp,
  4478. zic.
  4479. New packages: angularjs, atf, audit, c-icap, c-icap-modules,
  4480. cpio, dawgdic, faketime, fcgiwrap, gflags, glog, initscripts,
  4481. jquery-datetimepicker, kodi-audioencoder-modplug,
  4482. kodi-audioencoder-nosefar, kodi-audioencoder-sidplay,
  4483. kodi-audioencoder-snesapu, kodi-audioencoder-stsound,
  4484. kodi-audioencoder-timidity, kodi-audioencoder-vgmstream,
  4485. kodi-platform, kodi-pvr-argustv, kodi-pvr-dvblink,
  4486. kodi-pvr-dvbviewer, kodi-pvr-filmon, kodi-pvr-hts,
  4487. kodi-pvr-iptvsimple, kodi-pvr-mediaportal-tvserver,
  4488. kodi-pvr-mythtv, kodi-pvr-nextpvr, kodi-pvr-njoy,
  4489. kodi-pvr-pctv, kodi-pvr-stalker, kodi-pvr-vbox,
  4490. kodi-pvr-vdr-vnsi, kodi-pvr-vuplus, kodi-pvr-wmc,
  4491. kodi-screensaver-asteroids, kodi-screensaver-biogenesis,
  4492. kodi-screensaver-crystalmorph, kodi-screensaver-greynetic,
  4493. kodi-screensaver-pingpong, kodi-screensaver-pyro,
  4494. kodi-screensaver-stars, kodi-visualisation-shadertoy,
  4495. kodi-visualisation-spectrum, kodi-visualisation-waveforhue,
  4496. kodi-visualisation-waveform, kvmtool, kyua, libfm,
  4497. libfm-extra, libplatform, librtas, libsodium, libsquish,
  4498. libucl, libump, linux-backports, lua-iconv, lutok, menu-cache,
  4499. moarvm, monkey, mono-gtksharp3, mosh, openipmi, python-can,
  4500. python-pycli, python-pydal, python-pyyaml, python-web2py,
  4501. qpid-proton, qt5webchannel, quazip, racehound, rtl8188eu,
  4502. rtl8821au, sepolgen, setools, skeleton, stm32flash,
  4503. webkitgtk24, xdriver_xf86-video-qxl, zynq-boot-bin.
  4504. Deprecated packages: webkitgtk, libgail, eglibc support in
  4505. glibc package.
  4506. Issues resolved (http://bugs.uclibc.org):
  4507. #4291: Segmentation fault with all binaries that use threads
  4508. when compiled with gcc 4.6
  4509. #6944: building toolchain for sh4 fails
  4510. #7592: Buildroot GCC: -lto requires plugin support in ranlib
  4511. #7628: Python SSL does not get built for Raspberry Pi
  4512. #7682: Missing dependencies for NFS
  4513. #7742: dhcp lacks important features when BR2_ENABLE_DEBUG
  4514. #7754: make: *** [/..../buildroot-2014.11/output/build/host-gcc-initial-4.8.3/.stamp_built] Error 2
  4515. #7946: libglib2-2.42.2 fails to build for sparc-buildroot-linux-gnu
  4516. #7956: glibc 2.20 and 2.21 fail to build for sh64-buildroot-linux-gnu
  4517. #7971: python-flask, python-werkzeug. No module named zlib
  4518. #7981: Target file system skeleton permissions hazard
  4519. #8006: rpcdebug in nfs-utils built for the host
  4520. #8036: alsa-lib headers problem that prevents to compile alsa
  4521. dependent projects
  4522. #8081: systemd init system: /tmp is not mode 1777
  4523. #8121: php opcache extension doesn't get installed
  4524. #8151: x86-64 make fails with ncurses 5.9
  4525. #8156: pkg-kconfig infra broken for *-update-{config, defconfig}
  4526. #8161: default /bin/sh symlink to busybox is full path and not relative
  4527. #8171: glamor missing
  4528. #8191: Request update support for the cubieboard series
  4529. #8201: Important security upgrades for node.js
  4530. 2015.05, Released May 31st, 2015
  4531. Minor fixes.
  4532. Updated/fixed packages: conntrack-tools, directfb, fio, flite,
  4533. gptfdisk, ipmiutil, iproute2, janus-gateway, keyutils, knock,
  4534. libelementary, libgcrypt, libgsasl, libjpeg, libstrophe,
  4535. lttng-libust, nbd, ncurses, nmap, php, postgresql, python,
  4536. python3, sconeserver, udpcast, upmpdcli
  4537. 2015.05-rc3, Released May 22nd, 2015
  4538. Several fixes, mainly related to static linking.
  4539. Updated/fixed packages: acl, alsa-utils, apr, armadillo, attr,
  4540. autoconf-archive, binutils, boost, czmq, dhcpcd, duma,
  4541. enlightenment, exim, fbterm, freerdp, gcc, gdk-pixbuf,
  4542. google-breakpad, gpsd, heirloom-mailx, hwloc, ipmiutil,
  4543. iproute2, jack2, jasper, kmod, lcdproc, leafnode2, libcap-ng,
  4544. libftdi1, libmatroska, libmemcached, libmodbus, libnftnl,
  4545. libsigrok, libupnpp, libuv, libxml-parser-perl, linux,
  4546. linux-headers, lirc-tools, lua-periphery, lxc, mongoose, mono,
  4547. mpg123, mosquitto, neardal, newt, ntp, ola, openldap, opencv,
  4548. php, postgresql, protobuf, pulseaudio, python-pyqt, qemu, qt,
  4549. qt5base, rpi-userland, rsyslog, snmppp, sqlite, tiff,
  4550. tinyxml2, uboot-tools, unionfs, ux5000-firmware, usbredir,
  4551. ushare, vpnc, vsftpd, wavpack, wireless_tools, wsapi,
  4552. wvstreams, xmlstarlet, zeromq, zmqpp
  4553. New packages: c-periphery
  4554. Issues resolved (http://bugs.uclibc.org):
  4555. #8106: mkfs.jffs2 uses the --pagesize parameter incorrectly
  4556. #8111: 2015.05.rc2 LIBFOO_CONF_OPTS not working
  4557. #8126: exim lacks plaintext and cram-md5 auth
  4558. 2015.05-rc2, Released May 11th, 2015
  4559. Minor fixes.
  4560. Toolchain: PR56780 backport to GCC 4.8.4 to fix GDB linking
  4561. issues. Context functions enabled for uClibc snapshot /
  4562. uClibc-NG.
  4563. Architectures: Endian handling symbol for Xtensa, binutils
  4564. fixes.
  4565. Infrastructure: Fix for kernel module stripping when
  4566. localversion contains spaces.
  4567. Updated/fixed packages: at, autoconf-archive, binutils,
  4568. cc-tool, cryptsetup, dstat, expedite, freerdp, giflib,
  4569. gnuchess, guile, ipmiutil, iproute2, mono, monolite, neard,
  4570. ola, poppler, postgresql, python-qt, qt, sqlite, valgrind,
  4571. xlib_libXfont
  4572. Issues resolved (http://bugs.uclibc.org):
  4573. #8086: Cannot select systemd as init with Linaro 2014.09...
  4574. 2015.05-rc1, Released May 4th, 2015
  4575. Fixes all over the tree and new features.
  4576. Architectures: Removed AVR32 support, deprecate SH64, added
  4577. support for steamroller, corei7-avx and core-avx2 x86
  4578. variants.
  4579. Toolchains: IPv6 and Largefile support now enforced for
  4580. uClibc. Corresponding Kconfig symbols removed.
  4581. External CodeSourcery AMD64 2014.05, MUSL-cross 1.1.6 added,
  4582. CS sh2, Xilinx microblaze v2/14.3 removed. Distro-class
  4583. external toolchains are now detected and blacklisted.
  4584. Internal toolchain support for Nios2 added, Blackfin
  4585. removed. Aarch64 and sh musl support. uClibc-ng support added.
  4586. Libatomic is now handled for internal and external
  4587. toolchains. Link time optimization (LTO) support.
  4588. New Defconfigs: Freescale i.MX28 EVK, i.MX31 PDK and SABRE
  4589. Auto, Raspberry Pi 2, RIoTboard,
  4590. Infrastructure: Hashes for a large number of packages have
  4591. been added. Missing hashes now stop the build unless
  4592. explicitly disabled.
  4593. Spaces and colons (:) are now supported in package
  4594. versions. Dependencies can now be listed for the patch step
  4595. (<PKG>_PATCH_DEPENDENCIES). Kconfig and Linux kernel
  4596. extensions infrastructure has been added.
  4597. Makedevs now has a recursive (r) option.
  4598. The variable containing the list of packages to build has been
  4599. renamed from TARGETS to PACKAGES.
  4600. Make external-deps / legal-info / source / source-check have
  4601. been reimplemented using the package infrastructure, so their
  4602. output/behaviour may differ from earlier (some packages were
  4603. not included in the past).
  4604. The old insecure DES password encoding is no longer supported.
  4605. U-Boot patch option now support direct references to patch
  4606. files and URLs in addition to directories of patches. The
  4607. i.MX28 SD format (u-boot.sd) is now supported.
  4608. Updated/fixed packages: agentpp, aircrack-ng, alsa-lib,
  4609. alsa-utils, apr-util, apr, atk, autossh, avahi, avrdude,
  4610. bcusdk, bdwgc, bind, binutils, bmon, boost, botan,
  4611. btrfs-progs, busybox, ca-certificates, cairo, can-utils,
  4612. canfestival, ccache, chrony, civetweb, clamav, cmake,
  4613. collectd, connman, copas, crda, cryptodev-linux, cryptsetup,
  4614. cups, czmq, dbus-cpp, dbus-glib, dbus-python, dbus, dfu-util,
  4615. dhcp, dhcpcd, dialog, dillo, dmraid, dnsmasq, dos2unix,
  4616. dosfstools, dovecot-pigeonhole, dovecot, dropbear, dropwatch,
  4617. dtv-scan-tables, dvdauthor, e2fsprogs, ecryptfs-utils,
  4618. libevas, elfutils, enscript, erlang, espeak, eudev, evemu,
  4619. exfat-utils, exim, f2fs-tools, feh, ffmpeg, fftw, flickcurl,
  4620. fltk, fluxbox, fmlib, fmtools, freeradius-client, freerdp,
  4621. gamin, gawk, gcc-final, gcc, gd, gdb, gengetopt, geoip, git,
  4622. glib-networking, gnu-efi, gnuchess, gnutls, gpsd, gptfdisk,
  4623. gpu-viv-bin-mx6q, gst-plugin-bad, gstreamer, gstreamer1,
  4624. gtest, gvfs, harfbuzz, haserl, haveged, hiawatha,
  4625. hicolor-icon-theme, hostapd, hplip, httping, i2c-tools, icu,
  4626. ifplugd, imagemagick, imlib2, iozone, iproute2, iptables,
  4627. iputils, irqbalance, iw, jack2, jhead, jimtcl, json-c, kexec,
  4628. kismet, kmod, kodi-audioencoder-flac,
  4629. kodi-audioencoder-vorbis, kodi-pvr-addons, kodi, ktap, lcms2,
  4630. libass, libatomic_ops, libbluray, libcap, libcgroup, libcurl,
  4631. libdrm, libdvbsi, libebml, libecore, libedit, liberation,
  4632. libev, libevas, libevdev, libftdi, libgcrypt, libglib2,
  4633. libgpgme, libgtk2, libgtk3, libiconv, libidn, libiio,
  4634. libinput, libiscsi, libksba, liblinear, libmatroska,
  4635. libmicrohttpd, libmodbus, libmpdclient, libnice, libnl,
  4636. libnspr, libnss, libpcap, libpciaccess, libphidget, libplayer,
  4637. libpthsem, libqmi, librsvg, libseccomp, libsigrok, libsoup,
  4638. libsrtp, libssh2, libtasn1, libtool, libunistring, liburcu,
  4639. libusb, libuv, libva-intel-driver, libva, libvncserver,
  4640. libvorbis, libvpx, libwebsockets, libxml2, libzip, lightning,
  4641. lighttpd, linknx, linphone, linux-firmware, linux-headers,
  4642. linux-pam, live555, ljsyscall, lmbench, lockdev, logrotate,
  4643. lpc3250loader, lpeg, lsof, lttng-libust, lttng-modules,
  4644. lttng-tools, lua, luacrypto, luafilesystem, luajit, luaposix,
  4645. luarocks, lvm2, lxc, make,
  4646. matchbox-{common,desktop,fakekey,keyboard,lib,startup-monitor,vm},
  4647. matchbox, mcelog, memcached, memstat, memtest86, mesa3d,
  4648. minidlna, mjpegtools, mjpg-streamer, modem-manager, mongoose,
  4649. monit, mono, monolite, mp4v2, mpc, mpd, mpdecimal, mpg123,
  4650. mplayer, musl, nano, nbd, ncftp, ncmpc, ncurses, ne10, neard,
  4651. neardal, net-tools, netatalk, netsnmp, network-manager, nginx,
  4652. nodejs, ntfs-3g, ntp, numactl, odhcp6c, ofono, open2300,
  4653. opencv, openldap, openntpd, openocd, openssh, openssl,
  4654. openswan, opentyrian, openvmtools, openvpn, oprofile, p11-kit,
  4655. pango, patch, patchelf, pciutils, pcre, perf, perl-gdgraph,
  4656. perl-io-socket-ssl, perl-json-tiny, perl-module-build,
  4657. perl-mojolicious, perl-net-ssleay, perl-path-tiny,
  4658. perl-xml-libxml, perl, phidgetwebservice, php-gnupg, php,
  4659. pkgconf, polarssl, poppler, popt, postgresql, powerpc-utils,
  4660. pppd, prboom, procps-ng, proftpd, psplash, ptpd2,
  4661. python-{cheetah,coherence,django,markdown,netifaces,pam,six},
  4662. python-tornado, python-twisted, python-zope-interface, python,
  4663. python3, qemu, qt, qt5, qt5base, qt5multimedia,
  4664. qt5xmlpatterns, qt5cinex, quagga, qwt, radvd, readline,
  4665. rng-tools, rpcbind, rpi-firmware, rpi-userland, rsync,
  4666. rsyslog, rtai, rtmpdump, ruby, sam-ba, samba, samba4,
  4667. sane-backends, sconeserver, shairport-sync, sigrok-cli, slang,
  4668. smcroute, snmppp, socat, socketcand, sofia-sip, sox,
  4669. spawn-fcgi, speex, sqlcipher, sqlite, squid, strace,
  4670. strongswan, stunnel, sudo, sunxi-boards, swig, sysstat,
  4671. systemd, tcpdump, tftpd, thrift, thttpd, ti-gfx, ti-utils,
  4672. tiff, tinyalsa, tn5250, transmission, trinity, tslib,
  4673. tvheadend, tzdata, uboot-tools, uclibc, ulogd, usb_modeswitch,
  4674. usbutils, ustr, util-linux, vala, valgrind, vlc, wayland,
  4675. webp, weston, wget, which, whois, wireless-regdb,
  4676. wireless_tools, wireshark, wpa_supplicant, wvstreams,
  4677. xapp_{bdftopcf,bitmap,fonttosfnt,fslsfonts},
  4678. xapp_{fstobdf,iceauth,mkfontscale,oclock,rgb,sessreg,setxkbmap},
  4679. xapp_{showfont,smproxy,twm,x11perf,xcalc,xclipboard,xcmsdb},
  4680. xapp_{xdbedizzy,xditview,xdpyinfo,xdriinfo,xedit,xev,xeyes},
  4681. xapp_{xf86dga,xfsinfo,xgamma,xgc,xhost,xinit,xinput,xkbcomp},
  4682. xapp_{xkbevd,xkbprint,xlsatoms,xlsfonts,xmag,xman,xmh,xmodmap},
  4683. xapp_xmore, xcb-util-image, xcb-util-keysyms,
  4684. xdata_xcursor-themes,
  4685. xdriver_xf86-input-{evdev,keyboard,synaptics,void},
  4686. xdriver_xf86-video-{ati,cirrus,geode,mach64,mga,neomagic},
  4687. xdriver_xf86-video-{r128,savage,siliconmotion,sis,tdfx},
  4688. xdriver_xf86-video-{trident,vmware,voodoo}, xenomai,
  4689. xfont_font-util, xkeyboard-config,
  4690. xlib_lib{ICE,X11,Xdmcp,Xfont,Xpm,XvMC},
  4691. xlib_lib{Xxf86vm,xshmfence,xtrans}, xproto_randrproto,
  4692. xproto_xproto, xserver_xorg-server, x11vnc, x264, xerces,
  4693. xorriso, xterm, xz, yaml-cpp, zeromq, zic, zmqpp
  4694. New packages: apache, autoconf-archive, batctl,
  4695. bitstream-vera, bullet, cc-tool, doxygen, drbd-utils,
  4696. dvdrw-tools, gnuradio, gst1-imx, hans, hwloc, ijs,
  4697. imx-usb-loader, inconsolata, iodine, iotop, ipmiutil, jsoncpp,
  4698. leveldb, libdcadec, libdri2, libfreeimage, libftdi1,
  4699. libsidplay2, lirc-tools, lua-periphery, mc, mesa3d-headers,
  4700. mosquitto, nvidia-driver, nvidia-tegra23{,-binaries,-codecs},
  4701. openjpeg, opusfile, perl-crypt-openssl-{random,rsa},
  4702. perl-db-file, perl-digest-{hmac,sha1},
  4703. perl-encode-{detect,locale}, perl-file-{listing,util},
  4704. perl-html-{parser,tagset}, perl-http-cookies,
  4705. perl-http-{daemon,date,message,negotiate}, perl-io-html,
  4706. perl-libwww-perl, perl-lwp-mediatypes, perl-mail-dkim,
  4707. perl-mailtools, perl-mime-base64, perl-net-{dns,http},
  4708. perl-netaddr-ip, perl-time-hires, perl-timedate, perl-uri,
  4709. perl-www-robotrules, powertop, pulseview,
  4710. python-{cherrypy,lxml,mako,pyqt,pyxml,sip,spidev,ws4py}, qpdf,
  4711. qt-webkit-kiosk, sl, softether, sysdig, tinyxml2, tor, tovid,
  4712. unixodbc, wf111, wine, libepoxy, xapp_xcompmgr,
  4713. xapp_xfindproxy, xcb-util-cursor, xcb-util-renderutil,
  4714. xdriver_xf86-input-libinput, xdriver_xf86-video-imx{,-viv},
  4715. xproto_xproxymanagementprotocol
  4716. Removed packages: gtk2-theme-hicolor
  4717. Deprecated packages: samba
  4718. Issues resolved (http://bugs.uclibc.org):
  4719. #7478: Multiple chosen python modules are not built due to...
  4720. #7508: Use of BR2_EXTERNAL and dependencies to existing packages
  4721. #7676: Package procps-ng installs binaries to nonsensical folder
  4722. #7724: Startx is not installed in the target
  4723. #7760: botan: wrong prefix in botan-1.10.pc
  4724. #7826: Building of cdparanoia
  4725. #7844: Lua with hard-float on MIPS by buildroot doesn't work
  4726. #7874: X.org configure error
  4727. #7941: glibc-2.20 fails to build for sparc-buildroot-linux-gnu
  4728. #7951: gcc 4.9.2 fails to build for sparc-buildroot-linux-gnu
  4729. #7961: Qt5 fails to build for xtensa-buildroot-linux-uclibc
  4730. #7976: mkuser script fails with: user already exists with...
  4731. #8011: When building only busybox and strace, strace fails...
  4732. #8016: collectd fails to build, network.c:171:19: error:...
  4733. #8041: error on building libcurl7.42.0
  4734. 2015.02, Released March 1st, 2015
  4735. Minor fixes.
  4736. Updated/fixed packages: civetweb, ding-libs,
  4737. directfb-examples, glibc, gnupg, gnupg2, gpm,
  4738. gst-plugins-good, gst1-plugins-good, freetype, libao, libevas,
  4739. libevent, libfribidi, libgcrypt, libgtk2, libshout, libsrtp,
  4740. libtheora, libupnpp, libxmlrpc, linux, make, opus, pinentry,
  4741. rpi-firmware, shared-mime-info, vlc, vorbis-tools,
  4742. xcb-util-keysyms
  4743. Removed packages: libgc
  4744. 2015.02-rc3, Released February 24th, 2015
  4745. Minor fixes.
  4746. Cmake and rebar (erlang) infrastructure fixes.
  4747. Updated/fixed packages: bind, btrfs-progs, busybox, e2fsprogs,
  4748. evtest, ffmpeg, fltk, gnutls, i2c-tools, imagemagick, libxcb,
  4749. make, mjpg-streamer, netsnmp, opentyrian, php, polarssl,
  4750. qt5base, samba, samba4, sudo, util-linux, xserver_xorg-server
  4751. 2015.02-rc2, Released February 15th, 2015
  4752. Minor fixes.
  4753. raspberrypi: fix kernel sha1 for DT variant.
  4754. Updated/fixed packages: dbus, dvdauthor, git, libsemanage,
  4755. libsepol, libssh2, mplayer, ntp, openvmtools, python3,
  4756. qt5base, qt5connectivity, xserver_xorg-server
  4757. 2015.02-rc1, Released February 8th, 2015
  4758. Fixes all over the tree and new features.
  4759. Static/shared library handling reworked. This is now a
  4760. tristate (shared only / shared and static / static
  4761. only). Default is now shared only to speed up the
  4762. build. BR2_PREFER_STATIC_LIB is now called BR2_STATIC_LIBS.
  4763. The toolchain (internal and external) will now warn when an
  4764. unsafe library or header path is used (such as /usr/include or
  4765. /usr/lib). If BR2_COMPILER_PARANOID_UNSAFE_PATH is enabled
  4766. under build options this instead becomes an error.
  4767. A installation path issue with the internal musl toolchain
  4768. support has been fixed so it is now possible to reuse it as an
  4769. external toolchain.
  4770. Architectures: Freescale E5500 and E6500 PowerPC support
  4771. added, deprecated MIPS 1/2/3/4 support removed.
  4772. New defconfigs: Freescale p2020ds, MIPS creator CI20,
  4773. Raspberrypi with DT, UDOO Quad.
  4774. 'make <foo>_defconfig' now saves the path to the defconfig in
  4775. the .config, so a 'make savedefconfig' automatically updates
  4776. it.
  4777. Infrastructure for packages using the Erland rebar tool has
  4778. been added.
  4779. Hashes for a large number of packages have been added. Hashes
  4780. are now checked for both target and host packages.
  4781. The system menu now has an option to automatically configure a
  4782. network interface through DHCP at bootup.
  4783. The default filesystem skeleton now uses a separate tmpfs for
  4784. /run instead of a symlink to /tmp/ for security reasons / to
  4785. protect against conflicts with user generated temporary files.
  4786. BR2_EXTERNAL is now exported to post-build and post-image
  4787. scripts.
  4788. New packages: bdwgc, benejson, blktrace, bootstrap, cgic,
  4789. ding-libs, dvdauthor, ejabberd, erlang-goldrush, erlang-lager,
  4790. erlang-p1-cache-tab, erlang-p1-iconv, erlang-p1-sip,
  4791. erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
  4792. erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml,
  4793. erlang-p1-zlib, exiv2, freeradius-client, gengetopt, glmark2,
  4794. gpu-amd-bin-mx51, guile, host-qemu, ifupdown, iperf3,
  4795. janus-gateway, kodi, kodi-audioencoder-flac,
  4796. kodi-audioencoder-lame, kodi-audioencoder-vorbis,
  4797. kodi-audioencoder-wav, libcli, libiio, liblinear, libnice,
  4798. libselinux, libsemanage, libserialport, libsigro,
  4799. libsigrokdecode, libsrtp, liburiparser, libvips, libwebsock,
  4800. libz160, libzip, lightning, mcelog, memtest86, mjpegtools,
  4801. mjpg-streamer, mke2img, mpd-mpc, netsurf-buildsystem, odhcp6c,
  4802. openldap, python-alsaaudio, python-certifi, python-cheetah,
  4803. python-coherence, python-django, python-docopt, python-enum,
  4804. python-enum34, python-flask, python-gobject, python-httplib2,
  4805. python-ipaddr, python-itsdangerous, python-jinja,
  4806. python-markdown, python-markupsafe, python-networkmanager,
  4807. python-pam, python-psutil, python-pyftpdlib, python-pyinotify,
  4808. python-pysendfile, python-pyxb, python-requests, python-six,
  4809. python-twisted, python-webpy, python-werkzeug,
  4810. python-zope-interface, qt5cinex, sigrok-cli, sofia-sip,
  4811. start-stop-daemon, szip, triggerhappy, ustr, vnstat, xorriso,
  4812. xtables-addons
  4813. Removed packages (target): bison, distcc, gob2, m4
  4814. Issues resolved (http://bugs.uclibc.org):
  4815. #7556: make interactive CLI optional for nftables
  4816. #7730: Error while connecting Qt Cretaor to device
  4817. #7766: logrotate default gzip path is usually wrong
  4818. #7790: Invalid ext4 image generated by Buildroot
  4819. 2014.11, Released December 1st, 2014
  4820. Minor fixes.
  4821. Infrastructure: LD_LIBRARY_PATH handling tweak to ensure
  4822. current working directory isn't searched.
  4823. Updated/fixed packages: gd, gdb, libwebsockets, luajit, mono,
  4824. parted, shairport-sync, util-linux, xapp_bdftopcf,
  4825. xserver_xorg-server
  4826. 2014.11-rc3, Released November 28th, 2014
  4827. Fixes all over the tree.
  4828. System: File permissions of /etc/random-seed made more
  4829. restrictive.
  4830. Toolchain: Various fixes related to locale handling, a fix for
  4831. building the toolchain wrapper on MIPS.
  4832. Updated/fixed packages: bind, binutils. botan, btrfsprogs,
  4833. clamav, czmq, dhcp, dillo, dovecot, erlang, flac, gd, glibc,
  4834. gptfdisk, gst1-validate, heirloom-mailx, lame, libksba,
  4835. libllcp, libnspr, libpng, libshairplay, libtirpc, linux,
  4836. linux-headers, mpdecimal, mpg123, network-manager, nfstables,
  4837. nfs-utils, openssl, pcituils, qt, radvd, rtai, sqlcipher,
  4838. sstrip, tcpdump, uclibc, uemacs, ushare, wayland, weston,
  4839. xl2tp, xserver_xorg-server
  4840. Issues resolved (http://bugs.uclibc.org):
  4841. #7670: Fails to build mpc-1.0.2 on latest Cygwin
  4842. 2014.11-rc2, Released November 21st, 2014
  4843. Fixes all over the tree.
  4844. Inittab tweaks for shutdown handling (busybox and sysvinit).
  4845. Updated/fixed packages: aircrack-ng, botan, canfestival,
  4846. clamav, coreutils, czmq, dbus, dovecot, duma, e2fsprogs,
  4847. erlang, gcc, iputils, libcap, libgcrypt, libmemcached,
  4848. libssh2, libunwind, libv4l, linux-headers, mesa3d-demos, mutt,
  4849. mysql, ndisc6, nodejs, omniorb, perl-cross, php,
  4850. python-tornado, python3, qemu, qt5base, qt5webkit, rpm,
  4851. rt-tests, ruby, schifra, sdl_sound, shairport-sync, sysvinit,
  4852. tstools, tzdata, wireshark, x264
  4853. Issues resolved (http://bugs.uclibc.org):
  4854. #7646: strftime on datetime not works on python3
  4855. 2014.11-rc1, Released November 12th, 2014
  4856. Fixes all over the tree and new features.
  4857. Toolchains: Use -mcpu / -march instead of -mtune. Support
  4858. additional ARC and sparc variants. Updated Code sourcery
  4859. and Linaro external toolchains.
  4860. Defconfigs: Freescale iMX6DL SabreSD, Minnowboard MAX, QEMU
  4861. powerpc64 pseries added and a number of updates to the
  4862. existing configurations.
  4863. Infrastructure: Buildroot is now less noisy when built with
  4864. the silent option (make -s).
  4865. A number of package infrastructure variables have been renamed
  4866. from *_OPT to *_OPTS for constency. Buildroot will complain if
  4867. the old names are used to assist in updating out of tree
  4868. packages.
  4869. Fixes for host systems where bash isn't located in /bin, and
  4870. older systems not supporting mktemp --tmpdir.
  4871. Various cleanups of users/groups in the default skeleton.
  4872. There is now an option to choose what shell /bin/sh points to.
  4873. Documentation: Various updates to the user manual. The
  4874. asciidoc documentation handling has now been extended so it
  4875. can be used by (BR2_EXTERNAL) packages.
  4876. Updated/fixed packages: acl, acpid, agentpp, aircrack-ng,
  4877. alsa-lib, alsamixergui, alsa-utils, apitrace, apr, apr-util,
  4878. argus, arptables, at, atftp, atk, attr, audiofile, aumix,
  4879. automake, autossh, avahi, avrdude, axel, bandwidthd, bash,
  4880. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  4881. bluez_utils, bmon, boost, bootutils, bridge-utils,
  4882. btrfs-progs, busybox, bwm-ng, bzip2, ca-certificates, cairo,
  4883. ccache, ccid, ccrypt, cdrkit, cegui06, celt051, chrony,
  4884. cifs-utils, civetweb, cjson, clapack, classpath, cloog, cmake,
  4885. collectd, connman, copas, coreutils, coxpcall, cppcms, cppdb,
  4886. cppzmq, cramfs, crda, cryptsetup, ctorrent, cups, cvs, cwiid,
  4887. czmq, dash, dbus, dbus-cpp, dbus-glib, dbus-python, dejavu,
  4888. dhcp, dhcpcd, dhcpdump, dialog, dillo, directfb, distcc,
  4889. dmalloc, dmidecode, dmraid, dnsmasq, doc-asciidoc.mk,
  4890. dosfstools, dropbear, dropwatch, dstat, dtach, dtc, dvbsnoop,
  4891. e2fsprogs, ecryptfs-utils, ed, efl, eigen, elf2flt, elfutils,
  4892. enlightenment, enscript, erlang, espeak, ethtool, eudev,
  4893. evemu, evtest, exfat, exfat-utils, exim, expat, expect,
  4894. explorercanvas, faifa, fakeroot, fan-ctrl, fbdump,
  4895. fb-test-app, fetchmail, ffmpeg, file, filemq, findutils, flac,
  4896. flann, flickcurl, flite, fltk, fluxbox, fmc, fmlib,
  4897. fontconfig, foomatic-filters, freerdp, freescale-imx,
  4898. freetype, ftop, fxload, gamin, gcc, gd, gdb, gdk-pixbuf,
  4899. genimage, genpart, genromfs, geoip, gettext, giblib, git,
  4900. glibc, glib-networking, gmp, gmpc, gnu-efi, gnupg, gnupg2,
  4901. gnuplot, gnutls, google-breakpad, gpm, gpsd, gptfdisk,
  4902. gpu-viv-bin-mx6q, grantlee, grep, gsl, gst1-libav,
  4903. gst1-plugins-{bad,base,good,ugly}, gst-ffmpeg,
  4904. gst-fsl-plugins, gst-omx, gst-plugins-{bad,base,good,ugly},
  4905. gst-plugin-x170, gstreamer, gstreamer1, gtest, gtk2-engines,
  4906. gutenprint, gvfs, harfbuzz, haserl, haveged, hdparm, heimdal,
  4907. heirloom-mailx, hiawatha, hostapd, hplip, htop, httping,
  4908. hwdata, i2c-tools, icu, ifplugd, igh-ethercat, imagemagick,
  4909. imlib2, imx-lib, imx-vpu, inadyn, inotify-tools, input-tools,
  4910. intltool, iperf, iproute2, iprutils, ipsec-tools, ipset,
  4911. iptables, iputils, iw, jamvm, jansson, jasper, jimtcl, joe,
  4912. jpeg-turbo, jq, jquery-keyboard, jquery-mobile, jquery-ui,
  4913. jquery-ui-themes, jquery-validation, jsmin, json-c,
  4914. json-javascript, kbd, kexec, kexec-lite, keyutils, kismet,
  4915. kmod, knock, ktap, lame, lbase64, lbreakout2, lcdproc, lcms2,
  4916. lesstif, lftp, libaio, libao, libarchive, libargtable2,
  4917. libass, libassuan, libatasmart, libbluray, libbsd, libcap,
  4918. libcap-ng, libcdio, libcec, libcgicc, libcgroup, libcofi,
  4919. libconfig, libconfuse, libcurl, libdaemon, libdnet, libdrm,
  4920. libdvdnav, libecore, libedbus, libedit, libedje, libeet,
  4921. libelementary, libelf, libenca, libethumb, libevas,
  4922. libevas-generic-loaders, libevent, libexif, libeXosip2,
  4923. libffi, libftdi, libfuse, libgail, libgcrypt, libgeotiff,
  4924. libglade, libglib2, libgpgme, libgtk2, libhid, libidn,
  4925. libinput, libiscsi, libjson, libksba, liblockfile,
  4926. liblog4c-localtime, liblogging, libmad, libmatroska, libmbim,
  4927. libmemcached, libmicrohttpd, libmpdclient, libmpeg2, libndp,
  4928. libnfc, libnfs, libnftnl, libnl, libnspr, libnss, liboauth,
  4929. libogg, liboping, libosip2, libpcap, libpciaccess, libpfm4,
  4930. libplayer, libplist, libpng, libpthsem, libqmi, libqrencode,
  4931. libraw, libreplaygain, libroxml, librsvg, librtlsdr,
  4932. libsamplerate, libseccomp, libsecret, libshairplay, libsoc,
  4933. libsoup, libsoxr, libssh2, libstrophe, libsvg, libsvg-cairo,
  4934. libtasn1, libtheora, libtirpc, libtorrent, libubox, libuci,
  4935. libungif, liburcu, libusb, libuv, libv4l, libva,
  4936. libva-intel-driver, libvncserver, libvorbis, libvpx,
  4937. libwebsockets, libxcb, libxml2, libxml-parser-perl, libxmlrpc,
  4938. libxslt, lighttpd, linenoise, linknx, links, linphone,
  4939. linux-firmware, linux-fusion, linux-headers, linux-pam,
  4940. linux-zigbee, lite, live555, ljlinenoise, lmbench, lm-sensors,
  4941. localedef, lockdev, lockfile-progs, log4cxx, lpty, lrandom,
  4942. lrzsz, lshw, lsof, lsqlite3, ltp-testsuite, ltrace, ltris,
  4943. lttng-babeltrace, lttng-libust, lttng-modules, lttng-tools,
  4944. lua, luabitop, lua-coat, lua-coatpersistent, lua-csnappy,
  4945. lua-ev, luajit, luajson, lualogging, lua-messagepack,
  4946. lua-msgpack-native, luaposix, luarocks, luasec, luasocket,
  4947. luasql-sqlite3, lua-testmore, lunit, lvm2, lxc, lz4, lzlib,
  4948. lzma, m4, madplay, make, makedevs, Makefile.in,
  4949. matchbox-common, matchbox-desktop, matchbox-fakekey,
  4950. matchbox-keyboard, matchbox-lib, matchbox-panel,
  4951. matchbox-startup-monitor, matchbox-wm, mcrypt, mdadm,
  4952. media-ctl, mediastreamer, memcached, memstat, memtester,
  4953. mesa3d, metacity, midori, mii-diag, minidlna, mmc-utils,
  4954. modem-manager, mongoose, mongrel2, monit, mpc, mpd, mpdecimal,
  4955. mpfr, mpg123, mplayer, mrouted, msmtp, mtd, mtools, mtr,
  4956. musepack, musl, mutt, mxml, mysql, nano, nanocom, nbd, ncftp,
  4957. ncurses, ndisc6, ne10, neard, neon, netatalk, netperf,
  4958. netsnmp, nettle, net-tools, network-manager, newt, nfs-utils,
  4959. ngrep, nmap, nodejs, nss-mdns, ntfs-3g, ntp, numactl, nut,
  4960. nuttcp, ofono, ola, omap-u-boot-utils, omniorb,
  4961. on2-8170-modules, opencore-amr, opencv, openntpd, openobex,
  4962. openocd, openpowerlink, openssh, openssl, openswan,
  4963. opentyrian, opentyrian-data, openvpn, opkg, oprofile, opus,
  4964. opus-tools, orbit, orc, ortp, p11-kit, pango, parted,
  4965. pciutils, pcmanfm, pcre, pcsc-lite, perf, perl, perl-gd,
  4966. perl-gdgraph, perl-io-socket-ssl, perl-json-tiny,
  4967. perl-module-build, perl-mojolicious, perl-net-ssleay,
  4968. perl-path-tiny, perl-xml-libxml, perl-xml-parser, php,
  4969. php-geoip, php-gnupg, php-imagick, php-memcached, php-ssh2,
  4970. php-yaml, php-zmq, picocom, pifmrds, pinentry, pixman,
  4971. pkg-autotools.mk, pkg-cmake.mk, pkg-download.mk,
  4972. pkg-generic.mk, pkg-kconfig.mk, pkg-luarocks.mk, pkg-perl.mk,
  4973. pkg-python.mk, pkg-utils.mk, poco, polarssl, polkit, poppler,
  4974. popt, portaudio, portmap, postgresql, powerpc-utils, pppd,
  4975. pptp-linux, prboom, procps-ng, proftpd, protobuf, protobuf-c,
  4976. psmisc, ptpd2, pulseaudio, pv, pwgen, python, python3,
  4977. python-dialog, python-ipy, python-keyring, python-mad,
  4978. python-netifaces, python-numpy, python-protobuf, python-pyasn,
  4979. python-pyparsing, python-pyro, python-pyusb, python-serial,
  4980. python-setuptools, qdecoder, qemu, qextserialport, qjson, qt,
  4981. qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
  4982. qt5graphicaleffects, qt5imageformats, qt5multimedia,
  4983. qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
  4984. qt5serialport, qt5svg, qt5webkit, qt5webkit-examples,
  4985. qt5websockets, qt5x11extras, qt5xmlpatterns, qtuio, quagga,
  4986. quota, qwt, radvd, rapidjson, rdesktop, redis, rings, rpcbind,
  4987. rpi-firmware, rpi-userland, rpm, rp-pppoe, rrdtool,
  4988. rsh-redone, rsync, rsyslog, rtai, rtmpdump, rt-tests, rubix,
  4989. ruby, samba, sam-ba, samba4, sane-backends, schifra,
  4990. sconeserver, scons, screen, sdl, sdl_gfx, sdl_image,
  4991. sdl_mixer, sdl_net, sdl_sound, sdl_ttf, sed, ser2net,
  4992. setserial, sg3_utils, shared-mime-info, simicsfs, sispmctl,
  4993. slang, slirp, smcroute, smstools3, snmppp,
  4994. snowball-hdmiservice, socat, socketcand, sox, spawn-fcgi,
  4995. speex, spice, spice-protocol, sqlcipher, sqlite, squashfs,
  4996. squid, sredird, startup-notification, strace, stress,
  4997. strongswan, stunnel, subversion, sudo, sunxi-boards,
  4998. sunxi-cedarx, swig, sylpheed, synergy, sysklogd, sysstat,
  4999. systemd, sysvinit, taglib, tar, tcl, tcllib, tcpdump,
  5000. tcpreplay, texinfo, tftpd, thrift, thttpd, tiff, ti-utils,
  5001. tn5250, torsmo, trace-cmd, transmission, tslib, tstools,
  5002. tvheadend, twolame, tz, uboot-tools, uclibc, udisks, ulogd,
  5003. upmpdcli, upx, urg, usb_modeswitch, usbmount, usbredir,
  5004. usbutils, util-linux, valgrind, vde2, vim, vlc, vo-aacenc,
  5005. vorbis-tools, vpnc, vsftpd, vtun, wayland, webkit, webp,
  5006. webrtc-audio-processing, weston, wget, whois, wireless-regdb,
  5007. wireshark, wpa_supplicant, wvstreams, x11r7, x11vnc,
  5008. xapp_xcalc, xapp_xdm, xapp_xdpyinfo, xapp_xf86dga, xapp_xfs,
  5009. xapp_xinit, xapp_xkbevd, xapp_xmh, xapp_xrandr, xapp_xsm,
  5010. xbmc, xbmc-pvr-addons, xcb-proto, xcursor-transparent-theme,
  5011. xdriver_xf86-input-mouse, xdriver_xf86-video-{ast,intel},
  5012. xdriver_xf86-video-vmware, xenomai, xerces,
  5013. xfont_font-adobe-{100,75}dpi,
  5014. xfont_font-adobe-utopia-{100dpi,75dpi,type1},
  5015. xfont_font-alias, xfont_font-arabic-misc,
  5016. xfont_font-bh-100dpi, xfont_font-bh-75dpi,
  5017. xfont_font-bh-lucidatypewriter-100dpi,
  5018. xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
  5019. xfont_font-bh-type1, xfont_font-bitstream-100dpi,
  5020. xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
  5021. xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
  5022. xfont_font-daewoo-misc, xfont_font-dec-misc,
  5023. xfont_font-ibm-type1, xfont_font-isas-misc,
  5024. xfont_font-jis-misc, xfont_font-micro-misc,
  5025. xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
  5026. xfont_font-misc-meltho, xfont_font-misc-misc,
  5027. xfont_font-mutt-misc, xfont_font-schumacher-misc,
  5028. xfont_font-screen-cyrillic, xfont_font-sony-misc,
  5029. xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
  5030. xfont_font-xfree86-type1, xfsprogs, xinetd, xkeyboard-config,
  5031. xlib_libdmx, xlib_libFS, xlib_libpciaccess, xlib_libSM,
  5032. xlib_libX11, xlib_libXaw, xlib_libXext, xlib_libXfont,
  5033. xlib_libXi, xlib_libXinerama, xlib_libXrandr, xlib_libXrender,
  5034. xlib_libXres, xlib_libXScrnSaver, xlib_libXt, xlib_libXv,
  5035. xlib_libXvMC, xlib_libXxf86dga, xlib_libXxf86vm, xmlstarlet,
  5036. xproto_xcmiscproto, xproto_xextproto, xscreensaver,
  5037. xserver_xorg-server, xterm, xz, zeromq, zlib, zlog, zmqpp,
  5038. znc, zsh, zxing
  5039. New packages: adwaita-icon-theme, am335x-pru-package,
  5040. bcache-tools, biosdevname, botan, canfestival, clamav,
  5041. cppunit, dos2unix, dovecot, dovecot-pigeonhole, getent, glm,
  5042. gst1-validate, hicolor-icon-theme, ipmitool, leafnode2,
  5043. libdvbcsa, libgtk3, libphidget, libshout, libunistring,
  5044. libupnpp, mesa3d-demos, modplugtools, mono, monolite, mp4v2,
  5045. netcat-openbsd, nginx, odhcploc, openvmtools,
  5046. phidgetwebservice, pps-tools, pure-ftpd,
  5047. python-configshell-fb, python-rtslib-fb, python-urwid, qlibc,
  5048. qt5location, shairport-sync, spidev_test, targetcli-fb,
  5049. tinyalsa, trinity, x264, yaml-cpp, ympd
  5050. Removed packages: libelf
  5051. Issues resolved (http://bugs.uclibc.org):
  5052. #261: New package: wxWidgets
  5053. #325: New package: ratpoison
  5054. #405: New package: OpenVZ tools
  5055. #1309: New package: rdiff-backup
  5056. #3427: New package: nginx
  5057. #3655: New package: libav
  5058. #3991: New Package: open-vm-tools (Vmware Tools)
  5059. #6878: dmraid: disabled on ARC
  5060. #6950: Full unicode support in ncurses
  5061. #7010: jamvm builds and runs fine under mips (be)
  5062. #7088: elfutils on Blackfin doesn't build
  5063. #7142: ecryptfs needs getent to run
  5064. #7280: CMake toolchain file uses the FORCE attribute on CMAKE_CXX_FLAGS
  5065. #7346: [2014.08rc3] vim-8ae50e3ef8bf.tar.gz can not be downloaded, ...
  5066. #7352: [2014.08-rc3] diffutils-3.3 failed on building
  5067. #7358: rpi-userland: linking with bcm_host doesn't give vc_dispmanx_*
  5068. #7364: monit builds a static application, even though BR2_PREFER_...
  5069. #7370: ngrep - requires --with-pcap-includes fully defined to find...
  5070. #7442: rootfs remount does not work as expected with sysvinit
  5071. #7448: Having export MACHINE="something" breaks glibc build on IMX6...
  5072. #7568: musl buildroot-toolchain does not put libgcc_s.so.1 into place
  5073. #7574: quota-4.01 fails to build statically
  5074. 2014.08, Released September 1st, 2014
  5075. Minor manual fixes/additions.
  5076. Updated/fixed packages: btrfs-progs, cmake, cppcms, exim,
  5077. lftp, libdaemon, libev, libgpgme, libiqrf, libnl, libplist,
  5078. libroxml, libwebsockets, mesa3d, mpd, mtdev2tuio, musepack,
  5079. perl-gd, php-geoip, php-gnupg, php-imagick, php-memcached,
  5080. php-ssh2, php-yaml, php-zmq, polarssl, ruby, systemd, taglib,
  5081. uboot-tools, upmpdcli, webkit, xapp_xfs, xapp_luit,
  5082. xscreensaver, yajl
  5083. Issues resolved (http://bugs.uclibc.org):
  5084. #7346: vim-8ae50e3ef8bf.tar.gz can not be downloaded, 404 not found
  5085. 2014.08-rc3, Released August 26th, 2014
  5086. Minor fixes.
  5087. User manual update / restructuring.
  5088. Updated/fixed packages: cairo, ecryptfs-utils, gettext,
  5089. gstreamer, gstreamer1, gutenprint, icu, imagemagick, jack2,
  5090. lbreakout2, libevas-generic-loaders, libftdi, libinput,
  5091. libtorrent, ltris, msgpack, ntp, php, procps-ng, pulseaudio,
  5092. thrift, tvheadend, usb_modeswitch, xmlstarlet,
  5093. Issues resolved (http://bugs.uclibc.org):
  5094. #7136: ecryptfs-utils needs gettext to run when glibc/eglibc...
  5095. #7322: libgomp dependency issue with imagemagick
  5096. #7328: Git dl of versions in x/y broken
  5097. 2014.08-rc2, Released August 18th, 2014
  5098. Fixes all over the tree.
  5099. User manual restructured / reworked.
  5100. Toolchain: Fix for C++ exceptions / pthread_exit() on
  5101. uClibc/glibc, C++-11 features with uClibc.
  5102. Updated/fixed packages: bandwidthd, bluez5_utils, empty,
  5103. espeak, fbv, ffmpeg, gd, gnupg2, gst1-plugin-good, iftop,
  5104. infozip, libcuefile, libeml, libnftl, localedef, ltrace,
  5105. matchbox, mpd, network-manager, nftables, ngrep, nut, openssl,
  5106. oprofile, perl, perl-net-ssleay, postgresql, pppd, procps-ng,
  5107. qt, subversion, synergy, systemd, tar, tftpd, webkit,
  5108. xapp_rstart, xbmc, xbmc-pvr-addons
  5109. Issues resolved (http://bugs.uclibc.org):
  5110. #7124: Use BR toolchain externally results a non-bootable...
  5111. #7208: Glibc C++ aplications crash if they use exceptions
  5112. #7250: Cannot build with -std=c++11
  5113. #7262: Generating locale en_US.UTF-8 fails on 64bit fedora..
  5114. #7286: systemd 215 doesn't build
  5115. 2014.08-rc1, Released August 8th, 2014
  5116. Fixes all over the tree and new features.
  5117. Architecture: Powerpc64 BE/LE added, AVR32 deprecated.
  5118. Improved altivec / SPE /atomic instructions
  5119. handling. Additional PowerPC CPU variants added.
  5120. Defconfigs: Atmel SAMA5D3, Congatec QMX6, Lego ev3, TS-5x00,
  5121. qemu-system-xtensa, qemu-aarch64-virt added. A number of
  5122. tweaks to existing ones. lpc32xx defconfigs removed.
  5123. Toolchain: Microblaze support for internal musl toolchain.
  5124. Default to GCC 4.8 for internal toolchain, remove deprecated
  5125. 4.3 and 4.6 versions.
  5126. External CodeSourcery / Linaro toolchain updates, option to
  5127. copy gconv libraries for external toolchains.
  5128. Infrastructure: graph-depends: misc fixes, transitive
  5129. dependencies are not drawn by default. Download handling is
  5130. now done using helper scripts. Integrity of downloads can now
  5131. be verified using sha* hashes. Subversion download now uses
  5132. peg revisions for robustness.
  5133. Legal-info: License info of local or overridden packages are
  5134. saved as well. Toolchain packages are also taken into account.
  5135. autotools: Static linking with libtool / v1.5 improvements.
  5136. Gettextize support, similar to autoreconf.
  5137. kconfig package infrastructure added.
  5138. Misc: Version selection for busybox dropped.
  5139. Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
  5140. alsamixergui, argus, armadillo, at, atftp, atk, avahi,
  5141. avrdude, axel, b43-firmware, b43-fwcutter, bandwidthd, bc,
  5142. bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
  5143. bmon, boa, bonnie, bootutils, bsdiff, btrfs-progs, bustle,
  5144. busybox, bwm-ng, bzip2, ca-certificates, cairo, can-utils,
  5145. ccache, ccrypt, chrony, cifs-utils, classpath, cloog, cmake,
  5146. collectd, connman, coreutils, cosmo, cppcms, cramfs, crda,
  5147. cryptodev-linux, cryptodev, ctorrent, cvs, dbus-cpp,
  5148. dbus-glib, dbus-python, dbus, dcron, dejavu, devmem2,
  5149. dfu-util, dhcp, dhcpcd, dhcpdump, dhrystone, dialog, dillo,
  5150. distcc, dmidecode, dmraid, dnsmasq, doom-wad, dropbear,
  5151. dropwatch, dsp-tools, dtv-scan-tables, dvb-apps, e2fsprogs,
  5152. e2tools, eeprog, eigen, elf2flt, elftosb, enlightenment,
  5153. enscript, espeak, ethtool, eudev, evemu, exim, expedite,
  5154. explorercanvas, ezxml, faifa, fan-ctrl, fconfig, feh,
  5155. fetchmail, ffmpeg, fftw, file, fio, fis, flann, flashrom,
  5156. flex, flot, fltk, fontconfig, freerdp, freescale-imx,
  5157. freetype, ftop, gcc, gd, gdb, genimage, genromfs, gettext,
  5158. giblib, glib-networking, glibc, gmp, gnupg, gnutls, gpm, gpsd,
  5159. gptfdisk, gpu-viv-bin-imx6q, gqview, grantlee, gst-ffmpeg,
  5160. gst-fsl-plugins, gst1-libav, gst1-plugins-bad,
  5161. gst1-plugins-ugly, gtk2-engines, gtk2-theme-hicolor, gtkperf,
  5162. gvfs, haserl, hdparm, hostapd, httping, i2c-tools, icu,
  5163. imagemagick, imx-lib, inadyn, inotify-tools, input-tools,
  5164. ipkg, iproute2, iputils, irda-utils, iw, jack2, jpeg, jquery,
  5165. jquery-keyboard, jquery-mobile, jquery-validation, jsmin, kbd,
  5166. kexec, kmod, knock, latencytop, lcdapi, leafpad, lesstif,
  5167. lftp, libaio, libarchive, libargtable2, libart, libatasmart,
  5168. libatomic_ops, libbsd, libcap-ng, libcec, libcgicc, libcgroup,
  5169. libconfuse, libcurl, libdrm, libdvdnav, libdvdread,
  5170. libeXosip2, libedit, liberation, libesmtp, libev, libevas,
  5171. libevdev, libevent, libfcgi, libffi, libfreefare, libfslcodec,
  5172. libfslparser, libfslvpuwrap, libgail, libgcrypt, libglade,
  5173. libglib2, libgpgme, libgtk2, libhid, libical, libiconv,
  5174. libiqrf, libjpeg, liblog4c-localtime, libmbus, libmicrohttpd,
  5175. libmms, libndp, libnftnl, libnl, libnspr, libnss, liboauth,
  5176. libpcap, libpng, libpthsem, libqmi, libraw, libraw1394,
  5177. librsvg, libsoc, libsoup, libsvgtiny, libsysfs, libtasn1,
  5178. libtirpc, libtorrent, libusb, libv4l, libwebsockets, libxcb,
  5179. libxml2, libyaml, links, linux-firmware, linux-fusion,
  5180. linux-headers, linux-pam, lite, live555, lm-sensors,
  5181. lockfile-progs, lpc3250loader, lshw, lsof, lsuio, ltrace,
  5182. ltris, lua-messagepack, luainterpreter, luajit, luaposix,
  5183. luarocks, lvm2, lxc, lz4, lzo, make, makedevs, mdadm,
  5184. mediastreamer, mesa3d, metacity, minidlna, mkpasswd,
  5185. modem-manager, mongoose, mpd, mpg123, msgpack, mtd, mtools,
  5186. mtr, musepack, musl, mysql, nano, nasm, nbd, ncurses, ndisc6,
  5187. netatalk, netplug, network-manager, nftables, ngircd, nodejs,
  5188. nss-mdns, ntp, nut, olsr, open2300, opencv, openntpd, openocd,
  5189. openpgm, openpowerlink, openssh, openssl, openswan, openvpn,
  5190. opkg, oprofile, opus-tools, orc, p910nd, pango, parted,
  5191. pax-utils, pcmanfm, perf, perl, perl-module-build, php,
  5192. pixman, pkgconf, poco, polarssl, popt, portmap, postgresql,
  5193. prboom, protobuf-c, proxychains-ng, psmisc, psplash, ptpd2,
  5194. python,
  5195. python-{bottle,dpkt,id3,mad,msgpack,nfc,pygame,pyzmq,simplejson},
  5196. python3, qhull, qt, qt5base, qt5connectivity, qt5declarative,
  5197. qt5graphicaleffects, qt5multimedia, qt5quickcontrols,
  5198. qt5sensors, qt5svg, qt5webkit, quagga, quota, radvd, rdesktop,
  5199. read-edid, rpcbind, rpi-firmware, rpi-userland, rpm,
  5200. rsh-redone, rsync, rt-tests, rtmpdump, rtorrent, rubix, ruby,
  5201. samba, samba4, sane-backends, sawman, sconeserver, setserial,
  5202. sg3_utils, shared-mime-info, smartmontools, smcroute, snappy,
  5203. socketcand, spawn-fcgi, sqlite, squashfs, squid, sredird,
  5204. startup-notification, statserial, strongswan, stunnel,
  5205. sunxi-mali, supervisor, synergy, sysklogd, sysprof, sysstat,
  5206. systemd, tcpdump, tcpreplay, texinfo, thrift, thttpd, ti-gfx,
  5207. ti-utils, tinyhttpd, torsmo, trace-cmd, transmission, tslib,
  5208. tstools, tvheadend, tzdata, uboot-tools, uclibc, udev,
  5209. udpcast, usb_modeswitch, usbmount, util-linux, valgrind, vim,
  5210. vlc, w_scan, wayland, webrtc-audio-processing, weston, wget,
  5211. wireless-regdb, wireless_tools, wireshark, wpa_supplicant,
  5212. xapp_{twm,xconsole,xcursorgen,xedit,xfs,xinit,xrandr},
  5213. xdriver_xf86-video-intel, xlib_lib{FS,ICE,Xext,Xfont,Xft,Xi},
  5214. xproto_fontsproto, xproto_inputproto, xserver_xorg-server,
  5215. x11vnc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons, xterm, xvkbd,
  5216. xz
  5217. New packages: flickcurl, fmc, fmlib, geoip, gnupg2,
  5218. google-breakpad, imx-vpu, isl, kexec-lite, libglew, libglu,
  5219. libinput, libksba, libmemcached, libmpdclient, librtlsdr,
  5220. libuv, libva, libva-intel-driver, linux-zigbee, memcached,
  5221. mpdecimal, ncmpc, opencore-amr, patchelf, perl-datetime-tiny,
  5222. perl-gd, perl-gdgraph, perl-gdtextutil, perl-io-socket-ssl,
  5223. perl-json-tiny, perl-mojolicious, perl-net-ssleay,
  5224. perl-path-tiny, perl-try-tiny, perl-xml-libxml,
  5225. perl-xml-namespacesupport, perl-xml-sax, perl-xml-sax-base,
  5226. php-geoip, php-memcached, pifmrds, pinentry, powerpc-utils,
  5227. procps-ng, pwgen, python-cffi, python-daemon, python-flup,
  5228. python-ipython, python-numpy, qt5enginio, qt5webkit-examples,
  5229. qt5websockets, simicsfs, sispmctl, sox, sshpass, tclap,
  5230. twolame, upmpdcli, whois, xlib_libxshmfence, xproto_dri3proto
  5231. Removed packages: procps
  5232. Issues resolved (http://bugs.uclibc.org):
  5233. #5750: Doing a Buildroot build from /usr doesn't work
  5234. #5900: config flags to the Xenomai build system
  5235. #6230: Cannot compile gcc without threads (uClibc-based)
  5236. #6626: procps Unknown HZ value! (XX) Assume 100
  5237. #7118: Package "thrift" requires atomic operations
  5238. #7154: Local uClibc config file gets overwritten using ...
  5239. #7160: host-xz not built
  5240. #7166: hostapd: segfault when using RT5370
  5241. #7172: Name collision of rpath token expansion and internal..
  5242. #7178: NTPd package cannot sync time without a proper ntp.conf
  5243. #7184: supervisord depends on libxml2 implicitly
  5244. #7196: Unable to build on UBUNTU13.10
  5245. #7268: python 2.7 compilation issue on a Debian/Ubuntu ...
  5246. 2014.05, Released May 31st, 2014
  5247. Minor fixes.
  5248. Minor manual fixes. U-Boot now defaults to spl/u-boot-spl.bin
  5249. for the spl file.
  5250. Updated/fixed packages: exim, glibc, gnutls, libfribidi,
  5251. qt5base, qt5webkit, sysklogd, thrift, u-boot
  5252. 2014.05-rc3, Released May 28th, 2014
  5253. Minor fixes.
  5254. Updated/fixed packages: acl, attr, connman, dosfstools,
  5255. dropbear, dvb-apps, exim, flite, gdb, httping, hwdata,
  5256. lesstif, libnss, libv4l, lttng-babeltrace, midori, monit,
  5257. mplayer, php, python2, rdesktop, rpi-userland, ruby, samba,
  5258. samba4, slang, xbmc
  5259. Issues resolved (http://bugs.uclibc.org):
  5260. #7100: license info for package 'acl' missing
  5261. #7106: license info for package 'attr' missing
  5262. #7112: license info for package 'hwdata'
  5263. 2014.05-rc2, Released May 21st, 2014
  5264. Fixes all over the tree.
  5265. Stripping using sstrip has been deprecated.
  5266. BR2_EXTERNAL can now also be used to implement custom
  5267. filesystem types.
  5268. The newly added BR2_GRAPH_DEPTH variable to limit the depth of
  5269. the generated dependency graph has been renamed to
  5270. BR2_GRAPH_DEPS_OPTS, so additional options can be supported in
  5271. the future.
  5272. The virtual package infrastructure will now error out early
  5273. if multiple packages providing the same virtual package has
  5274. been enabled (E.G. opengl). This change requires that the
  5275. packages explicitly declare what virtual package(s) they
  5276. provide.
  5277. Updated/fixed packages: acpid, armadillo, avahi, bellagio,
  5278. btrfs-progs, cairo, clapack, directfb, duma, ecryptfs-utils,
  5279. elfutils, eudev, fbgrab, fio, flann, fluxbox, gdb, gpm,
  5280. gpu-viv-bin-mx6q, gst1-plugins-good, gst-plugins-good,
  5281. imagemagick, iprutils, ipsec-tools, jack2, libdvdnav,
  5282. libdvdread, libnss, libunwind, linux-headers, lsof, lua,
  5283. luajit, matchbox-keyboard, mesa3d, mpd, mplayer, mtr, mysql,
  5284. netsnmp, nodejs, openpowerlink, openvpn, pciutils,
  5285. php-imagick, postgresql, pulseaudio, qt5quick1, rpi-userland,
  5286. rsyslog, samba, samba4, sane-backends, sunxi-mali, systemd,
  5287. ti-gfx, tstools, udev, webkit, wpa_supplicant, xbmc,
  5288. xlib_libXpm, xserver_xorg-server, zyre
  5289. Issues resolved (http://bugs.uclibc.org):
  5290. #5396: Boot hangs when starting samba if BR2_ENABLE_LOCALE...
  5291. #7016: Git issues in resulting buildroot tar
  5292. #7094: pciutils doesn't build on Blackfin
  5293. 2014.05-rc1, Released May 13th, 2014
  5294. Fixes all over the tree and new features.
  5295. Architectures: Support for MIPS o32 ABI on MIPS-64 targets has
  5296. been removed. Building o32 ELF files for MIPS64 is an exotic
  5297. configuration that nobody should be using. If o32 is required,
  5298. then is better if it's built for MIPS 32-bit cores so only
  5299. 32-bit instructions will be used leading to a more efficient
  5300. o32 usage.
  5301. Support for the ARM A12 variant and Intel corei7.
  5302. Configs: Minnowboard and Altera SoCkit added, QEMU updates.
  5303. Bootloaders: Grub2 and gummiboot support, syslinux support
  5304. extended.
  5305. Toolchains: GCC 4.9. Glibc 2.19. Support for the musl C
  5306. library for internal and external toolchains. 4.8-R3 support
  5307. for ARC, Internal toolchain support for Aarch64 and
  5308. Microblaze. Environment variable to control debug output of
  5309. toolchain wrapper renamed to BR2_DEBUG_WRAPPER to match the
  5310. other variables. Toolchain tuple vendor name can now be
  5311. customized. Updated external Linaro ARM/Aarch64
  5312. toolchains. Added external Linaro ARMEB toolchain.
  5313. A GDB gdbinit file is now generated for external toolchains to
  5314. automatically set the correct sysroot.
  5315. Kconfig handling for minimum kernel headers version required
  5316. for packages. Now packages needing specific kernel header
  5317. features can specify these requirements in Kconfig.
  5318. Infrastructure: Support for (but disabled as it leads to
  5319. unreproducible builds) toplevel parallel builds. See the
  5320. comment at the top of Makefile for details about how to enable
  5321. it and what the problems are if you want to test it.
  5322. Python package infrastructure extended to support Python 3.x
  5323. Perl and virtual package infrastructure support added.
  5324. PRE_*_HOOKS support for all build steps.
  5325. Updated/fixed packages: acpid, agentpp, aiccu, apr, avahi,
  5326. barebox, bash, beecrypt, bellagio, binutils, boost,
  5327. boot-wrapper-aarch64, bustle, busybox, ca-certificates, cairo,
  5328. ccache, ccid, cgilua, chrony, cifs-utils, civetweb, cmake,
  5329. collectd, connman, coreutils, coxpcall, cppcms, cppzmq, crda,
  5330. cryptodev, cryptsetup, cups, czmq, dbus, dhcpdump, directfb,
  5331. dmalloc, dmraid, dnsmasq, dosfstools, dsp-tools, dtc,
  5332. dvb-apps, ebtables, ecryptfs-utils, eigen, erlang, ethtool,
  5333. evemu, evtest, f2fs-tools, fdk-aac, feh, ffmpeg, file, filemq,
  5334. flac, flot, fmtools, fping, freetype, fswebcam, gcc, gd, gdb,
  5335. gettext, giblib, git, glibc, glibmm, glib-networking, gmp,
  5336. gnutls, gpm, gpsd, gpu-viv-bin-mx6q, grep, gst1-libav,
  5337. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  5338. gst1-plugins-ugly, gst-ffmpeg, gst-fsl-plugins, gst-omx,
  5339. gst-plugins-good, gstreamer1, gvfs, harfbuzz, haveged,
  5340. hostapd, htop, httping, ifplugd, iftop, igmpproxy,
  5341. imagemagick, imlib2, imx-lib, infozip, intltool, iproute2,
  5342. ipsec-tools, ipset, jansson, jpeg, jpeg-turbo, jquery,
  5343. jquery-keyboard, jquery-ui, jquery-ui-themes, json-glib,
  5344. json-javascript, kexec, kmod, lame, lbase64, lbreakout2,
  5345. lcdproc, lftp, libao, libatasmart, libatomic_ops, libcap,
  5346. libcdio, libcec, libcgicc, libcgroup, libcurl, libdrm,
  5347. libdvdnav, libdvdread, libegl, libeio, libenca, libesmtp,
  5348. libevas, libevdev, libfribidi, libfslcodec, libfslparser,
  5349. libfslvpuwrap, libgail, libgles, libglib2, libgtk2, libhid,
  5350. libjpeg, libmbim, libmicrohttpd, libmodplug, libnftnl,
  5351. libnspr, libogg, libopenmax, libopenvg, libpcap, libplayer,
  5352. libpng, libpthread-stubs, librsvg, libsigsegv, libsocketcan,
  5353. libsoup, libtasn1, libtool, libtpl, libunwind, liburcu,
  5354. libusb, libwebsockets, libxcb, libxml2, libxmlpp, libyaml,
  5355. lighttpd, linphone, linux-firmware, linux-headers, ljsyscall,
  5356. lmbench, lsof, ltp-testsuite, ltris, lttng-babeltrace,
  5357. lttng-libust, lttng-modules, lttng-tools, lua, lua-cjson,
  5358. luacrypto, lua-ev, luaexpat, luaexpatutils, luafilesystem,
  5359. luainterpreter, luajit, lua-msgpack-native, luaposix,
  5360. luarocks, luasec, luasocket, luasql-sqlite3, lvm2, macchanger,
  5361. memstat, mesa3d, metacity, minidlna, mmc-utils,
  5362. mobile-broadband-provider-info, modem-manager, mongrel2,
  5363. monit, mpd, mplayer, msmtp, mtd, mtools, mutt, mysql, nasm,
  5364. ncurses, ne10, netatalk, netsnmp, nettle, network-manager,
  5365. newt, nfs-utils, nmap, nodejs, ntfs-3g, ntp, nut, ofono, ola,
  5366. olsr, omniorb, opencv, opengl, openpgm, openssh, openssl,
  5367. openswan, openvpn, orbit, orc, p11-kit, pango, parted,
  5368. pciutils, pcre, pcsc-lite, perf, perl, perl-xml-parser, php,
  5369. picocom, pixman, pkgconf, poppler, popt, portmap, powervr,
  5370. pppd, pptp-linux, proftpd, protobuf, protobuf-c, ptpd2,
  5371. pulseaudio, python, python3, python-bottle, python-m2crypto,
  5372. python-netifaces, python-pyasn, python-pycrypto,
  5373. python-pygame, python-pysnmp, python-pysnmp-apps,
  5374. python-pysnmp-mibs, python-serial, python-setuptools,
  5375. qextserialport, qt, qt5, qt5base, qt5connectivity,
  5376. qt5declarative, qt5graphicaleffects, qt5imageformats,
  5377. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  5378. qt5sensors, qt5serialport, qt5svg, qt5webkit, qt5x11extras,
  5379. qt5xmlpatterns, qtuio, qwt, radvd, readline, rings,
  5380. rpi-firmware, rpi-userland, rsh-redone, rsync, rsyslog, rtai,
  5381. rtmpdump, rt-tests, ruby, samba, sconeserver, scons, sdl,
  5382. sdl_image, sdl_mixer, sg3_utils, slang, smstools3, snmppp,
  5383. socat, speex, sqlcipher, sqlite, squashfs, squid, strongswan,
  5384. stunnel, sunxi-boards, sunxi-mali, sunxi-tools, sylpheed,
  5385. syslinux, sysstat, systemd, taglib, tcl, tcllib, tcpreplay,
  5386. tidsp-binaries, ti-gfx, tmux, tvheadend, tzdata, uboot,
  5387. uboot-tools, uclibc, udev, udisks, ulogd, usb_modeswitch,
  5388. usb_modeswitch_data, usbmount, util-linux, valgrind, vlc,
  5389. webkit, weston, wget, wireshark, wpa_supplicant, wsapi,
  5390. w_scan, xapp_appres, xapp_bdftopcf, xapp_beforelight,
  5391. xapp_bitmap, xapp_editres, xapp_fslsfonts, xapp_fstobdf,
  5392. xapp_iceauth, xapp_ico, xapp_mkfontscale, xapp_rgb,
  5393. xapp_rstart, xapp_sessreg, xapp_showfont, xapp_twm,
  5394. xapp_viewres, xapp_xauth, xapp_xbacklight, xapp_xcalc,
  5395. xapp_xclock, xapp_xditview, xapp_xdpyinfo, xapp_xdriinfo,
  5396. xapp_xev, xapp_xfd, xapp_xfontsel, xapp_xfs, xapp_xfsinfo,
  5397. xapp_xgc, xapp_xhost, xapp_xinit, xapp_xkbutils, xapp_xkill,
  5398. xapp_xload, xapp_xlsclients, xapp_xlsfonts, xapp_xmag,
  5399. xapp_xman, xapp_xmessage, xapp_xmodmap, xapp_xprop,
  5400. xapp_xrandr, xapp_xrdb, xapp_xrefresh, xapp_xset,
  5401. xapp_xsetroot, xapp_xsm, xapp_xstdcmap, xapp_xvidtune,
  5402. xapp_xvinfo, xapp_xwd, xapp_xwininfo, xcb-util-wm,
  5403. xdriver_xf86-input-evdev, xdriver_xf86-input-joystick,
  5404. xdriver_xf86-input-keyboard, xdriver_xf86-input-mouse,
  5405. xdriver_xf86-input-synaptics, xdriver_xf86-input-vmmouse,
  5406. xdriver_xf86-video-ark, xdriver_xf86-video-ast,
  5407. xdriver_xf86-video-ati, xdriver_xf86-video-cirrus,
  5408. xdriver_xf86-video-dummy, xdriver_xf86-video-fbdev,
  5409. xdriver_xf86-video-geode, xdriver_xf86-video-glide,
  5410. xdriver_xf86-video-glint, xdriver_xf86-video-i128,
  5411. xdriver_xf86-video-intel, xdriver_xf86-video-mach64,
  5412. xdriver_xf86-video-mga, xdriver_xf86-video-neomagic,
  5413. xdriver_xf86-video-newport, xdriver_xf86-video-nv,
  5414. xdriver_xf86-video-openchrome, xdriver_xf86-video-r128,
  5415. xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
  5416. xdriver_xf86-video-sis, xdriver_xf86-video-tdfx,
  5417. xdriver_xf86-video-tga, xdriver_xf86-video-trident,
  5418. xdriver_xf86-video-vesa, xdriver_xf86-video-vmware,
  5419. xdriver_xf86-video-voodoo, xenomai, xerces, xl2tp, xlib_libFS,
  5420. xlib_xtrans, xproto_xproto, xserver_xorg-server,
  5421. xutil_util-macros, zeromq, zic, zmqpp, zyre
  5422. New packages: armadillo, btrfs-progs, clapack, cosmo, dado,
  5423. dbus-triggerd, dtv-scan-tables, e2tools, eudev, exim, expect,
  5424. fetchmail, flann, flite, gnu-efi, grub2, gummiboot, heimdal,
  5425. iprutils, iptraf-ng, jack2, jquery-mobile, libee, libestr,
  5426. libgc, libgl, liblogging, libndp, libsoxr, libstrophe,
  5427. libubox, libuci, libxmlrpc, ljlinenoise, lpeg, lpty, lrandom,
  5428. lsqlite3, lua-coat, lua-coatpersistent, lua-csnappy, luajson,
  5429. lualogging, lua-messagepack, lua-testmore, lunit, lzip, lzlib,
  5430. musl, nftables, opentyrian, opentyrian-data,
  5431. perl-module-build, php-gnupg, php-imagick, php-ssh2, php-yaml,
  5432. php-zmq, postgresql, python-libconfig, python-pypcap,
  5433. python-pyrex, qdecoder, qhull, samba4, smack, tz, tzdump, ucl,
  5434. upx, vo-aacenc, xbmc, xbmc-addon-xvdr, xbmc-pvr-addons,
  5435. yaffs2utils, zlog, znc
  5436. Removed packages: crosstool-ng, python-distutilscross, vala
  5437. Issues resolved (http://bugs.uclibc.org):
  5438. #6842: Checking external toolchain for eabihf
  5439. #6956: Packaging libsoxr
  5440. #6986: Make legal-info fails on uboot versions before 2014.01
  5441. #6992: Incorrect installation rights on external kernel module..
  5442. 2014.02, Released February 27th, 2014
  5443. Minor fixes.
  5444. Updated/fixed packages: cegui06, cppdb, e2fsprogs, gcc, gdb,
  5445. gst1-plugins-bad, gstreamer, gstreamer1, haserl, imagemagick,
  5446. libpng, libxml2, lua, luajit, luarock, ncftp, openswan,
  5447. pcsc-lite, qt5connectivity, ramsmp, strongswan, vlc
  5448. Issues resolved (http://bugs.uclibc.org):
  5449. #6938: mkuser script generates wrong password for new user in..
  5450. 2014.02-rc3, Released February 25th, 2014
  5451. Minor fixes.
  5452. Updated/fixed packages: aiccu, ala-lib, alsa-utils, binutils,
  5453. cairo, coreutils, dhcpcd, distcc, efl, evas, iputils, gdb,
  5454. gpsd, gst-fsl-plugins, icu, libcec, libcgi, libplayer,
  5455. libsecret, libsepol, libsigsegv, libtool, libv4l,
  5456. linux-headers, matchbox-lib, mpg123, ncftp, opencv, pcmanfm,
  5457. pixman, pv, qt, rt-tests, sawman, sconeserver, sdl, thrift,
  5458. tvheadend, util-linux, webkit, xscreensaver
  5459. Issues resolved (http://bugs.uclibc.org):
  5460. #4706: Removing .stamp_target_installed does not trigger...
  5461. #5030: busybox built fails if we use an override src dir...
  5462. #5420: Dbus and /var/run management
  5463. #5768: Not able to build ALSA-Lib for static build
  5464. #5774: Not able to build ALSA-Utils for static build
  5465. #6542: external python modules fail to compile to pyc if...
  5466. #6764: Support for kernel signed modules
  5467. #6794: Busybox compiled from buildroot hangs on pass from...
  5468. 2014.02-rc2, Released February 20th, 2014
  5469. Fixes all over the tree. Static linking / nommu fixes and
  5470. annotations for several packages.
  5471. Updated/fixed packages: boost, busybox, collectd, coreutils,
  5472. dropbear, elfutils, feh, gcc, gst1-libav, imagemagick, iozone,
  5473. jimtcl, kexec, libvncserver, lvm2, lxc, mplayer, netsnmp, nut,
  5474. opencv, python, python3, qtuio, systemd, thrift, transmission,
  5475. uclibc, vlc, webkit
  5476. Issues resolved (http://bugs.uclibc.org):
  5477. #5450: AT91SAM9260 Bootstrap compilation problem
  5478. #5582: libiconv 1.14 failed to build
  5479. #5624: When building directfb, BR2_TARGET_LDFLAGS not used by..
  5480. #5852: [2012.11] usb_modeswitch should depends of "BR2_PACK..
  5481. #6218: binutils-2.23.2/gas fails with undefined reference to..
  5482. #6236: binutils-2.23.2/bfd fails with undefined reference to..
  5483. #6470: If the build directory is a child of /usr, the build..
  5484. #6776: systemd error: static declaration of 'execvpe' follows..
  5485. #6818: toolchainfile.cmake has absolut path references
  5486. 2014.02-rc1, Released February 11th, 2014
  5487. Fixes all over the tree and new features.
  5488. Support for external packages/defconfigs (BR2_EXTERNAL). See
  5489. user manual for details.
  5490. Cleanup of environment variable names for consistency. The
  5491. download directory location override (BUILDROOT_DL_DIR) is now
  5492. called BR2_DL_DIR. Likewise the name of the current .config is
  5493. renamed from BUILDROOT_CONFIG to BR2_CONFIG. Please update
  5494. your post build scripts if you use this! BUILD_DIR is now also
  5495. exported to the post build/image scripts.
  5496. Toolchain: GCC 4.8 fix for ARM stack corruption, reverted
  5497. uClibc pread/pwrite backport as they cause issues on certain
  5498. architectures, new Linaro and Sourcery Codebench toolchains.
  5499. x86: Support for AMD Jaguar cores, SSE4.x, SH: SH2/SH3/SH3EB
  5500. variants removed, Microblaze: Internal toolchain support
  5501. Legal infrastructure: Info is now split between host and
  5502. target packages, large number of license annotations.
  5503. Lua: selection between lua 5.1 / 5.2, luarocks support
  5504. Python: package infrastructure, many new packages.
  5505. Defconfigs: Armadeus APF51 + Zedboard added, apf27, apf28,
  5506. beaglebone, microblaze, pandaboard, qemu, raspberry pi
  5507. updated.
  5508. Updated/fixed packages: aiccu, alsa-lib, alsa-utils,
  5509. am33x-cm3, aumix, autoconf, automake, barebox, bellagio,
  5510. berkeleydb, binutils, bison, blackbox, bluez_utils, boost,
  5511. bustle, busybox, cairo, can-utils, ccache, ccid, cgilua,
  5512. cifs-utils, civetweb, cmake, collectd, connman, copas,
  5513. coreutils, coxpcall, cppzmq, cramfs, crda, cryptodev-linux,
  5514. cryptsetup, cups, czmq, dhcpcd, dhcpdump, dhrystone, dialog,
  5515. dmraid, dnsmasq, dosfstools, dropbear, dropwatch, dtc, duma,
  5516. dvb-apps, e2fsprogs, eglibc, eigen, elf2flt, erlang, ethtool,
  5517. f2fs-tools, ffmpeg, file, filemq, fio, flashrom, flex,
  5518. fluxbox, fontconfig freerdp, freetype, gadgetfs-test, gawk,
  5519. gcc, gdb, gdbm, gettext, git, glibc, gnupg, gnutls, gob2,
  5520. gpsd, grep, grub, gst-ffmpeg, gst-plugins-good,
  5521. gst1-plugins-bad, gst1-plugins-base, gst1-plugins-good,
  5522. gst1-plugins-ugly, gstreamer, gstreamer1, gtest, icu, iftop,
  5523. imagemagick, inadyn, infozip, iozone, iproute2, iptables, iw,
  5524. jpeg, jpeg-turbo, jq, kexec, kmod, knock, lbase64, lcdapi,
  5525. lftp, libcdaudio, libcgi, libcgicc, libcuefile, libcurl,
  5526. libdmtx, libdrm, libdvdnav, libdvdread, libegl, libevent,
  5527. libexif, libfcgi, libfreefare, libgles, libglib2, libllcp,
  5528. libmicrohttpd, libmpd, libnfc, libnl, libnss, libopenmax,
  5529. libopenvg, libpcap, libpfm4, libplayer, libpng, libqmi,
  5530. libreplaygain, libroxml, libsamplerate, libsexy, libsigsegv,
  5531. libsndfile, libsoc, libtasn1, libtorrent, libtpl, libupnp,
  5532. libusb, libusb-compat, libvorbis, libxcb, libxml2, libxmlpp,
  5533. libyaml, lighttpd, linknx, linux-firmware, linux-pam, live555,
  5534. lm_sensors, lmbench, lockdev, logrotate, lrzsz, ltrace, lua,
  5535. lua-ev, lua-msgpack-native, luabitop, luaexpat, luaexpatutils,
  5536. luafilesystem, luajit, luaposix, luasec, luasocket,
  5537. luasql-sqlite3, m4, matchbox, mdadm, minicom, mongrel2, mpc,
  5538. mpd, mpg123, mplayer, mtd, mysql, lvm2, mxml, ncurses, ne10,
  5539. neard, neardal, netsnmp, netstat-nat, network-manager, nodejs,
  5540. numactl, ofone, ola, olsr, omniorb, open2300, opencv,
  5541. openpowerlink, openssh, openssl, openvpn, oprofile, opus,
  5542. opus-tools, orbit, p11-kit, parted, pcre, pcsc-lite, perl,
  5543. php, poco, poppler, powervr, protobuf-c, psplash, python,
  5544. python-bottle,
  5545. python-{crc16,distutilscross,dpkt,id3,ipy,m2crypto,mad,meld},
  5546. python-{netifaces,nfc,protobuf,pygame,pyparsing,pyro,pyzmq},
  5547. python-{serial,setuptools}, qt, qt5base, qt5connectivity,
  5548. qt5declarative, qt5graphicaleffects, qt5jsbackend,
  5549. qt5multimedia, qt5quick1, qt5quickcontrols, qt5script,
  5550. qt5webkit, radvd, redis, rings, rng-tools, rpcbind,
  5551. rpi-firmware, rpi-userland, rt-tests, sam-ba, samba, sawman,
  5552. sconeserver, scons, sdl, sg3_utils, snappy, snmppp,
  5553. socketcand, spice, spice-protocol, sqlcipher, sqlite, squid,
  5554. sshfs, strace, subversion, sunxi-mali, supervisor, sysklogd,
  5555. sysprof, sysstat, systemd, sysvinit, taglib, tar, tcpdump,
  5556. ti-gfx, ti-utils, tinymembench, tn5250, trace-cmd,
  5557. transmission, tvheadend, tzdata, zxing, uboot, uboot-tools,
  5558. uclibc, udev, udpcast, ulogd, urg, usb_modeswitch_data,
  5559. util-linux, vala, valgrind, vorbis-tools, wavpack, wayland,
  5560. weston, wget, wireless-regdb, wireshark, wpa_supplicant,
  5561. wsapi, xavante, xapp_xdpyinfo, xapp_xrandr, xcb-proto,
  5562. xdriver_xf86-video-intel, xenomai, xkeyboard-config, xl2tp,
  5563. xlib_lib{FS,SM,X11},
  5564. xlib_libX{au,aw,composite,cursor,damage,ext,fixes,font,i},
  5565. xlib_libX{inerama,mu,pm,randr,render,res,t,tst,v,xf86dga},
  5566. xlib_libXxf86vm, xlib_libdmx, xlib_libfontenc,
  5567. xlib_libpciaccess, xlib_xtrans, xproto_dri2proto,
  5568. xproto_{glproto,inputproto,presentproto,randrproto,videoproto},
  5569. xproto_xextproto, xproto_xproto, xutil_util-macros,
  5570. xutil_makedepend, zic, zmqpp, zxing, zsh, zyre
  5571. New packages: apitrace, avrdude, c-ares, ca-certificates,
  5572. cwiid, dbus-cpp, evemu, fping, fswebcam, gpm, gst1-libav,
  5573. haveged, intel-microcode, iucode-tools, jasper, joe, ktap,
  5574. lbreakout2, libass, libbluray, libcdio, libenca, libevdev,
  5575. libmbim, libmodplug, libnfs, libnftnl, libplist, libshairplay,
  5576. libsocketcan, ljsyscall, log4cplus, ltris, luainterpreter,
  5577. luarocks, minidlna, mmc-utils, modemmanager, mtr, net-tools,
  5578. python-configobj, python-dialog, python-json-schema-validator,
  5579. python-keyring, python-msgpack, python-posix-ipc,
  5580. python-pyasn, python-pycrypto, python-pysnmp,
  5581. python-pysnmp-apps, python-pysnmp-mibs, python-pyusb,
  5582. python-simplejson, python-tornado, python-versiontools,
  5583. rtmpdump, rtptools, smcroute, smstools3, tcpreplay, thrift,
  5584. ti-uim, tinyxml, tmux, vlc, wmctrl, xconsole
  5585. Removed packages: autoconf, automake, ccache, cpanminus, lzma,
  5586. netkitbase, netkittelnet, pkg-config, squashfs3, ttcp, xstroke
  5587. Issues resolved (http://bugs.uclibc.org):
  5588. #65: new package: dbus c++ language bindings
  5589. #769: Update configuration menu for MIPS target
  5590. #2419: Add a bundle of Lua modules
  5591. #2629: Segmentation faults and division by zero in Grub on ext2
  5592. #3811: Added auto-mount for USB and SD Card (mdev) (for 2011.05)
  5593. #4339: Allow override of DL_DIR in extract step
  5594. #4363: Make sure that copied linux and busybox defconfig are...
  5595. #4454: There should be simple way to update image, when chang...
  5596. #5024: grub fails to build for x86_64 target architecture
  5597. #5066: New-Package: net-tools
  5598. #5072: ncurses: add ncurses-progs to target
  5599. #5294: uclibc build ignores target CFLAGS and LDFLAGS
  5600. #5366: Login doesn't work with util-linux versions of login/agetty
  5601. #5378: dropbear Makefile broken
  5602. #5390: System banner - change to empty doesn't remove /etc/issue
  5603. #5780: spurious build failure because it cannot remove ubinize.cfg
  5604. #5798: ncurses-5.9 fails to compile statically
  5605. #5810: Buildroot 2012.11: Additional GCC option "-msoft-float" ...
  5606. #6080: Git fetch caching
  5607. #6092: Bootable ISO image creation seems to have stopped working..
  5608. #6272: coreutils build fails
  5609. #6434: apply-patches.sh does not work recursively
  5610. #6446: eglibc doesn't install ldconfig to target
  5611. #6484: Add c-ares
  5612. #6596: Slow bootup if mdev is chosen
  5613. #6656: Build Qt5 with ccache
  5614. #6662: internal compiler error: Segmentation fault during making..
  5615. #6722: Usage of $($(PKG)_DIR_PREFIX) is an issue with linux package
  5616. #6752: genext2fs: e2fsck must run before tunefs -U random
  5617. #6770: openssl 1.0.1f fails with ccache
  5618. #6830: Qt5: no fonts are installed
  5619. #6848: Qt5: no text shown in simple QWidget / frame-buffer setup
  5620. #6854: Update to Qt 5.2.1
  5621. 2013.11, Released November 30th, 2013:
  5622. Minor fixes.
  5623. Updated/fixed packages: apr, binutils, dbus-python, dropwatch,
  5624. ecryptfs-utils, eglibc, gdb, gpsd, grantlee, hostapd,
  5625. iptables, qlibiscsi, libnspr, libnss, libpfm4, libtool,
  5626. lua-ev, lvm2, mplayer, qt, qt5, quagga, ruby, tinymembench,
  5627. tvheadend, util-linux, wpa_supplicant
  5628. Issues resolved (http://bugs.uclibc.org):
  5629. #1279: Buildroot compiled Busybox and Coreutils LFS issues
  5630. #2995: -fstack-protector-all causes ssh to SIGSEGV
  5631. #5570: Cannot compile software on the target machine
  5632. #6428: util-linux libmount segfaults with patch from buildroot
  5633. #6500: php fails to build for armel
  5634. #6554: gdb needs to dependents on host texinfo
  5635. #6692: GNU nano fails to compile for x86_64
  5636. #6704: wpa_supplicant: fix wrong path to executable file in D-Bus
  5637. 2013.11-rc3, Released November 26th, 2013
  5638. Fixes all over the tree.
  5639. Architecture: Mark MIPS I, II, III and IV as deprecated.
  5640. Updated/fixed packages: beecrypt, dbus, e2fsprogs, libcap-ng,
  5641. libglib2, libroxml, libsigsegv, libvncserver, lxc, mdadm,
  5642. mongoose, nut, ola, omniorb, openssl, pcre, php, poco,
  5643. protobuf-c, pv, qt5base, ruby, schifra, squid, sunxi-mail,
  5644. swig, ti-gfx, tinymembench, uclibc, udisks, vim
  5645. 2013.11-rc2, Released November 18th, 2013
  5646. Fixes all over the tree.
  5647. Defconfigs: qemu_arm_versatile, qemu_arm_nuri, sheevaplug:
  5648. Adjust kernel versions.
  5649. Toolchain: avr32: fix for modern kernel headers
  5650. Bootloader: Barebox updated to 2013.10.1
  5651. Updated/fixed packages: dhcp, e2fsprogs, gst1-plugins-bad,
  5652. libcurl, libvncserver, nano, pc, qt5base, squashfs, ttcp,
  5653. wayland, wvstreams
  5654. Issues resolved (http://bugs.uclibc.org):
  5655. #3601: DHCPD S80dhcp-server startup script issues
  5656. #6320: Fix kernel compile issue if BR2_LINUX_KERNEL_CUSTOM_GIT_VERS..
  5657. #6416: Xenomai package, patch alternative
  5658. #6590: directfb-examples build failed whit linaro toolchain
  5659. 2013.11-rc1, Released November 12th, 2013
  5660. Architectures: Nios-II support, MIPS arch handling fixes
  5661. Defconfigs: cubieboard2, freescale i.MX 6sololite evk,
  5662. sabre-sd, wandboard added, rpi renamed to raspberrypi_defconfig
  5663. Toolchain: glibc support, upstream uClibc fixes, uClibc 0.9.31
  5664. for avr32, crosstool-ng backend removed, external musl
  5665. toolchain support, gcc 4.8.2, updated Linaro external
  5666. toolchains. Fortran and objective-C support deprecated,
  5667. mudflap support
  5668. Bootloaders: U-Boot: u-boot.imx support, version bumps
  5669. Linux: use kmod instead of module-init-tools
  5670. System: default to devtmpfs for /dev
  5671. Infrastructure: Make 3.82 fixes, locales generation fixes, CVS
  5672. download support, post-rsync hooks
  5673. Fs: u-boot image support for cpio
  5674. Updated/fixed packages: aircrack-ng, alsamixergui, apr,
  5675. apr-util, atk, automake, bellagio, berkeleydb, bind, binutils,
  5676. bison, boost, busybox, can-utils, ccache, ccid, cgilua,
  5677. chrony, cifs-utils, cjson, collectd, connman, conntrack-tools,
  5678. copas, cppcms, cppzmq, czmq, dash, dbus, dhcpcd, diffutils,
  5679. directfb, dmidecode, dnsmaqs, docker, dosfstools, dropbear,
  5680. dropwatch, ebtables, eglibc, elf2flt, empty, enchant, erlang,
  5681. ethtool, fbgrab, fbv, fdk-aac, feh, ffmpeg, file, findutils,
  5682. fltk, fmtools, freetype, gdk-pixbuf, gettext, git,
  5683. glib-networking, gmp, gnupg, gnutls, gpu-viv-bin-mx6q, gsl,
  5684. gstreamer, gstreamer1, gst1-plugins-{bad,base,good,ugly},
  5685. gtest, gutenprint, hplip, i2c-tools, icu, ifplugd,
  5686. imagemagick, iozone, iproute2, ipset, iptables, iw, jamvm,
  5687. jansson, jpeg-turbo, kismet, kmod, lcms2, libassuan, libcap,
  5688. libcap-ng, libcdaudio, libcec, libcue, libcurl, libdrm,
  5689. libedit, libevas, libevent, libfreefare, libfuse,
  5690. libgpg-error, libiconv, liblog4c-localtime, libmicrohttpd,
  5691. libmnl, libmodbus,
  5692. libnetfilter_{acct,conntrack,cthelper,cttimeout,log,queue},
  5693. libnfnetlink, libnl, libpng, libqmi, libqrencode, libroxml,
  5694. libsecret, libsigsegv, libsoup, libtirpc, libunwind, libusb,
  5695. libvpx, lighttpd, linphone, linux-pam, lmbench,
  5696. lockfile-progs, log4cxx, logrotate, logsurfer, ltp-testsuite,
  5697. ltrace, luacrypto, luaposix, lvm2, m4, matchbox-lib,
  5698. media-ctl, mediastreamer, minicom, minidlna, mongoose, monit,
  5699. mpc, mpd, mpg123, mplayer, mrouted, mtdev, mutt, mysql_client,
  5700. nano, ncftp, ndisc6, neard, neardal, neon, net-snmp, netatalk,
  5701. netcat, netkitbase, netperf, netplug, nettle, nfacct,
  5702. nfs-utils, ngircd, ngrep, noip, nuttcp, olsr, openssh, opkg,
  5703. oprofile, opus-tools, orc, ortp, pciutils, pcre, pcsc-lite,
  5704. perf, perl, perl-cross, php, picocom, pkgconf, polarssl,
  5705. poppler, pppd, proftpd, protobuf, proxychains-ng, pulseaudio,
  5706. pv, qemu, qt, qt5base, qt5webkit, quagga, radvd, redis,
  5707. rpi-{firmware,userland}, rrdtool, rsync, rtorrent, ruby,
  5708. samba, scons, screen, sdl_sound, ser2net, setserial,
  5709. smartmontools, socat, socketcand, sqlcipher, sqlite, squid,
  5710. stress, strongswan, stunnel, sudo, syslinux, systemd,
  5711. sysvinit, tcl, ti-gfx, time, transmission, tremor, tslib,
  5712. tstools, tvheadend, tzdata, uboot-tools, uclibc, udpcast,
  5713. uemacs, ulogd, usb_modeswitch{,_data}, util-linux, vala,
  5714. valgrind, vde2, vorbus-tools, vpnc, vsftpd, vtun, wayland,
  5715. webkit, webp, webrtc-audio-processing, weston, wget,
  5716. wireshark, wsapi, xavante, xdriver_xf86-video-geode, xenomai,
  5717. xinetd, xlib_libpthread-stubs, xl2tp, xmlstarlet,
  5718. xserver_xorg-server, xz, zeromq, zic, zmqpp
  5719. New packages: aiccu, autossh, bc, civetweb, cppdb, cryptsetup,
  5720. duma, eigen, harfbuzz, igmpproxy, iputils, jq, knock, kobs-ng,
  5721. lesstif, libcgroup, libsepol, libsoc, libssh2, luasec, luasql,
  5722. lxc, nut, ola, omniorb, openpowerlink, orbit, p910nd, psplash,
  5723. python-crc16, python-ipy, python-pyzmq, qt5sensors,
  5724. qt5serialport, qt5x11extras, snmppp, subversion, tcping,
  5725. trace-cmd, xscreensaver, zsh
  5726. Removed packages: module-init-tools
  5727. Issues resolved (http://bugs.uclibc.org):
  5728. #1138: Buildroot fails to build packages if BR2_GCC_SHARED_LIBGCC=y
  5729. #5408: qt build failure with Sourcery CodeBench ARM 2010.09
  5730. #5630: makefile error with toolchain helpers.mk
  5731. #5672: htop: remove X11 stuff
  5732. #5678: linux.mk: linux-menuconfig fails
  5733. #5696: python3 installation is too large, patches from python2 needed
  5734. #5978: Erlang does not build for arm in 2013.02-rc3
  5735. #6392: Extended ARM uImage kernel options
  5736. #6404: Buildroot's coreutils 'uname -p' reports 'Unknown' on recent..
  5737. #6428: util-linux libmount segfaults with patch from buildroot
  5738. #6452: eglibc from Linaro 2013.07 not copied to target correctly
  5739. #6566: PHP segfault when crosscompiled to mips64 - patch included
  5740. #6572: [PowerPC] Buildroot uses wrong external toolchain libraries..
  5741. #6578: udisks package broken
  5742. #6602: ebtables 64 bit kernel + 32 bit userland alignment error..
  5743. #6608: ebtables missing ethertypes - fix included
  5744. #6620: Sysvinit package missing killall5 and symlinks - patch included
  5745. #6632: CMake use host pkg-config
  5746. #6638: pkgconf doesn't download
  5747. #6644: "all" target doesn't work in out-of-tree builds
  5748. #6650: Segmentation fault when trying to build latest buildroot
  5749. #6668: iptables limit module alignment problem on mips64
  5750. 2013.08, Released August 31th, 2013:
  5751. Minor fixes.
  5752. Documentation build fixed.
  5753. Updated/fixed packages: ltrace, strongswan
  5754. 2013.08-rc3, Released August 29th, 2013:
  5755. Fixes all over the tree.
  5756. External toolchain lib32/lib64 handling, ABI name for EABIhf,
  5757. misc fixes for generatelocales, apply-patches and module
  5758. stripping.
  5759. Top level menu names reordered and renamed for clarity.
  5760. Updated/fixed packages: acl, attr, bash, dbus, directfb,
  5761. dvb-apps, kexec, kmod, libbsd, linux-fusion, mesa3d, minidlna,
  5762. openssh, openssl, pulseaudio, python-setuptools, qt5,
  5763. qt5webkit, redis, strongswan, sunxi-mali
  5764. Issues resolved (http://bugs.uclibc.org):
  5765. #6464: dbus-daemon-launch-helper needs setuid
  5766. 2013.08-rc2, Released August 16th 2013:
  5767. Documentation improvements.
  5768. External toolchains fixes.
  5769. Updated/fixed packages: aircrack-ng, bash, boost, cairo,
  5770. cppcms, eglibc, ffmpeg, gcc, git, gnupg, imagemagick, libcec,
  5771. libffi, libgcrypt, linux, linux-headers, ltrace, netatalk,
  5772. opencv, opengl, readline, samba, strongswan, sunxi-cedarx,
  5773. uclibc, udev, wayland, webkit, zeromq.
  5774. Issues resolved (http://bugs.uclibc.org):
  5775. #6440: typo in ffmpeg makefile
  5776. 2013.08-rc1, Released August 5th, 2013:
  5777. Architectures:
  5778. - improved support for floating point on ARM and Thumb/Thumb2
  5779. - support for ARM OABI removed
  5780. Toolchains:
  5781. - support added for Sourcery CodeBench ARM and MIPS 2013.05
  5782. - Linaro ARM and Aarch64 toolchains updated
  5783. - support added for the Arago ARMv5 and ARMv7 toolchains
  5784. - gcc 4.8.x version bumped
  5785. - support for installing both FDPIC and FLAT libraries on
  5786. Blackfin
  5787. - support for uClibc 0.9.31 removed,
  5788. - convert the internal toolchain backend to use the package
  5789. infrastructure
  5790. - support added for eglibc in the internal toolchain backend
  5791. - toolchain components for the ARC architecture updated and
  5792. gdb for ARC added.
  5793. - support for Blackfin in the internal toolchain fixed
  5794. Defconfigs: beaglebone_defconfig updated, new defconfig for
  5795. CubieBoard, for Olimex mx233 Olinuxino, for Calao Systems
  5796. TNY-A9G20-LPW.
  5797. A number of packages have been fixed to use the
  5798. <pkg>_CONFIG_SCRIPTS mechanism to get their <pkg>-config shell
  5799. script installed and modified properly. Licensing informations
  5800. has been added to a number of packages.
  5801. Use XZ tarballs for a number of packages.
  5802. Noticeable package changes/additions:
  5803. - The glib2/libgtk2/webkit stack has been updated to recent
  5804. versions.
  5805. - Support for Gstreamer 1.x has been added.
  5806. - OpenGL support for TI OMAP platforms has been added.
  5807. - OpenGL support for Allwinner platforms has been added.
  5808. - OpenMAX support for RasberryPi has been added.
  5809. Updated/fixed packages: acl, attr, autoconf, avahi, barebox,
  5810. bind, binutils, busybox, bwm-ng, bzip2, cifs-utils, colletctd,
  5811. cpanminus, cups, curl, dash, dbus, dhcp, directfb,
  5812. directfb-examples, dnsmasq, dosfstools, dropbear, dtc,
  5813. e2fsprogs, ed, efl, enlightenment, erlang, ethtool, fbgrab,
  5814. fftw, firmware-imx, flot, fltk, freetype, gawk, gdk-pixbuf,
  5815. gettext, gmp, gnutls, gsl, gutenprint, gvfs, gzip, haserl,
  5816. hiawatha, httping, icu, imagemagick, imlib2, imx-lib,
  5817. intltool, iozone, ipset, iptables, jquery, jquery-keyboard,
  5818. jquery-sparkline, kmod, less, libart, libcdaudio, libcgicc,
  5819. libesmtp, libftdi, libfuse, libglib2, libgtk, libgtk2, libidn,
  5820. libiqrf, liblog4c-localtime, libnspr, libnss, libpcap,
  5821. libroxml, libserial, libsigsev, libsoup, libtool, libtpl,
  5822. libvncserver, libxml2, linphone, lm_sensors, logrotate,
  5823. ltrace, lttng, luafilesystem, luajit, minicom, monit, mpg123,
  5824. mtd, mutt, mxml, neard, netatask, netsnmp, nettle,
  5825. network-manager, nodejs, nss-mdns, openssh, openswan, openvpn,
  5826. opkg, opus, pcre, perl-cross, php, pixman, poco, polarssl,
  5827. pulseaudio, pv, python, python3, qt, qt5, qt5declarative,
  5828. qt5jsbackend, qt5quick1, readline, rpi-firmware, ruby, samba,
  5829. sane-backends, sconeserver, sdl_image, sdparm, ser2net,
  5830. socketcand, sqlite, squid, strace, tcl, tcpdump, tinyhttpd,
  5831. tvheadend, tzdata, uboot, udpcast, usb_modeswitch,
  5832. usb_modeswitch_data, usbutils, webkit, wireshark, wvstreams,
  5833. xapp_luit, xapp_xmodmap, xenomai, xfsprogs, xlib_libX11, zic,
  5834. zlib.
  5835. New packages: a10disp, aespipe, am33x-cm3, cppcms, dhcpcd,
  5836. dropwatch, dtc, ecryptfs-utils, eglibc, elf2flt, fdk-aac,
  5837. gcc-final, gcc-initial, gcc-intermediate, git,
  5838. gpu-viv-bin-mx6q, gst1-plugins-bad, gst1-plugins-base,
  5839. gst1-plugins-good, gst1-plugins-ugly, gst-omx,
  5840. gst-plugin-x170, gstreamer1, jimtcl, lbase64, libassuan,
  5841. libbsd, libcec, libdvbsi, libedit, libgpgme, libqmi,
  5842. libqrencode, libsvg, libsvg-cairo, libunwind, libvpx,
  5843. linux-headers, lockdev, luabitop, luacrypto, lua-ev,
  5844. luaexpatutils, msgpack, ocrad, on2-8170-libs,
  5845. on2-8170-modules, p11-kit, pax-utils, ptpd, ptpd2,
  5846. python-pyro, ramspeed/smp, snappy, strongswan, sunxi-boards,
  5847. sunxi-cedarx, sunxi-mali, sunxi-tools, ti-gfx, tinymembench,
  5848. tree, tstools, uclibc, w_scan.
  5849. Issues resolved (http://bugs.uclibc.org):
  5850. #4718: python (built for powerpc) distutils has paths to host
  5851. compiler toolchain
  5852. #5516: appended device tree blobs on uImage fails
  5853. #6302: Versions of packages retrieved from github.com are wrong
  5854. #6308: dosfstools download link is wrong
  5855. #6326: Dropbear: Add options to allow better config for
  5856. different target devices (e.g. routers)
  5857. #6338: Wrong download link for minicom package
  5858. #6344: Wrong handling of license text files with same name and
  5859. different directory
  5860. #6374: gnutls package broken if linux cryptodev module
  5861. selected
  5862. #6410: omap3_beagle has uimage error load address error
  5863. 2013.05, Released May 31th, 2013:
  5864. Minor fixes.
  5865. External toolchain wrapper fix for if host/usr/bin is placed
  5866. in the patch.
  5867. Updated/fixed packages: acpid, at91bootstrap, czmq, elf2flt,
  5868. flex, jamvm, kmod, libplayer, libtirpc, libv4,
  5869. lttng-babeltrace, opengl, qt5jsbackend, udpcast, wvstreams
  5870. Issues resolved (http://bugs.uclibc.org):
  5871. #4868: Buildroot compile failure for toolchain/gdb-7.4/intl/reloc...
  5872. #4988: flex and m4 problems
  5873. #5912: obsolete CVS files
  5874. 2013.05-rc3, Released May 25th, 2013:
  5875. Minor fixes.
  5876. Updated/fixed packages: aircrack-ng, bellagio, boost, crda,
  5877. dvb-apps, flot, libatomic_ops, libeXosip2, libosip2, libxml2,
  5878. mongrel2, poco, portaudio, pptp-linux, tvheadend, urg, weston,
  5879. wireshark
  5880. 2013.05-rc2, Released May 15th, 2013:
  5881. Fixes all over the tree.
  5882. Default number of parallel jobs is now number of CPUs + 1.
  5883. Defconfigs: Add Telit EVK-PRO3, AT91SAM9260-EK Nand flash.
  5884. Updated/fixed packages: aircrack-ng, busybox, cairo,
  5885. classpath, curlftpfs, czmq, dbus, f2fs-tools, fan-ctrl,
  5886. filemq, gst-plugin-bad, gutenprint, hplip, json-c,
  5887. libatomic_ops, libcurl, libdrm, libglib2, libnspr, libnss,
  5888. libsha1, libsigsegv, libxcb, linknx, linux-pam, lttng-modules,
  5889. lttng-tools, matchbox-lib, mcookie, mesa3d, neon, pixman,
  5890. pulseaudio, python-nfc, qt5imageformats, quota, openssl,
  5891. sconeserver, strace, sylpheed, wvstreams,
  5892. xapp_{appres,bdftopcf,beforelight,bitmap,edires,fonttosfnt},
  5893. xapp_{fslsfonts,fstobdf,iceauth,ico,listres,luit,mkfontdir},
  5894. xapp_{mkfontscale,oclock,rgb,rstart,scripts,sessreg,setxkbmap},
  5895. xapp_{showfont,smproxy,twm,viewres,x11perf,xauth,xbacklight},
  5896. xapp_x{biff,calc,clipboard,clock,cmsdb,cursorgen,dbedizzy,ditview},
  5897. xapp_x{dm,dpyinfo,driinfo,edit,ev,eyes,f86dga,fd,fontsel,fs,fsinfo},
  5898. xapp_x{gamma,gc,host,input-calibrator,input,kbcomp,kbevd,kbprint},
  5899. xapp_x{kbutils,kill,load,logo,lsatoms,lsclients,lsfonts,mag,man},
  5900. xapp_x{message,mh,modmap,more,pr,prop,randr,rdb,refresh,set,setmode},
  5901. xapp_x{setpointer,setroot,sm,stdcmap,vidtune,vinfo,wd,wininfo,wud},
  5902. xcb-util, xcursor-transparent-theme, xdata_xbitmaps,
  5903. xdata_xcursor-themes,
  5904. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synaptics},
  5905. xdriver_xf86-input-{tslib,vmmouse,void},
  5906. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,fbdev,geode,glide},
  5907. xdriver_xf86-video-{glint,i128,intel,mach64,mga,neomagic,newport},
  5908. xdriver_xf86-video-{nv,openchrome,r128,savage,siliconmotion,sis},
  5909. xdriver_xf86-video-{tdfx,tga,trident,v4l,vesa,vmware,voodoo,wsfb},
  5910. xfont_encodings, xfont_font-adobe-{100,75}dpi,
  5911. xfont_font-utopia-{100dpi,75dpi,type1},
  5912. xfont_font-{alias,arabic-misc,bh-100dpi,bh-75dpi},
  5913. xfont_font-bh-lucidatypewriter-{100,75}dpi, xfont_font-bh-{ttf,type1},
  5914. xfont_font-bitstream-{100dpi,75dpi,type1}, xfont_font-cronyx-cyrillic,
  5915. xfont_font-{cursor,daewoo,dec,isas,jis,micro}-misc,
  5916. xfont_font-ibm-type1, xfont_font-misc-{cyrillic,ethiopic,meltho,misc},
  5917. xfont_font-{mutt,schumacher}-misc,
  5918. xfont_font-{screen-cyrillic,sony-misc,sun-misc,util},
  5919. xfont_font-winitzki-cyrillic, xfont_font-xfree86-type1,
  5920. xlib_lib{FS,ICE,SM,X11,XScrnSaver,Xau,Xaw,Xcomposite,Xcursor},
  5921. xlib_libX{damage,dmcp,ext,fixes,font,ft,i,inerama,mu,pm,randr},
  5922. xlib_libX{render,res,t,tst,v,vMC,xf86dga,xf86vm},
  5923. xlib_lib{dmx,fontenc,pciaccess,pthread-stubs,xkbfile}, xlib_xtrans,
  5924. xproto_{applewm,bigreqs,composite,damage,dmx,dri2,fixes}proto,
  5925. xproto_{fontcache,font,gl,input,kb,randr,record,render}proto,
  5926. xproto_{resource,scrnsaver,video,windowswm,xcmisc,xext}proto,
  5927. xproto_{xf86bigfont,xf86dga,xf86dri,xf86vidmode,xinerama,x}proto,
  5928. xserver_xorg-server, xutil_{makedepend,util-macros}
  5929. Readded Packages: xapp_xinit
  5930. Issues resolved (http://bugs.uclibc.org):
  5931. #5054: amd64: cannot find init - due to missing /lib64 folder
  5932. 2013.05-rc1, Released May 8th, 2013:
  5933. Architectures: ARC support, Blackfin support, FLAT binary
  5934. format, ARM: Drop old CPU variants, add fa526/626, Marvell PJ4
  5935. Toolchains: Add new Microblaze external toolchains, Linaro
  5936. ARM/Aarch64 updates, GCC 4.6.4 / 4.7.3 / 4.8.0 added to
  5937. internal toolchain, default to GCC 4.7.x. Internal
  5938. Crosstool-ng backend deprecated.
  5939. Defconfigs: Add Atmel at91sam9g45m10ek, freescale mpc8315erdb
  5940. & p1010rdb, Armadeus apf27 / apf28, Openblocks A6, Raspberry
  5941. pi, gnublin board.
  5942. FS: LZO and XZ compression methods, extra ubifs options,
  5943. ext2 rev 0/1 and ext3/4 support.
  5944. Patch handling: apply-patches now has .patch.xz support,
  5945. Patch logic reworked as discussed during Febrary dev days:
  5946. http://elinux.org/Buildroot:DeveloperDaysFOSDEM2013
  5947. <pkg>-rsync now excludes version control files.
  5948. linux: uImage load address for ARM multiplatform kernels
  5949. Infrastructure for multiple OpenGL / ES / EGL / OpenVG
  5950. providers, similar to how libjpeg / libjpeg-turbo is handled.
  5951. Infrastructure for packages to add system users.
  5952. kconfig: updated to 3.9-rc2, support make olddefconfig
  5953. Updated/fixed packages: alsa-lib, alsa-utils, apr, apr-util,
  5954. argp-standalone, at, at91bootstrap, audiofile, aumix, avahi,
  5955. bash, blackbox, bind, binutils, bison, boost, bridge-utils,
  5956. busybox, ccache, cifs-utils, cmake, collectd, connman,
  5957. conntrack-tools, cpanminus, crosstool-ng, diffutils, directfb,
  5958. directfb-examples, divine, dmalloc, dnsmasq, dosfstools,
  5959. dropbear, e2fsprogs, ebtables, eeprog, erlang, ethtool,
  5960. fb-test-app, fbset, feh, ffmpeg, file, flex, flot, foomatic,
  5961. fxload, gd, gdb, gdisk, genimage, gettext, gmp, gnuchess,
  5962. gnutls, gob2, gperf, gpsd, gstreamer, haserl, hiawatha, htop,
  5963. httping, icu, inotify-tools, intltool, iproute2, ipset,
  5964. iptables, iw, jpeg, jquery, jquery-{sparkline,validation},
  5965. json-c, kbd, kexec, kismet, kmod, lcdproc, libarchive,
  5966. libatasmart, libcap, libconfig, libconfuse, libcurl, libdrm,
  5967. libeet, libev, libevas, libeXosip2, libffi, libfribi, libfuse,
  5968. libgcrypt, libglib2, libgtk2, libid3tag, libmicrohttpd,
  5969. libnetfilter_acct, libnetfilter_conntrack, libnl, libpcap,
  5970. libplayer, libsigc, libv4l, libxcb, linenoise, linux-pam,
  5971. lm_sensors, ltp-testsuite, luajit, lzop, madplay, make, mdadm,
  5972. mediastreamer, memtester, mesa3d,
  5973. mobile-broadband-provider-info, monit, mpd, mpfr, mpg123,
  5974. mrouted, msmtp, nbd, ncurses, ndisc6, neard, neardal, neon,
  5975. netperf, netsnmp, nettle, nfacct, ntfs-3g, ofono, olsr,
  5976. omap-u-boot-utils, openssh, openssl, openswan, openvpn,
  5977. oprofile, orc, patch, pciutils, pcre, perl, php, poco,
  5978. polarssl, proftpd, psmisc, pulseaudio, python,
  5979. python-{bottle,netifaces,serial,setuptools}, qt, quagga,
  5980. quota, radvd, rpi-firmware, rpi-userland, rt-tests, sam-ba,
  5981. samba, sawman, sdl, ser2net, smartmontools, socat, socketcand,
  5982. speex, squid, stress, stunnel, sudo, syslinux, sysstat,
  5983. sysvinit, tcl, tcprelay, tinyhttpd, tslib, tvheadend,
  5984. uboot-tools, udev, ulogd, util-linux, vala, vtun, webkit,
  5985. xapp_{iceauth,luit,makefontscale,sessreg,setxkbmap,smproxy},
  5986. xapp_{xauth,xcmsdb,xdpyinfo,xev,xgamma,xhost,xinput,xkbcomp},
  5987. xapp_{xkbevd,xlsatoms,xlsclients,xmodmap,xpr,xprop,xrandr,xrdb},
  5988. xapp_{xset,xwd,xwininfo}, xcb-{proto,util},
  5989. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synptics},
  5990. xdriver_xf86-input-{tslib,vmmouse,void},
  5991. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,geode,glide,glint},
  5992. xdriver_xf86-video-{i128,intel,mach64,mga,neomagic,newport},
  5993. xdriver_xf86-video-{openchrome,r128,savage,siliconmotion,sis},
  5994. xdriver_xf86-video-{tdfx,trident,vesa,vmware,wsfb}, xenomai,
  5995. xfont, xinetd, xkeyboard-config, xlib_lib{FS,ICE,SM,X11},
  5996. xlib_libX{scrnSaver,au,aw,cursor,dmcp,ext,fixes,font,ft,i},
  5997. xlib_libX{inerama,mu,pm,randr,res,tst,v,vMC,xf86dga,xf86vm},
  5998. xlib_lib{dmx,fontenc,pciaccess,xkbfile}, xlib_xtrans,
  5999. xproto_{applevm,bigreqs,dri2,fonts,gl,input,kbd,record}proto,
  6000. xproto_{resource,scrnsaver,xcmisc,xext,x}proto,
  6001. xserver_xorg-server, xutil_makedepend, xz, zeromq
  6002. New packages: aircrack-ng, bcusdk, chrony, crda,
  6003. cryptodev-linux, cppzmq, czmq, dtach, enscript, exfat,
  6004. exfat-utils, f2fs-tools, fan-ctrl, filemq, foomatic-filters,
  6005. genimage, genpart, glibmm, gnuplot, gtest, gutenprint, hplip,
  6006. iozone, jansson, jhead, jquery-keyboard, jquery-ui,
  6007. jquery-ui-themes, json-glib, json-javascript, lcms2, libpfm4,
  6008. libpthsem, libserial, libsigsegv, libtasn1, libwebsockets,
  6009. libxkbcommon, libxml++, linknx, log4cxx, mongoose, mongrel2,
  6010. mtools, ne10, nmap, nodejs, openobex, openpgm, poppler,
  6011. protobuf-c, python-m2crypto, python-thrift, qjson, qt5base,
  6012. qt5declarative, qt5graphicaleffects, qt5imageformats,
  6013. qt5jsbackend, qt5multimedia, qt5quick1, qt5script, qt5svg,
  6014. qt5webkit qt5xmlpatterns, rapidjson, redis, swig, texinfo,
  6015. tzdata, urg, ussp-push, wayland, webp, weston, wireless-regdb,
  6016. wireshark, wvdial, wvstreams, xcb-util-image, xcb-util-wm,
  6017. xcursor-transparent-theme, zic, zmqpp, zyre
  6018. Removed packages: microperl, ocf-linux, xapp_xinit,
  6019. xapp_xplsprinters, xapp_xprehashprinterlist,
  6020. xfont_font-bitstream-speedo,
  6021. xlib_lib{Xfontcache,XprintAppUtil,XprintUtil,Xp,oldX,xkbui},
  6022. xproto_{print,xf86rush}proto
  6023. Deprecated packages: vala
  6024. Issues resolved (http://bugs.uclibc.org):
  6025. #1291: Add support for Faraday 526 arm processor (fa526)
  6026. #2683: cups does not install correctly to target
  6027. #3313: mesa3d fails to build
  6028. #5186: initramfs/cpio should support lzo compression
  6029. #5636: agetty - cannot get controlling tty error - need updated...
  6030. #5906: collectd client headers not exported
  6031. #5966: bison unnecessarily required as build dependency
  6032. #6140: --enable-fileinfo not applied for php package
  6033. #6164: openvpn usage of ip tool from Busybox
  6034. 2013.02, Released February 28th, 2013:
  6035. Misc manual updates.
  6036. Updated/fixed packages: busybox, collectd, flashbench,
  6037. libgtk2, libupnp, mii-diag, quota
  6038. 2013.02-rc3, Released February 26th, 2013
  6039. Minor fixes.
  6040. Updated/fixed packages: conntrack-tools, dialog,
  6041. enlightenment, haserl, keyutils, libfif, libmad,
  6042. linux-firmware, linux-fusion, matchbox-desktop, matchbox-wm,
  6043. ruby, spawn-fcgi, vtun
  6044. Issues resolved (http://bugs.uclibc.org):
  6045. #5960: fusion.ko driver does not install to target rootfs
  6046. 2013.02-rc2, Released February 19th, 2013
  6047. Fixes all over the tree.
  6048. Various manual updates and fixes.
  6049. Updated/fixed packages: busybox, collectd, gesftpserver,
  6050. glib-networking, gnutls, inotify-tools, libcurl, libffi,
  6051. libglib2, libtorrent, libvorbis, neard, network-manager,
  6052. ntfs-3g, openssl, qt, rpi-userland, rtorrent, thttpd, vim.
  6053. Issues resolved (http://bugs.uclibc.org):
  6054. #5906: collectd client headers not exported
  6055. 2013.02-rc1, Released February 10th, 2013
  6056. Toolchain: Crosstool-ng 1.17.0, default to GCC 4.6.3, target
  6057. libraries install fixed. Add Linaro ARM
  6058. 2012.11/2012.12/2013.01, AArch64 12.11/12.12/13.01. Sourcery
  6059. CodeBench MIPS 2012.03/09. Infrastructure to warn about
  6060. missing 32bit support for binary toolchains. Toolchain wrapper
  6061. is now relocatable. Add GDB 7.5.1 / Remove 6.8 / 7.0 /
  6062. 7.1. Deprecate uClibc 0.9.31.
  6063. Architecture: Xtensa fixes, add missing powerpc variants, arm
  6064. 1136jf-s rev1, add A5/A15, neon support toggle, OABI
  6065. deprecated. Sparc: drop old unused variants
  6066. Bootloaders: At91bootstap: fix upstream URL, Barebox: add
  6067. 2012.12/2013.01/2013.02, remove 2012.08/09/10, lzop fixes,
  6068. environment image support, U-Boot: add 2013.01.01
  6069. Linux: fix appended dtb handling for v3.8+ kernels, support
  6070. multiple device trees
  6071. Defconfigs: calao USB-A9260, snowball, QEMU PPC440 on ML507
  6072. board, QEMU ARM Exynos4210, Kernel version in QEMU defconfigs
  6073. updated, at91rm9200df: misc fixes. Lock kernel headers to
  6074. match kernel.
  6075. Infrastructure: Git download fixes. Toolchain make target
  6076. renamed from 'cross' to 'toolchain'. Eclipse integration
  6077. support. Option to set root password, post image scripts,
  6078. config scripts handling.
  6079. Updated/fixed packages: alsa-lib, argp-standalone, argus,
  6080. arptables, atk, audiofile, axel, beecrypt, bind, bison,
  6081. bluez_utils, boost, cairo, can-utils, bmon, boa, busybox,
  6082. cairo, ccache, cdrkit, cifs-utils, cjson, cmake, collectd,
  6083. connman, coreutils, cpanminus, cups, dbus, dhcp, dialog,
  6084. diffutils, directfb, distcc, divine, dnsmasq, docker,
  6085. dosfstools, dstat, e2fsprogs, ebtables, ed, empty, ethtool,
  6086. expedite, fbset, fbv, ffmpeg, flex, fltk, fluxbox, freetype,
  6087. gadget-test, gawk, gdb, genext2fs, gettext, giblib,
  6088. glib-networking, gmp, gmpc, gnupg, gnutls, gpsd,
  6089. gst-plugins-{bad,base,good}, gstreamer, gzip, haserl, hdparm,
  6090. heirloom-mailx, hiawanta, hostapd, icu, imagemagick, imlib2,
  6091. inadyn, infozip, iproute2, ipset, iptables, iw, jpeg, jquery,
  6092. jquery-sparklines, jqeury-validation, kismet, kmod, lame,
  6093. libao, libcap, libcurl, libdvdnav, libdvdread, libecore,
  6094. libedbus, libedje, libeet, libefreet, libeina, libeio,
  6095. liberation, libelementary, libembryo, libethumb, libev,
  6096. libevas, libffi, libfribidi, libfuse, libgcrypt, libglib2,
  6097. libgpg-error, libgtk2, libhid, libidn, libmicrohttpd, libmpd,
  6098. libnl, libnspr, libnss, libogg, libpcap, libplayer, libpng,
  6099. libroxml, librsvg, libseccomp, libsigc, libsndfile, libungif,
  6100. libupnp, liburcu, libusb-compat, libvncserver, libvorbis,
  6101. libxml2, libxslt, lighttpd, links, linux-firmware,
  6102. linux-fusion, ltp-testsuite, ltrace,
  6103. lttng-{babel,libust,modules,tools}, lvm2, lua, luajit, lzop,
  6104. matchbox-{desktop,lib}, mdadm, metacity, midori, minicom, mpd,
  6105. mpfr, mplayer, mtd, mysql_client, ncurses, neon, netatalk,
  6106. networkmanager, nspr, ntfs-3g, nuttcp, ofone, olsr, openssl,
  6107. openvpn, opkg, oprofile, opus, opus-tools, orc, ortp, pango,
  6108. pciutils, pcmanfm, pcre, pcsc-lite, perl, php, pixman,
  6109. pkgconf, polarssl, pptp-linux, proxychains, pulseaudio,
  6110. python, python3, qemu, qextserialport, qt, quagga, radvd,
  6111. readline, rng-tools, rt-tests, rubix, ruby, sam-ba, samba,
  6112. sane-backends, sconeserver, scons, screen, sdl, sdl_gfx,
  6113. sdl_mixer, sdl_ttf, sdparm, sed, ser2net, smartmontools,
  6114. speex, sqlite, squid, sshfs, strace, sudo, sylpheed, tn5250,
  6115. taglib, tar, torsmo, transmission, tslib, uboot-tools, ulogd,
  6116. usb_modeswitch, util-linux, valgrind, vim, vsftpd, wavpack,
  6117. webkit, wipe, wireless_tools, wpa_supplicant, xapp_xinit,
  6118. xapp_xinput-calibrator, xapp_xman, xapp_xmh, xlib_libX11,
  6119. xlib_libXdmcp, xlib_libXft, xlib_libpthread-stubs,
  6120. xlib_xtrans, xproto_xcmiscproto, xproto_xextproto,
  6121. xserver_xorg-server, xstroke, xvkbd, xz
  6122. New packages: b43-firmware, b43-fwcutter, bustle,
  6123. cache-calibrator, cegui06, celt051, classpath, curlftpfs,
  6124. dvb-apps, dvbsnoop, elfutils, enlightenment, firmware-imx,
  6125. flashbench, gd, gesftpserver, gst-fsl-plugins, httping, iftop,
  6126. imx-lib, jamvm, jpeg-turbo, keyutils, libatasmart, libcofi,
  6127. libebml, libevas-generic-loaders, libfslcodec, libfslparser,
  6128. libfslvpuwrap, libgsasl, libiscsi, libmatroska, libmcrypt,
  6129. libmhash, libqwt, libseccomp, libsha1, linenoise, mcrypt,
  6130. media-ctl, ncdu, neard, neardal, nettle, perf, polkit,
  6131. proxychains, python-bottle, python-pyparsing, rpi-firmware,
  6132. rpi-userland, sg3_utils, slirp, snowball-hdmiservice, spice,
  6133. spice-protocol, tcllib, tvheadend, udisks, usbredir
  6134. ux500-firmware, vde2, xcb-utils-keysyms, yavta,
  6135. zd1211-firmware
  6136. Removed packages: customize, xdriver_xf86-input-{acecad,aiptek},
  6137. xdriver_xf86-video-{apm,chips,i740,rendition,s3,s3virge,sisusb},
  6138. xdriver_xf86-video-sun{cg14,cg3,cg6,ffb,leo,tcx},
  6139. xdriver_xf86-video-{tsend,xgi,xgixp}
  6140. Deprecated packages: xstroke
  6141. Issues resolved (http://bugs.uclibc.org):
  6142. #4237: building shared openssl w/-Os fails due to gcc bug
  6143. #5690: python3 does not obey to BR2_PACKAGE_PYTHON3_PYC_ONLY=y
  6144. #5602: python3 should install a "python" symbolic link
  6145. #5846: Extra slash added to last slash in URL
  6146. 2012.11.1, Released January 3rd, 2013:
  6147. Toolchain: Fixed non-largefile builds on recent Ubuntu
  6148. versions.
  6149. Arch: fix missing x86/generic handling, Build for Xtensa with
  6150. longcalls option.
  6151. Updated/fixed packages: dosfstools, qt
  6152. 2012.11, Released December 2nd, 2012:
  6153. Git shallow clone fix for older git version.
  6154. Updated/fixed packages: ctuio, libtool
  6155. Issues resolved (http://bugs.uclibc.org):
  6156. #5726: List all the available hook points
  6157. 2012.11-rc2, Released November 30th, 2012:
  6158. Minor fixes around the tree.
  6159. Various manual updates and fixes.
  6160. Add checks for legacy features.
  6161. Updated/fixed packages: acpid, alsa-lib, arptables, binutils,
  6162. busybox, ccache, cjson, cramfs, directfb, flex, fluxbox, gdb,
  6163. hiawatha, igh-ethercat, imagemagick, imlib2, lcdproc,
  6164. libdaemon, libecore, libhid, libmad, libpcap, libsigc, libusb,
  6165. linux-fusion, matchbox, ocf-linux, owl-linux, python, rrdtool,
  6166. scons, strace, sylpheed
  6167. Issues resolved (http://bugs.uclibc.org):
  6168. #5732: Error : package/alsa-lib/alsa-lib.mk
  6169. 2012.11-rc1, Released November 17th, 2012
  6170. Fixes all over the tree and new features.
  6171. Defconfigs: use u-boot 2012.10 on at91 and beaglebone,
  6172. sheevaplug + qemu: bump kernel version, add qemu-mips64-malta
  6173. + nitrogen6x defconfigs.
  6174. Bootloaders: add u-boot 2012.07/10, ais target format, add
  6175. barebox 2012.08/09/10/11, linker overlap issue fix for
  6176. at91bootstrap, mxs-bootlets updated for new Barebox versions.
  6177. Toolchains: binutils 2.23.1, gcc 4.7.2, default to gcc 4.6.x,
  6178. Codebench arm/sh/x86 2012.03/09, Linaro 2012.08/09/10.
  6179. Libtirpc support for modern glibc variants. Toolchain on
  6180. target has been deprecated.
  6181. Initial Aarch64 support, Xtensa support re-added.
  6182. Infrastructure: Use shallow git clone when possible, use
  6183. tarballs rather than git URLs for github. Moved to pkgconf
  6184. rather than pkg-config. System directory added, default
  6185. skeleton/device tables moved. More than 1 post-build script
  6186. can now be used. output/target now contains a
  6187. THIS_IS_NOT_YOUR_ROOT_FILESYSTEM warning, to help people
  6188. understand how to (not) use it.
  6189. Manual has been reworked and extended.
  6190. Legal-info: Lots of package annotations, CSV file fixes,
  6191. _LICENSE / _REDISTRIBUTE splitup, per-package hooks.
  6192. Updated/fixed packages: acpid, alsa-lib, alsa-utils,
  6193. alsamixergui, attr, autoconf, automake, bash, bind, binutils,
  6194. bison, blackbox, bluez-utils, busybox, cairo, can-utils,
  6195. cifs-utils, cjson, cmake, collectd, connman, conntrack-tools,
  6196. coreutils, cups, cvs, dbus, dhcp, directfb, dmalloc, dnsmasq,
  6197. dropbear, e2fsprogs, ethtool, fbdump, feh, fftw, file,
  6198. flashrom, fluxbox, gdb, gdisk, gdk-pixbuf, genext2fs, gettext,
  6199. gnutls, gpsd, gqview, grep, gsl, gst-plugins-{bad,good},
  6200. hdparm, hiawatha, hostapd, input-tools, iproute2, ipset,
  6201. iptables, iw, json-c, kexec, kmod, lcdproc, leafpad, less,
  6202. libcurl, libdrm, libdvdnav, libdvdread, libffi, libfuse,
  6203. libglib2, libhid, liblockfile, libmad, libmbus, libmnl,
  6204. libnetfilter_{acct,conntrack,cthelper,cttimeout,queue},
  6205. libnfc, libnfc-llcp, libnfnetlink, libnl, libnspr, libnss,
  6206. libpcap, libplayer, libtool, libtorrent, liburcu, libv4l,
  6207. libxcb, libxml2, libxslt, links, linux-firmware, lm-sensors,
  6208. lmbench, lockfile-progs, logrotate, lshw, lsof,
  6209. lttng-babeltrace, lttng-tools, lua, luajit, mesa3d, microperl,
  6210. mii-diag, module-init-tools, mpc, mpd, mpg123, mplayer,
  6211. mtd-utils, mysql_client, nbd, ncurses, netatalk, netkitbase,
  6212. netkittelnet, netsnmp, newt, nfs-utils, openntpd, openssh,
  6213. openssl, opkg, patch, pciutils, pcre, php, poco, polarssl,
  6214. popt, portmap, pppd, procps, pulseaudio, python, python-nfc,
  6215. python-protobuf, qt, quota, rp-pppoe, rtorrent, sam-ba, samba,
  6216. scons, sdl_gfx, smartmontools, sqlite, squid, strace, sudo,
  6217. sylpheed, tcpdump, tremor, ttcp, tiff, unionfs,
  6218. usb_modeswitch, usbutils, util-linux, vala, valgrind, vpnc,
  6219. vsftpd, webkit, wget, which, wpa_supplicant, x11vnc, xapp_*,
  6220. xdriver_*, xenomai, xfont_*, xinetd, xl2tp, xlib_*, xlsclient,
  6221. xproto_*, xserver_xorg-server, xutil_util-macros, xz, zeromq
  6222. New packages: arptables, at91bootstrap3, boot-wrapper-aarch64,
  6223. ccid, cpanminus, cpuload, erlang, evtest, fb-test-apps,
  6224. fxload, gdbm, gnupg, googlefontdirectory, grantlee, gsl,
  6225. lcdapi, liblo, liblog4c-localtime, libtirpc, linux-pam,
  6226. lua-msgpack-native, macchanger, mtdev, mtdev2tuio, nfacct,
  6227. opus, opus-tools, pcsc-lite, perl, pkgconf, python-meld3,
  6228. python3, qemu, qextserialport, qtuio, rpcbind, schifra,
  6229. sconeserver, supervisor, time, ulogd, usb_modeswitch_data,
  6230. yasm
  6231. Deprecated packages: netkitbase, netkittelnet
  6232. Issues resolved (http://bugs.uclibc.org):
  6233. #807: [PATCH] samba - make iconv and smbd optional
  6234. #3049: binutils have a sysroot bug in ld
  6235. #5330: update vsftpd to 3.0.0
  6236. #5486: libglib2 build fails on: libs/libglib-2.0.so: undefined...
  6237. #5666: Fails to build python 2.7.2 for 2440 arm
  6238. 2012.08, Release August 31th, 2012
  6239. Updated/fixed packages: microperl, cups, luajit, rrdtool,
  6240. prboom, oprofile.
  6241. Added license information for: sqlite.
  6242. Changed the source URLs of all packages located on Sourceforge
  6243. in order to use the automatic mirror selection URL
  6244. downloads.sourceforge.net, and get rid of the
  6245. BR2_SOURCEFORGE_MIRROR option.
  6246. 2012.08-rc3, Released August 25th, 2012
  6247. Updated/fixed packages: libglib2, netsnmp, freetype, libfuse,
  6248. libpng, x11vnc, zlib, gpsd, ifplugd, bash, distcc.
  6249. Added license informations for: barebox, grub, syslinux,
  6250. uboot, xloader, yajl, zlib, zxing, alsa-lib, alsa-utils,
  6251. faad2, nano, fbdump, rsync, librsync, fontconfig,
  6252. inotify-tools,
  6253. 2012.08-rc2, Released August 15th, 2012
  6254. Updated/fixed packages: imagemagick, sudo, crosstool-ng.
  6255. Added license informations for: mxml, nanocom, empty, expat,
  6256. lua, lucjson, xinetd, cjson, luaexpat, lmbench, bwm-ng,
  6257. input-event-daemon, luajit, cgilua, copas, coxpcall,
  6258. luafilesystem, luasocket, rings, wsapi, xavante, libtpl,
  6259. avahi, busybox, libfcgi, ifplugd, libcgicc, libcurl,
  6260. libdaemon, libdnet, libgpg-error, libpcap, libpng, lighttpd,
  6261. mtd, openssl, psmisc, socat, spawn-fcgi.
  6262. Fixes to Microblaze external toolchains
  6263. configuration. Improvements of the pkg-stats
  6264. script. Out-of-tree fix for the graph-depends script.
  6265. Kernel headers version bump.
  6266. 2012.08-rc1, Released August 1st, 2012
  6267. Fixes all over the tree and new features.
  6268. Integration of a legal information reporting infrastructure,
  6269. which allows to generate detailed informations about the
  6270. licenses and source code of all components of a system
  6271. generated by Buildroot. License information will progressively
  6272. be added on packages.
  6273. Default configuration files added for Calao-systems USB-A9263
  6274. and Calao-systems USB-A9G20-LPW.
  6275. External toolchains update: allow download of a custom
  6276. toolchain, add Linaro 2012.05 and 2012.06 for ARM, add
  6277. Blackfin toolchain 2012R1-BETA1, add Sourcery CodeBench MIPS
  6278. 2011.09.
  6279. Allow the restriction of downloads to the primary site only.
  6280. This is useful for project developers who want to ensure that
  6281. the project can be built even if the upstream tarball
  6282. locations disappear.
  6283. Add a 'System configuration' choice to select between 3
  6284. different init systems: Busybox init, SysV init and Systemd
  6285. init.
  6286. Cleanups to the package infrastructure. The visible change to
  6287. developers is that $(eval $(call AUTOTARGETS)) is now $(eval
  6288. $(autotools-package)), and similarly for other package
  6289. infrastructures and host packages. Refer to the documentation
  6290. for details.
  6291. By default, automatic detection of the number of compilation
  6292. jobs to use, depending on the number of CPUs available.
  6293. Improvements to generate systems with static libraries only
  6294. (infrastructure and package fixes).
  6295. Add proper support in the Linux kernel package to generate
  6296. Device Tree Blobs or combined Device Tree / Kernel
  6297. images. This will be useful on Microblaze, PowerPC and ARM,
  6298. which are architectures making extensive use of the Device
  6299. Tree.
  6300. Updated/fixed packages: audiofile, autoconf, automake, axel,
  6301. barebox, bash, beecrypt, berkeleydb, bind, bison, bluez_utils,
  6302. bonnie, boost, busybox, bsdiff, bwm-ng, bzip2, cifs-utils,
  6303. cgilua, cmake, connman, conntrack-tools, crosstool-ng, cups,
  6304. dbus, dhcp, dnsmasq, e2fsprogs, eeprog, ethtool, faad2, fbv,
  6305. ffmpeg, freetype, gmp, gnutls, gob2, gpsd, grep,
  6306. gst-plugins-base, gst-plugins-good, gzip, hiawatha, hostapd,
  6307. htop, icu, igh-ethercat, imagemagick, input-tools, iostat,
  6308. iproute2, ipset, iptables, iw, kmod, less, libcap, libgci,
  6309. libconfig, libcurl, libelf, libevas, libeXosip2, libexif,
  6310. libfuse, libidn, libmad, libmbus, libmnl,
  6311. libnetfilter-conntrack, libnl, libnspr, libnss, libogg,
  6312. libosip2, libpcap, libpng, libroxml, liburcu, libusb, libxml2,
  6313. libxslt, lighttpd, linux, ltrace, lttng-libust, lttng-modules,
  6314. lttng-tools, lua, m4, memtester, midori, mii-diag,
  6315. module-init-tools, mpfr, mpg123, mrouted, msmtp, mtd, mxml,
  6316. mysql_client, nasm, nbd, ncurses, nfs-utils, opencv, openocd,
  6317. openssl, pciutils, php, polarssl, portaudio, pppd,
  6318. pthread-stubs, pulseaudio, qt, quagga, quota, radvd, rpm,
  6319. rrdtool, samba, sam-ba, scons, sdl_gfx, sdl_sound, speex,
  6320. sqlite, squashfs, squid, sudo, synergy, syslinux, systemd,
  6321. tar, tcpdump, tcpreplay, udev, usbutils, valgrind, wget,
  6322. wpa_supplicant, wsapi, xavante, xserver_xorg-server, zlib
  6323. New packages: cjson, collectd, dfu-util, dmidecode, elftosb,
  6324. fbterm, flashrom, freerdp, inadyn, libfreefare,
  6325. libnetfilter_cttimeout, libnfc, libnfc-llcp, liboping,
  6326. libtorrent, linphone, logsurfer, lshw, luacjson, luaexpat,
  6327. luajit, mediastreamer, mobile-broadband-provider-info, monit,
  6328. mxs-bootlets, nanocom, nss-mdns, ofone, omap-u-boot-utils,
  6329. opkg, ortp, owl-linux, python-id3, python-nfc, quota,
  6330. ramspeed, rtorrent, sound-theme-borealis,
  6331. sound-theme-freedesktop, sysprof, webrtc-audio-processing,
  6332. xinetd, zxing
  6333. Issues resolved (http://bugs.uclibc.org):
  6334. #1315: Allow use of older external toolchains without sysroot
  6335. support [won't fix]
  6336. #5276: Hiawatha needs to manage IPV6 if so [fixed]
  6337. #5360: buildroot fails when building "host-libglib2 2.30.2
  6338. Building" [won't fix, upstream problem]
  6339. #5384: Can't build packages relying on gets on newer glibc
  6340. [fixed]
  6341. 2012.05, Released May 30th, 2012:
  6342. Updated/fixed packages: busybox, netsnmp, pptp-linux
  6343. 2012.05-rc3, Released May 25th, 2012:
  6344. Minor fixes around the tree.
  6345. Infra: Fix for DOWNLOAD macro when using primary mirrors with
  6346. scp targets.
  6347. Toolchain: Kernel headers 3.2.18 / 3.3.7.
  6348. Updated/fixed packages: binutils, bison, busybox, cifs-utils,
  6349. gnuchess, gpsd, iperf, libmpeg2, mtd, ntfs-3g, oprofile,
  6350. xserver-xorg
  6351. 2012.05-rc2, Released May 18th, 2012:
  6352. Fixes all over the tree.
  6353. Toolchain: uClibc: Use 0.9.33.2, Crosstool-ng: fix gperf
  6354. dependency, disable decimal floats support, Linux 3.2.17 /
  6355. 3.3.6 kernel headers. Fix sysroot copy handling for toolchains
  6356. without C++ support.
  6357. Updated/fixed packages: apr, apr-util, ccache, dnsmasq,
  6358. heirloom-mailx, gdb, ndisc6, opencv, openssl, socat, vala
  6359. 2012.05-rc1, Released May 10th, 2012:
  6360. Fixes all over the tree and new features.
  6361. Use /etc/os-release for version info rather than
  6362. /etc/br-version.
  6363. CMake toolchain file moved to $HOST_DIR/usr/share/buildroot.
  6364. Apply-patches.sh: cleanups, archived patches handling fixes,
  6365. support series files.
  6366. Defconfigs: beaglebone, mx53qsb, pandaboard, qemu configs for
  6367. arm-vexpress/microblaze/ppc-mpc88544ds, use 3.2.x for
  6368. atngw100, use 3.3.x for qemu configs.
  6369. Menu structure: Libraries moved out of multimedia section
  6370. Atom processor support. Prescott fix, blackfin ABI fix,
  6371. Microblaze architecture support (using ext toolchain). Cleanup
  6372. architecture names, deprecate Xtensa support.
  6373. Toolchain: Add GCC 4.4.7, 4.6.3, 4.7.0. uClibc 0.9.33.1,
  6374. default to uClibc 0.9.33.x, enable
  6375. UCLIBC_SUPPORT_AI_ADDRCONFIG by default, static and 64bit
  6376. fixes for external toolchains, linaro ext toolchains, new
  6377. sourcery codebench ext toolchains, GDB 7.4.1, crosstool-ng
  6378. 1.15.2.
  6379. Bootloaders: U-Boot: add 2012.04.01, SPL and u-boot.img
  6380. support. Barebox: add 2012.04, remove 2011.12.
  6381. Updated/fixed packages: alsa-lib, alsa-utils, at, atk, avahi,
  6382. barebox, berkeleydb, bind, bluez_utils, boost, busybox,
  6383. can-utils, ccache, cifs-utils, coreutils, cups, dbus, dhcp,
  6384. directfb, dnsmasq, doom-wad, dosfstools, e2fsprogs, expat,
  6385. fakeroot, feh, ffmpeg, file, fis, freetype, gamin, gawk,
  6386. gdk-pixbuf, gettext, giblib, glib-networking, gmp, gnutls,
  6387. gpsd, grep, gstreamer, gst-plugins-{bad,base,good,ugly},
  6388. haserl, hdparm, imagemagick, iproute2, iptable, iw, kexec,
  6389. kmod, lame, libaio, libarchive, libatomic_ops, libconfig,
  6390. libcurl, libdvdnav, libdvdread, libedbus, libethumb, libffi,
  6391. libfuse, libglib2, libgtk2, libhid, libmad, libmbus, libmpeg2,
  6392. libnl, libplayer, libpng, libsigc, libsoup, libupnp, liburcu,
  6393. libusb, libusb-compat, libxml2, libxml-parser-perl, libxslt,
  6394. lighttpd, linux-firmware, linux-fusion, lite, lsof, ltrace,
  6395. lttng-libust, lua, m4, makedevs, microperl, mpd, mpfr, mpg123,
  6396. mrouted, mtd, mysql_client, nbd, ncftp, ncurses, neon,
  6397. netsnmp, network-manager, nfs-utils, ngrep, ntfs-3g, openntpd,
  6398. openssh, openssl, parted, pango, pcre, php, pixman, poco,
  6399. psmisc, pulseaudio, python, qt, quagga, radvd, rpm, rsync,
  6400. ruby, samba, sam-ba, sane-backends, sawman, screen, sdl_net,
  6401. smartmontools, speex, sqlite, squashfs3, squid, sshfs, sudo,
  6402. syslinux, sysstat, taglib, tcpdump, tftp-hpa, transmission,
  6403. tiff, tinyhttpd, uboot-tools, udev, uemacs, unionfs, usbutils,
  6404. util-linux, vala, valgrind, vim, vsftpd, wget, wipe,
  6405. wpa_supplicant, xdriver_xf86-{input-vmmouse,video-fbdev},
  6406. xfsprogs, zlib
  6407. New packages: apr, apr-util, audiofile, bellagio,
  6408. conntrack-tools, empty, fmtools, glib-networking,
  6409. heirloom-mailx, hiawatha, latencytop, lcdproc, libcap-ng,
  6410. libdmtx, libfcgi, libnetfilter_conntrack, libnfnetlink,
  6411. libtpl, localedef, minicom, msmtp, ndisc6, netatalk,
  6412. ocf-linux, openswan, parted, polarssl, protobuf, read-edid,
  6413. socketcand, stress, systemd, ushare, zeromq
  6414. Deprecated packages: ttcp
  6415. Removed packages: ntfsprogs
  6416. Issues resolved (http://bugs.uclibc.org):
  6417. #2353: [lua] fix build with 2010.08-rc1
  6418. #2503: Microperl fails build on MIPSel or with Fedora13.x86_64
  6419. #2557: [PATCH] mkfs.xfs complains about missing libxfs.so.0
  6420. #2881: Can't build project statically with external toolchain
  6421. #3751: MIPS: fix BR2_GCC_TARGET_ABI for MIPS n64
  6422. #4808: ccache may build against wrong zlib
  6423. #4880: New package lcdproc
  6424. #4886: New package protobuf
  6425. #4892: build fails on ltp-testsuite-20101031/testcases/kernel/fs/...
  6426. #4898: * make: [target-finalize] Error 1 (ignored)*
  6427. #4985: Qt 4.7.4 build crashes with Linux 2.6.29
  6428. #4970: udev 181 fails to build if kernel version 3.3 is selected
  6429. #5018: dialog broken: exits with assert in uClibc
  6430. #5102: qt package moc, uic, rcc read from wrong place
  6431. #5144: Patch to fix ixon bug in uemacs
  6432. #5198: Line graphics output is broken in GNU Screen
  6433. #5204: Missing terminfo file(s) for GNU screen terminal type
  6434. 2012.02, Released February 29th, 2012:
  6435. Updated/fixed packages: libecore
  6436. 2012.02-rc3, Released February 27th, 2012:
  6437. Fixes all over the tree.
  6438. Automatic host dependencies handling for cmake packages
  6439. fixed. Customize package deprecated as using a post-build
  6440. script is nowadays the preferred way of adding extra stuff to
  6441. the rootfs.
  6442. Linux-headers 3.0.x / 3.2.x stable version bumped.
  6443. QEMU defconfigs updated to 3.2.x kernels and readme fixed.
  6444. Updated/fixed packages: dropbear, ffmpeg, libpng
  6445. 2012.02-rc2, Released February 19th, 2012:
  6446. Fixes all over the tree.
  6447. Toolchain: uClibc: Added upstream post-0.9.33 fixes, Bump
  6448. linux-headers 3.0.x / 3.2.x stable versions.
  6449. Documentation: Added makedev / <pkg>_DEVICES /
  6450. <pkg>_PERMISSIONS documentation.
  6451. Updated/fixed packages: busybox, ffmpeg, gst-dsp, libecore,
  6452. libvncserver, mxml, python.
  6453. 2012.02-rc1, Released February 12th, 2012:
  6454. Fixes all over the tree and new features.
  6455. Toolchain: Default to GCC 4.5.x, add binutils 2.22. Java
  6456. support removed, Powerpc SPE ABI support. GDB ELF support fix,
  6457. GDB 7.4, crosstool-NG 1.13.4.
  6458. Gentargets: scp and mercurial support.
  6459. Autotools: derive host dependencies from target by default.
  6460. Packages can now declare device table snippets.
  6461. Host utilities menu with commonly used host tools.
  6462. defconfigs: qemu configs for x86-64, mips and sparc, at91
  6463. defconfigs now use modern U-Boot / mainline Linux, added
  6464. lpc3250 defconfigs.
  6465. uClibc: remove 0.9.30, backport unshare() support, add
  6466. 0.9.32.1 / 0.9.33, use same config for ctng.
  6467. Bootloaders: U-Boot: add 2011.12, remove 2010.xx versions,
  6468. Barebox: add 2012.01/02, remove 2011.10/11, LPC32xx
  6469. bootloaders added.
  6470. Various manual updates. Release tarballs now contain generated
  6471. manual in text/html/pdf formats.
  6472. Buildroot now calls the stop function of scripts in
  6473. /etc/init.d at shutdown.
  6474. Updated/fixed packages: atk, avahi, barebox, bash, beecrypt,
  6475. bind, binutils, bison, bluez_utils, bzip2, busybox, cairo,
  6476. ccache, cdrkit, coreutils, cramfs, dbus, dbus-glib, dialog,
  6477. diffutils, dmalloc, dropbear, e2fsprogs, ebtables, ed,
  6478. ethtool, expat, ffmpeg, file, fis, flex, fluxbox, fontconfig,
  6479. freetype, gawk, grep, gst-dsp, gst-ffmpeg, gst-plugins-base,
  6480. hdparm, hostapd, htop, i2c-tools, icu, iproute2, ipsec-tools,
  6481. ipset, iptables, iw, jpeg, kismet, lame, libcap, libcgi,
  6482. libev, libeXosip2, libffi, libftdi, libgpg-error, libgtk2,
  6483. libidn, libmms, libmnl, libmodbus, libnl, libogg, libosip,
  6484. libpcap, libpng, libraw1394, libroxml, libusb, libusb-compat,
  6485. libv4l, libvorbis, libxcb, libxml-parser-perl, libxslt,
  6486. lighttpd, links, lm-sensors, lua, m4, module-init-tools, mpc,
  6487. mesa3d, mpd, mpfr, mplayer, mtd-utils, nano, nbd, ncurses,
  6488. netperf, netsnmp, ntp, opencv, openocd, openssl, openvpn, orc,
  6489. pciutils, pcre, pixman, pkg-config, poco, popt, proftpd,
  6490. python, python-serial, qt, ruby, samba, sdl, sdparm,
  6491. squashfs3, sshfs, sqlite, squid, sudo, syslinux, tcl, tcpdump,
  6492. ti-utils, tiff, tremor, uboot, uboot-tools, udev, usbmount,
  6493. util-linux, vala, valgrind, vsftpd, wpa_supplicant,
  6494. xapp_{bdftopcf,mkfontdir,mkfontscale,xkbcomp,xcursorgen,xinit},
  6495. xapp_xinput, xapp_xman, xcb-util, xdm, xenomai,
  6496. xf86-video-sis, xfont_{encodings,font-util},
  6497. xlib_lib{fontenc,X11,Xau,Xcursor,Xdmcp,Xfixes,Xfont,Xrender},
  6498. xlib_libxkbfile, xterm, xutil_makedepend, yajl
  6499. New packages: boost, connman, dstat, expedite, explorercanvas,
  6500. feh, flot, giblib, igh-ethercat, imlib2, jquery,
  6501. jquery-sparklines, jquery-validation, jsmin, kmod, libecore,
  6502. libedbus, libedje, libeet, libeina, libelementary, libesmtp,
  6503. libethumb, libevas, libical, libmbus, liboauth, liburcu,
  6504. libvncserver, linux-firmware,
  6505. lttng-{babeltrace,libust,modules,tools}, NetworkManager,
  6506. open2300, python-distutilscross, python-dpkt,
  6507. python-netifaces, python-pygame, python-setuptools, rt-tests,
  6508. sam-ba, sane-backends, sqlcipher, transmission, unionfs,
  6509. xf86-input-tslib, xinput-calibrator
  6510. Issues resolved (http://bugs.uclibc.org):
  6511. #743: Add Transmission bit torrent option to buildroot
  6512. #755: Add Boost libraries as a package
  6513. #2299: Add crypto support to libsoup
  6514. #2617: Pixman 0.19.2 & Cairo 1.10.0
  6515. #3403: libgpg-error: bump to version 1.10
  6516. #3409: libgpg-error: download from gnupg.org
  6517. #3421: nano: make tiny flag optional
  6518. #3691: New EFL packages
  6519. #4664: Cannot patch AT91Bootstrap
  6520. #4700: setlocalversion not working for combination svn/ubuntu 11.10...
  6521. #4760: Qt: add host-pkg-config to dependency-list
  6522. 2011.11, Released November 30th, 2011:
  6523. Fixes all over the tree.
  6524. Bump kernel headers / default Linux version to 3.1.4.
  6525. Updated/fixed packages: ruby
  6526. 2011.11-rc3, Released November 26th, 2011:
  6527. Fixes all over the tree.
  6528. Toolchain: Fix gdb dependencies for external toolchains,
  6529. adjust uClibc patches so they don't confuse modern versions of
  6530. patch, bump crosstool-ng, kernel headers and linux versions.
  6531. Updated/fixed packages: busybox, freetype, mplayer, opencv,
  6532. php, rsyslog, ruby, thttpd, xapp_xf86dga
  6533. Issues resolved (http://bugs.uclibc.org):
  6534. #4357: Prevent patch commands from accessing source control
  6535. #4369: Fix permissions on untared lsof archive
  6536. 2011.11-rc2, Released November 18th, 2011:
  6537. Fixes all over the tree and new features.
  6538. Updated asciidoc documentation
  6539. Toolchain: Bumped 3.x stable kernel headers, use wget in
  6540. crosstool-ng as well, bump crosstool-ng version, gdb fixes,
  6541. uClibc sparc fix.
  6542. Updated/fixed packages: distcc, file, gst-plugins-bad, libxcb,
  6543. mplayer, newt, qt, rpm, rrdtool, tar, tftpd
  6544. Issues resolved (http://bugs.uclibc.org):
  6545. #3355: mplayer fails to build
  6546. #4021: uClibc: undefined reference to `__GI___errno_location'
  6547. #4297: Qt's qmake uses wrong pkg-config
  6548. 2011.11-rc1, Released November 11th, 2011:
  6549. Fixes all over the tree and new features.
  6550. Moved misc scripts and support stuff to support/. Renamed
  6551. patch-kernel.sh to support/scripts/apply-patches.sh.
  6552. Documentation: Moved to asciidoc format, make targets to
  6553. generate text/html/pdf/epub output added.
  6554. Defconfigs: Qemu configs updated to 3.1 kernel and readmes
  6555. added.
  6556. Bootloaders: Add support for custom git tree / tarballs for
  6557. barebox, similar to how it's handled for u-boot. Clean up
  6558. menuconfig options.
  6559. Toolchain: Update external codesourcery toolchain download
  6560. URLs after Codesourcery got bought by Mentor, add x86
  6561. toolchain, update toolchain versions and optimize toolchain
  6562. sysroot copying. Fix uClibc 0.9.32 builds for e500 PPC,
  6563. updated GDB versions / download URLs. Binutils
  6564. libbfd/libopcodes static/dynamic linking fix. GCC 4.6.2 added,
  6565. use ctng-1.13.0.
  6566. Package infrastructure: Support for local packages /
  6567. overrides, package dir / name arguments dropped from
  6568. {GEN,AUTO,CMAKE}TARGETS.
  6569. Linux: Kernel extensions infrastructure support, Xenomai +
  6570. RTAI support.
  6571. Updated/fixed packages: acpid, bind, busybox, dash, dbus,
  6572. dbus-glib, directfb, dnsmasq, drystone, e2fsprogs, ethtool,
  6573. fakeroot, fbdump, file, freetype, fuse, gamin, gmp, gmpc,
  6574. gnutls, gob2, gst-plugins-{base,bad,good,ugly}, gstreamer,
  6575. hostapd, ifplugd, imagemagick, intltool, ipsec-tools, ipset,
  6576. iptables, iw, jpeg, kexec, leafpad, less, libargtable2, libao,
  6577. libconfuse, libcuefile, libcurl, libdaemon, libevent,
  6578. libglib2, libiconv, libmpd, libreplaygain, libroxml,
  6579. libsamplerate, libsndfile, libsoup, libsvgtiny, libtool,
  6580. libxcb, lighttpd, links, linux-fusion, lite, lrzsz, lsof, lzo,
  6581. lzop, makedevs, mcookie, mpg123, mpd, mpfr, mtd, musepack,
  6582. mutt, mysql_client, ncftp, ncurses, neon, netcat, netsnmp,
  6583. ntfs-3g, ntfsprogs, ntp, openntpd, openssh, openssl, oprofile,
  6584. orc, pciutils, psmisc, python, qt, quagga, radvd, rpm, rsync,
  6585. samba, sawman, sdl_sound, smartmontools, sqlite, squid,
  6586. stunnel, sudo, sylpheed, sysstat, taglib, tar, tcpreplay,
  6587. tslib, usbutils, util-linux, valgrind, wget, whetstone, which,
  6588. wpa-supplicant, xdata_xcursor-themes, xmlstarlet, xterm
  6589. New packages: bluez-utils, cifs-utils, fftw, fluxbox, json-c,
  6590. libev, libftdi, libgeotiff, libmodbus, libplayer, live555,
  6591. ngrep, noip, opencv, openocd, picocom, poco, portaudio,
  6592. pulseaudio, pv, rtai, vala, xenomai.
  6593. Removed packages: liboil, sfdisk, swfdec, webif
  6594. Issues resolved (http://bugs.uclibc.org):
  6595. #505: live555: new package
  6596. #507: Enable live and tv options in MPlayer-1.0rc2
  6597. #531: let e2fsprogs package to export headers to staging dir if needed
  6598. #1171: Linuxthreads new cannot find sysdep.h
  6599. #1357: Add bluez to buildroot system
  6600. #2107: New package: input-event-daemon
  6601. #2599: New package: orc (Oil Runtime Compiler)
  6602. #2605: gstreamer: Update to 0.10.30
  6603. #2677: introducing util-linux-ng as replacement for util-linux
  6604. #2917: Qt: Add declarative module
  6605. #3145: jffs2 image generation fails
  6606. #3271: netperf-2.4.5 fails to compile
  6607. #3331: xdata_xcursor-themes depends on xcursorgen
  6608. #3343: Add file:// download SITE_METHOD
  6609. #3391: Add support for specifying an external kernel tree
  6610. #3631: Error while compiling with Xorg
  6611. #3709: oprofile doesn't build for mipsel
  6612. #3925: midori not getting compile
  6613. #4045: Add support for downloading i386 toolchains from codesourcery
  6614. #4165: lrzsz-fix-symlink-at-rebuild.patch
  6615. #4171: makedevs-unused-but-set-variable.patch
  6616. #4183: Codesourcery toolchain download site has changed
  6617. #4231: libneon.so: undefined reference to `SSL_SESSION_cmp'
  6618. #4381: Add option to lighttpd to enable Lua support
  6619. #4387: Make sure that dest dir exists before installing mtd files
  6620. 2011.08, Released August 31th, 2011:
  6621. Fixes all over the tree.
  6622. Toolchain: Fix codesourcery 2009q3 ARM download, Linux 3.0.4
  6623. kernel headers.
  6624. Updated/fixed packages: ipset, python
  6625. 2011.08-rc2, Released August 29th, 2011:
  6626. Fixes all over the tree.
  6627. Toolchain: crosstool-NG 1.12.1, use binutils 2.21 on
  6628. mips/sh/older uClibc, disallow uClibc 0.9.32 on avr32/sh
  6629. (broken).
  6630. Defconfigs: kernel updates, fix mini2440 serial port config,
  6631. remove old arm toolchain configs.
  6632. Bootloaders: Fix grub patching, add barebox-{n,x,menuconfig}
  6633. targets similar to linux/busybox.
  6634. Updated/fixed packages: barebox, directfb, libsoup,
  6635. libxml-parser-perl, mtd, ncurses, python, ti-utils, udev,
  6636. usbmount, util-linux, xfont_font-misc-misc
  6637. Issues resolved (http://bugs.uclibc.org):
  6638. #3685: ncurses installation hangs due to old version of tic
  6639. #4093: Grub fails to install bz2 patch after conversion to...
  6640. 2011.08-rc1, Released August 4th, 2011:
  6641. Fixes all over the tree and new features.
  6642. Toolchain: uClibc 0.9.32 / NPTL support, 0.9.29 removed,
  6643. ext-toolchain-wrapper improvements, improved non-MMU
  6644. support. GCC 4.3.6 / 4.6.1.
  6645. GENTARGETS infrastructure extended to cover bootloaders and
  6646. Linux kernel as well. Options to retrive Linux/U-Boot from a
  6647. custom git repo instead of upstream tarballs.
  6648. Support for Linux 3.x and release candidate tarballs.
  6649. X-Loader bootloader for omap added.
  6650. Make source/external-deps now also works for external
  6651. toolchains / crosstool-ng backend.
  6652. Updated/fixed packages: autoconf, berkeleydb, bind, binutils,
  6653. bmon, bridge-utils, busybox, cmake, dbus, dbus-glib,
  6654. e2fsprogs, ethtool, ffmpeg, gst-plugins-{bad,base,good,ugly},
  6655. gvfs, hostapd, iproute2, iptables, iw, jpeg, lame, libarchive,
  6656. libdnet, libdrm, libgcrypt, libgtk2, libmpeg2, libpng,
  6657. libsoup, lighttpd, linux-fusion, lzo, midori, mtd-utils,
  6658. nfs-utils, openvpn, oprofile, orc, pkg-config, proftpd, qt,
  6659. ruby, samba, sdl, shared-mime-info, sudo, sqlite, squid,
  6660. synergy, udev, usbmount, usbutils, util-linux, valgrind,
  6661. webkit, xorg-xserver, xz, zlib
  6662. New packages: acl, attr, ebtables, gnutls, inotify-tools,
  6663. ipset, libargtable2, libiqrf, libmnl, libnspr, libnss,
  6664. libroxml, libyaml, live555, mxml, orc, rsyslog, sredird,
  6665. statserial, stunnel, ti-utils, uboot-tools, yajl
  6666. Deprecated packages: liboil, swfdec
  6667. Removed packages: hal
  6668. Issues resolved (http://bugs.uclibc.org):
  6669. #3559: libnspr: Add new package
  6670. #3595: patch to add libroxml
  6671. #3565: libnss: Add new package
  6672. #3583: xfonts_font-adobe-100dpi fails due to missing map file
  6673. #3649: [PATCH] Add mapdir to existing pkg-config patch
  6674. #3907: 2011.05 - Qt 4.7.3 not building on ARM
  6675. #3961: Nfs-utils: Remove SUSv3-function index
  6676. #3985: "help" target's defconfig list needs sort
  6677. #3997: bump libroxml to v2.1.0
  6678. 2011.05, Released May 27th, 2011:
  6679. Updated/fixed packages: makedevs
  6680. 2011.05-rc2, Released May 24th, 2011:
  6681. Fixes all over the tree.
  6682. Toolchain: Code sourcery ARM 2009q1 download URL fixed /
  6683. 2009q3 external toolchains added. Crosstool-NG bumped to
  6684. 1.11.3, eglic/glibc configuration fixes. Linux kernel 2.6.38.x
  6685. bumped to 2.6.38.7.
  6686. Updated/fixed packages: bind, fakeroot, kbd, psmisc, qt
  6687. 2011.05-rc1, Released May 18th, 2011:
  6688. Fixes all over the tree and new features.
  6689. External toolchain improvements: We now build a binary
  6690. toolchain wrapper and install it into HOST_DIR/usr/bin, which
  6691. enforces the correct compiler arguments, making an external
  6692. toolchain as easy to use outside of Buildroot as the internal
  6693. ones are. This also brought a cleanup of CFLAGS, making the
  6694. Buildroot build output easier to read.
  6695. Rootfs device handling improvements: Choice between static
  6696. /dev, devtmpfs and devtmpfs with either mdev or udev.
  6697. Toolchain: More preconfigured codesourcery external
  6698. toolchains, improved Crosstool-NG support, fix for GCC
  6699. snapshot versions, GCC 4.4.6 / 4.5.3, experimental GCC 4.6.0
  6700. support, target-GCC fixes, uClibc fixes, 0.9.32-rc3 support.
  6701. Bootloaders: U-boot 2011.03, Barebox 2011.05.0
  6702. Linux: support for custom kernel image targets, E.G. for
  6703. powerpc builds with embedded device trees.
  6704. Misc fixes for qemu defconfigs, ensuring correct serial
  6705. terminal setup out of the box.
  6706. Misc gentarget / autotools handling fixes.
  6707. Updated/fixed packages: alsa-lib, alsa-utils, alsamixergui,
  6708. atk, avahi, bind, bison, busybox, copas, dbus-glib, dhcp,
  6709. dhcpdump, dnsmasq, dropbear, ethtool, fakeroot, ffmpeg, file,
  6710. gamin, gnuconfig, gst-ffmpeg, gst-plugins-good, gtk2-engines,
  6711. haserl, hostapd, icu, imagemagick, iproute2, iw, kismet, less,
  6712. libcap, libdnet, libglade, libglib2, libgtk2, libnl, libpng,
  6713. libxml2, libxml2, libxslt, lighttpd, lockfile-progs, makedevs,
  6714. midori, mpg123, mpc, mpd, mpfr, mplayer, mtd-utils, ncurses,
  6715. netsnmp, openssh, openssl, openvpn, pango, pkg-config, popt,
  6716. procps, proftpd, qt, quagga, readline, rsync, samba, sdl,
  6717. socat, squashfs, squid, sudo, tslib, udev, usbutils, webkit,
  6718. wpa_supplicant, xerces, xfont_font-misc-misc, xlib_libX11,
  6719. xlib_libXfont, xlib_xtrans, xorg-server, xterm, xz
  6720. New packages: bonnie++, can-utils, gdisk, htop,
  6721. input-event-daemon, libexif, libraw, libv4l, ngircd
  6722. Removed packages: festival
  6723. Issues resolved (http://bugs.uclibc.org):
  6724. #2131: Add OpenMP support to the toolchain
  6725. #3379: New Package: bonnie++
  6726. #3445: Not working openssl-10.0.0d on 386sx
  6727. #3451: fakeroot package: wrong FAKEROOT_SITE variable
  6728. #3457: alsamixergui: broken URL
  6729. #3475: Calling sync on large filesystems when not always necessary
  6730. #3511: make busybox-menuconfig does not download busybox package
  6731. #3541: Quotes in the top Makefile:217 break buildroot/kernel config...
  6732. #3571: u-boot: fw_printenv does not build
  6733. #3643: popt source url is not responding
  6734. #3733: dropbear: make zlib optional
  6735. #3757: Buildroot can't build mplayer with libmad
  6736. 2011.02, Released February 28th, 2011:
  6737. Fixes all over the tree.
  6738. Updated/fixed packages: alsamixergui, avahi, ffmpeg, icu, mpd,
  6739. nuttcp, qt, slang, squashfs, sylpheed, synergy, xerces
  6740. Deprecated packages: devmem2, webif
  6741. Issues resolved (http://bugs.uclibc.org):
  6742. #2911: Qt: Disable qt3support-option, if gui-module isn't selected
  6743. #3259: Unable to build webkit (on arm)
  6744. #3295: slang fails to build on mipsel
  6745. #3325: ffmpeg fails to build
  6746. 2011.02-rc2, Released February 24th, 2011:
  6747. Fixes all over the tree.
  6748. Festival packages marked as broken. Unless someone steps up
  6749. to support them, they will be removed during the 2011.05
  6750. development cycle.
  6751. Updated/fixed packages: atk, avahi, bind, cairo, dbus,
  6752. enchant, fakeroot, gmpc, gpsd, gvfs, iperf, jpeg, libarchive,
  6753. libcgicc, libdaemon, libdrm, libevent, libgail, libglib2,
  6754. libgpg-error, libmicrohttpd, librsvg, libsoup, libxcp,
  6755. makedevs, matchbox-fakekey, matchbox-startup-monitor, mdadm,
  6756. metacity, mpd, nasm, nfs-utils, olsr, openssl, popt,
  6757. pthread-stubs, quagga, rpm, samba, sdl, sdl_gfx, sdl_image,
  6758. sdl_mixer, sdl_sound, sdl_ttf, squashfs, synergy, taglib,
  6759. tcpreplay, tiff, wpa_supplicant, xcb-util,
  6760. xdriver_xf86-input-{acepad,aiptek,evdev,joystick,keyboard},
  6761. xdriver_xf86-input-{mouse,synaptics,void},
  6762. xdriver_xf86-video-{chips,dummy,geode,glide,intel,nv,wsfb},
  6763. xlib_lib{ICE,SM,XScrnSaver,Xau,Xcursor,Xdmcp,Xi,Xinerama},
  6764. xlib_lib{Xrandr,Xt,Xtst,Xxf86dga,Xxf86vm,dmx,fontenc,pciaccess},
  6765. xserver_xorg-server, xz
  6766. Removed packages: ace_of_penguins, vlc
  6767. Issues resolved (http://bugs.uclibc.org):
  6768. #3205: Failing chmod when running "make" in buildroot (openssl)...
  6769. #3277: quagga fails to build with SNMP support
  6770. #3283: See why nfs-utils needs fakeroot, and convert to autotools
  6771. #3307: synergy fails to build due to missing XTest library
  6772. 2011.02-rc1, Released February 14th, 2011:
  6773. Fixes all over the tree and new features.
  6774. External toolchain improvements: clarification of the options,
  6775. and introduction of the toolchain profile concept, for
  6776. well-known toolchains. Buildroot is now capable of
  6777. automatically downloading and extracting well-known toolchains
  6778. (for the moment, CodeSourcery ARM, PowerPC, MIPS and SuperH
  6779. toolchains are supported). Crosstool-NG backend updated and
  6780. improved.
  6781. Complete rework of how hardware boards are supported.
  6782. Each board now only has a single defconfig file, and all
  6783. board-specific options have been removed. See
  6784. docs/buildroot.html#board_support for details.
  6785. Added support for the following boards: Mini2440, Qemu ARM
  6786. Versatile, Qemu MIPSel Malta, Qemu PowerPC G3beige, Qemu SH4
  6787. r2d and Qemu x86. The Qemu boards support allows to easily
  6788. build systems that are known to work under Qemu.
  6789. Initial support for Blackfin processors.
  6790. Staging directory moved into $(O)/host/usr/<tuple>/sysroot, in
  6791. preparation for support of SDK. For the same reason, the
  6792. toolchain binaries (cross-compiler and other related tools)
  6793. are now installed in $(O)/host/usr/bin/. The cross pkg-config
  6794. now also automatically returns correct values for cross
  6795. compilation, without needing any environment variables to be
  6796. set.
  6797. Ccache support reworked. Now used for both host and target
  6798. compilation, and cache is stored in ~/.buildroot-ccache.
  6799. Toolchain: uClibc 0.9.32-rc2, several components moved to
  6800. normal AUTOTARGET packages.
  6801. Generic cmake infrastructure, similar to the existing
  6802. GENTARGETS/AUTOTARGETS.
  6803. Support for bzr downloads, next to the existing git/svn support.
  6804. Kconfig infrastructure rebased against 2.6.38-rc3, bringing
  6805. misc fixes. 'xconfig' now uses Qt4 rather than Qt3.
  6806. EXT2 file system size handling improved, UBI image support, fs
  6807. configuration options cleanup, U-Boot/Barebox version bumps.
  6808. Updated/fixed packages: alsa-utils, at, autoconf, automake,
  6809. bash, binutils, bison, busybox, bzip2, cdrkit, cloop, cmake,
  6810. coreutils, cups, dbus, dbus-python, dhcp, directfb,
  6811. direcfb-examples, dmalloc, dnsmasq, dosfstools, e2fsprogs, ed,
  6812. fbset, ffmpeg, findutils, flac, freetype, gdk-pixbuf, gmp,
  6813. grep, gperf, gst-ffmpeg, gst-plugins-bad, gst-plugins-base,
  6814. gst-plugins-good, gst-plugins-ugly, gstreamer, gvfs, hdparm,
  6815. hostapd, i2c-tools, icu, imagemagick, input-tools, iproute2,
  6816. iptables, iw, jpeg, kexec, libaio, libart, libcap, libconfig,
  6817. libfuse, libglib2, libidn, libmad, libogg, libpcap, libpng,
  6818. libsndfile, libtheora, libtool, libusb-compat, libvorbis,
  6819. libxcb, libxml2, libxslt, links, linux-fusion, lm-sensors,
  6820. lsof, ltp-testsuite, ltrace, lvm2, lzo, m4, makedevs,
  6821. memtester, mesa3d, mii-diag, mpc, mpfr, mpg123, mplayer,
  6822. mrouted, mtd-utils, nano, netperf, netplug, ntfs-3g, ntp,
  6823. openssh, openssl, openvpn, oprofile, pango, patch, pciutils,
  6824. php, pkgconfig, portmap, psmisc, python, qt, rsync, ruby,
  6825. sawman, screen, sdl_gfx, sdl_sound, smartmontools, socat,
  6826. sqlite, squid, sshfs, sstrip, sysklogd, sysstat, sysvinit,
  6827. tar, tcpdump, tslib, udev, usbutils, vim, vtun, webkit, wipe,
  6828. x11vnc, xapp_xlogo, xcb-proto, xfont_font-util,
  6829. xkeyboard-config, xlib_libX11, xz, zlib
  6830. New packages: dhrystone, dsp-tools, faad2, fbgrab, gst-dsp,
  6831. gst-omapfb, irda-utils, lame, libao, libcue, libcuefile,
  6832. libffi, libhid, libreplaygain, libsamplerate, libsigc++,
  6833. lsuio, mpd, musepack, python-mad, python-serial, rsh-redone,
  6834. sdparm, tidsp-binaries, vorbis-tools, wavpack, whetstone,
  6835. xl2tp, xmlstarlet
  6836. Removed packages: hotplug, l2tp, libfloat, microcom,
  6837. ng-spice-rework
  6838. Issues resolved (http://bugs.uclibc.org):
  6839. #267: The make target: cross fails because toolchain_build_...
  6840. #415: Berkeley DB: mut_pthread.o: relocation R_X86_64_32 against...
  6841. #561: ltp-testsuite failed to install
  6842. #1447: Installing gfortran on PowerPC
  6843. #1651: Build fail caused by ccache in module-init-tools
  6844. #1681: Cross-compiled binaries shouldn't be installed into staging
  6845. #1723: [PATCH] axel: convert to generic package infrastructure and...
  6846. #1735: [PATCH] mplayer: convert to autotools infrastructure
  6847. #2551: [PATCH] native toolchain in the target filesystem fails
  6848. #2623: buildroot-snapshot-20100922 fails when compiling development...
  6849. #2647: makedevs package lacks support for 16-bit major/minor numbers
  6850. #2371: QT MYSQL Module does not build when MySQL installed on the host
  6851. #2839: compile fails in various packages with a odd message "error:...
  6852. #2887: tar "buffer overflow detected" error
  6853. #2893: Broken "make source" with external toolchain
  6854. #2905: Qt: Speed up compilation, if gui-module isn't selected
  6855. #2929: genext2fs: couldn't allocate a block (no free space)
  6856. #2935: Ntpdate isn't installed
  6857. #2965: Broken linkage to xkbcomp (blocking X server startup)
  6858. #2983: xlib_libX11 build failed
  6859. #3007: kexec doesn't build: Missing regdef.h file
  6860. #3085: Init scripts are not compatible with sysVinit (when busybox...
  6861. #3103: make external-deps wants to download gcc-.tar.bz2 when...
  6862. #3109: abnormal `make busybox-menuconfig`
  6863. #3115: How about board specific makefiles?
  6864. #3169: python patch has typo, aborts build in scenario
  6865. #3181: dhcp.mk copies S80dhcp-server to etc/init.d, not etc/init.d/
  6866. 2010.11, Released November 30th, 2010:
  6867. Fixes all over the tree.
  6868. Updated/fixed packages: libgcrypt, qt, squid, sysstat, tcpdump,
  6869. xserver-xorg
  6870. Issues resolved (http://bugs.uclibc.org):
  6871. #2773: squid with openssl support needs openssl on the host
  6872. #2857: OBJDUMP definition is missing from TARGET_CONFIGURE_OPTS
  6873. 2010.11-rc2, Released November 25th, 2010:
  6874. Fixes all over the tree.
  6875. Add support for LEON Sparc architecture variants. Fix make
  6876. source/external-deps for host packages.
  6877. Updated/fixed packages: bash, bind, busybox, dialog, gpsd,
  6878. libglib2, libcurl, libmad, lrzsz, midori, module-init-tools,
  6879. mtd-utils, openssh, openssl, pciutils, php, qt, sqlite,
  6880. sysstat, webkit, zlib
  6881. Issues resolved (http://bugs.uclibc.org):
  6882. #759: Sysstat build broken without libintl
  6883. #2479: host-module-init-tools 3.11 fails to build
  6884. #2725: Buildroot overrides kernel config
  6885. #2785: mtd-utils build fails due to missing libmtd
  6886. #2791: Added PHP-Process Control to the PHP-Package
  6887. #2797: pciutils dependencies on zlib not taken into account
  6888. #2809: failed to compile libglib2
  6889. #2821: [PATCH] Patch for JavaScriptCore in QtWebKit module
  6890. #2827: qt-4.7.0-pthread_getattr_np.patch invalid for qt 4.6...
  6891. #2833: Failed to compile webkit without X11
  6892. 2010.11-rc1, Released November 8th, 2010:
  6893. Fixes all over the tree and new features.
  6894. Kconfig infrastructure rebased against 2.6.36-rc1, bringing
  6895. misc fixes + nconfig and savedefconfig targets.
  6896. Toolchain: ARM cortex A9 support, experimental crosstool-ng
  6897. backend, GCC 4.5.x.
  6898. Fs: Squashfs 4.1 with lzo support
  6899. Old-style package hooks (*_HOOK_POST_*) removed. Use the more
  6900. generic new-style ones instead.
  6901. Download handling reworked and support for git/svn downloads
  6902. added.
  6903. Removed experimental shared config.cache support, as it is
  6904. too unreliable.
  6905. A convenience Makefile wrapper is created when using
  6906. out-of-tree building, similar to how it is done for the kernel.
  6907. Alpha, Cris, IA64 and Sparc64 architecture support removed.
  6908. New packages: argp-standalone, gdk-pixbuf, gpsd, gst-ffmpeg,
  6909. libmpeg2, kbd, librsvg, nuttcp, rng-tools, rrdtool, xz
  6910. Updated/fixed packages: acpid, alsa-lib, argus, at, autoconf,
  6911. automake, avahi, axel, beecrypt, berkeleydb, bind, bmon, boa,
  6912. bootutils, bridge-utils, bsdiff, busybox, cvs, dbus, directfb,
  6913. dmraid, docker, dosfstools, dropbear, e2fsprogs, ethtool,
  6914. expat, ezxml, fbset, fconfig, ffmpeg, freetype, gadgetfs-test,
  6915. gamin, gawk, genext2fs, gperf, gst-plugins-base,
  6916. gst-plugins-ugly, gtk2-themes, gtkperf, gvfs, haserl, hdparm,
  6917. hostapd, hwdata, ifplugd, imagemagick, iperf, ipsec-tools,
  6918. iproute2, iptables, iw, jpeg, kexec, kismet, less, libcgi,
  6919. libcurl, libdaemon, libdnet, liberation, libevent, libeXosip2,
  6920. libglade, libgtk2, libiconv, libidn, libintl, libmms, libmpd,
  6921. libnl, liboil, libosip2, libpcap, libpng, libtool, libungif,
  6922. libxml2, libxslt, lighttpd, lite, lm-sensors, lockfile-progs,
  6923. logrotate, m4, matchbox, mdadm, mesa3d, metacity, mplayer,
  6924. mtd-utils, mysql_client, nano, nbd, ncftp, neon, netperf,
  6925. netsnmp, ng-spice-rework, ntfsprogs, ntp, openntpd, openssh,
  6926. openssl, openvpn, oprofile, pango, patch, pcre, php,
  6927. pkg-config, portmap, pppd, pptp-linux, prboom, proftpd, radvd,
  6928. rdesktop, readline, rp-pppoe, ruby, qt, quagga, samba, sawman,
  6929. sdl_mixer, sdl_sound, sed, setserial, shared-mime-info, slang,
  6930. speex, sqlite, squashfs, startup-notification, strace,
  6931. sylpheed, sysstat, taglib, tcpdump, thttpd, tiff, tn5250,
  6932. torsmo, tslib, udev, udpcast, usbmount, usbutils, vsftpd,
  6933. vtun, which, wireless-tools, wpa_supplicant, xapp_twm,
  6934. xapp_xbacklight, xapp_xcursorgen, xapp_xinit, xapp_xinput,
  6935. xapp_xmore,
  6936. xdriver_xf86-input-{acecad,aiptek,evdev,joystick,keyboard},
  6937. xdriver-xf86-input-{mouse,synaptics,vmmouse,void},
  6938. xdriver-xf86-video-{apm,ark,ast,ati,chips,cirrus,dummy,fbdev},
  6939. xdriver-xf86-video-{geode,glide,glint,i128,i740,intel,mach64},
  6940. xdriver-xf86-video-{mga,neomagic,newport,nv,openchrome,r128},
  6941. xdriver-xf86-video-{rendition,s3,s3virge,savage,siliconmotion},
  6942. xdriver-xf86-video-{sis,sisusb,suncg3,suncg6,suncg14,sunffb},
  6943. xdriver-xf86-video-{sunleo,suntcx,tdfx,tga,trident,v4l,vesa},
  6944. xdriver-xf86-video-{vmware,voodeo,wsfb,xgi,xgixp},
  6945. xkeyboard-config, xlib_libX11, xserver_xorg-server, xstroke,
  6946. xterm, xvkbd, zlib
  6947. Deprecated packages: hotplug, lzma, ng-spice-rework, sfdisk
  6948. Removed packages: dillo, libglib12, libgtk12, microwin,
  6949. pcmcia
  6950. Issues resolved (http://bugs.uclibc.org):
  6951. #901: new package: gpsd
  6952. #2389: Generate a Makefile wrapper in $(O)
  6953. #2461: wireless_tools: install shared library if needed
  6954. #2521: Can't compile sdl_mixer, mikmod.h can't be found
  6955. #2533: xserver_xorg-server: Enable glx, if mesa3d is built
  6956. #2563: [PATCH] cairo: Expose the configure option to disable some...
  6957. #2581: libmms: Update to 0.6, and patch to work on architectures...
  6958. #2707: Can't compile linux kernel using buildroot + crosstool-ng
  6959. #2731: Build order
  6960. #2737: buildroot configuration tool crashing when the path exceeds...
  6961. #2767: Build for lsof broken in buildroot-2010.08
  6962. 2010.08: Released August 31th, 2010:
  6963. Fixes all over the tree.
  6964. Updated/fixed packages: atk, xstroke
  6965. Removed packages: lxdoom
  6966. 2010.08-rc2, Released August 30th, 2010:
  6967. Fixes all over the tree.
  6968. Mark the combination of uClibc 0.9.31, gcc 4.2.x, C++ and
  6969. locale support as broken. Remove deprecated GCC 4.2.[1-3]
  6970. versions.
  6971. Mark CRIS architecture as deprecated, as it is discontinued
  6972. upstream.
  6973. Marked shared config.cache as experimental and disabled by
  6974. default as it is known to break with certain package
  6975. combinations.
  6976. Toolchain: fixed gcc 4.2.x build after uClibc NPTL support got
  6977. added.
  6978. fs: old-style squashfs for big endian archs fixed.
  6979. Updated/fixed packages: busybox, gst-plugins-base,
  6980. imagemagick, kismet, libgail, libglib2, libgtk2, lua,
  6981. luafilesystem, lzo, ncurses, netcat, pango, php, pppd,
  6982. proftpd, qt, samba, startup-notification, swfdec, sysvinit,
  6983. util-linux
  6984. Removed packages: stunnel
  6985. Issues resolved (http://bugs.uclibc.org):
  6986. #635: util-linux fails to build in 2009.08
  6987. #2239: netcat package installs its binary to target as avr32-linux...
  6988. #2395: libglib2-2.24.1 and libxml2-2.7.7 fails build on MIPS because...
  6989. #2443: Initramfs: Don't overwrite $(TARGET_DIR)/init if it exists
  6990. #2449: Minor fixes for squashfs makefile and correct PowerPC e500 ...
  6991. 2010.08-rc1, Released July 30th, 2010:
  6992. Fixes all over the tree and new features.
  6993. Toolchain: GCC 4.3.5, older 4.3.x versions removed. GCC 4.1.2
  6994. and non-sysroot support removed. Added support for (snapshot)
  6995. NPTL in uClibc, 0.9.28.3 removed,
  6996. Bootloaders: Various cleanups, moved to boot/, added Barebox,
  6997. removed yaboot. Support building u-boot from custom tarball,
  6998. u-boot 2010.06.
  6999. New GTK-based configurator, usable using 'make gconfig'.
  7000. Java packages marked as broken. Unless someone steps up to
  7001. support this, they will be removed during the 2010.11
  7002. development cycle.
  7003. Alpha, IA64 and Sparc64 architectures marked as deprecated.
  7004. GTK+ on DirectFB has also been marked as deprecated, as it is
  7005. not supported in recent GTK+ versions, and more and more
  7006. packages depends on the new versions.
  7007. Unless someone steps up to support them, they will be removed
  7008. during the 2010.11 development cycle.
  7009. New packages: cgilua, copas, coxpcall, ffmpeg, libsvgtiny,
  7010. libgail, luafilesystem, luasocket, rings, wsapi, xavante, xterm
  7011. Updated/fixed packages: alsa-lib, alsamixergui, at, atk,
  7012. avahi, berkeleydb, bash, blackbox, busybox, bzip2, cairo,
  7013. cdrkit, cmake, dash, dhcp, dialog, diffutils, distcc, dmalloc,
  7014. dnsmasq, dropbear, e2fsprogs, fbv, file, flex, fontconfig,
  7015. gawk, gmpc, gnuchess, gst-plugins-base, gst-plugins-good,
  7016. gstreamer, gzip, icu, intltool, iostat, ipsec-tools, iptables,
  7017. iw, libart, libcgi, libcurl, libdrm, libeXosip, libfuse,
  7018. libglib2, libgpg-error, libiconv, libidn, liblockfile, libpng,
  7019. libsoup, lighttpd, links, linux-fusion, lmbench, lrzsz,
  7020. ltrace, make, midori, module-init-tools, mplayer,
  7021. mysql_client, nbd, ncurses, neon, netcat, netperf, netsnmp,
  7022. ntfsprogs, openssl, oprofile, pango, php, qt, quagga, samba,
  7023. setserial, sdl, sdl_mixer, sdl_sound, sdl_ttf, speech-tools,
  7024. sqlite, squashfs, swfdec, tftpd, thttpd, tn5250, tremor,
  7025. usbutils, webif, webkit, wireless_tools, xerces,
  7026. xkeyboard-config, xserver_xorg-server, xvkbd, zlib
  7027. Removed packages: modutils, portage, rxvt
  7028. Deprecated packages: dillo, libglib12, libgtk12, microwin, pcmcia
  7029. Issues resolved (http://bugs.uclibc.org):
  7030. #321: alsa-lib uses host include files for python which breaks ...
  7031. #361: linux kernel configuration choice works incorrectly
  7032. #387: Tremor not installed to toolchain
  7033. #401: new package: ffmpeg
  7034. #475: uImage target for U-boot failed generating
  7035. #543: ATK requires X11 on DirectFB target
  7036. #575: webkit: Buildroot Libtool Patch Fails
  7037. #583: build fails with external x86_64 toolchain
  7038. #729: sstrip creates corrupted headers
  7039. #829: Webkit r44552 needs libXt
  7040. #835: Package Dataflashboot-1.05 does not compile with buildroot...
  7041. #847: Compiling target-gcc v4.4 fails with "libc.so.0: cannot open...
  7042. #859: Add (head of) nptl branch to list of uClibc versions
  7043. #949: compile with debug info
  7044. #955: Grub fails to build with External Toolchain
  7045. #1051: Webkit doesn't compile (Linuxthreads new, x86)
  7046. #1213: Move .config into output directory
  7047. #1225: Buildroot fails to account for "nof" subdirectory (no float...
  7048. #1231: (sparc) Linux kernel fails to build
  7049. #1261: The getline() in output/build/linux-2.6.28/scripts/unifdef.c...
  7050. #1339: Busybox needs -fno-strict-aliasing to compile cleanly
  7051. #1393: neon config fails libxml/parser.h: libxml2 requires, but not ...
  7052. #1405: WebKit fails to build because pthread_getattr_np is not impl...
  7053. #1675: GMP Error during buildroot make process
  7054. #1741: external toolchain linking error
  7055. #1753: lmbench: convert to generic package infrastructure
  7056. #1771: Fakeroot and the target/generic/device_table.txt create bad...
  7057. #1807: LZMA 4.32.7, Required header file(s) are missing
  7058. #1813: xkeyboard-config fails to build because of intltool problem
  7059. #1879: Bump iptables to 1.4.8
  7060. #1885: Add a bunch of lua modules
  7061. #1897: Bump libusb to 1.0.7
  7062. #1903: Bump tn5250 to 0.17.4 and migrate to autotargets
  7063. #1909: netperf-2.4.5 fails to build because of undeclared SOCK_DCCP
  7064. #1927: Bump file to 5.03 and migrate to autotargets
  7065. #1933: Bump gawk to 3.1.8 and migrate to autotargets
  7066. #1945: PHP: add sqlite3 dependency when using external lib
  7067. #1951: Bump openssl to 0.9.8o
  7068. #1957: Bump sqlite to 3.6.23.1
  7069. #1975: Package removal/deprecation
  7070. #1981: zlib: bump to 1.2.5
  7071. #1987: intltool: Fix spelling mistake
  7072. #1993: Bump bash to 4.1.7(1) and migrate to autotargets
  7073. #1999: Typo in path checking
  7074. #2005: Bump dnsmasq to 2.55 and migrate to gentargets
  7075. #2035: ipsec-tools-0.7.2 fails to build with gcc-4.4.x
  7076. #2038: Bump ncurses to 5.7
  7077. #2095: make gconfig: undefined reference to symbol 'dlsym@@GLIBC_2.2.5'
  7078. #2101: blackbox depends on locale support
  7079. #2119: Tries to build kernel, although disabled in config
  7080. #2125: libXfont build fail
  7081. #2143: buildroot compiler generates segfaulting statically linked exe..
  7082. #2149: xterm build failure
  7083. #2155: Compression lzo don't set for ubifs
  7084. #2161: [SECURITY] Update libpng to 1.2.44
  7085. #2167: Bump busybox to 1.17.0, convert to gentargets, drop 1.12, ...
  7086. #2181: pixman can't apply pixman-0.10.0-no-tests.patch
  7087. #2191: linux-fusion build fail
  7088. #2221: Qt does not compile (dependencies not taken into account?)
  7089. #2233: Atmel atstk target skeletons have /etc/mtab as a file, not ...
  7090. #2245: Netcat does not work due to incorrect assumptions about signed..
  7091. #2251: directory output/build after make *_defconfig not found
  7092. #2257: Convert netsnmp package to autotargets
  7093. #2263: Bump samba to 3.3.13
  7094. #2269: setserial causes make error
  7095. 2010.05, Released May 30th, 2010:
  7096. Fixes all over the tree.
  7097. Updated/fixed packages: coreutils, hal, libcap,
  7098. lockfile-progs, ncftp, xserver_xorg-server
  7099. Issues resolved (http://bugs.uclibc.org):
  7100. #1789: binutils fails to build for i386
  7101. #1843: Fix libcap build failure
  7102. #1855: XORG Keyboard driver fails to compile
  7103. 2010.05-rc3, Released May 27th, 2010:
  7104. Fixes all over the tree.
  7105. Updated/fixed packages: aumix, atk, avahi, bmon, busybox, cairo,
  7106. cdrkit, dbus-glib, dbus-python, docker, enchant, fltk, gamin,
  7107. gettext, gmpc, gob2, grep, gstreamer, gst-plugins-bad,
  7108. gst-plugins-base, gvfs, hal, iconv, icu, iperf, libcgicc,
  7109. libdvdnav, libdvdread, libglade, libglib2, libgtk2, libidn,
  7110. libmms, libmpd, libpcap, libsoup, lmbench, lsof, ltrace, lvm2,
  7111. make, metacity, microperl, mtd-utils, mutt, nbd, netsnmp,
  7112. ntfsprogs, ntp, olsr, pango, pciutils, pcmanfm, php,
  7113. pkg-config, psmisc, qt, samba, shared-mime-info, squashfs,
  7114. squashfs3, sshfs, startup-notification, swfdec, sylpheed,
  7115. uemacs, util-linux, valgrind, vpnc, vsftpd, webkit, xstroke
  7116. Issues resolved (http://bugs.uclibc.org):
  7117. #75: arm buildroot "unrecognized option" error
  7118. #699: Buildroot fails to copy libstdc++ to target when using external...
  7119. #1693: NTP trys IPV6 even if not configured error: 'IPV6_MULTICAST...
  7120. #1729: alsamixergui fails to build
  7121. #1801: Avahi-autoipd doesn't create TARGET_DIR/var/lib
  7122. #1819: pciutils small bugs
  7123. #2065: Internal toolchain: bump gcc 4.3.x series to 4.3.5
  7124. 2010.05-rc2, Released May 11th, 2010:
  7125. Fixes all over the tree.
  7126. Updated/fixed packages: busybox, customize, gawk, gnuchess,
  7127. hal, hostapd, less, libgcrypt, libnl, libxcb, linux-fusion,
  7128. ltp-testsuite, mplayer, netplug, pciutils, php, sed,
  7129. shared-mime-info usb_modeswitch, usbutils, vlc wpa_supplicant,
  7130. xapp_bdftopcf, xapp_mkfontdir, xdriver_xf86-video-openchrome,
  7131. xfont_encodings, xlib_libX11, xlib_libXfont, xlib_xtrans,
  7132. xproto_fontcacheproto, xproto_fontsproto, xvkbd
  7133. Removed packages: vice
  7134. Issues resolved (http://bugs.uclibc.org):
  7135. #849: "customize" package copies files to wrong place in target tree
  7136. #985: Bump usb_modeswitch package to 1.1.0
  7137. #1135: Package customize. Wrong copying
  7138. #1525: Package hal deletes a whole <target>/etc/rc.d directory
  7139. #1531: libxcb 1.5 build fails, due to missing xcbgen Python module
  7140. #1669: Busybox failed to compile when using an external toolchain
  7141. #1699: Fix usbutils dependencies and bump
  7142. #1705: Fix pciutils broken cross compiling
  7143. #1717: External toolchain fixes for hostapd & wpa_supplicant
  7144. 2010.05-rc1, Released May 3rd, 2010:
  7145. Cleaned up / restructured package menu.
  7146. Toolchain: uClibc 0.9.30.3 / 0.9.31, older 0.9.30.x removed.
  7147. 2.6.33 kernel headers, binutils 2.20.1, GCC 4.4.4,
  7148. removed broken nios2 support, ppc e300cX/e500mc support,
  7149. improved external toolchain support, GDB 7.x support.
  7150. X.org updated to 7.5.
  7151. New packages: cdrkit, cramfs, genext2fs, genromfs,
  7152. libatomic_ops, librsync, libusb-compat, lmbench, netperf,
  7153. squashfs, squashfs3, squid
  7154. Updated/fixed packages: alsa-utils, argus, autoconf, bison,
  7155. busybox, bzip2, directfb, dnsmasq, dosfstools, e2fsprogs,
  7156. eeprog, fakeroot, fbv, findutils, freetype, haserl, hostapd,
  7157. iperf, iptables, iw, less, libaio, libcgi, libcgicc, libdrm,
  7158. libgcrypt, libglib2, libid3tag, libmad, liboil, libosip2,
  7159. libpng, libraw1394, libsysfs, libxml2, libxslt, linux-fusion,
  7160. ltrace, lua, lzma, madplay, makedevs, matchbox, mdadm,
  7161. memstat, mesa3d, mtd-utils, nano, ncurses, openssl, patch,
  7162. pciutils, php, pixman, portage, pppd, pthread-stubs, python,
  7163. qt, radvd, samba, setserial, smartmontools, tar, tslib,
  7164. udpcast, usb_modeswith, vtun, wget, xdata_xcursor-themes,
  7165. xdriver_xf86-video-intel, xkeyboard-config, xlib_libX11,
  7166. xlib_libXaw, xlib_libXfont, xlib_libXfontcache,
  7167. xlib_libXxf86misc, xlib_libXtst, xlib_libpciaccess,
  7168. xproto_dri2proto, xproto_eviext, xproto_fontcacheproto,
  7169. xproto_xf86miscproto, xserver_xorg-server
  7170. Removed packages: xapp_xtrap, xlib_libXTrap, xlib_libXevie,
  7171. xlib_libXxf86misc, xxproto_evieext, proto_trapproto,
  7172. xproto_xf86miscproto
  7173. Issues resolved (http://bugs.uclibc.org):
  7174. #513: Add new squid package
  7175. #661: lmbench: new package
  7176. #719: Add lua option to haserl
  7177. #800: [PATCH] iperf update to 2.0.4
  7178. #803: [PATCH] lua - add shared library patch and config option for...
  7179. #805: [PATCH] mdadm - version update
  7180. #817: integrator926_defconfig uses unsupported uboot board name
  7181. #851: Add option to specify --sysroot value for external toolchain
  7182. #1093: Upgrade libusb to v1.0.3 and add new libusb-compat
  7183. package for compatibility with old packages that expect
  7184. the pre-1.0 API.
  7185. #1105: Add new netperf package
  7186. #1111: Bump wget to 1.12 and migrate to Makefile.autotools.in
  7187. #1117: Bump nano to 2.2.3 and migrate to Makefile.autotools.in
  7188. #1123: Bump less to 436 and migrate to Makefile.autotools.in
  7189. #1129: Bump memstat to 0.8 and migrate to Makefile.package.in
  7190. #1189: Wrong u-boot configuration name for integrator926 target
  7191. #1219: kernel headers not correctly installed into toolchain/staging
  7192. #1267: Wrong BR2_EXTRA_VERSION
  7193. #1273: BR2_INET_IPV6 does not enable IPv6 in pppd
  7194. #1303: Add librsync package
  7195. #1321: Busybox link fails due to lack of --sysroot option
  7196. #1327: mtd-utils compile failure due to lack of --sysroot in CFLAGS
  7197. #1345: Bump pppd to 2.4.5 and convert to Makefile.autotools.in
  7198. #1369: cannot build radvd (flex problem)
  7199. #1387: xlib_libX11-1.3.2 can't find libjpeg
  7200. #1411: [SECURITY] Update openssl package to 0.9.8n
  7201. #1417: Bump iptables to 1.4.7
  7202. #1423: Bump e2fsprogs to 1.41.11
  7203. #1429: [SECURITY] Update php to 5.2.13
  7204. #1441: Add binutils 2.20.1
  7205. #1447: Package installation on target with debug symbols is broken
  7206. #1459: Misc QA fixes
  7207. #1489: radvd update to 1.6
  7208. #1513: Enable powerpc e300c2, e300c3 and e500mc optimization
  7209. #1537: dev entries not created anymore
  7210. #1555: Fix default uclibc-0.9.31 configuration
  7211. #1561: [SECURITY] Update samba to 3.3.12
  7212. #1567: openssl0.9.8n fails to compile
  7213. #1573: Alsa-utils alsactl/init/* not installed to target
  7214. #1591: portmap fails to compile
  7215. #1615: Convert eeprog package to gentargets
  7216. #1645: Bump hostapd package to 0.7.2
  7217. 2010.02, Release February 26th, 2010:
  7218. Fixes all over the tree.
  7219. Updated/fixed packages: avahi, busybox, cramfs, ipsec-tools, libcgicc,
  7220. libgtk2, libraw1394, madplay, netsnmp, pango, squashfs, sylpheed, qt,
  7221. xfont_font-util
  7222. Removed packages: hostap, openmotif, xpdf
  7223. Issues resolved (http://bugs.uclibc.org):
  7224. #165: openmotif does not build
  7225. #1147: Remove obsolete hostap package
  7226. #1183: make source fails to download gmp, mpfr and patches
  7227. 2010.02-rc2, Released February 23th, 2010:
  7228. Fixes all over the tree and new features.
  7229. New packages: intltool
  7230. Updated/fixed packages: ace_of_penguins, alsa-lib, alsa-utils, argus,
  7231. at, automake, ccache, dosfstools, e2fsprogs, flex, gob2, gmpc,
  7232. gst-plugins-good, imagemagick, iw, kexec, libeXosip, libgtk2,
  7233. libpcap, libpng, libsoup, libxcb, libxml-parser-perl, libxml2,
  7234. libxslt, lvm2, matchbox, mplayer, rsync, rubix, shared-mime-info,
  7235. tcl, webkit, xapp_mkfontscale, xfont_encodings, xfont_font-util,
  7236. xlib_libfontenc, xproto_trapproto, zlib
  7237. Removed package: xboard
  7238. Issues resolved (http://bugs.uclibc.org):
  7239. #335: atk looks for the path to the gnome library on the host
  7240. #355: Please update WebKit - it doesn't compile!
  7241. #453: libglib2 autoreconf
  7242. #457: e2fsprogs link problem
  7243. #459: libgtk2 autoreconf
  7244. #469: build of libgtk2 for host incorrectly assumes that X.org ...
  7245. #671: Bash fails to build when building buildront on Ubuntu 9.04
  7246. #711: WebKit host dependencies problems
  7247. #821: cp: illegal operation
  7248. #1039: Not compiled on ubuntu karmic
  7249. #1069: [PATCH] The AT91BOOTSTRAP makefile contains a typo
  7250. 2010.02-rc1, Released February 9th, 2010:
  7251. Fixes all over the tree and new features.
  7252. Generalized autotools infrastructure to be usable for
  7253. non-autotools packages, see package/Makefile.package.in for
  7254. details.
  7255. Cleaned up avr32 toolchain config, external source-based
  7256. toolchain support is gone.
  7257. Dependency checks: Also check for makeinfo, only print output
  7258. on errors.
  7259. Toolchain: uClibc 0.9.30.2, gcc 4.4.3
  7260. New packages: libcdaudio, libdvdnav, libdvdread, hostapd, ser2net,
  7261. tcpreplay
  7262. Updated/fixed packages: alsa-lib, alsa-utils, at, autoconf, bash,
  7263. bind, binutils, bootutils, busybox, dbus, directfb, dnsmasq,
  7264. e2fsprogs, gstreamer, gperf, gst-plugins-bad, gvfs, fbdump, flex,
  7265. hal, iptables, iw, jpeg, kismet, libfuse, libglib2, liboil, libpcap,
  7266. libungif, libxml2, libxslt, lighttpd, mesa, mpg123, mtd-utils, nbd,
  7267. neon, netstat-nat, newt, openvpn, pcre, php, qt, rdesktop, readline,
  7268. rpm, sawman, sdl, sdl_ttf, sqlite, sshfs, tremor, u-boot,
  7269. usb_modeswitch, usbutils, webkit, wpa_supplicant, xfsprogs, zlib
  7270. Removed package: asterisk, openswan
  7271. Issues resolved (http://bugs.uclibc.org):
  7272. #515: tcpreplay: new package
  7273. #553: Wrong DirectFB ps2mouse limitation
  7274. #559: mesa3d build fails
  7275. #679: Autoconf cannot find M4
  7276. #739: New/updated hostapd package
  7277. #749: Bump usbutils package to version 0.86
  7278. #751: Kernel 2.6 snapshot fetch fail
  7279. #753: Bump lighttpd package to 1.4.25
  7280. #757: U-Boot: mkimage cannot be installed using external toolchain
  7281. #761: Add binutils 2.20 to toolchain options
  7282. #763: [SECURITY] Update pcre to 7.9
  7283. #765: Add buildroot branding to gcc
  7284. #767: Bump iw package to 0.9.18
  7285. #773: [SECURITY] Update bind to 9.5.2-P1
  7286. #795: Minor edits to fix typos, grammar, spelling, usage in documen...
  7287. #813: Drop not very useful generic package selection options ...
  7288. #823: Editor backup files (~) is copied from the target_skeleton
  7289. #827: Bump mtd-utils package to version 1.2.0
  7290. #841: Build error
  7291. #913: Bump iptables to 1.4.6
  7292. #919: Bump usb_modeswitch package to 1.0.7
  7293. #925: Bump wpa_supplicant package to 0.6.10
  7294. #931: Bump kismet package to 2010-01-R1
  7295. #937: Bump openvpn package to 2.1.1
  7296. #943: Bump sqlite package to 3.6.22
  7297. #961: Bump dnsmasq to 2.52
  7298. #967: Bump netstat-nat to 1.4.10
  7299. #973: Bump iw to 0.9.19
  7300. #1003: DHCP options disabled with busybox-1.16.0
  7301. #1009: [SECURITY] Bump php to 5.2.12
  7302. #1015: [SECURITY] Bump bind to 9.5.1-P2
  7303. #1027: Busybox flash commands conflict with those from mtd-utils
  7304. #1063: [SECURITY] Update lighttpd to 1.4.26
  7305. 2009.11, Released December 1st, 2009:
  7306. Additional fixes and cleanups.
  7307. Updated/fixed packages: alsamixergui, autoconf, coreutils, fltk,
  7308. microperl, ncurses, vim
  7309. Issues resolved (http://bugs.uclibc.org):
  7310. #707: Cant configure fltk-1.1.7. configure: error: Configure could ...
  7311. 2009.11-rc2, Released November 29th, 2009:
  7312. Additional fixes and cleanups.
  7313. Updated/fixed packages: busybox, dbus, fltk, gvfs, ltrace
  7314. 2009.11-rc1, Released November 23rd, 2009:
  7315. Fixes all over the tree and new features.
  7316. Cleaned up / Simplified build directory layout. Refer to
  7317. docs/buildroot.html#using for details.
  7318. Target defconfig files moved to configs/ and listed in 'make help'
  7319. output.
  7320. Fixed *clean targets. Now clean removes everything generated,
  7321. so you can do a fresh rebuild. Distclean furthermore removes
  7322. kbuild tools and .config, bringing the source tree back in a
  7323. pristine state.
  7324. Toolchain: ARM cortex A8 support, GCC 4.4.2, sensible default
  7325. soft / hardfloat setting for architecture, ensure target-ldd
  7326. gets installed.
  7327. New packages: divine, gvfs, libarchive, libmicrohttpd,
  7328. sdl_sound, swfdec, sysstat
  7329. Updated/fixed packages: alsa-lib, alsamixergui, autoconf, bootutils,
  7330. busybox, gcc, directfb, dnsmasq, e2fsprogs, festival, gamin, gperf,
  7331. gqview, gstreamer, gst-plugins-bad, gst-plugins-base, gst-plugins-good,
  7332. imagemagick, ipkg, iptables, iw, kernel-headers, kismet, leafpad,
  7333. libelf, libevent, libglib2, libidn, liblockfile, libmad, libpcap,
  7334. libupnp, libuuid, libxml2, lighttpd, ltrace, lua, lzma, magiccube4d,
  7335. matchbox, mdadm, nbd, ncftp, ncurses, netkittelnet, netsnmp,
  7336. ng-spice-rework, ntfs-3g, openntp, openssl, pcmanfm, php, psmisc,
  7337. python, quagga, radvd, rpm, rsync, rubix, samba, sawman, sdl, sdl_image,
  7338. shared-mime-info, sfdisk, spawn-fcgi, speech-tools, sqlite, squashfs,
  7339. synergy, syslinux, sysklogd, target-binutils, tcpdump, torsmo, u-boot,
  7340. udpcast, util-linux, valgrind, vsftpd, wipe, wpa-supplicant, x11vnc,
  7341. xdata_xcursor-themes, xboard, xfsprogs, xstroke, zlib[5~
  7342. Removed package: mdnsresponder, mpatrol, gcc 3.4.6 + 4.0.4, vice
  7343. Issues resolved (http://bugs.uclibc.org):
  7344. #301: allow to install libsmbclient
  7345. #303: add gvfs package
  7346. #477: Add sdl_sound package
  7347. #487: Make kismet package sexier
  7348. #511: New package usb_modeswitch
  7349. #527: misc fixes for dnsmasq package
  7350. #565: libevent: Bump version and clean up makefile
  7351. #587: Use iptables multipurpose binaries and bump to 1.4.4
  7352. #593: Missing early check for patch(1)
  7353. #597: (REOP) Selecting busybox in buildroot's config clobbers ar ...
  7354. #609: libmicrohttpd: New package
  7355. #615: python: Don't delete .py files unless asked
  7356. #617: netkit/inetd requires RPC and fails to build if RPC is disabled
  7357. #619: netkittelnet requires netkitbase to install, but there's no ...
  7358. #645: allow to build nbd-server with NBD package
  7359. #653: [SECURITY] Update php package to version 5.2.11
  7360. #655: Update sqlite package to version 3.6.18
  7361. #657: Bug in imagemagick-clean target
  7362. #663: Add option for NAND flash with 512B Page and 16 kB erasesize ...
  7363. #665: [PATCH] Samba package
  7364. #667: [PATCH] e2fsprogs
  7365. #683: SDL-dfb does not select directfb
  7366. #701: make install problem with unstripped binaries
  7367. #703: [SECURITY] Update openssl package to 0.9.8l
  7368. #705: Bump spawn-fcgi package to 1.6.3
  7369. #709: Bump lighttpd package to 1.4.24
  7370. #713: Migrate openntpd package to Makefile.autotools.in
  7371. #715: Bump libidn package to 1.15 and other fixes
  7372. #717: Bump dnsmasq to 2.51 and introduce new IDN option
  7373. #731: Bump iw package to 0.9.17
  7374. 2009.08, Released August 31th, 2009:
  7375. Additional fixes and cleanups.
  7376. Updated/fixed packages: ctorrent, saveconfig/getconfig,
  7377. sdl_net, util-linux.
  7378. Issues resolved (http://bugs.uclibc.org):
  7379. #529: util-linux doesn't find headers and include libs correctly
  7380. #557: Build ctorrent with SSL support if available
  7381. 2009.08-rc3, Released August 26th, 2009:
  7382. Additional fixes and cleanups.
  7383. Updated/fixed packages: alsa-utils, berkeleydb, busybox, dbus,
  7384. directfb, enchant, kernel headers.
  7385. Issues resolved (http://bugs.uclibc.org):
  7386. #471: Allow directfb compilation with debug
  7387. #541: Removal of CVS directories in target filesystem broken
  7388. #547: berkeleydb: Update config.{sub, guess}
  7389. #549: enchant: Fix dependencies.
  7390. #569: Fix alsa-utils build for x86 on x86-64
  7391. 2009.08-rc2, Released August 6th, 2009:
  7392. Additional fixes and new features.
  7393. New packages: libuuid, gcc 4.3.4.
  7394. Updated/fixed packages: busybox, classpath, gzip, ipsec-tools,
  7395. jamvm, libusb, microperl, neon, popt, sed, webkit.
  7396. Fixed issue with 'make oldconfig'
  7397. Issues resolved (http://bugs.uclibc.org):
  7398. #525: sed broken with external toolchain
  7399. #537: Fix gzip build with recent glibc
  7400. 2009.08-rc1, Released August 2nd, 2009:
  7401. Fixes all over the tree and new features.
  7402. Improvement of external toolchain support:
  7403. - Support for glibc toolchains.
  7404. - The toolchain configuration announced to Buildroot is
  7405. verified against the real toolchain configuration.
  7406. - Fixes, documentation.
  7407. Cleanup X.org support: clarified configuration options, and
  7408. removed mandatory dependency on useless libraries such as
  7409. libXt or libXaw.
  7410. New QT-based configurator, usable using 'make xconfig'.
  7411. Support for the Xtensa architecture.
  7412. Toolchain: GCC 4.4.1, 2.6.30 kernel headers, removed < 2.6.26
  7413. headers.
  7414. New packages: bmon, ctorrent, dosfstools, enchant,
  7415. gst-plugins-bad, iw, libmms, libnl, netstat-nat, ntfsprogs,
  7416. sdl_gfx, spawn-fcgi.
  7417. Updated packages: bind, busybox, coreutils, sqlite, directfb,
  7418. expat, gamin, gnuconfig, haserl, ipsec-tools, classpath,
  7419. libcurl, libglib2, liblockfile, libpng, libsoup, libxml2,
  7420. lighttpd, ltp-testsuite, lvm2, matchbox, memstat,
  7421. gst-plugins-good, gstreamer, libogg, libvorbis, mplayer,
  7422. neon, openssl, pciutils, php, qt, ruby, sawman, webkit,
  7423. wpa-supplicant, xdriver_xf86-input-synaptics,
  7424. xdriver_xf86-video-intel, xlib_libXfont, xlib_libXft,
  7425. xlib_libXt, xproto_xproto, xserver-xorg, xutil_makedepend,
  7426. xutil_util-macros.
  7427. Issues resolved (http://bugs.uclibc.org):
  7428. #83: liblockfile fails to compile due to eaccess redefinition
  7429. #163: Xtensa architecture port
  7430. #171: xorg-server / kernel headers 2.6.26 - vm86.c compilation issue
  7431. #241: device mapper + lvm2: build together
  7432. #243: ctorrent: new package
  7433. #247: ntfsprogs: new package
  7434. #271: Library 'libgcc_s.so.1' not installed in search path
  7435. #287: New package libnl
  7436. #289: New package iw
  7437. #331: Update MPlayer to version 1.0rc2
  7438. #333: Bump sqlite package to 3.6.15
  7439. #349: update libsoup to version 2.26.2
  7440. #357: New package netstat-nat
  7441. #359,#413: Upgrade openvpn to Makefile.autotools.in
  7442. #367: linux kernel compile error for arm926t
  7443. #369: Add SDL_gfx package
  7444. #373: Support for building gstreamer without libxml
  7445. #379: update DirectFB to version 1.4.0
  7446. #383: gst-plugins-good: Allow soup plugin to be configured
  7447. #385: neon: Fix pkgconfig dependency
  7448. #387: Tremor not installed to toolchain
  7449. #389: New package bmon
  7450. #391: gstreamer: Bump version to 0.10.23
  7451. #393: gst-plugins-base: Bump version to 0.10.23
  7452. #395: gst-plugins-bad: New package
  7453. #403: Error while building iso9660 image
  7454. #409: Bump php package to 5.2.10
  7455. #411: ipsec-tools: Bump version to 0.7.2
  7456. #417: New package spawn-fcgi
  7457. #419: Bump lighttpd package to 1.4.23
  7458. #421: toolchain: Clean up toolchain locale support menu
  7459. #427: webkit: Update to WebKit svn r44552
  7460. #437: ltp-testsuite: Bump version to 20090630
  7461. #451: Upgrade from unmaintained dosfstools-2.11 to dosfstools-3.0.3
  7462. #467: DirectFB 1.4.1
  7463. #473: memstat_0.5.tar.gz has install with -D and that fails "make"
  7464. #491: libxml2: Bump version to 0.7.3
  7465. #495: Bump bind package to 9.5.1-P3 (security)
  7466. #497: OpenSSL RSA key generation hangs on x86_64
  7467. #509: Bump sqlite package to 3.6.16
  7468. #523: pciutils broken with external toolchain
  7469. #533: Update gamin to 0.1.10 to fix compilation
  7470. 2009.05, Released June 1st, 2009:
  7471. Fixes for dropbear & diffutils, bump linux-advanced 2.6.29.x
  7472. version and marked ubifsroot as broken.
  7473. 2009.05-rc3, Released May 27th, 2009:
  7474. Fixes for toolchain (gcc arm pr37436), stable kernel versions,
  7475. busybox, curl, libusb, readline, python and strace.
  7476. Issues resolved (http://bugs.uclibc.org):
  7477. #345: libcurl package needs a urandom fix
  7478. 2009.05-rc2, Released May 19th, 2009:
  7479. Fixes for toolchain (gcc w/softfloat on ppc, 3.4.6 buildfix
  7480. for newer hosts), stable kernel versions, busybox, cups,
  7481. dmraid, docker, mesa3d, rsync and updated defconfigs.
  7482. xserver marked as broken on AVR32 and atngw100-expanded
  7483. config removed.
  7484. Issues resolved (http://bugs.uclibc.org):
  7485. #167: metacity does not build
  7486. #295: gamin installs python support even if python is disabled
  7487. #323: gen_matypes fails to execute during build of Mesa when us...
  7488. 2009.05-rc1, Released May 5th, 2009:
  7489. Fixes all over the tree, further conversion of packages to
  7490. Makefile.autotools.in and we now build host versions of
  7491. packages where needed for build time dependencies instead of
  7492. relying on the correct versions being available on the build
  7493. host. Ancient toolchain / busybox versions have furthermore
  7494. been removed as announced in the 2009.02 release notes.
  7495. New packages: flac, gob2, lzop, taglib, wpa_supplicant
  7496. Updated packages: avahi, bind, binutils, busybox, dbus, dbus-glib,
  7497. directfb, dnsmasq, freetype, gcc, gmp, gstreamer, iptables, kernel
  7498. headers, kexec, libglib2, libpng, libsndfile, lua, mpfr, ntfs-3g,
  7499. openssl, php, qtopia4, rsync, samba, sqlite, tar, uboot, uclibc,
  7500. util-linux, xorg7, xerces
  7501. Issues resolved (http://bugs.uclibc.org):
  7502. #5,#77,#141,#143: Convert php package to Makefile.autotools.in
  7503. and a ton of other improvements
  7504. #19: page.h missing by util-linux
  7505. #37: update libglib2 to version 2.18.4
  7506. #61: tslib puts staging_dir into pkgconfig file
  7507. #69: tar refuses to build
  7508. #71,#175: ./wchar.h:41:12: error: empty filename in #include
  7509. #73: Bump openssl package to the latest version
  7510. #81: New package wpa_supplicant
  7511. #99: new package: flac
  7512. #101: update gstreamer packages
  7513. #105,#313: menuconfig segfaults on tinyx if wchar is not
  7514. selected
  7515. #107: convert libvorbis to Makefile.autotools.in
  7516. #109: Make pppd package avoid bsd err
  7517. #111: binutils 2.17 fails to build when texinfo >= 4.10
  7518. #133: Modify ncurses5-config to get correct include path
  7519. #137: Bump php to version 5.2.9
  7520. #139: Bump sqlite to 3.6.11 and convert to
  7521. Makefile.autotools.in
  7522. #145: Bump bind package to 9.5.1-P1 (security)
  7523. #147: buildroot toolchain fails to build w/binutils-2.19.1
  7524. #151: openssl package trivial fixes
  7525. #161: vim fails on patching with errors in configure.patch
  7526. #169: blackbox-0.70.1 does not build
  7527. #177: xdriver_xf86-input-keyboard does not build
  7528. #179: Upgrade dropbear to Makefile.autotools.in
  7529. #181: Update to Xorg 7.4
  7530. #187: ntfs-3g: could not build cross
  7531. #191: alsa-lib ARM binaries always built with EABI
  7532. #213: Bump wpa_supplicant package to version 0.6.9
  7533. #217: Bump openssl package to 0.9.8k (security)
  7534. #219: Toolchain build fails on m4
  7535. #225: m4 macros are out of place
  7536. #233: make ipv6 optional in iptables
  7537. #237: ncftp: convert to Makefile.autotools.in
  7538. #239: ntfs-3g: convert to Makefile.autotools.in
  7539. #245: lzop: new package
  7540. #271: Bump bind package to 9.5.1-P2 (security)
  7541. #277: Bump sqlite package to 3.6.16
  7542. #279: update libglib2 to version 2.20.1
  7543. #281: update DirectFB to version 1.2.8
  7544. #283: add taglib
  7545. #285: compilation of samba fails if IPV6 support is missing
  7546. #293: update samba to version 3.3.3
  7547. #299: add shared-mime-info package
  7548. #307: make openssl package respect build flags