CHANGES 229 KB

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