Newer
Older
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
Toolchain: fix gcc build on NIOS-II.
Infrastructure: add <fs>_POST_GEN_HOOKS mechanism to fix
hybrid ISO image generation.
Architectures: add arm1136j-s variant.
Updated/fixed packages: apitrace, audit, bcusdk, bdwgc,
beecrypt, boost, bwm-ng, cdrkit, c-icap, cifs-utils, clapack,
c-periphery, cpio, cramfs, czmq, dawgdic, dnsmasq, dosfstools,
dropbear, elfutils, empty, eudev, fan-ctrl, filemq, gnutls,
guile, haveged, imlib2, libcec, libepoxy, libev, libgpgme,
libiio, libnetfilter_queue, libnfnetlink, libpfm4, libpthsem,
librtas, libselinux, libsigsegv, libsodium, libv4l, lightning,
linux, lirc-tools, lrzsz, mono, mosh, mpd, msmtp, nbd,
netatalk, nodejs, ola, opencv, oprofile, php, poco,
postgresql, powertop, protobuf, protobuf-c, qt5base,
qt5quickcontrols, rapidjson, rng-tools, squid, sysdig,
sysstat, tftpd, tinc, tz, util-linux, webkitgtk24, weston,
wireshark, wvstreams, xdriver_xf86-input-synaptics, zyre.
Issues resolved (http://bugs.uclibc.org):
#8276: package/dropbear: symlink resolution incorrect
#8286: Error with buildroot
#8301: ldconfig parameter in Makefile
Fixes all over the tree and new features.
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
Architectures:
- Refactor how the availability of an MMU is described.
- Minimal support for Cortex-M3
- Minimal support for AArch64 big-endian
Toolchains:
- Add CodeSourcery MIPS 2015.05, remove MIPS 2013.11
- Use uClibc-ng as the default uClibc version, instead of the
official uClibc, which hasn't done any release since 3+
years
- eglibc is now marked as deprecated
- GCC: gcc 4.9.x is now the default and was updated to 4.9.3,
support for gcc 5.x added.
- Binutils: use Binutils 2.24 as the default, 2.25.x series
bumped to 2.25.1, remove old Binutils 2.22.
- Update ARC toolchain components to 2015.06
- Add support for Fortran when building gcc
Bootloaders:
- Support for using the kconfig configuration system in
U-Boot
New Defconfigs:
- VIA VAB-820/AMOS-820
- OLimex OLinuxino A20 Lime
- Many new defconfigs for Atmel evaluation boards:
at91sam9rlek, at91sam9x5ek, sama5d3xek, sama5d4ek, sama5d4
Xplained Ultra, sama5d3 Xplained.
- ACME Systems Aria G25
- WarPboard
- Altera Cyclone 5 Development Board
- Xilinx zc706
- ARC AXS101 and AXS103 Software Development Platforms
- Significant updates to Raspberry Pi / Raspberry Pi 2
Infrastructure:
- Buildroot takes better care now of generating predictable
permissions in the target filesystem. However, existing
permissions on a custom skeleton or rootfs overlay will no
longer be preserved. Therefore, it is necessary to add a
permission table (BR2_ROOTFS_DEVICE_TABLE) to set the
required permissions.
- Add support for kconfig fragments.
- No longer pass --{enable,disable}-debug to autotools
packages depending on the value of
BR2_ENABLE_DEBUG. BR2_ENABLE_DEBUG now only controls
whether we build with -g or not.
- Support for extracting archives in .lzma in the generic
package infrastructure.
- Remove random-seed file from the default skeleton, since
seeding the entropy pool with a known seed makes more harm
than good.
- In the CVS download helper, add support to use a date as
the version.
- Add support for a per-package <pkg>_STRIP_COMPONENTS
variable, which packages can use to specify how many path
components should be stripped when extracting the tarball.
- Addition of a 'kernel-module' package infrastructure, which
simplifies the packaging of external kernel modules. Many
existing packages are converted to use it.
- Allow bootloaders to be implemented in $(BR2_EXTERNAL)
- Remove /etc/securetty from the default skeleton.
- Migration of sysV initscripts from the default skeleton to
a package called 'initscripts', installed only when Busbox
init or sysvinit are used.
- Migration of the skeleton logic to a proper 'skeleton'
package.
- Addition of a 'linux-tools' infrastructure in the 'linux'
package, to support building user-space tools bundled
within the Linux kernel sources, such as perf and cpupower.
- Usage of backticks instead of make $(shell ...) to execute
shell commands. This allows to delay the evaluation of such
commands when actually needed, and not when expanding the
variables. It is useful to make 'make printvars' less
noisy, and as a preparation to support top-level parallel
build.
- Libtool .la files are not mungled for all package types,
instead of being handled only for packages using the
autotools-package infrastructure.
- Add mechanism to allow packages to express a dependency on
gcc versions. This is needed for packages that use C++11 or
C11 support for example.
Important package updates:
- Complete rework of the matchbox packaging
- Lots of fixes in packages for compatibility with musl and
gcc 5.
- Hash files added to a large number of packages.
- Update a significant number of packages to use a new
hosting, after the announcement of Google Code and
Gitorious closing.
- Major packages needed for SELinux support have been merged,
but the support is not complete yet.
- Significant update of OpenCV to version 3.0, and addition
of lots of eatures.
- Significant update of all packages supporting the GPU and
VPU of i.MX ARM processors.
- Addition of systemd support in a significant number of
packages.
- Qt5 updated to 5.5.0
- Use modular X.org server by default instead of KDrive
Filesystems:
- Complete overhaul of the iso9660 support. Now allows to use
directly IS9660 as the root filesystem format and not only
an initrd, and supports Grub 2 and isolinux in addition to
Grub.
Updated packages: a10disp, agentpp, apache, at91bootstrap3,
audit, barebox, bc, bind, bmon, boost, btrfs-progs,
ca-certificates, can-utils, ccache, cloog, collectd, connman,
coreutils, c-periphery, cryptsetup, dado, dbus, dejavu,
dhcpcd, dnsmasq, dosfstools, dovecot, dovecot-pigeonhole,
e2fsprogs, ejabberd, erlang-p1-cache-tab, erlang-p1-sip,
erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml, ethtool,
eudev, evtest, exim, expect, explorercanvas, feh, ffmpeg,
file, flashrom, freescale-imx, freetype, gawk, gcc, gdb,
gettext, git, glib-networking, gnupg2, gnutls, gpsd, gptfdisk,
gpu-viv-bin-mx6q, gst-fsl-plugins, harfbuzz, hdparm, heimdal,
i2c-tools, imagemagick, imx-vpu, iproute2, ipset, isl, iw,
kodi, kodi-addon-xvdr, kodi-audioencoder-flac,
kodi-audioencoder-lame, kodi-audioencoder-vorbis,
kodi-audioencoder-wav, lftp, libass, libassuan, libcec,
libconfi, libcurl, libdrm, libevdev, libfreefare, libfslcodec,
libfslparser, libfslvpuwrap, libfuse, libglib2, libgpgme,
libgtk2, libgtk3, libical, libidn, libiio, libinput, libiscsi,
libllcp, libmicrohttpd, libnfc, libnss, libpcap, libpciaccess,
libpng, libserialport, libsigrok, libsoc, libtirpc, libubox,
libunistring, libupnp, libuv, libv4l, libva,
libva-intel-driver, libXrandr, lighttpd, linenoise, linux,
linux-firmware, linux-headers, live555, ltrace, lua,
lua-csnappy, lua-ev, luajit, lua-messagepack, luaperiphery,
lvm2, lxc, lzo, mesa3d, mesa3d-headers, midori, mmc-utils,
modem-manager, mono, mosquitto, mpd, mpd-mpc, mpfr, mpg123,
mtd, musl, nano, netperf, network-manager, nfs-utils, nginx,
nodejs, ntp, ola, opencv, openldap, openssh, openssl,
openswan, openvmtools, openvpn, opkg, orbit, orc, pcmanfm,
perl-cross, perl-encode-locale, perl-io-socket-ssl,
perl-mojolicious, perl-net-ssleay, perl-path-tiny, perl-uri,
perl-xml-libxml, php, pinentry, polarssl, postgresql,
pulseview, pure-ftpd, python, python-dpkt, python-lxml,
python-networkmanager, python-pyinotify, python-pypcap,
python-tornado, qextserialport, qt, qt5, rapidjson, redis,
rpcbind, rpi-firmware, rpi-userland, samba4, shairport-sync,
snmpp, sqlite, squid, strongswan, stunnel, sudo, sunxi-boards,
sunxi-mali, sysdig, sysstat, systemd, tcpdump, tiff, tmux,
tor, txheadend, tzdata, uboot, uclibc, ulogd, upmpdcli,
usb_modeswitch, usb_modeswitch_data, vala, vsftpd, wayland,
weston, whois, wireless-regdb, wireshark, x264, xapp_xvinfo,
xdriver_xf86-input-libinput, xdriver_xf86-input-vmmouse,
xdriver_xf86-video-cirrus, xdriver_xf86-video-geode,
xdriver_xf86-video-imx-viv, xdriver_xf86-video-mach64,
xdriver_xf86-video-neomagic, xdriver_xf86-video-r128,
xdriver_xf86-video-savage, xdriver_xf86-video-siliconmotion,
xdriver_xf86-video-vesa, xkeyboard-config, xlib_libfontenc,
xlib_libFS, xlib_libXaw, xlib_libxkbfile, xlib_libXrender,
xlib_libXt, xproto_kbproto, xproto_xproto, xproto_xrandrproto,
xscreensaver, xserver_xorg-server, xtables-addons, yaml-cpp,
zic.
New packages: angularjs, atf, audit, c-icap, c-icap-modules,
cpio, dawgdic, faketime, fcgiwrap, gflags, glog, initscripts,
jquery-datetimepicker, kodi-audioencoder-modplug,
kodi-audioencoder-nosefar, kodi-audioencoder-sidplay,
kodi-audioencoder-snesapu, kodi-audioencoder-stsound,
kodi-audioencoder-timidity, kodi-audioencoder-vgmstream,
kodi-platform, kodi-pvr-argustv, kodi-pvr-dvblink,
kodi-pvr-dvbviewer, kodi-pvr-filmon, kodi-pvr-hts,
kodi-pvr-iptvsimple, kodi-pvr-mediaportal-tvserver,
kodi-pvr-mythtv, kodi-pvr-nextpvr, kodi-pvr-njoy,
kodi-pvr-pctv, kodi-pvr-stalker, kodi-pvr-vbox,
kodi-pvr-vdr-vnsi, kodi-pvr-vuplus, kodi-pvr-wmc,
kodi-screensaver-asteroids, kodi-screensaver-biogenesis,
kodi-screensaver-crystalmorph, kodi-screensaver-greynetic,
kodi-screensaver-pingpong, kodi-screensaver-pyro,
kodi-screensaver-stars, kodi-visualisation-shadertoy,
kodi-visualisation-spectrum, kodi-visualisation-waveforhue,
kodi-visualisation-waveform, kvmtool, kyua, libfm,
libfm-extra, libplatform, librtas, libsodium, libsquish,
libucl, libump, linux-backports, lua-iconv, lutok, menu-cache,
moarvm, monkey, mono-gtksharp3, mosh, openipmi, python-can,
python-pycli, python-pydal, python-pyyaml, python-web2py,
qpid-proton, qt5webchannel, quazip, racehound, rtl8188eu,
rtl8821au, sepolgen, setools, skeleton, stm32flash,
webkitgtk24, xdriver_xf86-video-qxl, zynq-boot-bin.
Deprecated packages: webkitgtk, libgail, eglibc support in
glibc package.
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
Issues resolved (http://bugs.uclibc.org):
#4291: Segmentation fault with all binaries that use threads
when compiled with gcc 4.6
#6944: building toolchain for sh4 fails
#7592: Buildroot GCC: -lto requires plugin support in ranlib
#7628: Python SSL does not get built for Raspberry Pi
#7682: Missing dependencies for NFS
#7742: dhcp lacks important features when BR2_ENABLE_DEBUG
#7754: make: *** [/..../buildroot-2014.11/output/build/host-gcc-initial-4.8.3/.stamp_built] Error 2
#7946: libglib2-2.42.2 fails to build for sparc-buildroot-linux-gnu
#7956: glibc 2.20 and 2.21 fail to build for sh64-buildroot-linux-gnu
#7971: python-flask, python-werkzeug. No module named zlib
#7981: Target file system skeleton permissions hazard
#8006: rpcdebug in nfs-utils built for the host
#8036: alsa-lib headers problem that prevents to compile alsa
dependent projects
#8081: systemd init system: /tmp is not mode 1777
#8121: php opcache extension doesn't get installed
#8151: x86-64 make fails with ncurses 5.9
#8156: pkg-kconfig infra broken for *-update-{config, defconfig}
#8161: default /bin/sh symlink to busybox is full path and not relative
#8171: glamor missing
#8191: Request update support for the cubieboard series
#8201: Important security upgrades for node.js
2015.05, Released May 31st, 2015
Minor fixes.
Updated/fixed packages: conntrack-tools, directfb, fio, flite,
gptfdisk, ipmiutil, iproute2, janus-gateway, keyutils, knock,
libelementary, libgcrypt, libgsasl, libjpeg, libstrophe,
lttng-libust, nbd, ncurses, nmap, php, postgresql, python,
python3, sconeserver, udpcast, upmpdcli
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2015.05-rc3, Released May 22nd, 2015
Several fixes, mainly related to static linking.
Updated/fixed packages: acl, alsa-utils, apr, armadillo, attr,
autoconf-archive, binutils, boost, czmq, dhcpcd, duma,
enlightenment, exim, fbterm, freerdp, gcc, gdk-pixbuf,
google-breakpad, gpsd, heirloom-mailx, hwloc, ipmiutil,
iproute2, jack2, jasper, kmod, lcdproc, leafnode2, libcap-ng,
libftdi1, libmatroska, libmemcached, libmodbus, libnftnl,
libsigrok, libupnpp, libuv, libxml-parser-perl, linux,
linux-headers, lirc-tools, lua-periphery, lxc, mongoose, mono,
mpg123, mosquitto, neardal, newt, ntp, ola, openldap, opencv,
php, postgresql, protobuf, pulseaudio, python-pyqt, qemu, qt,
qt5base, rpi-userland, rsyslog, snmppp, sqlite, tiff,
tinyxml2, uboot-tools, unionfs, ux5000-firmware, usbredir,
ushare, vpnc, vsftpd, wavpack, wireless_tools, wsapi,
wvstreams, xmlstarlet, zeromq, zmqpp
New packages: c-periphery
Issues resolved (http://bugs.uclibc.org):
#8106: mkfs.jffs2 uses the --pagesize parameter incorrectly
#8111: 2015.05.rc2 LIBFOO_CONF_OPTS not working
#8126: exim lacks plaintext and cram-md5 auth
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2015.05-rc2, Released May 11th, 2015
Minor fixes.
Toolchain: PR56780 backport to GCC 4.8.4 to fix GDB linking
issues. Context functions enabled for uClibc snapshot /
uClibc-NG.
Architectures: Endian handling symbol for Xtensa, binutils
fixes.
Infrastructure: Fix for kernel module stripping when
localversion contains spaces.
Updated/fixed packages: at, autoconf-archive, binutils,
cc-tool, cryptsetup, dstat, expedite, freerdp, giflib,
gnuchess, guile, ipmiutil, iproute2, mono, monolite, neard,
ola, poppler, postgresql, python-qt, qt, sqlite, valgrind,
xlib_libXfont
Issues resolved (http://bugs.uclibc.org):
#8086: Cannot select systemd as init with Linaro 2014.09...
Fixes all over the tree and new features.
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
Architectures: Removed AVR32 support, deprecate SH64, added
support for steamroller, corei7-avx and core-avx2 x86
variants.
Toolchains: IPv6 and Largefile support now enforced for
uClibc. Corresponding Kconfig symbols removed.
External CodeSourcery AMD64 2014.05, MUSL-cross 1.1.6 added,
CS sh2, Xilinx microblaze v2/14.3 removed. Distro-class
external toolchains are now detected and blacklisted.
Internal toolchain support for Nios2 added, Blackfin
removed. Aarch64 and sh musl support. uClibc-ng support added.
Libatomic is now handled for internal and external
toolchains. Link time optimization (LTO) support.
New Defconfigs: Freescale i.MX28 EVK, i.MX31 PDK and SABRE
Auto, Raspberry Pi 2, RIoTboard,
Infrastructure: Hashes for a large number of packages have
been added. Missing hashes now stop the build unless
explicitly disabled.
Peter Korsgaard
committed
Spaces and colons (:) are now supported in package
versions. Dependencies can now be listed for the patch step
(<PKG>_PATCH_DEPENDENCIES). Kconfig and Linux kernel
extensions infrastructure has been added.
Makedevs now has a recursive (r) option.
The variable containing the list of packages to build has been
renamed from TARGETS to PACKAGES.
Peter Korsgaard
committed
Make external-deps / legal-info / source / source-check have
been reimplemented using the package infrastructure, so their
output/behaviour may differ from earlier (some packages were
not included in the past).
The old insecure DES password encoding is no longer supported.
U-Boot patch option now support direct references to patch
files and URLs in addition to directories of patches. The
i.MX28 SD format (u-boot.sd) is now supported.
Updated/fixed packages: agentpp, aircrack-ng, alsa-lib,
alsa-utils, apr-util, apr, atk, autossh, avahi, avrdude,
bcusdk, bdwgc, bind, binutils, bmon, boost, botan,
btrfs-progs, busybox, ca-certificates, cairo, can-utils,
canfestival, ccache, chrony, civetweb, clamav, cmake,
collectd, connman, copas, crda, cryptodev-linux, cryptsetup,
cups, czmq, dbus-cpp, dbus-glib, dbus-python, dbus, dfu-util,
dhcp, dhcpcd, dialog, dillo, dmraid, dnsmasq, dos2unix,
dosfstools, dovecot-pigeonhole, dovecot, dropbear, dropwatch,
dtv-scan-tables, dvdauthor, e2fsprogs, ecryptfs-utils,
libevas, elfutils, enscript, erlang, espeak, eudev, evemu,
exfat-utils, exim, f2fs-tools, feh, ffmpeg, fftw, flickcurl,
fltk, fluxbox, fmlib, fmtools, freeradius-client, freerdp,
gamin, gawk, gcc-final, gcc, gd, gdb, gengetopt, geoip, git,
glib-networking, gnu-efi, gnuchess, gnutls, gpsd, gptfdisk,
gpu-viv-bin-mx6q, gst-plugin-bad, gstreamer, gstreamer1,
gtest, gvfs, harfbuzz, haserl, haveged, hiawatha,
hicolor-icon-theme, hostapd, hplip, httping, i2c-tools, icu,
ifplugd, imagemagick, imlib2, iozone, iproute2, iptables,
iputils, irqbalance, iw, jack2, jhead, jimtcl, json-c, kexec,
kismet, kmod, kodi-audioencoder-flac,
kodi-audioencoder-vorbis, kodi-pvr-addons, kodi, ktap, lcms2,
libass, libatomic_ops, libbluray, libcap, libcgroup, libcurl,
libdrm, libdvbsi, libebml, libecore, libedit, liberation,
libev, libevas, libevdev, libftdi, libgcrypt, libglib2,
libgpgme, libgtk2, libgtk3, libiconv, libidn, libiio,
libinput, libiscsi, libksba, liblinear, libmatroska,
libmicrohttpd, libmodbus, libmpdclient, libnice, libnl,
libnspr, libnss, libpcap, libpciaccess, libphidget, libplayer,
libpthsem, libqmi, librsvg, libseccomp, libsigrok, libsoup,
libsrtp, libssh2, libtasn1, libtool, libunistring, liburcu,
libusb, libuv, libva-intel-driver, libva, libvncserver,
libvorbis, libvpx, libwebsockets, libxml2, libzip, lightning,
lighttpd, linknx, linphone, linux-firmware, linux-headers,
linux-pam, live555, ljsyscall, lmbench, lockdev, logrotate,
lpc3250loader, lpeg, lsof, lttng-libust, lttng-modules,
lttng-tools, lua, luacrypto, luafilesystem, luajit, luaposix,
luarocks, lvm2, lxc, make,
matchbox-{common,desktop,fakekey,keyboard,lib,startup-monitor,vm},
matchbox, mcelog, memcached, memstat, memtest86, mesa3d,
minidlna, mjpegtools, mjpg-streamer, modem-manager, mongoose,
monit, mono, monolite, mp4v2, mpc, mpd, mpdecimal, mpg123,
mplayer, musl, nano, nbd, ncftp, ncmpc, ncurses, ne10, neard,
neardal, net-tools, netatalk, netsnmp, network-manager, nginx,
nodejs, ntfs-3g, ntp, numactl, odhcp6c, ofono, open2300,
opencv, openldap, openntpd, openocd, openssh, openssl,
openswan, opentyrian, openvmtools, openvpn, oprofile, p11-kit,
pango, patch, patchelf, pciutils, pcre, perf, perl-gdgraph,
perl-io-socket-ssl, perl-json-tiny, perl-module-build,
perl-mojolicious, perl-net-ssleay, perl-path-tiny,
perl-xml-libxml, perl, phidgetwebservice, php-gnupg, php,
pkgconf, polarssl, poppler, popt, postgresql, powerpc-utils,
pppd, prboom, procps-ng, proftpd, psplash, ptpd2,
python-{cheetah,coherence,django,markdown,netifaces,pam,six},
python-tornado, python-twisted, python-zope-interface, python,
python3, qemu, qt, qt5, qt5base, qt5multimedia,
qt5xmlpatterns, qt5cinex, quagga, qwt, radvd, readline,
rng-tools, rpcbind, rpi-firmware, rpi-userland, rsync,
rsyslog, rtai, rtmpdump, ruby, sam-ba, samba, samba4,
sane-backends, sconeserver, shairport-sync, sigrok-cli, slang,
smcroute, snmppp, socat, socketcand, sofia-sip, sox,
spawn-fcgi, speex, sqlcipher, sqlite, squid, strace,
strongswan, stunnel, sudo, sunxi-boards, swig, sysstat,
systemd, tcpdump, tftpd, thrift, thttpd, ti-gfx, ti-utils,
tiff, tinyalsa, tn5250, transmission, trinity, tslib,
tvheadend, tzdata, uboot-tools, uclibc, ulogd, usb_modeswitch,
usbutils, ustr, util-linux, vala, valgrind, vlc, wayland,
webp, weston, wget, which, whois, wireless-regdb,
wireless_tools, wireshark, wpa_supplicant, wvstreams,
xapp_{bdftopcf,bitmap,fonttosfnt,fslsfonts},
xapp_{fstobdf,iceauth,mkfontscale,oclock,rgb,sessreg,setxkbmap},
xapp_{showfont,smproxy,twm,x11perf,xcalc,xclipboard,xcmsdb},
xapp_{xdbedizzy,xditview,xdpyinfo,xdriinfo,xedit,xev,xeyes},
xapp_{xf86dga,xfsinfo,xgamma,xgc,xhost,xinit,xinput,xkbcomp},
xapp_{xkbevd,xkbprint,xlsatoms,xlsfonts,xmag,xman,xmh,xmodmap},
xapp_xmore, xcb-util-image, xcb-util-keysyms,
xdata_xcursor-themes,
xdriver_xf86-input-{evdev,keyboard,synaptics,void},
xdriver_xf86-video-{ati,cirrus,geode,mach64,mga,neomagic},
xdriver_xf86-video-{r128,savage,siliconmotion,sis,tdfx},
xdriver_xf86-video-{trident,vmware,voodoo}, xenomai,
xfont_font-util, xkeyboard-config,
xlib_lib{ICE,X11,Xdmcp,Xfont,Xpm,XvMC},
xlib_lib{Xxf86vm,xshmfence,xtrans}, xproto_randrproto,
xproto_xproto, xserver_xorg-server, x11vnc, x264, xerces,
xorriso, xterm, xz, yaml-cpp, zeromq, zic, zmqpp
New packages: apache, autoconf-archive, batctl,
bitstream-vera, bullet, cc-tool, doxygen, drbd-utils,
dvdrw-tools, gnuradio, gst1-imx, hans, hwloc, ijs,
imx-usb-loader, inconsolata, iodine, iotop, ipmiutil, jsoncpp,
leveldb, libdcadec, libdri2, libfreeimage, libftdi1,
libsidplay2, lirc-tools, lua-periphery, mc, mesa3d-headers,
mosquitto, nvidia-driver, nvidia-tegra23{,-binaries,-codecs},
openjpeg, opusfile, perl-crypt-openssl-{random,rsa},
perl-db-file, perl-digest-{hmac,sha1},
perl-encode-{detect,locale}, perl-file-{listing,util},
perl-html-{parser,tagset}, perl-http-cookies,
perl-http-{daemon,date,message,negotiate}, perl-io-html,
perl-libwww-perl, perl-lwp-mediatypes, perl-mail-dkim,
perl-mailtools, perl-mime-base64, perl-net-{dns,http},
perl-netaddr-ip, perl-time-hires, perl-timedate, perl-uri,
perl-www-robotrules, powertop, pulseview,
python-{cherrypy,lxml,mako,pyqt,pyxml,sip,spidev,ws4py}, qpdf,
qt-webkit-kiosk, sl, softether, sysdig, tinyxml2, tor, tovid,
unixodbc, wf111, wine, libepoxy, xapp_xcompmgr,
xapp_xfindproxy, xcb-util-cursor, xcb-util-renderutil,
xdriver_xf86-input-libinput, xdriver_xf86-video-imx{,-viv},
xproto_xproxymanagementprotocol
Removed packages: gtk2-theme-hicolor
Issues resolved (http://bugs.uclibc.org):
#7478: Multiple chosen python modules are not built due to...
#7508: Use of BR2_EXTERNAL and dependencies to existing packages
#7676: Package procps-ng installs binaries to nonsensical folder
#7724: Startx is not installed in the target
#7760: botan: wrong prefix in botan-1.10.pc
#7826: Building of cdparanoia
#7844: Lua with hard-float on MIPS by buildroot doesn't work
#7874: X.org configure error
#7941: glibc-2.20 fails to build for sparc-buildroot-linux-gnu
#7951: gcc 4.9.2 fails to build for sparc-buildroot-linux-gnu
#7961: Qt5 fails to build for xtensa-buildroot-linux-uclibc
#7976: mkuser script fails with: user already exists with...
#8011: When building only busybox and strace, strace fails...
#8016: collectd fails to build, network.c:171:19: error:...
#8041: error on building libcurl7.42.0
2015.02, Released March 1st, 2015
Minor fixes.
Updated/fixed packages: civetweb, ding-libs,
directfb-examples, glibc, gnupg, gnupg2, gpm,
gst-plugins-good, gst1-plugins-good, freetype, libao, libevas,
libevent, libfribidi, libgcrypt, libgtk2, libshout, libsrtp,
libtheora, libupnpp, libxmlrpc, linux, make, opus, pinentry,
rpi-firmware, shared-mime-info, vlc, vorbis-tools,
xcb-util-keysyms
Removed packages: libgc
2015.02-rc3, Released February 24th, 2015
Minor fixes.
Cmake and rebar (erlang) infrastructure fixes.
Updated/fixed packages: bind, btrfs-progs, busybox, e2fsprogs,
evtest, ffmpeg, fltk, gnutls, i2c-tools, imagemagick, libxcb,
make, mjpg-streamer, netsnmp, opentyrian, php, polarssl,
qt5base, samba, samba4, sudo, util-linux, xserver_xorg-server
2015.02-rc2, Released February 15th, 2015
Minor fixes.
raspberrypi: fix kernel sha1 for DT variant.
Updated/fixed packages: dbus, dvdauthor, git, libsemanage,
libsepol, libssh2, mplayer, ntp, openvmtools, python3,
qt5base, qt5connectivity, xserver_xorg-server
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
Fixes all over the tree and new features.
Static/shared library handling reworked. This is now a
tristate (shared only / shared and static / static
only). Default is now shared only to speed up the
build. BR2_PREFER_STATIC_LIB is now called BR2_STATIC_LIBS.
The toolchain (internal and external) will now warn when an
unsafe library or header path is used (such as /usr/include or
/usr/lib). If BR2_COMPILER_PARANOID_UNSAFE_PATH is enabled
under build options this instead becomes an error.
A installation path issue with the internal musl toolchain
support has been fixed so it is now possible to reuse it as an
external toolchain.
Architectures: Freescale E5500 and E6500 PowerPC support
added, deprecated MIPS 1/2/3/4 support removed.
New defconfigs: Freescale p2020ds, MIPS creator CI20,
Raspberrypi with DT, UDOO Quad.
'make <foo>_defconfig' now saves the path to the defconfig in
the .config, so a 'make savedefconfig' automatically updates
it.
Infrastructure for packages using the Erland rebar tool has
been added.
Hashes for a large number of packages have been added. Hashes
are now checked for both target and host packages.
The system menu now has an option to automatically configure a
network interface through DHCP at bootup.
The default filesystem skeleton now uses a separate tmpfs for
/run instead of a symlink to /tmp/ for security reasons / to
protect against conflicts with user generated temporary files.
BR2_EXTERNAL is now exported to post-build and post-image
scripts.
New packages: bdwgc, benejson, blktrace, bootstrap, cgic,
ding-libs, dvdauthor, ejabberd, erlang-goldrush, erlang-lager,
erlang-p1-cache-tab, erlang-p1-iconv, erlang-p1-sip,
erlang-p1-stringprep, erlang-p1-stun, erlang-p1-tls,
erlang-p1-utils, erlang-p1-xml, erlang-p1-yaml,
erlang-p1-zlib, exiv2, freeradius-client, gengetopt, glmark2,
gpu-amd-bin-mx51, guile, host-qemu, ifupdown, iperf3,
janus-gateway, kodi, kodi-audioencoder-flac,
kodi-audioencoder-lame, kodi-audioencoder-vorbis,
kodi-audioencoder-wav, libcli, libiio, liblinear, libnice,
libselinux, libsemanage, libserialport, libsigro,
libsigrokdecode, libsrtp, liburiparser, libvips, libwebsock,
libz160, libzip, lightning, mcelog, memtest86, mjpegtools,
mjpg-streamer, mke2img, mpd-mpc, netsurf-buildsystem, odhcp6c,
openldap, python-alsaaudio, python-certifi, python-cheetah,
python-coherence, python-django, python-docopt, python-enum,
python-enum34, python-flask, python-gobject, python-httplib2,
python-ipaddr, python-itsdangerous, python-jinja,
python-markdown, python-markupsafe, python-networkmanager,
python-pam, python-psutil, python-pyftpdlib, python-pyinotify,
python-pysendfile, python-pyxb, python-requests, python-six,
python-twisted, python-webpy, python-werkzeug,
python-zope-interface, qt5cinex, sigrok-cli, sofia-sip,
start-stop-daemon, szip, triggerhappy, ustr, vnstat, xorriso,
xtables-addons
Removed packages (target): bison, distcc, gob2, m4
Issues resolved (http://bugs.uclibc.org):
#7556: make interactive CLI optional for nftables
#7730: Error while connecting Qt Cretaor to device
#7766: logrotate default gzip path is usually wrong
#7790: Invalid ext4 image generated by Buildroot
2014.11, Released December 1st, 2014
Minor fixes.
Infrastructure: LD_LIBRARY_PATH handling tweak to ensure
current working directory isn't searched.
Updated/fixed packages: gd, gdb, libwebsockets, luajit, mono,
parted, shairport-sync, util-linux, xapp_bdftopcf,
xserver_xorg-server
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2014.11-rc3, Released November 28th, 2014
Fixes all over the tree.
System: File permissions of /etc/random-seed made more
restrictive.
Toolchain: Various fixes related to locale handling, a fix for
building the toolchain wrapper on MIPS.
Updated/fixed packages: bind, binutils. botan, btrfsprogs,
clamav, czmq, dhcp, dillo, dovecot, erlang, flac, gd, glibc,
gptfdisk, gst1-validate, heirloom-mailx, lame, libksba,
libllcp, libnspr, libpng, libshairplay, libtirpc, linux,
linux-headers, mpdecimal, mpg123, network-manager, nfstables,
nfs-utils, openssl, pcituils, qt, radvd, rtai, sqlcipher,
sstrip, tcpdump, uclibc, uemacs, ushare, wayland, weston,
xl2tp, xserver_xorg-server
Issues resolved (http://bugs.uclibc.org):
#7670: Fails to build mpc-1.0.2 on latest Cygwin
Fixes all over the tree.
Inittab tweaks for shutdown handling (busybox and sysvinit).
Updated/fixed packages: aircrack-ng, botan, canfestival,
clamav, coreutils, czmq, dbus, dovecot, duma, e2fsprogs,
erlang, gcc, iputils, libcap, libgcrypt, libmemcached,
libssh2, libunwind, libv4l, linux-headers, mesa3d-demos, mutt,
mysql, ndisc6, nodejs, omniorb, perl-cross, php,
python-tornado, python3, qemu, qt5base, qt5webkit, rpm,
rt-tests, ruby, schifra, sdl_sound, shairport-sync, sysvinit,
tstools, tzdata, wireshark, x264
Issues resolved (http://bugs.uclibc.org):
#7646: strftime on datetime not works on python3
Fixes all over the tree and new features.
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
Toolchains: Use -mcpu / -march instead of -mtune. Support
additional ARC and sparc variants. Updated Code sourcery
and Linaro external toolchains.
Defconfigs: Freescale iMX6DL SabreSD, Minnowboard MAX, QEMU
powerpc64 pseries added and a number of updates to the
existing configurations.
Infrastructure: Buildroot is now less noisy when built with
the silent option (make -s).
A number of package infrastructure variables have been renamed
from *_OPT to *_OPTS for constency. Buildroot will complain if
the old names are used to assist in updating out of tree
packages.
Fixes for host systems where bash isn't located in /bin, and
older systems not supporting mktemp --tmpdir.
Various cleanups of users/groups in the default skeleton.
There is now an option to choose what shell /bin/sh points to.
Documentation: Various updates to the user manual. The
asciidoc documentation handling has now been extended so it
can be used by (BR2_EXTERNAL) packages.
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
Updated/fixed packages: acl, acpid, agentpp, aircrack-ng,
alsa-lib, alsamixergui, alsa-utils, apitrace, apr, apr-util,
argus, arptables, at, atftp, atk, attr, audiofile, aumix,
automake, autossh, avahi, avrdude, axel, bandwidthd, bash,
bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
bluez_utils, bmon, boost, bootutils, bridge-utils,
btrfs-progs, busybox, bwm-ng, bzip2, ca-certificates, cairo,
ccache, ccid, ccrypt, cdrkit, cegui06, celt051, chrony,
cifs-utils, civetweb, cjson, clapack, classpath, cloog, cmake,
collectd, connman, copas, coreutils, coxpcall, cppcms, cppdb,
cppzmq, cramfs, crda, cryptsetup, ctorrent, cups, cvs, cwiid,
czmq, dash, dbus, dbus-cpp, dbus-glib, dbus-python, dejavu,
dhcp, dhcpcd, dhcpdump, dialog, dillo, directfb, distcc,
dmalloc, dmidecode, dmraid, dnsmasq, doc-asciidoc.mk,
dosfstools, dropbear, dropwatch, dstat, dtach, dtc, dvbsnoop,
e2fsprogs, ecryptfs-utils, ed, efl, eigen, elf2flt, elfutils,
enlightenment, enscript, erlang, espeak, ethtool, eudev,
evemu, evtest, exfat, exfat-utils, exim, expat, expect,
explorercanvas, faifa, fakeroot, fan-ctrl, fbdump,
fb-test-app, fetchmail, ffmpeg, file, filemq, findutils, flac,
flann, flickcurl, flite, fltk, fluxbox, fmc, fmlib,
fontconfig, foomatic-filters, freerdp, freescale-imx,
freetype, ftop, fxload, gamin, gcc, gd, gdb, gdk-pixbuf,
genimage, genpart, genromfs, geoip, gettext, giblib, git,
glibc, glib-networking, gmp, gmpc, gnu-efi, gnupg, gnupg2,
gnuplot, gnutls, google-breakpad, gpm, gpsd, gptfdisk,
gpu-viv-bin-mx6q, grantlee, grep, gsl, gst1-libav,
gst1-plugins-{bad,base,good,ugly}, gst-ffmpeg,
gst-fsl-plugins, gst-omx, gst-plugins-{bad,base,good,ugly},
gst-plugin-x170, gstreamer, gstreamer1, gtest, gtk2-engines,
gutenprint, gvfs, harfbuzz, haserl, haveged, hdparm, heimdal,
heirloom-mailx, hiawatha, hostapd, hplip, htop, httping,
hwdata, i2c-tools, icu, ifplugd, igh-ethercat, imagemagick,
imlib2, imx-lib, imx-vpu, inadyn, inotify-tools, input-tools,
intltool, iperf, iproute2, iprutils, ipsec-tools, ipset,
iptables, iputils, iw, jamvm, jansson, jasper, jimtcl, joe,
jpeg-turbo, jq, jquery-keyboard, jquery-mobile, jquery-ui,
jquery-ui-themes, jquery-validation, jsmin, json-c,
json-javascript, kbd, kexec, kexec-lite, keyutils, kismet,
kmod, knock, ktap, lame, lbase64, lbreakout2, lcdproc, lcms2,
lesstif, lftp, libaio, libao, libarchive, libargtable2,
libass, libassuan, libatasmart, libbluray, libbsd, libcap,
libcap-ng, libcdio, libcec, libcgicc, libcgroup, libcofi,
libconfig, libconfuse, libcurl, libdaemon, libdnet, libdrm,
libdvdnav, libecore, libedbus, libedit, libedje, libeet,
libelementary, libelf, libenca, libethumb, libevas,
libevas-generic-loaders, libevent, libexif, libeXosip2,
libffi, libftdi, libfuse, libgail, libgcrypt, libgeotiff,
libglade, libglib2, libgpgme, libgtk2, libhid, libidn,
libinput, libiscsi, libjson, libksba, liblockfile,
liblog4c-localtime, liblogging, libmad, libmatroska, libmbim,
libmemcached, libmicrohttpd, libmpdclient, libmpeg2, libndp,
libnfc, libnfs, libnftnl, libnl, libnspr, libnss, liboauth,
libogg, liboping, libosip2, libpcap, libpciaccess, libpfm4,
libplayer, libplist, libpng, libpthsem, libqmi, libqrencode,
libraw, libreplaygain, libroxml, librsvg, librtlsdr,
libsamplerate, libseccomp, libsecret, libshairplay, libsoc,
libsoup, libsoxr, libssh2, libstrophe, libsvg, libsvg-cairo,
libtasn1, libtheora, libtirpc, libtorrent, libubox, libuci,
libungif, liburcu, libusb, libuv, libv4l, libva,
libva-intel-driver, libvncserver, libvorbis, libvpx,
libwebsockets, libxcb, libxml2, libxml-parser-perl, libxmlrpc,
libxslt, lighttpd, linenoise, linknx, links, linphone,
linux-firmware, linux-fusion, linux-headers, linux-pam,
linux-zigbee, lite, live555, ljlinenoise, lmbench, lm-sensors,
localedef, lockdev, lockfile-progs, log4cxx, lpty, lrandom,
lrzsz, lshw, lsof, lsqlite3, ltp-testsuite, ltrace, ltris,
lttng-babeltrace, lttng-libust, lttng-modules, lttng-tools,
lua, luabitop, lua-coat, lua-coatpersistent, lua-csnappy,
lua-ev, luajit, luajson, lualogging, lua-messagepack,
lua-msgpack-native, luaposix, luarocks, luasec, luasocket,
luasql-sqlite3, lua-testmore, lunit, lvm2, lxc, lz4, lzlib,
lzma, m4, madplay, make, makedevs, Makefile.in,
matchbox-common, matchbox-desktop, matchbox-fakekey,
matchbox-keyboard, matchbox-lib, matchbox-panel,
matchbox-startup-monitor, matchbox-wm, mcrypt, mdadm,
media-ctl, mediastreamer, memcached, memstat, memtester,
mesa3d, metacity, midori, mii-diag, minidlna, mmc-utils,
modem-manager, mongoose, mongrel2, monit, mpc, mpd, mpdecimal,
mpfr, mpg123, mplayer, mrouted, msmtp, mtd, mtools, mtr,
musepack, musl, mutt, mxml, mysql, nano, nanocom, nbd, ncftp,
ncurses, ndisc6, ne10, neard, neon, netatalk, netperf,
netsnmp, nettle, net-tools, network-manager, newt, nfs-utils,
ngrep, nmap, nodejs, nss-mdns, ntfs-3g, ntp, numactl, nut,
nuttcp, ofono, ola, omap-u-boot-utils, omniorb,
on2-8170-modules, opencore-amr, opencv, openntpd, openobex,
openocd, openpowerlink, openssh, openssl, openswan,
opentyrian, opentyrian-data, openvpn, opkg, oprofile, opus,
opus-tools, orbit, orc, ortp, p11-kit, pango, parted,
pciutils, pcmanfm, pcre, pcsc-lite, perf, perl, perl-gd,
perl-gdgraph, perl-io-socket-ssl, perl-json-tiny,
perl-module-build, perl-mojolicious, perl-net-ssleay,
perl-path-tiny, perl-xml-libxml, perl-xml-parser, php,
php-geoip, php-gnupg, php-imagick, php-memcached, php-ssh2,
php-yaml, php-zmq, picocom, pifmrds, pinentry, pixman,
pkg-autotools.mk, pkg-cmake.mk, pkg-download.mk,
pkg-generic.mk, pkg-kconfig.mk, pkg-luarocks.mk, pkg-perl.mk,
pkg-python.mk, pkg-utils.mk, poco, polarssl, polkit, poppler,
popt, portaudio, portmap, postgresql, powerpc-utils, pppd,
pptp-linux, prboom, procps-ng, proftpd, protobuf, protobuf-c,
psmisc, ptpd2, pulseaudio, pv, pwgen, python, python3,
python-dialog, python-ipy, python-keyring, python-mad,
python-netifaces, python-numpy, python-protobuf, python-pyasn,
python-pyparsing, python-pyro, python-pyusb, python-serial,
python-setuptools, qdecoder, qemu, qextserialport, qjson, qt,
qt5, qt5base, qt5connectivity, qt5declarative, qt5enginio,
qt5graphicaleffects, qt5imageformats, qt5multimedia,
qt5quick1, qt5quickcontrols, qt5script, qt5sensors,
qt5serialport, qt5svg, qt5webkit, qt5webkit-examples,
qt5websockets, qt5x11extras, qt5xmlpatterns, qtuio, quagga,
quota, qwt, radvd, rapidjson, rdesktop, redis, rings, rpcbind,
rpi-firmware, rpi-userland, rpm, rp-pppoe, rrdtool,
rsh-redone, rsync, rsyslog, rtai, rtmpdump, rt-tests, rubix,
ruby, samba, sam-ba, samba4, sane-backends, schifra,
sconeserver, scons, screen, sdl, sdl_gfx, sdl_image,
sdl_mixer, sdl_net, sdl_sound, sdl_ttf, sed, ser2net,
setserial, sg3_utils, shared-mime-info, simicsfs, sispmctl,
slang, slirp, smcroute, smstools3, snmppp,
snowball-hdmiservice, socat, socketcand, sox, spawn-fcgi,
speex, spice, spice-protocol, sqlcipher, sqlite, squashfs,
squid, sredird, startup-notification, strace, stress,
strongswan, stunnel, subversion, sudo, sunxi-boards,
sunxi-cedarx, swig, sylpheed, synergy, sysklogd, sysstat,
systemd, sysvinit, taglib, tar, tcl, tcllib, tcpdump,
tcpreplay, texinfo, tftpd, thrift, thttpd, tiff, ti-utils,
tn5250, torsmo, trace-cmd, transmission, tslib, tstools,
tvheadend, twolame, tz, uboot-tools, uclibc, udisks, ulogd,
upmpdcli, upx, urg, usb_modeswitch, usbmount, usbredir,
usbutils, util-linux, valgrind, vde2, vim, vlc, vo-aacenc,
vorbis-tools, vpnc, vsftpd, vtun, wayland, webkit, webp,
webrtc-audio-processing, weston, wget, whois, wireless-regdb,
wireshark, wpa_supplicant, wvstreams, x11r7, x11vnc,
xapp_xcalc, xapp_xdm, xapp_xdpyinfo, xapp_xf86dga, xapp_xfs,
xapp_xinit, xapp_xkbevd, xapp_xmh, xapp_xrandr, xapp_xsm,
xbmc, xbmc-pvr-addons, xcb-proto, xcursor-transparent-theme,
xdriver_xf86-input-mouse, xdriver_xf86-video-{ast,intel},
xdriver_xf86-video-vmware, xenomai, xerces,
xfont_font-adobe-{100,75}dpi,
xfont_font-adobe-utopia-{100dpi,75dpi,type1},
xfont_font-alias, xfont_font-arabic-misc,
xfont_font-bh-100dpi, xfont_font-bh-75dpi,
xfont_font-bh-lucidatypewriter-100dpi,
xfont_font-bh-lucidatypewriter-75dpi, xfont_font-bh-ttf,
xfont_font-bh-type1, xfont_font-bitstream-100dpi,
xfont_font-bitstream-75dpi, xfont_font-bitstream-type1,
xfont_font-cronyx-cyrillic, xfont_font-cursor-misc,
xfont_font-daewoo-misc, xfont_font-dec-misc,
xfont_font-ibm-type1, xfont_font-isas-misc,
xfont_font-jis-misc, xfont_font-micro-misc,
xfont_font-misc-cyrillic, xfont_font-misc-ethiopic,
xfont_font-misc-meltho, xfont_font-misc-misc,
xfont_font-mutt-misc, xfont_font-schumacher-misc,
xfont_font-screen-cyrillic, xfont_font-sony-misc,
xfont_font-sun-misc, xfont_font-winitzki-cyrillic,
xfont_font-xfree86-type1, xfsprogs, xinetd, xkeyboard-config,
xlib_libdmx, xlib_libFS, xlib_libpciaccess, xlib_libSM,
xlib_libX11, xlib_libXaw, xlib_libXext, xlib_libXfont,
xlib_libXi, xlib_libXinerama, xlib_libXrandr, xlib_libXrender,
xlib_libXres, xlib_libXScrnSaver, xlib_libXt, xlib_libXv,
xlib_libXvMC, xlib_libXxf86dga, xlib_libXxf86vm, xmlstarlet,
xproto_xcmiscproto, xproto_xextproto, xscreensaver,
xserver_xorg-server, xterm, xz, zeromq, zlib, zlog, zmqpp,
znc, zsh, zxing
New packages: adwaita-icon-theme, am335x-pru-package,
bcache-tools, biosdevname, botan, canfestival, clamav,
cppunit, dos2unix, dovecot, dovecot-pigeonhole, getent, glm,
gst1-validate, hicolor-icon-theme, ipmitool, leafnode2,
libdvbcsa, libgtk3, libphidget, libshout, libunistring,
libupnpp, mesa3d-demos, modplugtools, mono, monolite, mp4v2,
netcat-openbsd, nginx, odhcploc, openvmtools,
phidgetwebservice, pps-tools, pure-ftpd,
python-configshell-fb, python-rtslib-fb, python-urwid, qlibc,
qt5location, shairport-sync, spidev_test, targetcli-fb,
tinyalsa, trinity, x264, yaml-cpp, ympd
Removed packages: libelf
Issues resolved (http://bugs.uclibc.org):
#261: New package: wxWidgets
#325: New package: ratpoison
#405: New package: OpenVZ tools
#1309: New package: rdiff-backup
#3427: New package: nginx
#3655: New package: libav
#3991: New Package: open-vm-tools (Vmware Tools)
#6878: dmraid: disabled on ARC
#6950: Full unicode support in ncurses
#7010: jamvm builds and runs fine under mips (be)
#7088: elfutils on Blackfin doesn't build
#7142: ecryptfs needs getent to run
#7280: CMake toolchain file uses the FORCE attribute on CMAKE_CXX_FLAGS
#7346: [2014.08rc3] vim-8ae50e3ef8bf.tar.gz can not be downloaded, ...
#7352: [2014.08-rc3] diffutils-3.3 failed on building
#7358: rpi-userland: linking with bcm_host doesn't give vc_dispmanx_*
#7364: monit builds a static application, even though BR2_PREFER_...
#7370: ngrep - requires --with-pcap-includes fully defined to find...
#7442: rootfs remount does not work as expected with sysvinit
#7448: Having export MACHINE="something" breaks glibc build on IMX6...
#7568: musl buildroot-toolchain does not put libgcc_s.so.1 into place
#7574: quota-4.01 fails to build statically
2014.08, Released September 1st, 2014
Minor manual fixes/additions.
Updated/fixed packages: btrfs-progs, cmake, cppcms, exim,
lftp, libdaemon, libev, libgpgme, libiqrf, libnl, libplist,
libroxml, libwebsockets, mesa3d, mpd, mtdev2tuio, musepack,
perl-gd, php-geoip, php-gnupg, php-imagick, php-memcached,
php-ssh2, php-yaml, php-zmq, polarssl, ruby, systemd, taglib,
uboot-tools, upmpdcli, webkit, xapp_xfs, xapp_luit,
xscreensaver, yajl
Issues resolved (http://bugs.uclibc.org):
#7346: vim-8ae50e3ef8bf.tar.gz can not be downloaded, 404 not found
2014.08-rc3, Released August 26th, 2014
Minor fixes.
User manual update / restructuring.
Updated/fixed packages: cairo, ecryptfs-utils, gettext,
gstreamer, gstreamer1, gutenprint, icu, imagemagick, jack2,
lbreakout2, libevas-generic-loaders, libftdi, libinput,
libtorrent, ltris, msgpack, ntp, php, procps-ng, pulseaudio,
thrift, tvheadend, usb_modeswitch, xmlstarlet,
Issues resolved (http://bugs.uclibc.org):
#7136: ecryptfs-utils needs gettext to run when glibc/eglibc...
#7322: libgomp dependency issue with imagemagick
#7328: Git dl of versions in x/y broken
Fixes all over the tree.
User manual restructured / reworked.
Toolchain: Fix for C++ exceptions / pthread_exit() on
uClibc/glibc, C++-11 features with uClibc.
Updated/fixed packages: bandwidthd, bluez5_utils, empty,
espeak, fbv, ffmpeg, gd, gnupg2, gst1-plugin-good, iftop,
infozip, libcuefile, libeml, libnftl, localedef, ltrace,
matchbox, mpd, network-manager, nftables, ngrep, nut, openssl,
oprofile, perl, perl-net-ssleay, postgresql, pppd, procps-ng,
qt, subversion, synergy, systemd, tar, tftpd, webkit,
xapp_rstart, xbmc, xbmc-pvr-addons
Issues resolved (http://bugs.uclibc.org):
#7124: Use BR toolchain externally results a non-bootable...
#7208: Glibc C++ aplications crash if they use exceptions
#7250: Cannot build with -std=c++11
#7262: Generating locale en_US.UTF-8 fails on 64bit fedora..
#7286: systemd 215 doesn't build
Fixes all over the tree and new features.
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
Architecture: Powerpc64 BE/LE added, AVR32 deprecated.
Improved altivec / SPE /atomic instructions
handling. Additional PowerPC CPU variants added.
Defconfigs: Atmel SAMA5D3, Congatec QMX6, Lego ev3, TS-5x00,
qemu-system-xtensa, qemu-aarch64-virt added. A number of
tweaks to existing ones. lpc32xx defconfigs removed.
Toolchain: Microblaze support for internal musl toolchain.
Default to GCC 4.8 for internal toolchain, remove deprecated
4.3 and 4.6 versions.
External CodeSourcery / Linaro toolchain updates, option to
copy gconv libraries for external toolchains.
Infrastructure: graph-depends: misc fixes, transitive
dependencies are not drawn by default. Download handling is
now done using helper scripts. Integrity of downloads can now
be verified using sha* hashes. Subversion download now uses
peg revisions for robustness.
Legal-info: License info of local or overridden packages are
saved as well. Toolchain packages are also taken into account.
autotools: Static linking with libtool / v1.5 improvements.
Gettextize support, similar to autoreconf.
kconfig package infrastructure added.
Misc: Version selection for busybox dropped.
Updated/fixed packages: aespipe, aiccu, alsa-lib, alsa-utils,
alsamixergui, argus, armadillo, at, atftp, atk, avahi,
avrdude, axel, b43-firmware, b43-fwcutter, bandwidthd, bc,
bcusdk, beecrypt, bind, binutils, blackbox, bluez5_utils,
bmon, boa, bonnie, bootutils, bsdiff, btrfs-progs, bustle,
busybox, bwm-ng, bzip2, ca-certificates, cairo, can-utils,
ccache, ccrypt, chrony, cifs-utils, classpath, cloog, cmake,
collectd, connman, coreutils, cosmo, cppcms, cramfs, crda,
cryptodev-linux, cryptodev, ctorrent, cvs, dbus-cpp,
dbus-glib, dbus-python, dbus, dcron, dejavu, devmem2,
dfu-util, dhcp, dhcpcd, dhcpdump, dhrystone, dialog, dillo,
distcc, dmidecode, dmraid, dnsmasq, doom-wad, dropbear,
dropwatch, dsp-tools, dtv-scan-tables, dvb-apps, e2fsprogs,
e2tools, eeprog, eigen, elf2flt, elftosb, enlightenment,
enscript, espeak, ethtool, eudev, evemu, exim, expedite,
explorercanvas, ezxml, faifa, fan-ctrl, fconfig, feh,
fetchmail, ffmpeg, fftw, file, fio, fis, flann, flashrom,