CHANGES 166 KB

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