CHANGES 203 KB

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