CHANGES 250 KB

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