CHANGES 331 KB

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