CHANGES 231 KB

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