CHANGES 178 KB

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