CHANGES 89 KB

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