summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* package/dvdauthor: add optional support for libfribidiBernd Kuhls2016-02-211-0/+4
| | | | | | | | | | | | | | | | | | | | When libfribidi was compiled before, dvdauthor will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/bin/spumux | grep NEEDED | sort 0x0000000000000001 (NEEDED) Shared library: [libc.so.1] 0x0000000000000001 (NEEDED) Shared library: [libdl.so.1] 0x0000000000000001 (NEEDED) Shared library: [libexpat.so.1] 0x0000000000000001 (NEEDED) Shared library: [libfontconfig.so.1] 0x0000000000000001 (NEEDED) Shared library: [libfreetype.so.6] 0x0000000000000001 (NEEDED) Shared library: [libfribidi.so.0] [...] The build system offers no option to en-/disable libfribidi support: https://github.com/ldo/dvdauthor/blob/master/configure.ac#L83 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/libfm: add optional support for libexifBernd Kuhls2016-02-211-0/+7
| | | | | | | | | | | | | | When libexif was compiled before, libfm will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/lib/libfm.so.4.0.3 | grep NEEDED | sort 0x0000000000000001 (NEEDED) Shared library: [libc.so.1] 0x0000000000000001 (NEEDED) Shared library: [libdl.so.1] 0x0000000000000001 (NEEDED) Shared library: [libexif.so.12] [...] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/imagemagick: add optional support for lcms2Bernd Kuhls2016-02-211-0/+7
| | | | | | | | | | | | | | When lcms2 was compiled before, imagemagick will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/bin/identify | grep NEEDED 0x0000000000000001 (NEEDED) Shared library: [libMagickCore-6.Q16.so.2] 0x0000000000000001 (NEEDED) Shared library: [libMagickWand-6.Q16.so.2] 0x0000000000000001 (NEEDED) Shared library: [liblcms2.so.2] [...] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/cifs-utils: add optional support for keyutilsBernd Kuhls2016-02-211-0/+4
| | | | | | | | | | | | When keyutils was compiled before, cifs-utils will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/bin/cifscreds | grep NEEDED 0x0000000000000001 (NEEDED) Shared library: [libkeyutils.so.1] 0x0000000000000001 (NEEDED) Shared library: [libc.so.1] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/quota: add optional support for e2fsprogsBernd Kuhls2016-02-211-0/+7
| | | | | | | | | | | | | | | | | | | | | | | When e2fsprogs was compiled before, quota will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/sbin/quotacheck | grep NEEDED | sort 0x0000000000000001 (NEEDED) Shared library: [libcom_err.so.2] 0x0000000000000001 (NEEDED) Shared library: [libc.so.1] 0x0000000000000001 (NEEDED) Shared library: [libext2fs.so.2] 0x0000000000000001 (NEEDED) Shared library: [libintl.so.8] Quote from configure log before this patch when e2fsprogs were missing: checking ext2fs/ext2fs.h usability... no checking ext2fs/ext2fs.h presence... no checking for ext2fs/ext2fs.h... no checking for com_err in -lcom_err... no checking for ext2fs_initialize in -lext2fs... no configure: WARNING: Ext2 direct support won't be compiled. Libraries not found. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/e2fsprogs: remove whitespaceBernd Kuhls2016-02-211-1/+0
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/libeXosip2: add optional support for c-aresBernd Kuhls2016-02-211-0/+4
| | | | | | | | | | | | | | | When c-ares was compiled before, libeXosip2 will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/bin/sip_reg | grep NEEDED | sort 0x0000000000000001 (NEEDED) Shared library: [libcares.so.2] [...] The build system offers no option to en-/disable c-ares support: http://git.savannah.gnu.org/cgit/exosip.git/tree/configure.in?h=exosip-3.X.X#n208 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/trace-cmd: add optional support for auditBernd Kuhls2016-02-211-0/+4
| | | | | | | | | | | | | | When audit was compiled before, trace-cmd will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/bin/trace-cmd | grep NEEDED | sort 0x0000000000000001 (NEEDED) Shared library: [ld64-uClibc.so.1] 0x0000000000000001 (NEEDED) Shared library: [libaudit.so.1] 0x0000000000000001 (NEEDED) Shared library: [libc.so.1] 0x0000000000000001 (NEEDED) Shared library: [libdl.so.1] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/kexec: add optional support for xz, bump versionBernd Kuhls2016-02-212-2/+9
| | | | | | | | | | | | | | | | | | | | | When xz was compiled before, kexec will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/sbin/kdump | grep NEEDED 0x0000000000000001 (NEEDED) Shared library: [liblzma.so.5] 0x0000000000000001 (NEEDED) Shared library: [libc.so.1] The version bump to 2.0.11 is needed to fix a configure script issue: line 4712: ac_fn_c_try_link: command not found This issue was fixed by upstream commit http://git.kernel.org/cgit/utils/kernel/kexec/kexec-tools.git/commit/configure.ac?id=58bbd468571b3e80585e5d68e97c8d67c8ed583b, which was merged after 2.0.9 was released. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> [Thomas: bump version instead of doing a "hack" to force the use of the lzma library.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/pulseaudio: be explicit about udev usageBernd Kuhls2016-02-211-1/+7
| | | | | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> [Thomas: udev was already handled as an optional dependency, Bernd's patch only made it explicit by using --enable-libudev/--disable-libudev.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/jack2: add optional support for readlineBernd Kuhls2016-02-211-0/+4
| | | | | | | | | | | | | | | | | When readline was compiled before, jack2 will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/bin/jack_transport | grep NEEDED 0x0000000000000001 (NEEDED) Shared library: [libjack.so.0] 0x0000000000000001 (NEEDED) Shared library: [libpthread.so.1] 0x0000000000000001 (NEEDED) Shared library: [libopus.so.0] 0x0000000000000001 (NEEDED) Shared library: [librt.so.1] 0x0000000000000001 (NEEDED) Shared library: [libdl.so.1] 0x0000000000000001 (NEEDED) Shared library: [libreadline.so.6] 0x0000000000000001 (NEEDED) Shared library: [libc.so.1] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/jack2: add optional support for opusBernd Kuhls2016-02-211-0/+4
| | | | | | | | | | | | | | When opus was compiled before, jack2 will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/bin/jackd | grep NEEDED 0x0000000000000001 (NEEDED) Shared library: [libjackserver.so.0] 0x0000000000000001 (NEEDED) Shared library: [libpthread.so.1] 0x0000000000000001 (NEEDED) Shared library: [libopus.so.0] [...] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/pulseaudio: add optional support for libsoxrBernd Kuhls2016-02-211-0/+7
| | | | | | | | | | | | | | | When libsoxr was compiled before, pulseaudio will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/bin/pulseaudio | grep NEEDED 0x0000000000000001 (NEEDED) Shared library: [libpulsecore-8.0.so] 0x0000000000000001 (NEEDED) Shared library: [libpulse.so.0] 0x0000000000000001 (NEEDED) Shared library: [libspeexdsp.so.1] 0x0000000000000001 (NEEDED) Shared library: [libsoxr.so.0] [...] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/pulseaudio: add optional support for jack2Bernd Kuhls2016-02-211-0/+7
| | | | | | | | | | | | | | | | When jack2 was compiled before, pulseaudio will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/lib/pulse-8.0/modules/module-jack-source.so | grep NEEDED | sort 0x0000000000000001 (NEEDED) Shared library: [libcap.so.2] 0x0000000000000001 (NEEDED) Shared library: [libc.so.1] 0x0000000000000001 (NEEDED) Shared library: [libdl.so.1] 0x0000000000000001 (NEEDED) Shared library: [libgdbm.so.4] 0x0000000000000001 (NEEDED) Shared library: [libjack.so.0] [...] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/pulseaudio: add optional support for gdbmBernd Kuhls2016-02-211-0/+6
| | | | | | | | | | | | | | | When gdbm was compiled before, pulseaudio will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/bin/pacat | grep NEEDED | sort 0x0000000000000001 (NEEDED) Shared library: [libcap.so.2] 0x0000000000000001 (NEEDED) Shared library: [libc.so.1] 0x0000000000000001 (NEEDED) Shared library: [libdl.so.1] 0x0000000000000001 (NEEDED) Shared library: [libgdbm.so.4] [...] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/zsh: add optional support for pcreBernd Kuhls2016-02-211-0/+7
| | | | | | | | | | | | When pcre was compiled before, zsh will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/bin/zsh | grep NEEDED 0x0000000000000001 (NEEDED) Shared library: [libgdbm.so.4] 0x0000000000000001 (NEEDED) Shared library: [libpcre.so.1] [...] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/zsh: add optional support for libcapBernd Kuhls2016-02-211-0/+7
| | | | | | | | | | | | When libcap was compiled before, zsh will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/bin/zsh | grep NEEDED 0x0000000000000001 (NEEDED) Shared library: [libgdbm.so.4] 0x0000000000000001 (NEEDED) Shared library: [libcap.so.2] [...] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/zsh: add optional support for gdbmBernd Kuhls2016-02-211-0/+7
| | | | | | | | | | | When gdbm was compiled before, zsh will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/bin/zsh | grep NEEDED 0x0000000000000001 (NEEDED) Shared library: [libgdbm.so.4] [...] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/openipmi: add optional support for gdbmBernd Kuhls2016-02-211-0/+4
| | | | | | | | | | | | | | | | | When gdbm was compiled before, openipmi will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/bin/ipmi_sim | grep NEEDED | sort 0x0000000000000001 (NEEDED) Shared library: [libc.so.1] 0x0000000000000001 (NEEDED) Shared library: [libdl.so.1] 0x0000000000000001 (NEEDED) Shared library: [libgdbm.so.4] [...] The build system offers no option to en-/disable gdbm support, check configure.ac, line 309+ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/iproute2: add optional support for elfutilsBernd Kuhls2016-02-211-0/+4
| | | | | | | | | | | | | | | When elfutils was compiled before, iproute2 will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/sbin/tc | grep NEEDED 0x0000000000000001 (NEEDED) Shared library: [libelf.so.1] [...] The build system offers no option to en-/disable elfutils support: http://git.kernel.org/cgit/linux/kernel/git/shemminger/iproute2.git/tree/configure#n252 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/pure-ftpd: add optional support for elfutilsBernd Kuhls2016-02-211-0/+4
| | | | | | | | | | | | | | | | When elfutils was compiled before, pure-ftpd will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/sbin/pure-ftpd | grep NEEDED 0x0000000000000001 (NEEDED) Shared library: [libelf.so.1] 0x0000000000000001 (NEEDED) Shared library: [libcrypt.so.1] 0x0000000000000001 (NEEDED) Shared library: [libc.so.1] The build system offers no option to en-/disable elfutils support, check m4/getloadavg.m4, line 44. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/libglib2: add optional support for elfutilsBernd Kuhls2016-02-211-0/+7
| | | | | | | | | | | | | | | | | When elfutils was compiled before, libglib2 will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/bin/gresource | grep NEEDED 0x0000000000000001 (NEEDED) Shared library: [libgio-2.0.so.0] 0x0000000000000001 (NEEDED) Shared library: [libgobject-2.0.so.0] 0x0000000000000001 (NEEDED) Shared library: [libgmodule-2.0.so.0] 0x0000000000000001 (NEEDED) Shared library: [libglib-2.0.so.0] 0x0000000000000001 (NEEDED) Shared library: [libelf.so.1] 0x0000000000000001 (NEEDED) Shared library: [libintl.so.8] 0x0000000000000001 (NEEDED) Shared library: [libc.so.1] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/patch: add optional support for attrBernd Kuhls2016-02-211-0/+7
| | | | | | | | | | | When attr was compiled before, patch will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/bin/patch | grep NEEDED 0x0000000000000001 (NEEDED) Shared library: [libattr.so.1] 0x0000000000000001 (NEEDED) Shared library: [libc.so.1] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/vim: add optional support for aclBernd Kuhls2016-02-211-0/+7
| | | | | | | | | | | When acl was compiled before, vim will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/bin/vim | grep NEEDED | sort 0x0000000000000001 (NEEDED) Shared library: [libacl.so.1] [...] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/vim: add optional support for gpmBernd Kuhls2016-02-211-0/+7
| | | | | | | | | | | | | | | | When gpm was compiled before, vim will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/bin/vim | grep NEEDED | sort 0x0000000000000001 (NEEDED) Shared library: [libacl.so.1] 0x0000000000000001 (NEEDED) Shared library: [libc.so.1] 0x0000000000000001 (NEEDED) Shared library: [libdl.so.1] 0x0000000000000001 (NEEDED) Shared library: [libgpm.so.2] 0x0000000000000001 (NEEDED) Shared library: [libintl.so.8] 0x0000000000000001 (NEEDED) Shared library: [libm.so.1] 0x0000000000000001 (NEEDED) Shared library: [libncurses.so.5] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/xerces: add optional support for icuBernd Kuhls2016-02-211-0/+7
| | | | | | | | | | | | | | | | When icu was compiled before, xerces will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/lib/libxerces-c-3.1.so | grep NEEDED | sort 0x0000000000000001 (NEEDED) Shared library: [libc.so.1] 0x0000000000000001 (NEEDED) Shared library: [libgcc_s.so.1] 0x0000000000000001 (NEEDED) Shared library: [libicudata.so.56] 0x0000000000000001 (NEEDED) Shared library: [libicui18n.so.56] 0x0000000000000001 (NEEDED) Shared library: [libicuuc.so.56] 0x0000000000000001 (NEEDED) Shared library: [libm.so.1] 0x0000000000000001 (NEEDED) Shared library: [libstdc++.so.6] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/lftp: add optional support for expatBernd Kuhls2016-02-211-0/+4
| | | | | | | | | | | | | | | | | | When expat was compiled before, the proto-http module will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/lib/lftp/4.6.4/proto-http.so | grep NEEDED | sort 0x0000000000000001 (NEEDED) Shared library: [libcrypto.so.1.0.0] 0x0000000000000001 (NEEDED) Shared library: [libc.so.1] 0x0000000000000001 (NEEDED) Shared library: [libdl.so.1] 0x0000000000000001 (NEEDED) Shared library: [libexpat.so.1] [...] The build system offers no option to en-/disable expat support: https://github.com/lavv17/lftp/blob/lftp-4.6-stable/configure.ac#L337 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* docs/manual: add info about AGPLv3 licenseYegor Yefremov2016-02-211-0/+3
| | | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/libsoil: add a comment about why we rename the MakefilePeter Korsgaard2016-02-201-0/+4
| | | | | | | | | | Commit 8461906d (package/libsoil: fix build using old versions of patch) added a workaround for older patch versions, but didn't add any comment in the .mk file explaining why this is done. Add a comment explaining why for clarity. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sysklogd: override SKFLAGS with TARGET_CFLAGSRomain Naour2016-02-201-9/+3
| | | | | | | | | | | | | | | | | TARGET_CFLAGS is not taken into account since SKFLAGS is used as CFLAGS. We need to override SKFLAGS with TARGET_CFLAGS but keep -DSYSV which was present in SKFLAGS. Improve the previous fix introduced by 8e3a5c13546451c0c6ceb8bc64e4397ceed14aca. Fixes: http://autobuild.buildroot.net/results/2fb/2fb94ecfdc32761a09da35e6fcbdd512847ec911 Signed-off-by: Romain Naour <romain.naour@gmail.com> Reported-by: Peter Korsgaard <peter@korsgaard.com> Cc: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* erlang-rebar: fix license variablesThomas Petazzoni2016-02-201-2/+2
| | | | | | | | | | The erlang-rebar package uses ERLANG_ as the prefix for its license variables, therefore overriding the license information from the erlang package. This commit fixes this by using the appropriate ERLANG_REBAR_ suffix. Reported-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/libarchive: add optional support for bzip2Bernd Kuhls2016-02-201-0/+7
| | | | | | | | | | | | | | When bzip2 was compiled before, libarchive will use it as optional dependency: $ output/host/usr/bin/i586-buildroot-linux-uclibc-readelf -a output/target/usr/lib/libarchive.so.13.1.2 | grep NEEDED 0x00000001 (NEEDED) Shared library: [liblzma.so.5] 0x00000001 (NEEDED) Shared library: [libbz2.so.1.0] 0x00000001 (NEEDED) Shared library: [libz.so.1] 0x00000001 (NEEDED) Shared library: [libc.so.1] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/iputils: patch ping to link against libmMartin Bark2016-02-201-0/+29
| | | | | | | | | | | | | | | | | | | | | | | ping fails to compile with uClibc based toolchains with the error undefined reference to `__finite' Add a patch to link ping against libm to resolve the math library function finite(). Note, this error is not seen with glibc based toolchains because finite seems to be resolved in both libm and libc. Fixes: http://autobuild.buildroot.net/results/08f7386f75c881bc582b338824f8ccd509b2921e/ http://autobuild.buildroot.net/results/5aeef61fbd399dd78dc72b9e7cce978e6f1f58b4/ A pull request has been sent to fix this issue upstream, see https://github.com/iputils/iputils/pull/42 Signed-off-by: Martin Bark <martin@barkynet.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* lshw: add upstream patch to fix build on BlackfinThomas Petazzoni2016-02-202-1/+3
| | | | | | | | | | | | On Blackfin, the build fails due to the use of the L suffix instead of LL. To fix this, this commit adds an upstream patch from the project Github repository. Fixes: http://autobuild.buildroot.org/results/6d7d2034836e0d8705bba2f2597d3e1cde2c43b8/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* linux-headers: bump 3.10.x and 4.3.x seriesGustavo Zacarias2016-02-201-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* fbterm: fix musl compile (missing string.h include)Peter Seiderer2016-02-192-0/+37
| | | | | | | | | | | | | | | | | | | | Fixes [1]: mouse.cpp: In function 's32 open_gpm(Gpm_Connect*)': mouse.cpp:58:37: error: 'memset' was not declared in this scope memset((s8 *)&addr, 0, sizeof(addr)); ^ mouse.cpp:60:64: error: 'strncpy' was not declared in this scope strncpy(addr.sun_path, GPM_NODE_CTL, sizeof(addr.sun_path) - 1); in case BR2_PACKAGE_GPM is defined. Add proper gpm dependency and configure option too. [1] http://autobuild.buildroot.net/results/a60/a602d61e68f662217ad868de79711a8ea892a3a9 Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Update for 2016.02-rc2Peter Korsgaard2016-02-184-12/+35
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* binutils: fix .init/.fini literals moving in xtensa gasMax Filippov2016-02-183-0/+368
| | | | | | | | | | | | | | | Despite the documentation and the comment in xtensa_move_literals, in the presence of --text-section-literals and --auto-litpools literals are moved from the separate literal sections into .init and .fini, because the check in the xtensa_move_literals is incorrect. This fixes build errors seen with projects that have .init/.fini and use text-section-literals. Backported from: 4111950f363221c4641dc2f33bea61cc94f34906 Reported-by: Waldemar Brodkorb <mail@waldemar-brodkorb.de> Signed-off-by: Max Filippov <jcmvbkbc@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* linux: bump default to version 4.4.2Gustavo Zacarias2016-02-181-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* linux-headers: bump 3.{2, 12, 14, 18}.x and 4.{1, 4}.x seriesGustavo Zacarias2016-02-181-6/+6
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/nodejs: security bump for 0.10.x to version 0.10.42Jörg Krause2016-02-188-7/+3
| | | | | | | | | | | | | | Fixes security vulnerabilites [1]: - CVE-2016-2086 - CVE-2016-2216 Also switch to the xz compressed tar file now available for v0.10 builds from v0.10.42 onward. [1] https://nodejs.org/en/blog/vulnerability/february-2016-security-releases/ Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* CHANGES: update with recent changesPeter Korsgaard2016-02-171-0/+22
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* website/news.html: add 2016.02-rc1 announcement linkPeter Korsgaard2016-02-171-1/+3
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/binutils-2.25.1: backport upstream patch for PR19405Romain Naour2016-02-171-0/+70
| | | | | | | | | | | Fixes Buildroot generated toolchains: http://autobuild.buildroot.net/results/89b/89b46f97e2736d9337f888c761259e7bc7cdd128 Upstream bug: https://sourceware.org/bugzilla/show_bug.cgi?id=19405 Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* icu: fix build-time segfault by backporting upstream fixZoltan Gyarmati2016-02-171-0/+34
| | | | | | | | | | The icu bug http://bugs.icu-project.org/trac/ticket/11959 also hit me, but oddly enough only when running build build server via Jenkins. This patch adds the upstream fix for the mentioned bug, so the patch most likely can be removed at the next version bump. Signed-off-by: Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* spice: arch-mask toolchain commentGustavo Zacarias2016-02-171-0/+1
| | | | | | | | Otherwise it shows up for other architectures with minimal toolchains giving the impression that it's available/tested. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* pptp-linux: add musl build fix patchGustavo Zacarias2016-02-171-0/+30
| | | | | | | | | Fixes: http://autobuild.buildroot.net/results/56d/56dd530d53489220d0080480310b8dc150cf1b2e/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Tested-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* board: Add support for Acmesystems Arietta g25Angelo Compagnucci2016-02-175-0/+158
| | | | | | | | | This patch adds a minimal working configuration for Acmesystems Arietta g25. [Peter: fix whitespace, use same-as-kernel for kernel headers version] Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* mosquitto: security bump to version 1.4.8Peter Korsgaard2016-02-172-2/+2
| | | | | | | | | This includes a fix for a security related bug related to the listener mount_point feature. The bug allows a client that is restricted to a mount_point to publish messages outside this hierarchy using the last will and testament feature. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* glibc: add security patchesGustavo Zacarias2016-02-174-0/+680
| | | | | | | | | | | | | | Fix for 2.21 and 2.22: CVE-2015-7547 - glibc getaddrinfo stack-based buffer overflow. For 2.21: CVE-2014-8121 - Unexpected closing of nss_files databases after lookups causes denial of service. CVE-2015-1781 - buffer overflow in gethostbyname_r() and related functions with misaligned buffer. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
OpenPOWER on IntegriCloud