CHANGES 245 KB

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