CHANGES 239 KB

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