CHANGES 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280
  1. 2013.08.1, Released September 17th, 2013:
  2. Handle the removed GCC and development files on target options
  3. through Config.in.legacy.
  4. Rootfs /lib symlink handling fixed (triggered by make external-deps)
  5. Updated/fixed packages: elf2flt, ti-gfx
  6. 2013.08, Released August 31th, 2013:
  7. Minor fixes.
  8. Documentation build fixed.
  9. Updated/fixed packages: ltrace, strongswan
  10. 2013.08-rc3, Released August 29th, 2013:
  11. Fixes all over the tree.
  12. External toolchain lib32/lib64 handling, ABI name for EABIhf,
  13. misc fixes for generatelocales, apply-patches and module
  14. stripping.
  15. Top level menu names reordered and renamed for clarity.
  16. Updated/fixed packages: acl, attr, bash, dbus, directfb,
  17. dvb-apps, kexec, kmod, libbsd, linux-fusion, mesa3d, minidlna,
  18. openssh, openssl, pulseaudio, python-setuptools, qt5,
  19. qt5webkit, redis, strongswan, sunxi-mali
  20. Issues resolved (http://bugs.uclibc.org):
  21. #6464: dbus-daemon-launch-helper needs setuid
  22. 2013.08-rc2, Released August 16th 2013:
  23. Documentation improvements.
  24. External toolchains fixes.
  25. Updated/fixed packages: aircrack-ng, bash, boost, cairo,
  26. cppcms, eglibc, ffmpeg, gcc, git, gnupg, imagemagick, libcec,
  27. libffi, libgcrypt, linux, linux-headers, ltrace, netatalk,
  28. opencv, opengl, readline, samba, strongswan, sunxi-cedarx,
  29. uclibc, udev, wayland, webkit, zeromq.
  30. Issues resolved (http://bugs.uclibc.org):
  31. #6440: typo in ffmpeg makefile
  32. 2013.08-rc1, Released August 5th, 2013:
  33. Architectures:
  34. - improved support for floating point on ARM and Thumb/Thumb2
  35. - support for ARM OABI removed
  36. Toolchains:
  37. - support added for Sourcery CodeBench ARM and MIPS 2013.05
  38. - Linaro ARM and Aarch64 toolchains updated
  39. - support added for the Arago ARMv5 and ARMv7 toolchains
  40. - gcc 4.8.x version bumped
  41. - support for installing both FDPIC and FLAT libraries on
  42. Blackfin
  43. - support for uClibc 0.9.31 removed,
  44. - convert the internal toolchain backend to use the package
  45. infrastructure
  46. - support added for eglibc in the internal toolchain backend
  47. - toolchain components for the ARC architecture updated and
  48. gdb for ARC added.
  49. - support for Blackfin in the internal toolchain fixed
  50. Defconfigs: beaglebone_defconfig updated, new defconfig for
  51. CubieBoard, for Olimex mx233 Olinuxino, for Calao Systems
  52. TNY-A9G20-LPW.
  53. A number of packages have been fixed to use the
  54. <pkg>_CONFIG_SCRIPTS mechanism to get their <pkg>-config shell
  55. script installed and modified properly. Licensing informations
  56. has been added to a number of packages.
  57. Use XZ tarballs for a number of packages.
  58. Noticeable package changes/additions:
  59. - The glib2/libgtk2/webkit stack has been updated to recent
  60. versions.
  61. - Support for Gstreamer 1.x has been added.
  62. - OpenGL support for TI OMAP platforms has been added.
  63. - OpenGL support for Allwinner platforms has been added.
  64. - OpenMAX support for RasberryPi has been added.
  65. Updated/fixed packages: acl, attr, autoconf, avahi, barebox,
  66. bind, binutils, busybox, bwm-ng, bzip2, cifs-utils, colletctd,
  67. cpanminus, cups, curl, dash, dbus, dhcp, directfb,
  68. directfb-examples, dnsmasq, dosfstools, dropbear, dtc,
  69. e2fsprogs, ed, efl, enlightenment, erlang, ethtool, fbgrab,
  70. fftw, firmware-imx, flot, fltk, freetype, gawk, gdk-pixbuf,
  71. gettext, gmp, gnutls, gsl, gutenprint, gvfs, gzip, haserl,
  72. hiawatha, httping, icu, imagemagick, imlib2, imx-lib,
  73. intltool, iozone, ipset, iptables, jquery, jquery-keyboard,
  74. jquery-sparkline, kmod, less, libart, libcdaudio, libcgicc,
  75. libesmtp, libftdi, libfuse, libglib2, libgtk, libgtk2, libidn,
  76. libiqrf, liblog4c-localtime, libnspr, libnss, libpcap,
  77. libroxml, libserial, libsigsev, libsoup, libtool, libtpl,
  78. libvncserver, libxml2, linphone, lm_sensors, logrotate,
  79. ltrace, lttng, luafilesystem, luajit, minicom, monit, mpg123,
  80. mtd, mutt, mxml, neard, netatask, netsnmp, nettle,
  81. network-manager, nodejs, nss-mdns, openssh, openswan, openvpn,
  82. opkg, opus, pcre, perl-cross, php, pixman, poco, polarssl,
  83. pulseaudio, pv, python, python3, qt, qt5, qt5declarative,
  84. qt5jsbackend, qt5quick1, readline, rpi-firmware, ruby, samba,
  85. sane-backends, sconeserver, sdl_image, sdparm, ser2net,
  86. socketcand, sqlite, squid, strace, tcl, tcpdump, tinyhttpd,
  87. tvheadend, tzdata, uboot, udpcast, usb_modeswitch,
  88. usb_modeswitch_data, usbutils, webkit, wireshark, wvstreams,
  89. xapp_luit, xapp_xmodmap, xenomai, xfsprogs, xlib_libX11, zic,
  90. zlib.
  91. New packages: a10disp, aespipe, am33x-cm3, cppcms, dhcpcd,
  92. dropwatch, dtc, ecryptfs-utils, eglibc, elf2flt, fdk-aac,
  93. gcc-final, gcc-initial, gcc-intermediate, git,
  94. gpu-viv-bin-mx6q, gst1-plugins-bad, gst1-plugins-base,
  95. gst1-plugins-good, gst1-plugins-ugly, gst-omx,
  96. gst-plugin-x170, gstreamer1, jimtcl, lbase64, libassuan,
  97. libbsd, libcec, libdvbsi, libedit, libgpgme, libqmi,
  98. libqrencode, libsvg, libsvg-cairo, libunwind, libvpx,
  99. linux-headers, lockdev, luabitop, luacrypto, lua-ev,
  100. luaexpatutils, msgpack, ocrad, on2-8170-libs,
  101. on2-8170-modules, p11-kit, pax-utils, ptpd, ptpd2,
  102. python-pyro, ramspeed/smp, snappy, strongswan, sunxi-boards,
  103. sunxi-cedarx, sunxi-mali, sunxi-tools, ti-gfx, tinymembench,
  104. tree, tstools, uclibc, w_scan.
  105. Issues resolved (http://bugs.uclibc.org):
  106. #4718: python (built for powerpc) distutils has paths to host
  107. compiler toolchain
  108. #5516: appended device tree blobs on uImage fails
  109. #6302: Versions of packages retrieved from github.com are wrong
  110. #6308: dosfstools download link is wrong
  111. #6326: Dropbear: Add options to allow better config for
  112. different target devices (e.g. routers)
  113. #6338: Wrong download link for minicom package
  114. #6344: Wrong handling of license text files with same name and
  115. different directory
  116. #6374: gnutls package broken if linux cryptodev module
  117. selected
  118. #6410: omap3_beagle has uimage error load address error
  119. 2013.05, Released May 31th, 2013:
  120. Minor fixes.
  121. External toolchain wrapper fix for if host/usr/bin is placed
  122. in the patch.
  123. Updated/fixed packages: acpid, at91bootstrap, czmq, elf2flt,
  124. flex, jamvm, kmod, libplayer, libtirpc, libv4,
  125. lttng-babeltrace, opengl, qt5jsbackend, udpcast, wvstreams
  126. Issues resolved (http://bugs.uclibc.org):
  127. #4868: Buildroot compile failure for toolchain/gdb-7.4/intl/reloc...
  128. #4988: flex and m4 problems
  129. #5912: obsolete CVS files
  130. 2013.05-rc3, Released May 25th, 2013:
  131. Minor fixes.
  132. Updated/fixed packages: aircrack-ng, bellagio, boost, crda,
  133. dvb-apps, flot, libatomic_ops, libeXosip2, libosip2, libxml2,
  134. mongrel2, poco, portaudio, pptp-linux, tvheadend, urg, weston,
  135. wireshark
  136. 2013.05-rc2, Released May 15th, 2013:
  137. Fixes all over the tree.
  138. Default number of parallel jobs is now number of CPUs + 1.
  139. Defconfigs: Add Telit EVK-PRO3, AT91SAM9260-EK Nand flash.
  140. Updated/fixed packages: aircrack-ng, busybox, cairo,
  141. classpath, curlftpfs, czmq, dbus, f2fs-tools, fan-ctrl,
  142. filemq, gst-plugin-bad, gutenprint, hplip, json-c,
  143. libatomic_ops, libcurl, libdrm, libglib2, libnspr, libnss,
  144. libsha1, libsigsegv, libxcb, linknx, linux-pam, lttng-modules,
  145. lttng-tools, matchbox-lib, mcookie, mesa3d, neon, pixman,
  146. pulseaudio, python-nfc, qt5imageformats, quota, openssl,
  147. sconeserver, strace, sylpheed, wvstreams,
  148. xapp_{appres,bdftopcf,beforelight,bitmap,edires,fonttosfnt},
  149. xapp_{fslsfonts,fstobdf,iceauth,ico,listres,luit,mkfontdir},
  150. xapp_{mkfontscale,oclock,rgb,rstart,scripts,sessreg,setxkbmap},
  151. xapp_{showfont,smproxy,twm,viewres,x11perf,xauth,xbacklight},
  152. xapp_x{biff,calc,clipboard,clock,cmsdb,cursorgen,dbedizzy,ditview},
  153. xapp_x{dm,dpyinfo,driinfo,edit,ev,eyes,f86dga,fd,fontsel,fs,fsinfo},
  154. xapp_x{gamma,gc,host,input-calibrator,input,kbcomp,kbevd,kbprint},
  155. xapp_x{kbutils,kill,load,logo,lsatoms,lsclients,lsfonts,mag,man},
  156. xapp_x{message,mh,modmap,more,pr,prop,randr,rdb,refresh,set,setmode},
  157. xapp_x{setpointer,setroot,sm,stdcmap,vidtune,vinfo,wd,wininfo,wud},
  158. xcb-util, xcursor-transparent-theme, xdata_xbitmaps,
  159. xdata_xcursor-themes,
  160. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synaptics},
  161. xdriver_xf86-input-{tslib,vmmouse,void},
  162. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,fbdev,geode,glide},
  163. xdriver_xf86-video-{glint,i128,intel,mach64,mga,neomagic,newport},
  164. xdriver_xf86-video-{nv,openchrome,r128,savage,siliconmotion,sis},
  165. xdriver_xf86-video-{tdfx,tga,trident,v4l,vesa,vmware,voodoo,wsfb},
  166. xfont_encodings, xfont_font-adobe-{100,75}dpi,
  167. xfont_font-utopia-{100dpi,75dpi,type1},
  168. xfont_font-{alias,arabic-misc,bh-100dpi,bh-75dpi},
  169. xfont_font-bh-lucidatypewriter-{100,75}dpi, xfont_font-bh-{ttf,type1},
  170. xfont_font-bitstream-{100dpi,75dpi,type1}, xfont_font-cronyx-cyrillic,
  171. xfont_font-{cursor,daewoo,dec,isas,jis,micro}-misc,
  172. xfont_font-ibm-type1, xfont_font-misc-{cyrillic,ethiopic,meltho,misc},
  173. xfont_font-{mutt,schumacher}-misc,
  174. xfont_font-{screen-cyrillic,sony-misc,sun-misc,util},
  175. xfont_font-winitzki-cyrillic, xfont_font-xfree86-type1,
  176. xlib_lib{FS,ICE,SM,X11,XScrnSaver,Xau,Xaw,Xcomposite,Xcursor},
  177. xlib_libX{damage,dmcp,ext,fixes,font,ft,i,inerama,mu,pm,randr},
  178. xlib_libX{render,res,t,tst,v,vMC,xf86dga,xf86vm},
  179. xlib_lib{dmx,fontenc,pciaccess,pthread-stubs,xkbfile}, xlib_xtrans,
  180. xproto_{applewm,bigreqs,composite,damage,dmx,dri2,fixes}proto,
  181. xproto_{fontcache,font,gl,input,kb,randr,record,render}proto,
  182. xproto_{resource,scrnsaver,video,windowswm,xcmisc,xext}proto,
  183. xproto_{xf86bigfont,xf86dga,xf86dri,xf86vidmode,xinerama,x}proto,
  184. xserver_xorg-server, xutil_{makedepend,util-macros}
  185. Readded Packages: xapp_xinit
  186. Issues resolved (http://bugs.uclibc.org):
  187. #5054: amd64: cannot find init - due to missing /lib64 folder
  188. 2013.05-rc1, Released May 8th, 2013:
  189. Architectures: ARC support, Blackfin support, FLAT binary
  190. format, ARM: Drop old CPU variants, add fa526/626, Marvell PJ4
  191. Toolchains: Add new Microblaze external toolchains, Linaro
  192. ARM/Aarch64 updates, GCC 4.6.4 / 4.7.3 / 4.8.0 added to
  193. internal toolchain, default to GCC 4.7.x. Internal
  194. Crosstool-ng backend deprecated.
  195. Defconfigs: Add Atmel at91sam9g45m10ek, freescale mpc8315erdb
  196. & p1010rdb, Armadeus apf27 / apf28, Openblocks A6, Raspberry
  197. pi, gnublin board.
  198. FS: LZO and XZ compression methods, extra ubifs options,
  199. ext2 rev 0/1 and ext3/4 support.
  200. Patch handling: apply-patches now has .patch.xz support,
  201. Patch logic reworked as discussed during Febrary dev days:
  202. http://elinux.org/Buildroot:DeveloperDaysFOSDEM2013
  203. <pkg>-rsync now excludes version control files.
  204. linux: uImage load address for ARM multiplatform kernels
  205. Infrastructure for multiple OpenGL / ES / EGL / OpenVG
  206. providers, similar to how libjpeg / libjpeg-turbo is handled.
  207. Infrastructure for packages to add system users.
  208. kconfig: updated to 3.9-rc2, support make olddefconfig
  209. Updated/fixed packages: alsa-lib, alsa-utils, apr, apr-util,
  210. argp-standalone, at, at91bootstrap, audiofile, aumix, avahi,
  211. bash, blackbox, bind, binutils, bison, boost, bridge-utils,
  212. busybox, ccache, cifs-utils, cmake, collectd, connman,
  213. conntrack-tools, cpanminus, crosstool-ng, diffutils, directfb,
  214. directfb-examples, divine, dmalloc, dnsmasq, dosfstools,
  215. dropbear, e2fsprogs, ebtables, eeprog, erlang, ethtool,
  216. fb-test-app, fbset, feh, ffmpeg, file, flex, flot, foomatic,
  217. fxload, gd, gdb, gdisk, genimage, gettext, gmp, gnuchess,
  218. gnutls, gob2, gperf, gpsd, gstreamer, haserl, hiawatha, htop,
  219. httping, icu, inotify-tools, intltool, iproute2, ipset,
  220. iptables, iw, jpeg, jquery, jquery-{sparkline,validation},
  221. json-c, kbd, kexec, kismet, kmod, lcdproc, libarchive,
  222. libatasmart, libcap, libconfig, libconfuse, libcurl, libdrm,
  223. libeet, libev, libevas, libeXosip2, libffi, libfribi, libfuse,
  224. libgcrypt, libglib2, libgtk2, libid3tag, libmicrohttpd,
  225. libnetfilter_acct, libnetfilter_conntrack, libnl, libpcap,
  226. libplayer, libsigc, libv4l, libxcb, linenoise, linux-pam,
  227. lm_sensors, ltp-testsuite, luajit, lzop, madplay, make, mdadm,
  228. mediastreamer, memtester, mesa3d,
  229. mobile-broadband-provider-info, monit, mpd, mpfr, mpg123,
  230. mrouted, msmtp, nbd, ncurses, ndisc6, neard, neardal, neon,
  231. netperf, netsnmp, nettle, nfacct, ntfs-3g, ofono, olsr,
  232. omap-u-boot-utils, openssh, openssl, openswan, openvpn,
  233. oprofile, orc, patch, pciutils, pcre, perl, php, poco,
  234. polarssl, proftpd, psmisc, pulseaudio, python,
  235. python-{bottle,netifaces,serial,setuptools}, qt, quagga,
  236. quota, radvd, rpi-firmware, rpi-userland, rt-tests, sam-ba,
  237. samba, sawman, sdl, ser2net, smartmontools, socat, socketcand,
  238. speex, squid, stress, stunnel, sudo, syslinux, sysstat,
  239. sysvinit, tcl, tcprelay, tinyhttpd, tslib, tvheadend,
  240. uboot-tools, udev, ulogd, util-linux, vala, vtun, webkit,
  241. xapp_{iceauth,luit,makefontscale,sessreg,setxkbmap,smproxy},
  242. xapp_{xauth,xcmsdb,xdpyinfo,xev,xgamma,xhost,xinput,xkbcomp},
  243. xapp_{xkbevd,xlsatoms,xlsclients,xmodmap,xpr,xprop,xrandr,xrdb},
  244. xapp_{xset,xwd,xwininfo}, xcb-{proto,util},
  245. xdriver_xf86-input-{evdev,joystick,keyboard,mouse,synptics},
  246. xdriver_xf86-input-{tslib,vmmouse,void},
  247. xdriver_xf86-video-{ark,ast,ati,cirrus,dummy,geode,glide,glint},
  248. xdriver_xf86-video-{i128,intel,mach64,mga,neomagic,newport},
  249. xdriver_xf86-video-{openchrome,r128,savage,siliconmotion,sis},
  250. xdriver_xf86-video-{tdfx,trident,vesa,vmware,wsfb}, xenomai,
  251. xfont, xinetd, xkeyboard-config, xlib_lib{FS,ICE,SM,X11},
  252. xlib_libX{scrnSaver,au,aw,cursor,dmcp,ext,fixes,font,ft,i},
  253. xlib_libX{inerama,mu,pm,randr,res,tst,v,vMC,xf86dga,xf86vm},
  254. xlib_lib{dmx,fontenc,pciaccess,xkbfile}, xlib_xtrans,
  255. xproto_{applevm,bigreqs,dri2,fonts,gl,input,kbd,record}proto,
  256. xproto_{resource,scrnsaver,xcmisc,xext,x}proto,
  257. xserver_xorg-server, xutil_makedepend, xz, zeromq
  258. New packages: aircrack-ng, bcusdk, chrony, crda,
  259. cryptodev-linux, cppzmq, czmq, dtach, enscript, exfat,
  260. exfat-utils, f2fs-tools, fan-ctrl, filemq, foomatic-filters,
  261. genimage, genpart, glibmm, gnuplot, gtest, gutenprint, hplip,
  262. iozone, jansson, jhead, jquery-keyboard, jquery-ui,
  263. jquery-ui-themes, json-glib, json-javascript, lcms2, libpfm4,
  264. libpthsem, libserial, libsigsegv, libtasn1, libwebsockets,
  265. libxkbcommon, libxml++, linknx, log4cxx, mongoose, mongrel2,
  266. mtools, ne10, nmap, nodejs, openobex, openpgm, poppler,
  267. protobuf-c, python-m2crypto, python-thrift, qjson, qt5base,
  268. qt5declarative, qt5graphicaleffects, qt5imageformats,
  269. qt5jsbackend, qt5multimedia, qt5quick1, qt5script, qt5svg,
  270. qt5webkit qt5xmlpatterns, rapidjson, redis, swig, texinfo,
  271. tzdata, urg, ussp-push, wayland, webp, weston, wireless-regdb,
  272. wireshark, wvdial, wvstreams, xcb-util-image, xcb-util-wm,
  273. xcursor-transparent-theme, zic, zmqpp, zyre
  274. Removed packages: microperl, ocf-linux, xapp_xinit,
  275. xapp_xplsprinters, xapp_xprehashprinterlist,
  276. xfont_font-bitstream-speedo,
  277. xlib_lib{Xfontcache,XprintAppUtil,XprintUtil,Xp,oldX,xkbui},
  278. xproto_{print,xf86rush}proto
  279. Deprecated packages: vala
  280. Issues resolved (http://bugs.uclibc.org):
  281. #1291: Add support for Faraday 526 arm processor (fa526)
  282. #2683: cups does not install correctly to target
  283. #3313: mesa3d fails to build
  284. #5186: initramfs/cpio should support lzo compression
  285. #5636: agetty - cannot get controlling tty error - need updated...
  286. #5906: collectd client headers not exported
  287. #5966: bison unnecessarily required as build dependency
  288. #6140: --enable-fileinfo not applied for php package
  289. #6164: openvpn usage of ip tool from Busybox
  290. 2013.02, Released February 28th, 2013:
  291. Misc manual updates.
  292. Updated/fixed packages: busybox, collectd, flashbench,
  293. libgtk2, libupnp, mii-diag, quota
  294. 2013.02-rc3, Released February 26th, 2013
  295. Minor fixes.
  296. Updated/fixed packages: conntrack-tools, dialog,
  297. enlightenment, haserl, keyutils, libfif, libmad,
  298. linux-firmware, linux-fusion, matchbox-desktop, matchbox-wm,
  299. ruby, spawn-fcgi, vtun
  300. Issues resolved (http://bugs.uclibc.org):
  301. #5960: fusion.ko driver does not install to target rootfs
  302. 2013.02-rc2, Released February 19th, 2013
  303. Fixes all over the tree.
  304. Various manual updates and fixes.
  305. Updated/fixed packages: busybox, collectd, gesftpserver,
  306. glib-networking, gnutls, inotify-tools, libcurl, libffi,
  307. libglib2, libtorrent, libvorbis, neard, network-manager,
  308. ntfs-3g, openssl, qt, rpi-userland, rtorrent, thttpd, vim.
  309. Issues resolved (http://bugs.uclibc.org):
  310. #5906: collectd client headers not exported
  311. 2013.02-rc1, Released February 10th, 2013
  312. Toolchain: Crosstool-ng 1.17.0, default to GCC 4.6.3, target
  313. libraries install fixed. Add Linaro ARM
  314. 2012.11/2012.12/2013.01, AArch64 12.11/12.12/13.01. Sourcery
  315. CodeBench MIPS 2012.03/09. Infrastructure to warn about
  316. missing 32bit support for binary toolchains. Toolchain wrapper
  317. is now relocatable. Add GDB 7.5.1 / Remove 6.8 / 7.0 /
  318. 7.1. Deprecate uClibc 0.9.31.
  319. Architecture: Xtensa fixes, add missing powerpc variants, arm
  320. 1136jf-s rev1, add A5/A15, neon support toggle, OABI
  321. deprecated. Sparc: drop old unused variants
  322. Bootloaders: At91bootstap: fix upstream URL, Barebox: add
  323. 2012.12/2013.01/2013.02, remove 2012.08/09/10, lzop fixes,
  324. environment image support, U-Boot: add 2013.01.01
  325. Linux: fix appended dtb handling for v3.8+ kernels, support
  326. multiple device trees
  327. Defconfigs: calao USB-A9260, snowball, QEMU PPC440 on ML507
  328. board, QEMU ARM Exynos4210, Kernel version in QEMU defconfigs
  329. updated, at91rm9200df: misc fixes. Lock kernel headers to
  330. match kernel.
  331. Infrastructure: Git download fixes. Toolchain make target
  332. renamed from 'cross' to 'toolchain'. Eclipse integration
  333. support. Option to set root password, post image scripts,
  334. config scripts handling.
  335. Updated/fixed packages: alsa-lib, argp-standalone, argus,
  336. arptables, atk, audiofile, axel, beecrypt, bind, bison,
  337. bluez_utils, boost, cairo, can-utils, bmon, boa, busybox,
  338. cairo, ccache, cdrkit, cifs-utils, cjson, cmake, collectd,
  339. connman, coreutils, cpanminus, cups, dbus, dhcp, dialog,
  340. diffutils, directfb, distcc, divine, dnsmasq, docker,
  341. dosfstools, dstat, e2fsprogs, ebtables, ed, empty, ethtool,
  342. expedite, fbset, fbv, ffmpeg, flex, fltk, fluxbox, freetype,
  343. gadget-test, gawk, gdb, genext2fs, gettext, giblib,
  344. glib-networking, gmp, gmpc, gnupg, gnutls, gpsd,
  345. gst-plugins-{bad,base,good}, gstreamer, gzip, haserl, hdparm,
  346. heirloom-mailx, hiawanta, hostapd, icu, imagemagick, imlib2,
  347. inadyn, infozip, iproute2, ipset, iptables, iw, jpeg, jquery,
  348. jquery-sparklines, jqeury-validation, kismet, kmod, lame,
  349. libao, libcap, libcurl, libdvdnav, libdvdread, libecore,
  350. libedbus, libedje, libeet, libefreet, libeina, libeio,
  351. liberation, libelementary, libembryo, libethumb, libev,
  352. libevas, libffi, libfribidi, libfuse, libgcrypt, libglib2,
  353. libgpg-error, libgtk2, libhid, libidn, libmicrohttpd, libmpd,
  354. libnl, libnspr, libnss, libogg, libpcap, libplayer, libpng,
  355. libroxml, librsvg, libseccomp, libsigc, libsndfile, libungif,
  356. libupnp, liburcu, libusb-compat, libvncserver, libvorbis,
  357. libxml2, libxslt, lighttpd, links, linux-firmware,
  358. linux-fusion, ltp-testsuite, ltrace,
  359. lttng-{babel,libust,modules,tools}, lvm2, lua, luajit, lzop,
  360. matchbox-{desktop,lib}, mdadm, metacity, midori, minicom, mpd,
  361. mpfr, mplayer, mtd, mysql_client, ncurses, neon, netatalk,
  362. networkmanager, nspr, ntfs-3g, nuttcp, ofone, olsr, openssl,
  363. openvpn, opkg, oprofile, opus, opus-tools, orc, ortp, pango,
  364. pciutils, pcmanfm, pcre, pcsc-lite, perl, php, pixman,
  365. pkgconf, polarssl, pptp-linux, proxychains, pulseaudio,
  366. python, python3, qemu, qextserialport, qt, quagga, radvd,
  367. readline, rng-tools, rt-tests, rubix, ruby, sam-ba, samba,
  368. sane-backends, sconeserver, scons, screen, sdl, sdl_gfx,
  369. sdl_mixer, sdl_ttf, sdparm, sed, ser2net, smartmontools,
  370. speex, sqlite, squid, sshfs, strace, sudo, sylpheed, tn5250,
  371. taglib, tar, torsmo, transmission, tslib, uboot-tools, ulogd,
  372. usb_modeswitch, util-linux, valgrind, vim, vsftpd, wavpack,
  373. webkit, wipe, wireless_tools, wpa_supplicant, xapp_xinit,
  374. xapp_xinput-calibrator, xapp_xman, xapp_xmh, xlib_libX11,
  375. xlib_libXdmcp, xlib_libXft, xlib_libpthread-stubs,
  376. xlib_xtrans, xproto_xcmiscproto, xproto_xextproto,
  377. xserver_xorg-server, xstroke, xvkbd, xz
  378. New packages: b43-firmware, b43-fwcutter, bustle,
  379. cache-calibrator, cegui06, celt051, classpath, curlftpfs,
  380. dvb-apps, dvbsnoop, elfutils, enlightenment, firmware-imx,
  381. flashbench, gd, gesftpserver, gst-fsl-plugins, httping, iftop,
  382. imx-lib, jamvm, jpeg-turbo, keyutils, libatasmart, libcofi,
  383. libebml, libevas-generic-loaders, libfslcodec, libfslparser,
  384. libfslvpuwrap, libgsasl, libiscsi, libmatroska, libmcrypt,
  385. libmhash, libqwt, libseccomp, libsha1, linenoise, mcrypt,
  386. media-ctl, ncdu, neard, neardal, nettle, perf, polkit,
  387. proxychains, python-bottle, python-pyparsing, rpi-firmware,
  388. rpi-userland, sg3_utils, slirp, snowball-hdmiservice, spice,
  389. spice-protocol, tcllib, tvheadend, udisks, usbredir
  390. ux500-firmware, vde2, xcb-utils-keysyms, yavta,
  391. zd1211-firmware
  392. Removed packages: customize, xdriver_xf86-input-{acecad,aiptek},
  393. xdriver_xf86-video-{apm,chips,i740,rendition,s3,s3virge,sisusb},
  394. xdriver_xf86-video-sun{cg14,cg3,cg6,ffb,leo,tcx},
  395. xdriver_xf86-video-{tsend,xgi,xgixp}
  396. Deprecated packages: xstroke
  397. Issues resolved (http://bugs.uclibc.org):
  398. #4237: building shared openssl w/-Os fails due to gcc bug
  399. #5690: python3 does not obey to BR2_PACKAGE_PYTHON3_PYC_ONLY=y
  400. #5602: python3 should install a "python" symbolic link
  401. #5846: Extra slash added to last slash in URL
  402. 2012.11.1, Released January 3rd, 2013:
  403. Toolchain: Fixed non-largefile builds on recent Ubuntu
  404. versions.
  405. Arch: fix missing x86/generic handling, Build for Xtensa with
  406. longcalls option.
  407. Updated/fixed packages: dosfstools, qt
  408. 2012.11, Released December 2nd, 2012:
  409. Git shallow clone fix for older git version.
  410. Updated/fixed packages: ctuio, libtool
  411. Issues resolved (http://bugs.uclibc.org):
  412. #5726: List all the available hook points
  413. 2012.11-rc2, Released November 30th, 2012:
  414. Minor fixes around the tree.
  415. Various manual updates and fixes.
  416. Add checks for legacy features.
  417. Updated/fixed packages: acpid, alsa-lib, arptables, binutils,
  418. busybox, ccache, cjson, cramfs, directfb, flex, fluxbox, gdb,
  419. hiawatha, igh-ethercat, imagemagick, imlib2, lcdproc,
  420. libdaemon, libecore, libhid, libmad, libpcap, libsigc, libusb,
  421. linux-fusion, matchbox, ocf-linux, owl-linux, python, rrdtool,
  422. scons, strace, sylpheed
  423. Issues resolved (http://bugs.uclibc.org):
  424. #5732: Error : package/alsa-lib/alsa-lib.mk
  425. 2012.11-rc1, Released November 17th, 2012
  426. Fixes all over the tree and new features.
  427. Defconfigs: use u-boot 2012.10 on at91 and beaglebone,
  428. sheevaplug + qemu: bump kernel version, add qemu-mips64-malta
  429. + nitrogen6x defconfigs.
  430. Bootloaders: add u-boot 2012.07/10, ais target format, add
  431. barebox 2012.08/09/10/11, linker overlap issue fix for
  432. at91bootstrap, mxs-bootlets updated for new Barebox versions.
  433. Toolchains: binutils 2.23.1, gcc 4.7.2, default to gcc 4.6.x,
  434. Codebench arm/sh/x86 2012.03/09, Linaro 2012.08/09/10.
  435. Libtirpc support for modern glibc variants. Toolchain on
  436. target has been deprecated.
  437. Initial Aarch64 support, Xtensa support re-added.
  438. Infrastructure: Use shallow git clone when possible, use
  439. tarballs rather than git URLs for github. Moved to pkgconf
  440. rather than pkg-config. System directory added, default
  441. skeleton/device tables moved. More than 1 post-build script
  442. can now be used. output/target now contains a
  443. THIS_IS_NOT_YOUR_ROOT_FILESYSTEM warning, to help people
  444. understand how to (not) use it.
  445. Manual has been reworked and extended.
  446. Legal-info: Lots of package annotations, CSV file fixes,
  447. _LICENSE / _REDISTRIBUTE splitup, per-package hooks.
  448. Updated/fixed packages: acpid, alsa-lib, alsa-utils,
  449. alsamixergui, attr, autoconf, automake, bash, bind, binutils,
  450. bison, blackbox, bluez-utils, busybox, cairo, can-utils,
  451. cifs-utils, cjson, cmake, collectd, connman, conntrack-tools,
  452. coreutils, cups, cvs, dbus, dhcp, directfb, dmalloc, dnsmasq,
  453. dropbear, e2fsprogs, ethtool, fbdump, feh, fftw, file,
  454. flashrom, fluxbox, gdb, gdisk, gdk-pixbuf, genext2fs, gettext,
  455. gnutls, gpsd, gqview, grep, gsl, gst-plugins-{bad,good},
  456. hdparm, hiawatha, hostapd, input-tools, iproute2, ipset,
  457. iptables, iw, json-c, kexec, kmod, lcdproc, leafpad, less,
  458. libcurl, libdrm, libdvdnav, libdvdread, libffi, libfuse,
  459. libglib2, libhid, liblockfile, libmad, libmbus, libmnl,
  460. libnetfilter_{acct,conntrack,cthelper,cttimeout,queue},
  461. libnfc, libnfc-llcp, libnfnetlink, libnl, libnspr, libnss,
  462. libpcap, libplayer, libtool, libtorrent, liburcu, libv4l,
  463. libxcb, libxml2, libxslt, links, linux-firmware, lm-sensors,
  464. lmbench, lockfile-progs, logrotate, lshw, lsof,
  465. lttng-babeltrace, lttng-tools, lua, luajit, mesa3d, microperl,
  466. mii-diag, module-init-tools, mpc, mpd, mpg123, mplayer,
  467. mtd-utils, mysql_client, nbd, ncurses, netatalk, netkitbase,
  468. netkittelnet, netsnmp, newt, nfs-utils, openntpd, openssh,
  469. openssl, opkg, patch, pciutils, pcre, php, poco, polarssl,
  470. popt, portmap, pppd, procps, pulseaudio, python, python-nfc,
  471. python-protobuf, qt, quota, rp-pppoe, rtorrent, sam-ba, samba,
  472. scons, sdl_gfx, smartmontools, sqlite, squid, strace, sudo,
  473. sylpheed, tcpdump, tremor, ttcp, tiff, unionfs,
  474. usb_modeswitch, usbutils, util-linux, vala, valgrind, vpnc,
  475. vsftpd, webkit, wget, which, wpa_supplicant, x11vnc, xapp_*,
  476. xdriver_*, xenomai, xfont_*, xinetd, xl2tp, xlib_*, xlsclient,
  477. xproto_*, xserver_xorg-server, xutil_util-macros, xz, zeromq
  478. New packages: arptables, at91bootstrap3, boot-wrapper-aarch64,
  479. ccid, cpanminus, cpuload, erlang, evtest, fb-test-apps,
  480. fxload, gdbm, gnupg, googlefontdirectory, grantlee, gsl,
  481. lcdapi, liblo, liblog4c-localtime, libtirpc, linux-pam,
  482. lua-msgpack-native, macchanger, mtdev, mtdev2tuio, nfacct,
  483. opus, opus-tools, pcsc-lite, perl, pkgconf, python-meld3,
  484. python3, qemu, qextserialport, qtuio, rpcbind, schifra,
  485. sconeserver, supervisor, time, ulogd, usb_modeswitch_data,
  486. yasm
  487. Deprecated packages: netkitbase, netkittelnet
  488. Issues resolved (http://bugs.uclibc.org):
  489. #807: [PATCH] samba - make iconv and smbd optional
  490. #3049: binutils have a sysroot bug in ld
  491. #5330: update vsftpd to 3.0.0
  492. #5486: libglib2 build fails on: libs/libglib-2.0.so: undefined...
  493. #5666: Fails to build python 2.7.2 for 2440 arm
  494. 2012.08, Release August 31th, 2012
  495. Updated/fixed packages: microperl, cups, luajit, rrdtool,
  496. prboom, oprofile.
  497. Added license information for: sqlite.
  498. Changed the source URLs of all packages located on Sourceforge
  499. in order to use the automatic mirror selection URL
  500. downloads.sourceforge.net, and get rid of the
  501. BR2_SOURCEFORGE_MIRROR option.
  502. 2012.08-rc3, Released August 25th, 2012
  503. Updated/fixed packages: libglib2, netsnmp, freetype, libfuse,
  504. libpng, x11vnc, zlib, gpsd, ifplugd, bash, distcc.
  505. Added license informations for: barebox, grub, syslinux,
  506. uboot, xloader, yajl, zlib, zxing, alsa-lib, alsa-utils,
  507. faad2, nano, fbdump, rsync, librsync, fontconfig,
  508. inotify-tools,
  509. 2012.08-rc2, Released August 15th, 2012
  510. Updated/fixed packages: imagemagick, sudo, crosstool-ng.
  511. Added license informations for: mxml, nanocom, empty, expat,
  512. lua, lucjson, xinetd, cjson, luaexpat, lmbench, bwm-ng,
  513. input-event-daemon, luajit, cgilua, copas, coxpcall,
  514. luafilesystem, luasocket, rings, wsapi, xavante, libtpl,
  515. avahi, busybox, libfcgi, ifplugd, libcgicc, libcurl,
  516. libdaemon, libdnet, libgpg-error, libpcap, libpng, lighttpd,
  517. mtd, openssl, psmisc, socat, spawn-fcgi.
  518. Fixes to Microblaze external toolchains
  519. configuration. Improvements of the pkg-stats
  520. script. Out-of-tree fix for the graph-depends script.
  521. Kernel headers version bump.
  522. 2012.08-rc1, Released August 1st, 2012
  523. Fixes all over the tree and new features.
  524. Integration of a legal information reporting infrastructure,
  525. which allows to generate detailed informations about the
  526. licenses and source code of all components of a system
  527. generated by Buildroot. License information will progressively
  528. be added on packages.
  529. Default configuration files added for Calao-systems USB-A9263
  530. and Calao-systems USB-A9G20-LPW.
  531. External toolchains update: allow download of a custom
  532. toolchain, add Linaro 2012.05 and 2012.06 for ARM, add
  533. Blackfin toolchain 2012R1-BETA1, add Sourcery CodeBench MIPS
  534. 2011.09.
  535. Allow the restriction of downloads to the primary site only.
  536. This is useful for project developers who want to ensure that
  537. the project can be built even if the upstream tarball
  538. locations disappear.
  539. Add a 'System configuration' choice to select between 3
  540. different init systems: Busybox init, SysV init and Systemd
  541. init.
  542. Cleanups to the package infrastructure. The visible change to
  543. developers is that $(eval $(call AUTOTARGETS)) is now $(eval
  544. $(autotools-package)), and similarly for other package
  545. infrastructures and host packages. Refer to the documentation
  546. for details.
  547. By default, automatic detection of the number of compilation
  548. jobs to use, depending on the number of CPUs available.
  549. Improvements to generate systems with static libraries only
  550. (infrastructure and package fixes).
  551. Add proper support in the Linux kernel package to generate
  552. Device Tree Blobs or combined Device Tree / Kernel
  553. images. This will be useful on Microblaze, PowerPC and ARM,
  554. which are architectures making extensive use of the Device
  555. Tree.
  556. Updated/fixed packages: audiofile, autoconf, automake, axel,
  557. barebox, bash, beecrypt, berkeleydb, bind, bison, bluez_utils,
  558. bonnie, boost, busybox, bsdiff, bwm-ng, bzip2, cifs-utils,
  559. cgilua, cmake, connman, conntrack-tools, crosstool-ng, cups,
  560. dbus, dhcp, dnsmasq, e2fsprogs, eeprog, ethtool, faad2, fbv,
  561. ffmpeg, freetype, gmp, gnutls, gob2, gpsd, grep,
  562. gst-plugins-base, gst-plugins-good, gzip, hiawatha, hostapd,
  563. htop, icu, igh-ethercat, imagemagick, input-tools, iostat,
  564. iproute2, ipset, iptables, iw, kmod, less, libcap, libgci,
  565. libconfig, libcurl, libelf, libevas, libeXosip2, libexif,
  566. libfuse, libidn, libmad, libmbus, libmnl,
  567. libnetfilter-conntrack, libnl, libnspr, libnss, libogg,
  568. libosip2, libpcap, libpng, libroxml, liburcu, libusb, libxml2,
  569. libxslt, lighttpd, linux, ltrace, lttng-libust, lttng-modules,
  570. lttng-tools, lua, m4, memtester, midori, mii-diag,
  571. module-init-tools, mpfr, mpg123, mrouted, msmtp, mtd, mxml,
  572. mysql_client, nasm, nbd, ncurses, nfs-utils, opencv, openocd,
  573. openssl, pciutils, php, polarssl, portaudio, pppd,
  574. pthread-stubs, pulseaudio, qt, quagga, quota, radvd, rpm,
  575. rrdtool, samba, sam-ba, scons, sdl_gfx, sdl_sound, speex,
  576. sqlite, squashfs, squid, sudo, synergy, syslinux, systemd,
  577. tar, tcpdump, tcpreplay, udev, usbutils, valgrind, wget,
  578. wpa_supplicant, wsapi, xavante, xserver_xorg-server, zlib
  579. New packages: cjson, collectd, dfu-util, dmidecode, elftosb,
  580. fbterm, flashrom, freerdp, inadyn, libfreefare,
  581. libnetfilter_cttimeout, libnfc, libnfc-llcp, liboping,
  582. libtorrent, linphone, logsurfer, lshw, luacjson, luaexpat,
  583. luajit, mediastreamer, mobile-broadband-provider-info, monit,
  584. mxs-bootlets, nanocom, nss-mdns, ofone, omap-u-boot-utils,
  585. opkg, ortp, owl-linux, python-id3, python-nfc, quota,
  586. ramspeed, rtorrent, sound-theme-borealis,
  587. sound-theme-freedesktop, sysprof, webrtc-audio-processing,
  588. xinetd, zxing
  589. Issues resolved (http://bugs.uclibc.org):
  590. #1315: Allow use of older external toolchains without sysroot
  591. support [won't fix]
  592. #5276: Hiawatha needs to manage IPV6 if so [fixed]
  593. #5360: buildroot fails when building "host-libglib2 2.30.2
  594. Building" [won't fix, upstream problem]
  595. #5384: Can't build packages relying on gets on newer glibc
  596. [fixed]
  597. 2012.05, Released May 30th, 2012:
  598. Updated/fixed packages: busybox, netsnmp, pptp-linux
  599. 2012.05-rc3, Released May 25th, 2012:
  600. Minor fixes around the tree.
  601. Infra: Fix for DOWNLOAD macro when using primary mirrors with
  602. scp targets.
  603. Toolchain: Kernel headers 3.2.18 / 3.3.7.
  604. Updated/fixed packages: binutils, bison, busybox, cifs-utils,
  605. gnuchess, gpsd, iperf, libmpeg2, mtd, ntfs-3g, oprofile,
  606. xserver-xorg
  607. 2012.05-rc2, Released May 18th, 2012:
  608. Fixes all over the tree.
  609. Toolchain: uClibc: Use 0.9.33.2, Crosstool-ng: fix gperf
  610. dependency, disable decimal floats support, Linux 3.2.17 /
  611. 3.3.6 kernel headers. Fix sysroot copy handling for toolchains
  612. without C++ support.
  613. Updated/fixed packages: apr, apr-util, ccache, dnsmasq,
  614. heirloom-mailx, gdb, ndisc6, opencv, openssl, socat, vala
  615. 2012.05-rc1, Released May 10th, 2012:
  616. Fixes all over the tree and new features.
  617. Use /etc/os-release for version info rather than
  618. /etc/br-version.
  619. CMake toolchain file moved to $HOST_DIR/usr/share/buildroot.
  620. Apply-patches.sh: cleanups, archived patches handling fixes,
  621. support series files.
  622. Defconfigs: beaglebone, mx53qsb, pandaboard, qemu configs for
  623. arm-vexpress/microblaze/ppc-mpc88544ds, use 3.2.x for
  624. atngw100, use 3.3.x for qemu configs.
  625. Menu structure: Libraries moved out of multimedia section
  626. Atom processor support. Prescott fix, blackfin ABI fix,
  627. Microblaze architecture support (using ext toolchain). Cleanup
  628. architecture names, deprecate Xtensa support.
  629. Toolchain: Add GCC 4.4.7, 4.6.3, 4.7.0. uClibc 0.9.33.1,
  630. default to uClibc 0.9.33.x, enable
  631. UCLIBC_SUPPORT_AI_ADDRCONFIG by default, static and 64bit
  632. fixes for external toolchains, linaro ext toolchains, new
  633. sourcery codebench ext toolchains, GDB 7.4.1, crosstool-ng
  634. 1.15.2.
  635. Bootloaders: U-Boot: add 2012.04.01, SPL and u-boot.img
  636. support. Barebox: add 2012.04, remove 2011.12.
  637. Updated/fixed packages: alsa-lib, alsa-utils, at, atk, avahi,
  638. barebox, berkeleydb, bind, bluez_utils, boost, busybox,
  639. can-utils, ccache, cifs-utils, coreutils, cups, dbus, dhcp,
  640. directfb, dnsmasq, doom-wad, dosfstools, e2fsprogs, expat,
  641. fakeroot, feh, ffmpeg, file, fis, freetype, gamin, gawk,
  642. gdk-pixbuf, gettext, giblib, glib-networking, gmp, gnutls,
  643. gpsd, grep, gstreamer, gst-plugins-{bad,base,good,ugly},
  644. haserl, hdparm, imagemagick, iproute2, iptable, iw, kexec,
  645. kmod, lame, libaio, libarchive, libatomic_ops, libconfig,
  646. libcurl, libdvdnav, libdvdread, libedbus, libethumb, libffi,
  647. libfuse, libglib2, libgtk2, libhid, libmad, libmbus, libmpeg2,
  648. libnl, libplayer, libpng, libsigc, libsoup, libupnp, liburcu,
  649. libusb, libusb-compat, libxml2, libxml-parser-perl, libxslt,
  650. lighttpd, linux-firmware, linux-fusion, lite, lsof, ltrace,
  651. lttng-libust, lua, m4, makedevs, microperl, mpd, mpfr, mpg123,
  652. mrouted, mtd, mysql_client, nbd, ncftp, ncurses, neon,
  653. netsnmp, network-manager, nfs-utils, ngrep, ntfs-3g, openntpd,
  654. openssh, openssl, parted, pango, pcre, php, pixman, poco,
  655. psmisc, pulseaudio, python, qt, quagga, radvd, rpm, rsync,
  656. ruby, samba, sam-ba, sane-backends, sawman, screen, sdl_net,
  657. smartmontools, speex, sqlite, squashfs3, squid, sshfs, sudo,
  658. syslinux, sysstat, taglib, tcpdump, tftp-hpa, transmission,
  659. tiff, tinyhttpd, uboot-tools, udev, uemacs, unionfs, usbutils,
  660. util-linux, vala, valgrind, vim, vsftpd, wget, wipe,
  661. wpa_supplicant, xdriver_xf86-{input-vmmouse,video-fbdev},
  662. xfsprogs, zlib
  663. New packages: apr, apr-util, audiofile, bellagio,
  664. conntrack-tools, empty, fmtools, glib-networking,
  665. heirloom-mailx, hiawatha, latencytop, lcdproc, libcap-ng,
  666. libdmtx, libfcgi, libnetfilter_conntrack, libnfnetlink,
  667. libtpl, localedef, minicom, msmtp, ndisc6, netatalk,
  668. ocf-linux, openswan, parted, polarssl, protobuf, read-edid,
  669. socketcand, stress, systemd, ushare, zeromq
  670. Deprecated packages: ttcp
  671. Removed packages: ntfsprogs
  672. Issues resolved (http://bugs.uclibc.org):
  673. #2353: [lua] fix build with 2010.08-rc1
  674. #2503: Microperl fails build on MIPSel or with Fedora13.x86_64
  675. #2557: [PATCH] mkfs.xfs complains about missing libxfs.so.0
  676. #2881: Can't build project statically with external toolchain
  677. #3751: MIPS: fix BR2_GCC_TARGET_ABI for MIPS n64
  678. #4808: ccache may build against wrong zlib
  679. #4880: New package lcdproc
  680. #4886: New package protobuf
  681. #4892: build fails on ltp-testsuite-20101031/testcases/kernel/fs/...
  682. #4898: * make: [target-finalize] Error 1 (ignored)*
  683. #4985: Qt 4.7.4 build crashes with Linux 2.6.29
  684. #4970: udev 181 fails to build if kernel version 3.3 is selected
  685. #5018: dialog broken: exits with assert in uClibc
  686. #5102: qt package moc, uic, rcc read from wrong place
  687. #5144: Patch to fix ixon bug in uemacs
  688. #5198: Line graphics output is broken in GNU Screen
  689. #5204: Missing terminfo file(s) for GNU screen terminal type
  690. 2012.02, Released February 29th, 2012:
  691. Updated/fixed packages: libecore
  692. 2012.02-rc3, Released February 27th, 2012:
  693. Fixes all over the tree.
  694. Automatic host dependencies handling for cmake packages
  695. fixed. Customize package deprecated as using a post-build
  696. script is nowadays the preferred way of adding extra stuff to
  697. the rootfs.
  698. Linux-headers 3.0.x / 3.2.x stable version bumped.
  699. QEMU defconfigs updated to 3.2.x kernels and readme fixed.
  700. Updated/fixed packages: dropbear, ffmpeg, libpng
  701. 2012.02-rc2, Released February 19th, 2012:
  702. Fixes all over the tree.
  703. Toolchain: uClibc: Added upstream post-0.9.33 fixes, Bump
  704. linux-headers 3.0.x / 3.2.x stable versions.
  705. Documentation: Added makedev / <pkg>_DEVICES /
  706. <pkg>_PERMISSIONS documentation.
  707. Updated/fixed packages: busybox, ffmpeg, gst-dsp, libecore,
  708. libvncserver, mxml, python.
  709. 2012.02-rc1, Released February 12th, 2012:
  710. Fixes all over the tree and new features.
  711. Toolchain: Default to GCC 4.5.x, add binutils 2.22. Java
  712. support removed, Powerpc SPE ABI support. GDB ELF support fix,
  713. GDB 7.4, crosstool-NG 1.13.4.
  714. Gentargets: scp and mercurial support.
  715. Autotools: derive host dependencies from target by default.
  716. Packages can now declare device table snippets.
  717. Host utilities menu with commonly used host tools.
  718. defconfigs: qemu configs for x86-64, mips and sparc, at91
  719. defconfigs now use modern U-Boot / mainline Linux, added
  720. lpc3250 defconfigs.
  721. uClibc: remove 0.9.30, backport unshare() support, add
  722. 0.9.32.1 / 0.9.33, use same config for ctng.
  723. Bootloaders: U-Boot: add 2011.12, remove 2010.xx versions,
  724. Barebox: add 2012.01/02, remove 2011.10/11, LPC32xx
  725. bootloaders added.
  726. Various manual updates. Release tarballs now contain generated
  727. manual in text/html/pdf formats.
  728. Buildroot now calls the stop function of scripts in
  729. /etc/init.d at shutdown.
  730. Updated/fixed packages: atk, avahi, barebox, bash, beecrypt,
  731. bind, binutils, bison, bluez_utils, bzip2, busybox, cairo,
  732. ccache, cdrkit, coreutils, cramfs, dbus, dbus-glib, dialog,
  733. diffutils, dmalloc, dropbear, e2fsprogs, ebtables, ed,
  734. ethtool, expat, ffmpeg, file, fis, flex, fluxbox, fontconfig,
  735. freetype, gawk, grep, gst-dsp, gst-ffmpeg, gst-plugins-base,
  736. hdparm, hostapd, htop, i2c-tools, icu, iproute2, ipsec-tools,
  737. ipset, iptables, iw, jpeg, kismet, lame, libcap, libcgi,
  738. libev, libeXosip2, libffi, libftdi, libgpg-error, libgtk2,
  739. libidn, libmms, libmnl, libmodbus, libnl, libogg, libosip,
  740. libpcap, libpng, libraw1394, libroxml, libusb, libusb-compat,
  741. libv4l, libvorbis, libxcb, libxml-parser-perl, libxslt,
  742. lighttpd, links, lm-sensors, lua, m4, module-init-tools, mpc,
  743. mesa3d, mpd, mpfr, mplayer, mtd-utils, nano, nbd, ncurses,
  744. netperf, netsnmp, ntp, opencv, openocd, openssl, openvpn, orc,
  745. pciutils, pcre, pixman, pkg-config, poco, popt, proftpd,
  746. python, python-serial, qt, ruby, samba, sdl, sdparm,
  747. squashfs3, sshfs, sqlite, squid, sudo, syslinux, tcl, tcpdump,
  748. ti-utils, tiff, tremor, uboot, uboot-tools, udev, usbmount,
  749. util-linux, vala, valgrind, vsftpd, wpa_supplicant,
  750. xapp_{bdftopcf,mkfontdir,mkfontscale,xkbcomp,xcursorgen,xinit},
  751. xapp_xinput, xapp_xman, xcb-util, xdm, xenomai,
  752. xf86-video-sis, xfont_{encodings,font-util},
  753. xlib_lib{fontenc,X11,Xau,Xcursor,Xdmcp,Xfixes,Xfont,Xrender},
  754. xlib_libxkbfile, xterm, xutil_makedepend, yajl
  755. New packages: boost, connman, dstat, expedite, explorercanvas,
  756. feh, flot, giblib, igh-ethercat, imlib2, jquery,
  757. jquery-sparklines, jquery-validation, jsmin, kmod, libecore,
  758. libedbus, libedje, libeet, libeina, libelementary, libesmtp,
  759. libethumb, libevas, libical, libmbus, liboauth, liburcu,
  760. libvncserver, linux-firmware,
  761. lttng-{babeltrace,libust,modules,tools}, NetworkManager,
  762. open2300, python-distutilscross, python-dpkt,
  763. python-netifaces, python-pygame, python-setuptools, rt-tests,
  764. sam-ba, sane-backends, sqlcipher, transmission, unionfs,
  765. xf86-input-tslib, xinput-calibrator
  766. Issues resolved (http://bugs.uclibc.org):
  767. #743: Add Transmission bit torrent option to buildroot
  768. #755: Add Boost libraries as a package
  769. #2299: Add crypto support to libsoup
  770. #2617: Pixman 0.19.2 & Cairo 1.10.0
  771. #3403: libgpg-error: bump to version 1.10
  772. #3409: libgpg-error: download from gnupg.org
  773. #3421: nano: make tiny flag optional
  774. #3691: New EFL packages
  775. #4664: Cannot patch AT91Bootstrap
  776. #4700: setlocalversion not working for combination svn/ubuntu 11.10...
  777. #4760: Qt: add host-pkg-config to dependency-list
  778. 2011.11, Released November 30th, 2011:
  779. Fixes all over the tree.
  780. Bump kernel headers / default Linux version to 3.1.4.
  781. Updated/fixed packages: ruby
  782. 2011.11-rc3, Released November 26th, 2011:
  783. Fixes all over the tree.
  784. Toolchain: Fix gdb dependencies for external toolchains,
  785. adjust uClibc patches so they don't confuse modern versions of
  786. patch, bump crosstool-ng, kernel headers and linux versions.
  787. Updated/fixed packages: busybox, freetype, mplayer, opencv,
  788. php, rsyslog, ruby, thttpd, xapp_xf86dga
  789. Issues resolved (http://bugs.uclibc.org):
  790. #4357: Prevent patch commands from accessing source control
  791. #4369: Fix permissions on untared lsof archive
  792. 2011.11-rc2, Released November 18th, 2011:
  793. Fixes all over the tree and new features.
  794. Updated asciidoc documentation
  795. Toolchain: Bumped 3.x stable kernel headers, use wget in
  796. crosstool-ng as well, bump crosstool-ng version, gdb fixes,
  797. uClibc sparc fix.
  798. Updated/fixed packages: distcc, file, gst-plugins-bad, libxcb,
  799. mplayer, newt, qt, rpm, rrdtool, tar, tftpd
  800. Issues resolved (http://bugs.uclibc.org):
  801. #3355: mplayer fails to build
  802. #4021: uClibc: undefined reference to `__GI___errno_location'
  803. #4297: Qt's qmake uses wrong pkg-config
  804. 2011.11-rc1, Released November 11th, 2011:
  805. Fixes all over the tree and new features.
  806. Moved misc scripts and support stuff to support/. Renamed
  807. patch-kernel.sh to support/scripts/apply-patches.sh.
  808. Documentation: Moved to asciidoc format, make targets to
  809. generate text/html/pdf/epub output added.
  810. Defconfigs: Qemu configs updated to 3.1 kernel and readmes
  811. added.
  812. Bootloaders: Add support for custom git tree / tarballs for
  813. barebox, similar to how it's handled for u-boot. Clean up
  814. menuconfig options.
  815. Toolchain: Update external codesourcery toolchain download
  816. URLs after Codesourcery got bought by Mentor, add x86
  817. toolchain, update toolchain versions and optimize toolchain
  818. sysroot copying. Fix uClibc 0.9.32 builds for e500 PPC,
  819. updated GDB versions / download URLs. Binutils
  820. libbfd/libopcodes static/dynamic linking fix. GCC 4.6.2 added,
  821. use ctng-1.13.0.
  822. Package infrastructure: Support for local packages /
  823. overrides, package dir / name arguments dropped from
  824. {GEN,AUTO,CMAKE}TARGETS.
  825. Linux: Kernel extensions infrastructure support, Xenomai +
  826. RTAI support.
  827. Updated/fixed packages: acpid, bind, busybox, dash, dbus,
  828. dbus-glib, directfb, dnsmasq, drystone, e2fsprogs, ethtool,
  829. fakeroot, fbdump, file, freetype, fuse, gamin, gmp, gmpc,
  830. gnutls, gob2, gst-plugins-{base,bad,good,ugly}, gstreamer,
  831. hostapd, ifplugd, imagemagick, intltool, ipsec-tools, ipset,
  832. iptables, iw, jpeg, kexec, leafpad, less, libargtable2, libao,
  833. libconfuse, libcuefile, libcurl, libdaemon, libevent,
  834. libglib2, libiconv, libmpd, libreplaygain, libroxml,
  835. libsamplerate, libsndfile, libsoup, libsvgtiny, libtool,
  836. libxcb, lighttpd, links, linux-fusion, lite, lrzsz, lsof, lzo,
  837. lzop, makedevs, mcookie, mpg123, mpd, mpfr, mtd, musepack,
  838. mutt, mysql_client, ncftp, ncurses, neon, netcat, netsnmp,
  839. ntfs-3g, ntfsprogs, ntp, openntpd, openssh, openssl, oprofile,
  840. orc, pciutils, psmisc, python, qt, quagga, radvd, rpm, rsync,
  841. samba, sawman, sdl_sound, smartmontools, sqlite, squid,
  842. stunnel, sudo, sylpheed, sysstat, taglib, tar, tcpreplay,
  843. tslib, usbutils, util-linux, valgrind, wget, whetstone, which,
  844. wpa-supplicant, xdata_xcursor-themes, xmlstarlet, xterm
  845. New packages: bluez-utils, cifs-utils, fftw, fluxbox, json-c,
  846. libev, libftdi, libgeotiff, libmodbus, libplayer, live555,
  847. ngrep, noip, opencv, openocd, picocom, poco, portaudio,
  848. pulseaudio, pv, rtai, vala, xenomai.
  849. Removed packages: liboil, sfdisk, swfdec, webif
  850. Issues resolved (http://bugs.uclibc.org):
  851. #505: live555: new package
  852. #507: Enable live and tv options in MPlayer-1.0rc2
  853. #531: let e2fsprogs package to export headers to staging dir if needed
  854. #1171: Linuxthreads new cannot find sysdep.h
  855. #1357: Add bluez to buildroot system
  856. #2107: New package: input-event-daemon
  857. #2599: New package: orc (Oil Runtime Compiler)
  858. #2605: gstreamer: Update to 0.10.30
  859. #2677: introducing util-linux-ng as replacement for util-linux
  860. #2917: Qt: Add declarative module
  861. #3145: jffs2 image generation fails
  862. #3271: netperf-2.4.5 fails to compile
  863. #3331: xdata_xcursor-themes depends on xcursorgen
  864. #3343: Add file:// download SITE_METHOD
  865. #3391: Add support for specifying an external kernel tree
  866. #3631: Error while compiling with Xorg
  867. #3709: oprofile doesn't build for mipsel
  868. #3925: midori not getting compile
  869. #4045: Add support for downloading i386 toolchains from codesourcery
  870. #4165: lrzsz-fix-symlink-at-rebuild.patch
  871. #4171: makedevs-unused-but-set-variable.patch
  872. #4183: Codesourcery toolchain download site has changed
  873. #4231: libneon.so: undefined reference to `SSL_SESSION_cmp'
  874. #4381: Add option to lighttpd to enable Lua support
  875. #4387: Make sure that dest dir exists before installing mtd files
  876. 2011.08, Released August 31th, 2011:
  877. Fixes all over the tree.
  878. Toolchain: Fix codesourcery 2009q3 ARM download, Linux 3.0.4
  879. kernel headers.
  880. Updated/fixed packages: ipset, python
  881. 2011.08-rc2, Released August 29th, 2011:
  882. Fixes all over the tree.
  883. Toolchain: crosstool-NG 1.12.1, use binutils 2.21 on
  884. mips/sh/older uClibc, disallow uClibc 0.9.32 on avr32/sh
  885. (broken).
  886. Defconfigs: kernel updates, fix mini2440 serial port config,
  887. remove old arm toolchain configs.
  888. Bootloaders: Fix grub patching, add barebox-{n,x,menuconfig}
  889. targets similar to linux/busybox.
  890. Updated/fixed packages: barebox, directfb, libsoup,
  891. libxml-parser-perl, mtd, ncurses, python, ti-utils, udev,
  892. usbmount, util-linux, xfont_font-misc-misc
  893. Issues resolved (http://bugs.uclibc.org):
  894. #3685: ncurses installation hangs due to old version of tic
  895. #4093: Grub fails to install bz2 patch after conversion to...
  896. 2011.08-rc1, Released August 4th, 2011:
  897. Fixes all over the tree and new features.
  898. Toolchain: uClibc 0.9.32 / NPTL support, 0.9.29 removed,
  899. ext-toolchain-wrapper improvements, improved non-MMU
  900. support. GCC 4.3.6 / 4.6.1.
  901. GENTARGETS infrastructure extended to cover bootloaders and
  902. Linux kernel as well. Options to retrive Linux/U-Boot from a
  903. custom git repo instead of upstream tarballs.
  904. Support for Linux 3.x and release candidate tarballs.
  905. X-Loader bootloader for omap added.
  906. Make source/external-deps now also works for external
  907. toolchains / crosstool-ng backend.
  908. Updated/fixed packages: autoconf, berkeleydb, bind, binutils,
  909. bmon, bridge-utils, busybox, cmake, dbus, dbus-glib,
  910. e2fsprogs, ethtool, ffmpeg, gst-plugins-{bad,base,good,ugly},
  911. gvfs, hostapd, iproute2, iptables, iw, jpeg, lame, libarchive,
  912. libdnet, libdrm, libgcrypt, libgtk2, libmpeg2, libpng,
  913. libsoup, lighttpd, linux-fusion, lzo, midori, mtd-utils,
  914. nfs-utils, openvpn, oprofile, orc, pkg-config, proftpd, qt,
  915. ruby, samba, sdl, shared-mime-info, sudo, sqlite, squid,
  916. synergy, udev, usbmount, usbutils, util-linux, valgrind,
  917. webkit, xorg-xserver, xz, zlib
  918. New packages: acl, attr, ebtables, gnutls, inotify-tools,
  919. ipset, libargtable2, libiqrf, libmnl, libnspr, libnss,
  920. libroxml, libyaml, live555, mxml, orc, rsyslog, sredird,
  921. statserial, stunnel, ti-utils, uboot-tools, yajl
  922. Deprecated packages: liboil, swfdec
  923. Removed packages: hal
  924. Issues resolved (http://bugs.uclibc.org):
  925. #3559: libnspr: Add new package
  926. #3595: patch to add libroxml
  927. #3565: libnss: Add new package
  928. #3583: xfonts_font-adobe-100dpi fails due to missing map file
  929. #3649: [PATCH] Add mapdir to existing pkg-config patch
  930. #3907: 2011.05 - Qt 4.7.3 not building on ARM
  931. #3961: Nfs-utils: Remove SUSv3-function index
  932. #3985: "help" target's defconfig list needs sort
  933. #3997: bump libroxml to v2.1.0
  934. 2011.05, Released May 27th, 2011:
  935. Updated/fixed packages: makedevs
  936. 2011.05-rc2, Released May 24th, 2011:
  937. Fixes all over the tree.
  938. Toolchain: Code sourcery ARM 2009q1 download URL fixed /
  939. 2009q3 external toolchains added. Crosstool-NG bumped to
  940. 1.11.3, eglic/glibc configuration fixes. Linux kernel 2.6.38.x
  941. bumped to 2.6.38.7.
  942. Updated/fixed packages: bind, fakeroot, kbd, psmisc, qt
  943. 2011.05-rc1, Released May 18th, 2011:
  944. Fixes all over the tree and new features.
  945. External toolchain improvements: We now build a binary
  946. toolchain wrapper and install it into HOST_DIR/usr/bin, which
  947. enforces the correct compiler arguments, making an external
  948. toolchain as easy to use outside of Buildroot as the internal
  949. ones are. This also brought a cleanup of CFLAGS, making the
  950. Buildroot build output easier to read.
  951. Rootfs device handling improvements: Choice between static
  952. /dev, devtmpfs and devtmpfs with either mdev or udev.
  953. Toolchain: More preconfigured codesourcery external
  954. toolchains, improved Crosstool-NG support, fix for GCC
  955. snapshot versions, GCC 4.4.6 / 4.5.3, experimental GCC 4.6.0
  956. support, target-GCC fixes, uClibc fixes, 0.9.32-rc3 support.
  957. Bootloaders: U-boot 2011.03, Barebox 2011.05.0
  958. Linux: support for custom kernel image targets, E.G. for
  959. powerpc builds with embedded device trees.
  960. Misc fixes for qemu defconfigs, ensuring correct serial
  961. terminal setup out of the box.
  962. Misc gentarget / autotools handling fixes.
  963. Updated/fixed packages: alsa-lib, alsa-utils, alsamixergui,
  964. atk, avahi, bind, bison, busybox, copas, dbus-glib, dhcp,
  965. dhcpdump, dnsmasq, dropbear, ethtool, fakeroot, ffmpeg, file,
  966. gamin, gnuconfig, gst-ffmpeg, gst-plugins-good, gtk2-engines,
  967. haserl, hostapd, icu, imagemagick, iproute2, iw, kismet, less,
  968. libcap, libdnet, libglade, libglib2, libgtk2, libnl, libpng,
  969. libxml2, libxml2, libxslt, lighttpd, lockfile-progs, makedevs,
  970. midori, mpg123, mpc, mpd, mpfr, mplayer, mtd-utils, ncurses,
  971. netsnmp, openssh, openssl, openvpn, pango, pkg-config, popt,
  972. procps, proftpd, qt, quagga, readline, rsync, samba, sdl,
  973. socat, squashfs, squid, sudo, tslib, udev, usbutils, webkit,
  974. wpa_supplicant, xerces, xfont_font-misc-misc, xlib_libX11,
  975. xlib_libXfont, xlib_xtrans, xorg-server, xterm, xz
  976. New packages: bonnie++, can-utils, gdisk, htop,
  977. input-event-daemon, libexif, libraw, libv4l, ngircd
  978. Removed packages: festival
  979. Issues resolved (http://bugs.uclibc.org):
  980. #2131: Add OpenMP support to the toolchain
  981. #3379: New Package: bonnie++
  982. #3445: Not working openssl-10.0.0d on 386sx
  983. #3451: fakeroot package: wrong FAKEROOT_SITE variable
  984. #3457: alsamixergui: broken URL
  985. #3475: Calling sync on large filesystems when not always necessary
  986. #3511: make busybox-menuconfig does not download busybox package
  987. #3541: Quotes in the top Makefile:217 break buildroot/kernel config...
  988. #3571: u-boot: fw_printenv does not build
  989. #3643: popt source url is not responding
  990. #3733: dropbear: make zlib optional
  991. #3757: Buildroot can't build mplayer with libmad
  992. 2011.02, Released February 28th, 2011:
  993. Fixes all over the tree.
  994. Updated/fixed packages: alsamixergui, avahi, ffmpeg, icu, mpd,
  995. nuttcp, qt, slang, squashfs, sylpheed, synergy, xerces
  996. Deprecated packages: devmem2, webif
  997. Issues resolved (http://bugs.uclibc.org):
  998. #2911: Qt: Disable qt3support-option, if gui-module isn't selected
  999. #3259: Unable to build webkit (on arm)
  1000. #3295: slang fails to build on mipsel
  1001. #3325: ffmpeg fails to build
  1002. 2011.02-rc2, Released February 24th, 2011:
  1003. Fixes all over the tree.
  1004. Festival packages marked as broken. Unless someone steps up
  1005. to support them, they will be removed during the 2011.05
  1006. development cycle.
  1007. Updated/fixed packages: atk, avahi, bind, cairo, dbus,
  1008. enchant, fakeroot, gmpc, gpsd, gvfs, iperf, jpeg, libarchive,
  1009. libcgicc, libdaemon, libdrm, libevent, libgail, libglib2,
  1010. libgpg-error, libmicrohttpd, librsvg, libsoup, libxcp,
  1011. makedevs, matchbox-fakekey, matchbox-startup-monitor, mdadm,
  1012. metacity, mpd, nasm, nfs-utils, olsr, openssl, popt,
  1013. pthread-stubs, quagga, rpm, samba, sdl, sdl_gfx, sdl_image,
  1014. sdl_mixer, sdl_sound, sdl_ttf, squashfs, synergy, taglib,
  1015. tcpreplay, tiff, wpa_supplicant, xcb-util,
  1016. xdriver_xf86-input-{acepad,aiptek,evdev,joystick,keyboard},
  1017. xdriver_xf86-input-{mouse,synaptics,void},
  1018. xdriver_xf86-video-{chips,dummy,geode,glide,intel,nv,wsfb},
  1019. xlib_lib{ICE,SM,XScrnSaver,Xau,Xcursor,Xdmcp,Xi,Xinerama},
  1020. xlib_lib{Xrandr,Xt,Xtst,Xxf86dga,Xxf86vm,dmx,fontenc,pciaccess},
  1021. xserver_xorg-server, xz
  1022. Removed packages: ace_of_penguins, vlc
  1023. Issues resolved (http://bugs.uclibc.org):
  1024. #3205: Failing chmod when running "make" in buildroot (openssl)...
  1025. #3277: quagga fails to build with SNMP support
  1026. #3283: See why nfs-utils needs fakeroot, and convert to autotools
  1027. #3307: synergy fails to build due to missing XTest library
  1028. 2011.02-rc1, Released February 14th, 2011:
  1029. Fixes all over the tree and new features.
  1030. External toolchain improvements: clarification of the options,
  1031. and introduction of the toolchain profile concept, for
  1032. well-known toolchains. Buildroot is now capable of
  1033. automatically downloading and extracting well-known toolchains
  1034. (for the moment, CodeSourcery ARM, PowerPC, MIPS and SuperH
  1035. toolchains are supported). Crosstool-NG backend updated and
  1036. improved.
  1037. Complete rework of how hardware boards are supported.
  1038. Each board now only has a single defconfig file, and all
  1039. board-specific options have been removed. See
  1040. docs/buildroot.html#board_support for details.
  1041. Added support for the following boards: Mini2440, Qemu ARM
  1042. Versatile, Qemu MIPSel Malta, Qemu PowerPC G3beige, Qemu SH4
  1043. r2d and Qemu x86. The Qemu boards support allows to easily
  1044. build systems that are known to work under Qemu.
  1045. Initial support for Blackfin processors.
  1046. Staging directory moved into $(O)/host/usr/<tuple>/sysroot, in
  1047. preparation for support of SDK. For the same reason, the
  1048. toolchain binaries (cross-compiler and other related tools)
  1049. are now installed in $(O)/host/usr/bin/. The cross pkg-config
  1050. now also automatically returns correct values for cross
  1051. compilation, without needing any environment variables to be
  1052. set.
  1053. Ccache support reworked. Now used for both host and target
  1054. compilation, and cache is stored in ~/.buildroot-ccache.
  1055. Toolchain: uClibc 0.9.32-rc2, several components moved to
  1056. normal AUTOTARGET packages.
  1057. Generic cmake infrastructure, similar to the existing
  1058. GENTARGETS/AUTOTARGETS.
  1059. Support for bzr downloads, next to the existing git/svn support.
  1060. Kconfig infrastructure rebased against 2.6.38-rc3, bringing
  1061. misc fixes. 'xconfig' now uses Qt4 rather than Qt3.
  1062. EXT2 file system size handling improved, UBI image support, fs
  1063. configuration options cleanup, U-Boot/Barebox version bumps.
  1064. Updated/fixed packages: alsa-utils, at, autoconf, automake,
  1065. bash, binutils, bison, busybox, bzip2, cdrkit, cloop, cmake,
  1066. coreutils, cups, dbus, dbus-python, dhcp, directfb,
  1067. direcfb-examples, dmalloc, dnsmasq, dosfstools, e2fsprogs, ed,
  1068. fbset, ffmpeg, findutils, flac, freetype, gdk-pixbuf, gmp,
  1069. grep, gperf, gst-ffmpeg, gst-plugins-bad, gst-plugins-base,
  1070. gst-plugins-good, gst-plugins-ugly, gstreamer, gvfs, hdparm,
  1071. hostapd, i2c-tools, icu, imagemagick, input-tools, iproute2,
  1072. iptables, iw, jpeg, kexec, libaio, libart, libcap, libconfig,
  1073. libfuse, libglib2, libidn, libmad, libogg, libpcap, libpng,
  1074. libsndfile, libtheora, libtool, libusb-compat, libvorbis,
  1075. libxcb, libxml2, libxslt, links, linux-fusion, lm-sensors,
  1076. lsof, ltp-testsuite, ltrace, lvm2, lzo, m4, makedevs,
  1077. memtester, mesa3d, mii-diag, mpc, mpfr, mpg123, mplayer,
  1078. mrouted, mtd-utils, nano, netperf, netplug, ntfs-3g, ntp,
  1079. openssh, openssl, openvpn, oprofile, pango, patch, pciutils,
  1080. php, pkgconfig, portmap, psmisc, python, qt, rsync, ruby,
  1081. sawman, screen, sdl_gfx, sdl_sound, smartmontools, socat,
  1082. sqlite, squid, sshfs, sstrip, sysklogd, sysstat, sysvinit,
  1083. tar, tcpdump, tslib, udev, usbutils, vim, vtun, webkit, wipe,
  1084. x11vnc, xapp_xlogo, xcb-proto, xfont_font-util,
  1085. xkeyboard-config, xlib_libX11, xz, zlib
  1086. New packages: dhrystone, dsp-tools, faad2, fbgrab, gst-dsp,
  1087. gst-omapfb, irda-utils, lame, libao, libcue, libcuefile,
  1088. libffi, libhid, libreplaygain, libsamplerate, libsigc++,
  1089. lsuio, mpd, musepack, python-mad, python-serial, rsh-redone,
  1090. sdparm, tidsp-binaries, vorbis-tools, wavpack, whetstone,
  1091. xl2tp, xmlstarlet
  1092. Removed packages: hotplug, l2tp, libfloat, microcom,
  1093. ng-spice-rework
  1094. Issues resolved (http://bugs.uclibc.org):
  1095. #267: The make target: cross fails because toolchain_build_...
  1096. #415: Berkeley DB: mut_pthread.o: relocation R_X86_64_32 against...
  1097. #561: ltp-testsuite failed to install
  1098. #1447: Installing gfortran on PowerPC
  1099. #1651: Build fail caused by ccache in module-init-tools
  1100. #1681: Cross-compiled binaries shouldn't be installed into staging
  1101. #1723: [PATCH] axel: convert to generic package infrastructure and...
  1102. #1735: [PATCH] mplayer: convert to autotools infrastructure
  1103. #2551: [PATCH] native toolchain in the target filesystem fails
  1104. #2623: buildroot-snapshot-20100922 fails when compiling development...
  1105. #2647: makedevs package lacks support for 16-bit major/minor numbers
  1106. #2371: QT MYSQL Module does not build when MySQL installed on the host
  1107. #2839: compile fails in various packages with a odd message "error:...
  1108. #2887: tar "buffer overflow detected" error
  1109. #2893: Broken "make source" with external toolchain
  1110. #2905: Qt: Speed up compilation, if gui-module isn't selected
  1111. #2929: genext2fs: couldn't allocate a block (no free space)
  1112. #2935: Ntpdate isn't installed
  1113. #2965: Broken linkage to xkbcomp (blocking X server startup)
  1114. #2983: xlib_libX11 build failed
  1115. #3007: kexec doesn't build: Missing regdef.h file
  1116. #3085: Init scripts are not compatible with sysVinit (when busybox...
  1117. #3103: make external-deps wants to download gcc-.tar.bz2 when...
  1118. #3109: abnormal `make busybox-menuconfig`
  1119. #3115: How about board specific makefiles?
  1120. #3169: python patch has typo, aborts build in scenario
  1121. #3181: dhcp.mk copies S80dhcp-server to etc/init.d, not etc/init.d/
  1122. 2010.11, Released November 30th, 2010:
  1123. Fixes all over the tree.
  1124. Updated/fixed packages: libgcrypt, qt, squid, sysstat, tcpdump,
  1125. xserver-xorg
  1126. Issues resolved (http://bugs.uclibc.org):
  1127. #2773: squid with openssl support needs openssl on the host
  1128. #2857: OBJDUMP definition is missing from TARGET_CONFIGURE_OPTS
  1129. 2010.11-rc2, Released November 25th, 2010:
  1130. Fixes all over the tree.
  1131. Add support for LEON Sparc architecture variants. Fix make
  1132. source/external-deps for host packages.
  1133. Updated/fixed packages: bash, bind, busybox, dialog, gpsd,
  1134. libglib2, libcurl, libmad, lrzsz, midori, module-init-tools,
  1135. mtd-utils, openssh, openssl, pciutils, php, qt, sqlite,
  1136. sysstat, webkit, zlib
  1137. Issues resolved (http://bugs.uclibc.org):
  1138. #759: Sysstat build broken without libintl
  1139. #2479: host-module-init-tools 3.11 fails to build
  1140. #2725: Buildroot overrides kernel config
  1141. #2785: mtd-utils build fails due to missing libmtd
  1142. #2791: Added PHP-Process Control to the PHP-Package
  1143. #2797: pciutils dependencies on zlib not taken into account
  1144. #2809: failed to compile libglib2
  1145. #2821: [PATCH] Patch for JavaScriptCore in QtWebKit module
  1146. #2827: qt-4.7.0-pthread_getattr_np.patch invalid for qt 4.6...
  1147. #2833: Failed to compile webkit without X11
  1148. 2010.11-rc1, Released November 8th, 2010:
  1149. Fixes all over the tree and new features.
  1150. Kconfig infrastructure rebased against 2.6.36-rc1, bringing
  1151. misc fixes + nconfig and savedefconfig targets.
  1152. Toolchain: ARM cortex A9 support, experimental crosstool-ng
  1153. backend, GCC 4.5.x.
  1154. Fs: Squashfs 4.1 with lzo support
  1155. Old-style package hooks (*_HOOK_POST_*) removed. Use the more
  1156. generic new-style ones instead.
  1157. Download handling reworked and support for git/svn downloads
  1158. added.
  1159. Removed experimental shared config.cache support, as it is
  1160. too unreliable.
  1161. A convenience Makefile wrapper is created when using
  1162. out-of-tree building, similar to how it is done for the kernel.
  1163. Alpha, Cris, IA64 and Sparc64 architecture support removed.
  1164. New packages: argp-standalone, gdk-pixbuf, gpsd, gst-ffmpeg,
  1165. libmpeg2, kbd, librsvg, nuttcp, rng-tools, rrdtool, xz
  1166. Updated/fixed packages: acpid, alsa-lib, argus, at, autoconf,
  1167. automake, avahi, axel, beecrypt, berkeleydb, bind, bmon, boa,
  1168. bootutils, bridge-utils, bsdiff, busybox, cvs, dbus, directfb,
  1169. dmraid, docker, dosfstools, dropbear, e2fsprogs, ethtool,
  1170. expat, ezxml, fbset, fconfig, ffmpeg, freetype, gadgetfs-test,
  1171. gamin, gawk, genext2fs, gperf, gst-plugins-base,
  1172. gst-plugins-ugly, gtk2-themes, gtkperf, gvfs, haserl, hdparm,
  1173. hostapd, hwdata, ifplugd, imagemagick, iperf, ipsec-tools,
  1174. iproute2, iptables, iw, jpeg, kexec, kismet, less, libcgi,
  1175. libcurl, libdaemon, libdnet, liberation, libevent, libeXosip2,
  1176. libglade, libgtk2, libiconv, libidn, libintl, libmms, libmpd,
  1177. libnl, liboil, libosip2, libpcap, libpng, libtool, libungif,
  1178. libxml2, libxslt, lighttpd, lite, lm-sensors, lockfile-progs,
  1179. logrotate, m4, matchbox, mdadm, mesa3d, metacity, mplayer,
  1180. mtd-utils, mysql_client, nano, nbd, ncftp, neon, netperf,
  1181. netsnmp, ng-spice-rework, ntfsprogs, ntp, openntpd, openssh,
  1182. openssl, openvpn, oprofile, pango, patch, pcre, php,
  1183. pkg-config, portmap, pppd, pptp-linux, prboom, proftpd, radvd,
  1184. rdesktop, readline, rp-pppoe, ruby, qt, quagga, samba, sawman,
  1185. sdl_mixer, sdl_sound, sed, setserial, shared-mime-info, slang,
  1186. speex, sqlite, squashfs, startup-notification, strace,
  1187. sylpheed, sysstat, taglib, tcpdump, thttpd, tiff, tn5250,
  1188. torsmo, tslib, udev, udpcast, usbmount, usbutils, vsftpd,
  1189. vtun, which, wireless-tools, wpa_supplicant, xapp_twm,
  1190. xapp_xbacklight, xapp_xcursorgen, xapp_xinit, xapp_xinput,
  1191. xapp_xmore,
  1192. xdriver_xf86-input-{acecad,aiptek,evdev,joystick,keyboard},
  1193. xdriver-xf86-input-{mouse,synaptics,vmmouse,void},
  1194. xdriver-xf86-video-{apm,ark,ast,ati,chips,cirrus,dummy,fbdev},
  1195. xdriver-xf86-video-{geode,glide,glint,i128,i740,intel,mach64},
  1196. xdriver-xf86-video-{mga,neomagic,newport,nv,openchrome,r128},
  1197. xdriver-xf86-video-{rendition,s3,s3virge,savage,siliconmotion},
  1198. xdriver-xf86-video-{sis,sisusb,suncg3,suncg6,suncg14,sunffb},
  1199. xdriver-xf86-video-{sunleo,suntcx,tdfx,tga,trident,v4l,vesa},
  1200. xdriver-xf86-video-{vmware,voodeo,wsfb,xgi,xgixp},
  1201. xkeyboard-config, xlib_libX11, xserver_xorg-server, xstroke,
  1202. xterm, xvkbd, zlib
  1203. Deprecated packages: hotplug, lzma, ng-spice-rework, sfdisk
  1204. Removed packages: dillo, libglib12, libgtk12, microwin,
  1205. pcmcia
  1206. Issues resolved (http://bugs.uclibc.org):
  1207. #901: new package: gpsd
  1208. #2389: Generate a Makefile wrapper in $(O)
  1209. #2461: wireless_tools: install shared library if needed
  1210. #2521: Can't compile sdl_mixer, mikmod.h can't be found
  1211. #2533: xserver_xorg-server: Enable glx, if mesa3d is built
  1212. #2563: [PATCH] cairo: Expose the configure option to disable some...
  1213. #2581: libmms: Update to 0.6, and patch to work on architectures...
  1214. #2707: Can't compile linux kernel using buildroot + crosstool-ng
  1215. #2731: Build order
  1216. #2737: buildroot configuration tool crashing when the path exceeds...
  1217. #2767: Build for lsof broken in buildroot-2010.08
  1218. 2010.08: Released August 31th, 2010:
  1219. Fixes all over the tree.
  1220. Updated/fixed packages: atk, xstroke
  1221. Removed packages: lxdoom
  1222. 2010.08-rc2, Released August 30th, 2010:
  1223. Fixes all over the tree.
  1224. Mark the combination of uClibc 0.9.31, gcc 4.2.x, C++ and
  1225. locale support as broken. Remove deprecated GCC 4.2.[1-3]
  1226. versions.
  1227. Mark CRIS architecture as deprecated, as it is discontinued
  1228. upstream.
  1229. Marked shared config.cache as experimental and disabled by
  1230. default as it is known to break with certain package
  1231. combinations.
  1232. Toolchain: fixed gcc 4.2.x build after uClibc NPTL support got
  1233. added.
  1234. fs: old-style squashfs for big endian archs fixed.
  1235. Updated/fixed packages: busybox, gst-plugins-base,
  1236. imagemagick, kismet, libgail, libglib2, libgtk2, lua,
  1237. luafilesystem, lzo, ncurses, netcat, pango, php, pppd,
  1238. proftpd, qt, samba, startup-notification, swfdec, sysvinit,
  1239. util-linux
  1240. Removed packages: stunnel
  1241. Issues resolved (http://bugs.uclibc.org):
  1242. #635: util-linux fails to build in 2009.08
  1243. #2239: netcat package installs its binary to target as avr32-linux...
  1244. #2395: libglib2-2.24.1 and libxml2-2.7.7 fails build on MIPS because...
  1245. #2443: Initramfs: Don't overwrite $(TARGET_DIR)/init if it exists
  1246. #2449: Minor fixes for squashfs makefile and correct PowerPC e500 ...
  1247. 2010.08-rc1, Released July 30th, 2010:
  1248. Fixes all over the tree and new features.
  1249. Toolchain: GCC 4.3.5, older 4.3.x versions removed. GCC 4.1.2
  1250. and non-sysroot support removed. Added support for (snapshot)
  1251. NPTL in uClibc, 0.9.28.3 removed,
  1252. Bootloaders: Various cleanups, moved to boot/, added Barebox,
  1253. removed yaboot. Support building u-boot from custom tarball,
  1254. u-boot 2010.06.
  1255. New GTK-based configurator, usable using 'make gconfig'.
  1256. Java packages marked as broken. Unless someone steps up to
  1257. support this, they will be removed during the 2010.11
  1258. development cycle.
  1259. Alpha, IA64 and Sparc64 architectures marked as deprecated.
  1260. GTK+ on DirectFB has also been marked as deprecated, as it is
  1261. not supported in recent GTK+ versions, and more and more
  1262. packages depends on the new versions.
  1263. Unless someone steps up to support them, they will be removed
  1264. during the 2010.11 development cycle.
  1265. New packages: cgilua, copas, coxpcall, ffmpeg, libsvgtiny,
  1266. libgail, luafilesystem, luasocket, rings, wsapi, xavante, xterm
  1267. Updated/fixed packages: alsa-lib, alsamixergui, at, atk,
  1268. avahi, berkeleydb, bash, blackbox, busybox, bzip2, cairo,
  1269. cdrkit, cmake, dash, dhcp, dialog, diffutils, distcc, dmalloc,
  1270. dnsmasq, dropbear, e2fsprogs, fbv, file, flex, fontconfig,
  1271. gawk, gmpc, gnuchess, gst-plugins-base, gst-plugins-good,
  1272. gstreamer, gzip, icu, intltool, iostat, ipsec-tools, iptables,
  1273. iw, libart, libcgi, libcurl, libdrm, libeXosip, libfuse,
  1274. libglib2, libgpg-error, libiconv, libidn, liblockfile, libpng,
  1275. libsoup, lighttpd, links, linux-fusion, lmbench, lrzsz,
  1276. ltrace, make, midori, module-init-tools, mplayer,
  1277. mysql_client, nbd, ncurses, neon, netcat, netperf, netsnmp,
  1278. ntfsprogs, openssl, oprofile, pango, php, qt, quagga, samba,
  1279. setserial, sdl, sdl_mixer, sdl_sound, sdl_ttf, speech-tools,
  1280. sqlite, squashfs, swfdec, tftpd, thttpd, tn5250, tremor,
  1281. usbutils, webif, webkit, wireless_tools, xerces,
  1282. xkeyboard-config, xserver_xorg-server, xvkbd, zlib
  1283. Removed packages: modutils, portage, rxvt
  1284. Deprecated packages: dillo, libglib12, libgtk12, microwin, pcmcia
  1285. Issues resolved (http://bugs.uclibc.org):
  1286. #321: alsa-lib uses host include files for python which breaks ...
  1287. #361: linux kernel configuration choice works incorrectly
  1288. #387: Tremor not installed to toolchain
  1289. #401: new package: ffmpeg
  1290. #475: uImage target for U-boot failed generating
  1291. #543: ATK requires X11 on DirectFB target
  1292. #575: webkit: Buildroot Libtool Patch Fails
  1293. #583: build fails with external x86_64 toolchain
  1294. #729: sstrip creates corrupted headers
  1295. #829: Webkit r44552 needs libXt
  1296. #835: Package Dataflashboot-1.05 does not compile with buildroot...
  1297. #847: Compiling target-gcc v4.4 fails with "libc.so.0: cannot open...
  1298. #859: Add (head of) nptl branch to list of uClibc versions
  1299. #949: compile with debug info
  1300. #955: Grub fails to build with External Toolchain
  1301. #1051: Webkit doesn't compile (Linuxthreads new, x86)
  1302. #1213: Move .config into output directory
  1303. #1225: Buildroot fails to account for "nof" subdirectory (no float...
  1304. #1231: (sparc) Linux kernel fails to build
  1305. #1261: The getline() in output/build/linux-2.6.28/scripts/unifdef.c...
  1306. #1339: Busybox needs -fno-strict-aliasing to compile cleanly
  1307. #1393: neon config fails libxml/parser.h: libxml2 requires, but not ...
  1308. #1405: WebKit fails to build because pthread_getattr_np is not impl...
  1309. #1675: GMP Error during buildroot make process
  1310. #1741: external toolchain linking error
  1311. #1753: lmbench: convert to generic package infrastructure
  1312. #1771: Fakeroot and the target/generic/device_table.txt create bad...
  1313. #1807: LZMA 4.32.7, Required header file(s) are missing
  1314. #1813: xkeyboard-config fails to build because of intltool problem
  1315. #1879: Bump iptables to 1.4.8
  1316. #1885: Add a bunch of lua modules
  1317. #1897: Bump libusb to 1.0.7
  1318. #1903: Bump tn5250 to 0.17.4 and migrate to autotargets
  1319. #1909: netperf-2.4.5 fails to build because of undeclared SOCK_DCCP
  1320. #1927: Bump file to 5.03 and migrate to autotargets
  1321. #1933: Bump gawk to 3.1.8 and migrate to autotargets
  1322. #1945: PHP: add sqlite3 dependency when using external lib
  1323. #1951: Bump openssl to 0.9.8o
  1324. #1957: Bump sqlite to 3.6.23.1
  1325. #1975: Package removal/deprecation
  1326. #1981: zlib: bump to 1.2.5
  1327. #1987: intltool: Fix spelling mistake
  1328. #1993: Bump bash to 4.1.7(1) and migrate to autotargets
  1329. #1999: Typo in path checking
  1330. #2005: Bump dnsmasq to 2.55 and migrate to gentargets
  1331. #2035: ipsec-tools-0.7.2 fails to build with gcc-4.4.x
  1332. #2038: Bump ncurses to 5.7
  1333. #2095: make gconfig: undefined reference to symbol 'dlsym@@GLIBC_2.2.5'
  1334. #2101: blackbox depends on locale support
  1335. #2119: Tries to build kernel, although disabled in config
  1336. #2125: libXfont build fail
  1337. #2143: buildroot compiler generates segfaulting statically linked exe..
  1338. #2149: xterm build failure
  1339. #2155: Compression lzo don't set for ubifs
  1340. #2161: [SECURITY] Update libpng to 1.2.44
  1341. #2167: Bump busybox to 1.17.0, convert to gentargets, drop 1.12, ...
  1342. #2181: pixman can't apply pixman-0.10.0-no-tests.patch
  1343. #2191: linux-fusion build fail
  1344. #2221: Qt does not compile (dependencies not taken into account?)
  1345. #2233: Atmel atstk target skeletons have /etc/mtab as a file, not ...
  1346. #2245: Netcat does not work due to incorrect assumptions about signed..
  1347. #2251: directory output/build after make *_defconfig not found
  1348. #2257: Convert netsnmp package to autotargets
  1349. #2263: Bump samba to 3.3.13
  1350. #2269: setserial causes make error
  1351. 2010.05, Released May 30th, 2010:
  1352. Fixes all over the tree.
  1353. Updated/fixed packages: coreutils, hal, libcap,
  1354. lockfile-progs, ncftp, xserver_xorg-server
  1355. Issues resolved (http://bugs.uclibc.org):
  1356. #1789: binutils fails to build for i386
  1357. #1843: Fix libcap build failure
  1358. #1855: XORG Keyboard driver fails to compile
  1359. 2010.05-rc3, Released May 27th, 2010:
  1360. Fixes all over the tree.
  1361. Updated/fixed packages: aumix, atk, avahi, bmon, busybox, cairo,
  1362. cdrkit, dbus-glib, dbus-python, docker, enchant, fltk, gamin,
  1363. gettext, gmpc, gob2, grep, gstreamer, gst-plugins-bad,
  1364. gst-plugins-base, gvfs, hal, iconv, icu, iperf, libcgicc,
  1365. libdvdnav, libdvdread, libglade, libglib2, libgtk2, libidn,
  1366. libmms, libmpd, libpcap, libsoup, lmbench, lsof, ltrace, lvm2,
  1367. make, metacity, microperl, mtd-utils, mutt, nbd, netsnmp,
  1368. ntfsprogs, ntp, olsr, pango, pciutils, pcmanfm, php,
  1369. pkg-config, psmisc, qt, samba, shared-mime-info, squashfs,
  1370. squashfs3, sshfs, startup-notification, swfdec, sylpheed,
  1371. uemacs, util-linux, valgrind, vpnc, vsftpd, webkit, xstroke
  1372. Issues resolved (http://bugs.uclibc.org):
  1373. #75: arm buildroot "unrecognized option" error
  1374. #699: Buildroot fails to copy libstdc++ to target when using external...
  1375. #1693: NTP trys IPV6 even if not configured error: 'IPV6_MULTICAST...
  1376. #1729: alsamixergui fails to build
  1377. #1801: Avahi-autoipd doesn't create TARGET_DIR/var/lib
  1378. #1819: pciutils small bugs
  1379. #2065: Internal toolchain: bump gcc 4.3.x series to 4.3.5
  1380. 2010.05-rc2, Released May 11th, 2010:
  1381. Fixes all over the tree.
  1382. Updated/fixed packages: busybox, customize, gawk, gnuchess,
  1383. hal, hostapd, less, libgcrypt, libnl, libxcb, linux-fusion,
  1384. ltp-testsuite, mplayer, netplug, pciutils, php, sed,
  1385. shared-mime-info usb_modeswitch, usbutils, vlc wpa_supplicant,
  1386. xapp_bdftopcf, xapp_mkfontdir, xdriver_xf86-video-openchrome,
  1387. xfont_encodings, xlib_libX11, xlib_libXfont, xlib_xtrans,
  1388. xproto_fontcacheproto, xproto_fontsproto, xvkbd
  1389. Removed packages: vice
  1390. Issues resolved (http://bugs.uclibc.org):
  1391. #849: "customize" package copies files to wrong place in target tree
  1392. #985: Bump usb_modeswitch package to 1.1.0
  1393. #1135: Package customize. Wrong copying
  1394. #1525: Package hal deletes a whole <target>/etc/rc.d directory
  1395. #1531: libxcb 1.5 build fails, due to missing xcbgen Python module
  1396. #1669: Busybox failed to compile when using an external toolchain
  1397. #1699: Fix usbutils dependencies and bump
  1398. #1705: Fix pciutils broken cross compiling
  1399. #1717: External toolchain fixes for hostapd & wpa_supplicant
  1400. 2010.05-rc1, Released May 3rd, 2010:
  1401. Cleaned up / restructured package menu.
  1402. Toolchain: uClibc 0.9.30.3 / 0.9.31, older 0.9.30.x removed.
  1403. 2.6.33 kernel headers, binutils 2.20.1, GCC 4.4.4,
  1404. removed broken nios2 support, ppc e300cX/e500mc support,
  1405. improved external toolchain support, GDB 7.x support.
  1406. X.org updated to 7.5.
  1407. New packages: cdrkit, cramfs, genext2fs, genromfs,
  1408. libatomic_ops, librsync, libusb-compat, lmbench, netperf,
  1409. squashfs, squashfs3, squid
  1410. Updated/fixed packages: alsa-utils, argus, autoconf, bison,
  1411. busybox, bzip2, directfb, dnsmasq, dosfstools, e2fsprogs,
  1412. eeprog, fakeroot, fbv, findutils, freetype, haserl, hostapd,
  1413. iperf, iptables, iw, less, libaio, libcgi, libcgicc, libdrm,
  1414. libgcrypt, libglib2, libid3tag, libmad, liboil, libosip2,
  1415. libpng, libraw1394, libsysfs, libxml2, libxslt, linux-fusion,
  1416. ltrace, lua, lzma, madplay, makedevs, matchbox, mdadm,
  1417. memstat, mesa3d, mtd-utils, nano, ncurses, openssl, patch,
  1418. pciutils, php, pixman, portage, pppd, pthread-stubs, python,
  1419. qt, radvd, samba, setserial, smartmontools, tar, tslib,
  1420. udpcast, usb_modeswith, vtun, wget, xdata_xcursor-themes,
  1421. xdriver_xf86-video-intel, xkeyboard-config, xlib_libX11,
  1422. xlib_libXaw, xlib_libXfont, xlib_libXfontcache,
  1423. xlib_libXxf86misc, xlib_libXtst, xlib_libpciaccess,
  1424. xproto_dri2proto, xproto_eviext, xproto_fontcacheproto,
  1425. xproto_xf86miscproto, xserver_xorg-server
  1426. Removed packages: xapp_xtrap, xlib_libXTrap, xlib_libXevie,
  1427. xlib_libXxf86misc, xxproto_evieext, proto_trapproto,
  1428. xproto_xf86miscproto
  1429. Issues resolved (http://bugs.uclibc.org):
  1430. #513: Add new squid package
  1431. #661: lmbench: new package
  1432. #719: Add lua option to haserl
  1433. #800: [PATCH] iperf update to 2.0.4
  1434. #803: [PATCH] lua - add shared library patch and config option for...
  1435. #805: [PATCH] mdadm - version update
  1436. #817: integrator926_defconfig uses unsupported uboot board name
  1437. #851: Add option to specify --sysroot value for external toolchain
  1438. #1093: Upgrade libusb to v1.0.3 and add new libusb-compat
  1439. package for compatibility with old packages that expect
  1440. the pre-1.0 API.
  1441. #1105: Add new netperf package
  1442. #1111: Bump wget to 1.12 and migrate to Makefile.autotools.in
  1443. #1117: Bump nano to 2.2.3 and migrate to Makefile.autotools.in
  1444. #1123: Bump less to 436 and migrate to Makefile.autotools.in
  1445. #1129: Bump memstat to 0.8 and migrate to Makefile.package.in
  1446. #1189: Wrong u-boot configuration name for integrator926 target
  1447. #1219: kernel headers not correctly installed into toolchain/staging
  1448. #1267: Wrong BR2_EXTRA_VERSION
  1449. #1273: BR2_INET_IPV6 does not enable IPv6 in pppd
  1450. #1303: Add librsync package
  1451. #1321: Busybox link fails due to lack of --sysroot option
  1452. #1327: mtd-utils compile failure due to lack of --sysroot in CFLAGS
  1453. #1345: Bump pppd to 2.4.5 and convert to Makefile.autotools.in
  1454. #1369: cannot build radvd (flex problem)
  1455. #1387: xlib_libX11-1.3.2 can't find libjpeg
  1456. #1411: [SECURITY] Update openssl package to 0.9.8n
  1457. #1417: Bump iptables to 1.4.7
  1458. #1423: Bump e2fsprogs to 1.41.11
  1459. #1429: [SECURITY] Update php to 5.2.13
  1460. #1441: Add binutils 2.20.1
  1461. #1447: Package installation on target with debug symbols is broken
  1462. #1459: Misc QA fixes
  1463. #1489: radvd update to 1.6
  1464. #1513: Enable powerpc e300c2, e300c3 and e500mc optimization
  1465. #1537: dev entries not created anymore
  1466. #1555: Fix default uclibc-0.9.31 configuration
  1467. #1561: [SECURITY] Update samba to 3.3.12
  1468. #1567: openssl0.9.8n fails to compile
  1469. #1573: Alsa-utils alsactl/init/* not installed to target
  1470. #1591: portmap fails to compile
  1471. #1615: Convert eeprog package to gentargets
  1472. #1645: Bump hostapd package to 0.7.2
  1473. 2010.02, Release February 26th, 2010:
  1474. Fixes all over the tree.
  1475. Updated/fixed packages: avahi, busybox, cramfs, ipsec-tools, libcgicc,
  1476. libgtk2, libraw1394, madplay, netsnmp, pango, squashfs, sylpheed, qt,
  1477. xfont_font-util
  1478. Removed packages: hostap, openmotif, xpdf
  1479. Issues resolved (http://bugs.uclibc.org):
  1480. #165: openmotif does not build
  1481. #1147: Remove obsolete hostap package
  1482. #1183: make source fails to download gmp, mpfr and patches
  1483. 2010.02-rc2, Released February 23th, 2010:
  1484. Fixes all over the tree and new features.
  1485. New packages: intltool
  1486. Updated/fixed packages: ace_of_penguins, alsa-lib, alsa-utils, argus,
  1487. at, automake, ccache, dosfstools, e2fsprogs, flex, gob2, gmpc,
  1488. gst-plugins-good, imagemagick, iw, kexec, libeXosip, libgtk2,
  1489. libpcap, libpng, libsoup, libxcb, libxml-parser-perl, libxml2,
  1490. libxslt, lvm2, matchbox, mplayer, rsync, rubix, shared-mime-info,
  1491. tcl, webkit, xapp_mkfontscale, xfont_encodings, xfont_font-util,
  1492. xlib_libfontenc, xproto_trapproto, zlib
  1493. Removed package: xboard
  1494. Issues resolved (http://bugs.uclibc.org):
  1495. #335: atk looks for the path to the gnome library on the host
  1496. #355: Please update WebKit - it doesn't compile!
  1497. #453: libglib2 autoreconf
  1498. #457: e2fsprogs link problem
  1499. #459: libgtk2 autoreconf
  1500. #469: build of libgtk2 for host incorrectly assumes that X.org ...
  1501. #671: Bash fails to build when building buildront on Ubuntu 9.04
  1502. #711: WebKit host dependencies problems
  1503. #821: cp: illegal operation
  1504. #1039: Not compiled on ubuntu karmic
  1505. #1069: [PATCH] The AT91BOOTSTRAP makefile contains a typo
  1506. 2010.02-rc1, Released February 9th, 2010:
  1507. Fixes all over the tree and new features.
  1508. Generalized autotools infrastructure to be usable for
  1509. non-autotools packages, see package/Makefile.package.in for
  1510. details.
  1511. Cleaned up avr32 toolchain config, external source-based
  1512. toolchain support is gone.
  1513. Dependency checks: Also check for makeinfo, only print output
  1514. on errors.
  1515. Toolchain: uClibc 0.9.30.2, gcc 4.4.3
  1516. New packages: libcdaudio, libdvdnav, libdvdread, hostapd, ser2net,
  1517. tcpreplay
  1518. Updated/fixed packages: alsa-lib, alsa-utils, at, autoconf, bash,
  1519. bind, binutils, bootutils, busybox, dbus, directfb, dnsmasq,
  1520. e2fsprogs, gstreamer, gperf, gst-plugins-bad, gvfs, fbdump, flex,
  1521. hal, iptables, iw, jpeg, kismet, libfuse, libglib2, liboil, libpcap,
  1522. libungif, libxml2, libxslt, lighttpd, mesa, mpg123, mtd-utils, nbd,
  1523. neon, netstat-nat, newt, openvpn, pcre, php, qt, rdesktop, readline,
  1524. rpm, sawman, sdl, sdl_ttf, sqlite, sshfs, tremor, u-boot,
  1525. usb_modeswitch, usbutils, webkit, wpa_supplicant, xfsprogs, zlib
  1526. Removed package: asterisk, openswan
  1527. Issues resolved (http://bugs.uclibc.org):
  1528. #515: tcpreplay: new package
  1529. #553: Wrong DirectFB ps2mouse limitation
  1530. #559: mesa3d build fails
  1531. #679: Autoconf cannot find M4
  1532. #739: New/updated hostapd package
  1533. #749: Bump usbutils package to version 0.86
  1534. #751: Kernel 2.6 snapshot fetch fail
  1535. #753: Bump lighttpd package to 1.4.25
  1536. #757: U-Boot: mkimage cannot be installed using external toolchain
  1537. #761: Add binutils 2.20 to toolchain options
  1538. #763: [SECURITY] Update pcre to 7.9
  1539. #765: Add buildroot branding to gcc
  1540. #767: Bump iw package to 0.9.18
  1541. #773: [SECURITY] Update bind to 9.5.2-P1
  1542. #795: Minor edits to fix typos, grammar, spelling, usage in documen...
  1543. #813: Drop not very useful generic package selection options ...
  1544. #823: Editor backup files (~) is copied from the target_skeleton
  1545. #827: Bump mtd-utils package to version 1.2.0
  1546. #841: Build error
  1547. #913: Bump iptables to 1.4.6
  1548. #919: Bump usb_modeswitch package to 1.0.7
  1549. #925: Bump wpa_supplicant package to 0.6.10
  1550. #931: Bump kismet package to 2010-01-R1
  1551. #937: Bump openvpn package to 2.1.1
  1552. #943: Bump sqlite package to 3.6.22
  1553. #961: Bump dnsmasq to 2.52
  1554. #967: Bump netstat-nat to 1.4.10
  1555. #973: Bump iw to 0.9.19
  1556. #1003: DHCP options disabled with busybox-1.16.0
  1557. #1009: [SECURITY] Bump php to 5.2.12
  1558. #1015: [SECURITY] Bump bind to 9.5.1-P2
  1559. #1027: Busybox flash commands conflict with those from mtd-utils
  1560. #1063: [SECURITY] Update lighttpd to 1.4.26
  1561. 2009.11, Released December 1st, 2009:
  1562. Additional fixes and cleanups.
  1563. Updated/fixed packages: alsamixergui, autoconf, coreutils, fltk,
  1564. microperl, ncurses, vim
  1565. Issues resolved (http://bugs.uclibc.org):
  1566. #707: Cant configure fltk-1.1.7. configure: error: Configure could ...
  1567. 2009.11-rc2, Released November 29th, 2009:
  1568. Additional fixes and cleanups.
  1569. Updated/fixed packages: busybox, dbus, fltk, gvfs, ltrace
  1570. 2009.11-rc1, Released November 23rd, 2009:
  1571. Fixes all over the tree and new features.
  1572. Cleaned up / Simplified build directory layout. Refer to
  1573. docs/buildroot.html#using for details.
  1574. Target defconfig files moved to configs/ and listed in 'make help'
  1575. output.
  1576. Fixed *clean targets. Now clean removes everything generated,
  1577. so you can do a fresh rebuild. Distclean furthermore removes
  1578. kbuild tools and .config, bringing the source tree back in a
  1579. pristine state.
  1580. Toolchain: ARM cortex A8 support, GCC 4.4.2, sensible default
  1581. soft / hardfloat setting for architecture, ensure target-ldd
  1582. gets installed.
  1583. New packages: divine, gvfs, libarchive, libmicrohttpd,
  1584. sdl_sound, swfdec, sysstat
  1585. Updated/fixed packages: alsa-lib, alsamixergui, autoconf, bootutils,
  1586. busybox, gcc, directfb, dnsmasq, e2fsprogs, festival, gamin, gperf,
  1587. gqview, gstreamer, gst-plugins-bad, gst-plugins-base, gst-plugins-good,
  1588. imagemagick, ipkg, iptables, iw, kernel-headers, kismet, leafpad,
  1589. libelf, libevent, libglib2, libidn, liblockfile, libmad, libpcap,
  1590. libupnp, libuuid, libxml2, lighttpd, ltrace, lua, lzma, magiccube4d,
  1591. matchbox, mdadm, nbd, ncftp, ncurses, netkittelnet, netsnmp,
  1592. ng-spice-rework, ntfs-3g, openntp, openssl, pcmanfm, php, psmisc,
  1593. python, quagga, radvd, rpm, rsync, rubix, samba, sawman, sdl, sdl_image,
  1594. shared-mime-info, sfdisk, spawn-fcgi, speech-tools, sqlite, squashfs,
  1595. synergy, syslinux, sysklogd, target-binutils, tcpdump, torsmo, u-boot,
  1596. udpcast, util-linux, valgrind, vsftpd, wipe, wpa-supplicant, x11vnc,
  1597. xdata_xcursor-themes, xboard, xfsprogs, xstroke, zlib[5~
  1598. Removed package: mdnsresponder, mpatrol, gcc 3.4.6 + 4.0.4, vice
  1599. Issues resolved (http://bugs.uclibc.org):
  1600. #301: allow to install libsmbclient
  1601. #303: add gvfs package
  1602. #477: Add sdl_sound package
  1603. #487: Make kismet package sexier
  1604. #511: New package usb_modeswitch
  1605. #527: misc fixes for dnsmasq package
  1606. #565: libevent: Bump version and clean up makefile
  1607. #587: Use iptables multipurpose binaries and bump to 1.4.4
  1608. #593: Missing early check for patch(1)
  1609. #597: (REOP) Selecting busybox in buildroot's config clobbers ar ...
  1610. #609: libmicrohttpd: New package
  1611. #615: python: Don't delete .py files unless asked
  1612. #617: netkit/inetd requires RPC and fails to build if RPC is disabled
  1613. #619: netkittelnet requires netkitbase to install, but there's no ...
  1614. #645: allow to build nbd-server with NBD package
  1615. #653: [SECURITY] Update php package to version 5.2.11
  1616. #655: Update sqlite package to version 3.6.18
  1617. #657: Bug in imagemagick-clean target
  1618. #663: Add option for NAND flash with 512B Page and 16 kB erasesize ...
  1619. #665: [PATCH] Samba package
  1620. #667: [PATCH] e2fsprogs
  1621. #683: SDL-dfb does not select directfb
  1622. #701: make install problem with unstripped binaries
  1623. #703: [SECURITY] Update openssl package to 0.9.8l
  1624. #705: Bump spawn-fcgi package to 1.6.3
  1625. #709: Bump lighttpd package to 1.4.24
  1626. #713: Migrate openntpd package to Makefile.autotools.in
  1627. #715: Bump libidn package to 1.15 and other fixes
  1628. #717: Bump dnsmasq to 2.51 and introduce new IDN option
  1629. #731: Bump iw package to 0.9.17
  1630. 2009.08, Released August 31th, 2009:
  1631. Additional fixes and cleanups.
  1632. Updated/fixed packages: ctorrent, saveconfig/getconfig,
  1633. sdl_net, util-linux.
  1634. Issues resolved (http://bugs.uclibc.org):
  1635. #529: util-linux doesn't find headers and include libs correctly
  1636. #557: Build ctorrent with SSL support if available
  1637. 2009.08-rc3, Released August 26th, 2009:
  1638. Additional fixes and cleanups.
  1639. Updated/fixed packages: alsa-utils, berkeleydb, busybox, dbus,
  1640. directfb, enchant, kernel headers.
  1641. Issues resolved (http://bugs.uclibc.org):
  1642. #471: Allow directfb compilation with debug
  1643. #541: Removal of CVS directories in target filesystem broken
  1644. #547: berkeleydb: Update config.{sub, guess}
  1645. #549: enchant: Fix dependencies.
  1646. #569: Fix alsa-utils build for x86 on x86-64
  1647. 2009.08-rc2, Released August 6th, 2009:
  1648. Additional fixes and new features.
  1649. New packages: libuuid, gcc 4.3.4.
  1650. Updated/fixed packages: busybox, classpath, gzip, ipsec-tools,
  1651. jamvm, libusb, microperl, neon, popt, sed, webkit.
  1652. Fixed issue with 'make oldconfig'
  1653. Issues resolved (http://bugs.uclibc.org):
  1654. #525: sed broken with external toolchain
  1655. #537: Fix gzip build with recent glibc
  1656. 2009.08-rc1, Released August 2nd, 2009:
  1657. Fixes all over the tree and new features.
  1658. Improvement of external toolchain support:
  1659. - Support for glibc toolchains.
  1660. - The toolchain configuration announced to Buildroot is
  1661. verified against the real toolchain configuration.
  1662. - Fixes, documentation.
  1663. Cleanup X.org support: clarified configuration options, and
  1664. removed mandatory dependency on useless libraries such as
  1665. libXt or libXaw.
  1666. New QT-based configurator, usable using 'make xconfig'.
  1667. Support for the Xtensa architecture.
  1668. Toolchain: GCC 4.4.1, 2.6.30 kernel headers, removed < 2.6.26
  1669. headers.
  1670. New packages: bmon, ctorrent, dosfstools, enchant,
  1671. gst-plugins-bad, iw, libmms, libnl, netstat-nat, ntfsprogs,
  1672. sdl_gfx, spawn-fcgi.
  1673. Updated packages: bind, busybox, coreutils, sqlite, directfb,
  1674. expat, gamin, gnuconfig, haserl, ipsec-tools, classpath,
  1675. libcurl, libglib2, liblockfile, libpng, libsoup, libxml2,
  1676. lighttpd, ltp-testsuite, lvm2, matchbox, memstat,
  1677. gst-plugins-good, gstreamer, libogg, libvorbis, mplayer,
  1678. neon, openssl, pciutils, php, qt, ruby, sawman, webkit,
  1679. wpa-supplicant, xdriver_xf86-input-synaptics,
  1680. xdriver_xf86-video-intel, xlib_libXfont, xlib_libXft,
  1681. xlib_libXt, xproto_xproto, xserver-xorg, xutil_makedepend,
  1682. xutil_util-macros.
  1683. Issues resolved (http://bugs.uclibc.org):
  1684. #83: liblockfile fails to compile due to eaccess redefinition
  1685. #163: Xtensa architecture port
  1686. #171: xorg-server / kernel headers 2.6.26 - vm86.c compilation issue
  1687. #241: device mapper + lvm2: build together
  1688. #243: ctorrent: new package
  1689. #247: ntfsprogs: new package
  1690. #271: Library 'libgcc_s.so.1' not installed in search path
  1691. #287: New package libnl
  1692. #289: New package iw
  1693. #331: Update MPlayer to version 1.0rc2
  1694. #333: Bump sqlite package to 3.6.15
  1695. #349: update libsoup to version 2.26.2
  1696. #357: New package netstat-nat
  1697. #359,#413: Upgrade openvpn to Makefile.autotools.in
  1698. #367: linux kernel compile error for arm926t
  1699. #369: Add SDL_gfx package
  1700. #373: Support for building gstreamer without libxml
  1701. #379: update DirectFB to version 1.4.0
  1702. #383: gst-plugins-good: Allow soup plugin to be configured
  1703. #385: neon: Fix pkgconfig dependency
  1704. #387: Tremor not installed to toolchain
  1705. #389: New package bmon
  1706. #391: gstreamer: Bump version to 0.10.23
  1707. #393: gst-plugins-base: Bump version to 0.10.23
  1708. #395: gst-plugins-bad: New package
  1709. #403: Error while building iso9660 image
  1710. #409: Bump php package to 5.2.10
  1711. #411: ipsec-tools: Bump version to 0.7.2
  1712. #417: New package spawn-fcgi
  1713. #419: Bump lighttpd package to 1.4.23
  1714. #421: toolchain: Clean up toolchain locale support menu
  1715. #427: webkit: Update to WebKit svn r44552
  1716. #437: ltp-testsuite: Bump version to 20090630
  1717. #451: Upgrade from unmaintained dosfstools-2.11 to dosfstools-3.0.3
  1718. #467: DirectFB 1.4.1
  1719. #473: memstat_0.5.tar.gz has install with -D and that fails "make"
  1720. #491: libxml2: Bump version to 0.7.3
  1721. #495: Bump bind package to 9.5.1-P3 (security)
  1722. #497: OpenSSL RSA key generation hangs on x86_64
  1723. #509: Bump sqlite package to 3.6.16
  1724. #523: pciutils broken with external toolchain
  1725. #533: Update gamin to 0.1.10 to fix compilation
  1726. 2009.05, Released June 1st, 2009:
  1727. Fixes for dropbear & diffutils, bump linux-advanced 2.6.29.x
  1728. version and marked ubifsroot as broken.
  1729. 2009.05-rc3, Released May 27th, 2009:
  1730. Fixes for toolchain (gcc arm pr37436), stable kernel versions,
  1731. busybox, curl, libusb, readline, python and strace.
  1732. Issues resolved (http://bugs.uclibc.org):
  1733. #345: libcurl package needs a urandom fix
  1734. 2009.05-rc2, Released May 19th, 2009:
  1735. Fixes for toolchain (gcc w/softfloat on ppc, 3.4.6 buildfix
  1736. for newer hosts), stable kernel versions, busybox, cups,
  1737. dmraid, docker, mesa3d, rsync and updated defconfigs.
  1738. xserver marked as broken on AVR32 and atngw100-expanded
  1739. config removed.
  1740. Issues resolved (http://bugs.uclibc.org):
  1741. #167: metacity does not build
  1742. #295: gamin installs python support even if python is disabled
  1743. #323: gen_matypes fails to execute during build of Mesa when us...
  1744. 2009.05-rc1, Released May 5th, 2009:
  1745. Fixes all over the tree, further conversion of packages to
  1746. Makefile.autotools.in and we now build host versions of
  1747. packages where needed for build time dependencies instead of
  1748. relying on the correct versions being available on the build
  1749. host. Ancient toolchain / busybox versions have furthermore
  1750. been removed as announced in the 2009.02 release notes.
  1751. New packages: flac, gob2, lzop, taglib, wpa_supplicant
  1752. Updated packages: avahi, bind, binutils, busybox, dbus, dbus-glib,
  1753. directfb, dnsmasq, freetype, gcc, gmp, gstreamer, iptables, kernel
  1754. headers, kexec, libglib2, libpng, libsndfile, lua, mpfr, ntfs-3g,
  1755. openssl, php, qtopia4, rsync, samba, sqlite, tar, uboot, uclibc,
  1756. util-linux, xorg7, xerces
  1757. Issues resolved (http://bugs.uclibc.org):
  1758. #5,#77,#141,#143: Convert php package to Makefile.autotools.in
  1759. and a ton of other improvements
  1760. #19: page.h missing by util-linux
  1761. #37: update libglib2 to version 2.18.4
  1762. #61: tslib puts staging_dir into pkgconfig file
  1763. #69: tar refuses to build
  1764. #71,#175: ./wchar.h:41:12: error: empty filename in #include
  1765. #73: Bump openssl package to the latest version
  1766. #81: New package wpa_supplicant
  1767. #99: new package: flac
  1768. #101: update gstreamer packages
  1769. #105,#313: menuconfig segfaults on tinyx if wchar is not
  1770. selected
  1771. #107: convert libvorbis to Makefile.autotools.in
  1772. #109: Make pppd package avoid bsd err
  1773. #111: binutils 2.17 fails to build when texinfo >= 4.10
  1774. #133: Modify ncurses5-config to get correct include path
  1775. #137: Bump php to version 5.2.9
  1776. #139: Bump sqlite to 3.6.11 and convert to
  1777. Makefile.autotools.in
  1778. #145: Bump bind package to 9.5.1-P1 (security)
  1779. #147: buildroot toolchain fails to build w/binutils-2.19.1
  1780. #151: openssl package trivial fixes
  1781. #161: vim fails on patching with errors in configure.patch
  1782. #169: blackbox-0.70.1 does not build
  1783. #177: xdriver_xf86-input-keyboard does not build
  1784. #179: Upgrade dropbear to Makefile.autotools.in
  1785. #181: Update to Xorg 7.4
  1786. #187: ntfs-3g: could not build cross
  1787. #191: alsa-lib ARM binaries always built with EABI
  1788. #213: Bump wpa_supplicant package to version 0.6.9
  1789. #217: Bump openssl package to 0.9.8k (security)
  1790. #219: Toolchain build fails on m4
  1791. #225: m4 macros are out of place
  1792. #233: make ipv6 optional in iptables
  1793. #237: ncftp: convert to Makefile.autotools.in
  1794. #239: ntfs-3g: convert to Makefile.autotools.in
  1795. #245: lzop: new package
  1796. #271: Bump bind package to 9.5.1-P2 (security)
  1797. #277: Bump sqlite package to 3.6.16
  1798. #279: update libglib2 to version 2.20.1
  1799. #281: update DirectFB to version 1.2.8
  1800. #283: add taglib
  1801. #285: compilation of samba fails if IPV6 support is missing
  1802. #293: update samba to version 3.3.3
  1803. #299: add shared-mime-info package
  1804. #307: make openssl package respect build flags