summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* wireless-regdb: bump to version 2014.11.07Gustavo Zacarias2014-11-112-2/+2
| | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* dhcp: fix bad --enable/disable-debug logicGustavo Zacarias2014-11-112-0/+25
| | | | | | | | | | | | It interprets disable as enable and wreaks havoc since it changes the behaviour of the build, for instance not using configured leases files paths. Thanks to Nathaniel Roach for pointing me to this problem. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Reviewed-by: Nathaniel Roach <nroach44@gmail.com> Tested-by: Nathaniel Roach <nroach44@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* rt-tests: allow building subset of tests with non-NPTL toolchainsAlexey Brodkin2014-11-113-4/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some architectures are still stuck with non-NPTL toolchains. These are for example ARC, Blackfin, Xtensa etc. Still rt-tests are very good benchmarks and it would be good to enable use of at least selected (those that will be built) tests on those architectures. This change makes it possible to only build subset of tests that don't require NPTL calls. Following tests will be built with non-NPTL toolchain: * signaltest * ptsematest * sigwaittest * svsematest * sendme * hackbench Still it's required to have a toolchain with threads support because most of mentioned tests use threads. 03-fix-non-nptl-buil.patch was submitted upstream: https://www.mail-archive.com/linux-kernel@vger.kernel.org/msg762958.html so as soon as it is accepted with the next version bump this patch should be removed. [Thomas: fix the rt-tests.mk test on NPTL to use positive logic.] Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Peter Korsgaard <peter@korsgaard.com> Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* gnutls: security bump to version 3.2.20Gustavo Zacarias2014-11-102-2/+2
| | | | | | | | | | | | Fixes: CVE-2014-8564 / GNUTLS-SA-2014-5 - Sean Burford reported that the encoding of elliptic curves parameters GnuTLS 3 is vulnerable to a denial of service (heap corruption). It affects clients and servers which print information about the peer's certificate, e.g., the key ID, and can be exploited via a specially crafted X.509 certificate. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* connman: rename patches to follow the new name structureVicente Olivert Riera2014-11-101-0/+0
| | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* connman: disable for static buildsVicente Olivert Riera2014-11-101-2/+3
| | | | | | | | | | | | | | It needs dlopen(), otherwise it will fail at the configure phase with a message like this one: checking for dlopen in -ldl... no configure: error: dynamic linking loader is required Fixes: http://autobuild.buildroot.net/results/647/64742a1d3a07f86a7c801da5ef30892c1f760031/ Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/ffmpeg: Sync with upstream to fix fminf-related build errorBernd Kuhls2014-11-092-47/+94
| | | | | | | | - upstream fixed the fminf build error, use the backported patch now - renamed patch according to new naming convention Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* quota: fix static linkingThomas Petazzoni2014-11-092-5/+59
| | | | | | | | | | | The aim of this patch is to fix bug #7574, i.e fix the static linking of the quota package. It does so by introducing a patch to the quota build system that generalizes the use of $(LIBS), and then changes quota.mk to use LIBS instead of LDFLAGS to link against intl and tirpc when needed. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* quota: remove dependency on util-linuxThomas Petazzoni2014-11-091-5/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The dependency on util-linux is only present in Config.in, and not in quota.mk, and quota indeed builds properly without util-linux. It could be a runtime dependency, but there is no indication that it is the case, and I don't see why quota would run-time depend on util-linux utilities. Looking back at when the quota package was introduced, in one of the preliminary patch, he following explanation was given by the original author: [Update: I added check for util-linux mount because it support usrquota and grpquota mount options.] But I still don't see why usrquota and grpquota mount options would be the source of a dependency of the quota utilities on util-linux. Here is what the util-linux mount man page says about those two mount options: grpquota|noquota|quota|usrquota These options are accepted but ignored. (However, quota utilities may react to such strings in /etc/fstab.) So indeed, the quota tools will look at /proc/mounts and see if those options are used for certain mount points, but that doesn't create a dependency of quota on util-linux. Therefore, this commit gets rid of the dependency of quota on util-linux. It allows to re-enable quota on Microblaze, since this dependency was inherited from util-linux. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* quota: rename patch to the new conventionThomas Petazzoni2014-11-091-0/+0
| | | | | | | | As a preparation to the introduction of an additional patch to quota, let's rename the existing patch to the new naming convention. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libv4l: fix utilities build with older glibc versionsPeter Korsgaard2014-11-091-1/+5
| | | | | | | | | | | | | | | Fixes: http://autobuild.buildroot.net/results/9af/9af37fbf344b63b60e59ccac21e010cdf0ea219e/ http://autobuild.buildroot.net/results/bbd/bbd34d5378354e9db7822eaae8d3c4a75a67ac23/ http://autobuild.buildroot.net/results/ebb/ebbaa70e1a277162ba53c7bde8335ee998486703/ http://autobuild.buildroot.net/results/2c1/2c11f4dbb7cfadcfc6fbc267679b2b4eab867221/ And many more. The utilities use clock_gettime(), which was provided in librt in glibc < 2.17, so ensure we link against -lrt. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Config.in.legacy: fix typoBaruch Siach2014-11-091-1/+1
| | | | | Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Config.in.legacy: add legacy handling for the recently removed ↵Peter Korsgaard2014-11-091-0/+7
| | | | | | | | | BR2_x86_generic option Buildroot automatically falls back to a sensible CPU variant, but inform the user of the change anyway so they are aware of it. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* mongoose: bump to version 5.5Davide Viti2014-11-092-26/+5
| | | | | | | | - examples/server was renamed examples/web_server - patch was submitted and included upstream so we can drop it Signed-off-by: Davide Viti <zinosat@tiscali.it> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/dovecot: Adjust LIBDOVECOT in dovecot-config to STAGING_DIRBernd Kuhls2014-11-091-0/+1
| | | | | | | | | | | | Fixes http://autobuild.buildroot.net/results/3e6/3e6c258d7636fedbb87ba62069094291666e6a85/ http://autobuild.buildroot.net/results/410/410b68afece06ddb03a00245cfdc3de4d9a4e5f1/ http://autobuild.buildroot.net/results/bd3/bd37ee92eeb00adb1558dbb61315465a0cdfe635/ http://autobuild.buildroot.net/results/fd1/fd18c3678eded431476b4e61a10c48e160ffd51a// and many others Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/dovecot: Fix build error in SQLite moduleBernd Kuhls2014-11-081-0/+24
| | | | | | | | Patch occured with "make dovecot" using this defconfig: http://autobuild.buildroot.net/results/bd3/bd37ee92eeb00adb1558dbb61315465a0cdfe635/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* collectd: drop memcachec from disable listPeter Korsgaard2014-11-081-1/+1
| | | | | | As it is explicitly handled below. No functional change, but cleaner this way. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/libupnpp: bump to version 0.8.6Jörg Krause2014-11-082-3/+3
| | | | | Signed-off-by: Jörg Krause <jkrause@posteo.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/upmpdcli: bump to version 0.8.6Jörg Krause2014-11-082-3/+3
| | | | | Signed-off-by: Jörg Krause <jkrause@posteo.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* makedevs: Rework READMEMaxime Hadjinlian2014-11-081-9/+9
| | | | | | | | | Make all the example as a space separated list. The definition of the different type was modified to look like the same section on the manual. Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/*/*.mk: Fix indentMaxime Hadjinlian2014-11-088-9/+9
| | | | | | | | Fix indent for LIBFOO_USERS and LIBFOO_PERMISSIONS as per the manual example. Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* lttng-tools: bump versionMaxime Hadjinlian2014-11-082-2/+2
| | | | | | | | | | | The previous releases was removed from their servers has they did a releases from a wrong tag, the resulting binary was wrong. Thanks to "Yann E. Morin" for spotting that. Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Cc: "Yann E. Morin" <yann.morin.1998@free.fr> Cc: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* lttng-babeltrace: Bump versionMaxime Hadjinlian2014-11-082-6/+6
| | | | | Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* opencv: superres - Fix return value VideoFrameSource_GPUVicente Olivert Riera2014-11-081-0/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | superres module fails to compile with the following error messages: [100%] Building CXX object modules/superres/CMakeFiles/opencv_superres.dir/src/super_resolution.cpp.o /opencv-2.4.10/modules/superres/src/frame_source.cpp: In function 'cv::Ptr<cv::superres::FrameSource> cv::superres::createFrameSource_Video_GPU(const string&)': /opencv-2.4.10/modules/superres/src/frame_source.cpp:263:16: error: expected type-specifier before 'VideoFrameSource' /opencv-2.4.10/modules/superres/src/frame_source.cpp:263:16: error: could not convert '(int*)operator new(4ul)' from 'int*' to 'cv::Ptr<cv::superres::FrameSource>' /opencv-2.4.10/modules/superres/src/frame_source.cpp:263:16: error: expected ';' before 'VideoFrameSource' /opencv-2.4.10/modules/superres/src/frame_source.cpp:263:41: error: 'VideoFrameSource' was not declared in this scope /opencv-2.4.10/modules/superres/src/frame_source.cpp:264:1: error: control reaches end of non-void function [-Werror=return-type] cc1plus: some warnings being treated as errors make[3]: *** [modules/superres/CMakeFiles/opencv_superres.dir/src/frame_source.cpp.o] Error 1 make[3]: *** Waiting for unfinished jobs.... This is caused because the return value of the createFrameSource_Video_GPU function should be a VideoFrameSource_GPU object. Backporting an upstream patch to fix this problem in Buildroot: https://github.com/Itseez/opencv/commit/2e393ab83362743ba1825ad4b31d4a2925c606b4 Fixes: http://autobuild.buildroot.net/results/b09/b0996267197a9016d29d6070804ebc0cb7853548/ Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* opencv: rename patches to follow the new name structureVicente Olivert Riera2014-11-081-0/+0
| | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/clamav: add hashBernd Kuhls2014-11-081-0/+2
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* python-netifaces: bump to 0.10.4Yegor Yefremov2014-11-082-33/+2
| | | | | | | Change download location and remove obsolete patch. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libiscsi: only build the test tool and ld-iscsi if we have shared libsVicente Olivert Riera2014-11-081-0/+55
| | | | | | | | | | | | | | | | | | | | | | Backporting an upstream patch to fix a failure when doing a static build: /br/output/host/usr/bin/mipsel-ctng-linux-uclibc-gcc -shared -o ld_iscsi.so ld_iscsi.o -ldl /br/output/host/opt/ext-toolchain/bin/../lib/gcc/mipsel-ctng-linux-uclibc/4.8.2/../../../../mipsel-ctng-linux-uclibc/bin/ld: ld_iscsi.o: relocation R_MIPS_HI16 against `__gnu_local_gp' can not be used when making a shared object; recompile with -fPIC ld_iscsi.o: could not read symbols: Bad value collect2: error: ld returned 1 exit status Upstream commit: https://github.com/sahlberg/libiscsi/commit/3d6c2be3428d88682cecfa2a4ad172aaacffb318 Fixes: http://autobuild.buildroot.net/results/7a9/7a9caf1f4080c2c4b04ee3b13c1240f475a22ea7/ Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libiscsi: rename patches to follow the new name structureVicente Olivert Riera2014-11-085-0/+0
| | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* tcl: add hash filePeter Seiderer2014-11-081-0/+2
| | | | | Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* tcl: update package disablingPeter Seiderer2014-11-081-12/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update package disabling (removing pkgs subdirectories) after latest tcl version update: $ ls tcl8.6.1/pkgs/ itcl4.0.0 sqlite3.8.0 tdbc1.0.0 tdbcmysql1.0.0 tdbcodbc1.0.0 tdbcpostgres1.0.0 tdbcsqlite3-1.0.0 thread2.7.0 $ ls tcl8.6.2/pkgs/ itcl4.0.1 sqlite3.8.6 tdbc1.0.1 tdbcmysql1.0.1 tdbcodbc1.0.1 tdbcpostgres1.0.1 tdbcsqlite3-1.0.1 thread2.7.1 Fixes: http://autobuild.buildroot.net/results/07ae8e42acf62fef99de70c8099ec5a0ca89a817/ Could not reproduce the build failure, but disabling pkgs/sqlite3.8.6 should prevent all build failures in this directory... Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/mesa3d: bump to 10.3.3Bernd Kuhls2014-11-082-3/+3
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/cramfs: Needs zlibBernd Kuhls2014-11-081-0/+1
| | | | | | | | | | | | cramfs.mk contains CRAMFS_DEPENDENCIES = zlib but this dependency was missing in Config.in. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* vim: install vi symlinkGustavo Zacarias2014-11-081-1/+9
| | | | | | | | | Install a 'vi' symlink to win over busybox vi (more features) and in case busybox isn't around, for people expecting plain simple 'vi' to call the editor. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* arptables: re-enable for staticGustavo Zacarias2014-11-083-5/+34
| | | | | | | | | | | Add a small patch to re-enable arptables for static builds. The dlfcn.h is a stray include for a past attempt at loadable plugins but the code is disabled so there's no need for it. Also add hash file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/qemu: fix specifying custom target sub-setYann E. MORIN2014-11-081-2/+12
| | | | | | | | | | The logic was wrong. Even though it was working for previous versions of QEMU, it changed in later versions, and thus now breaks on the version we currently package. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* arptables: needs dynamic linking support for dlopen()Peter Korsgaard2014-11-081-2/+6
| | | | | | | | | Fixes: http://autobuild.buildroot.net/results/b96/b9642befef82e479cc50839e07114cb87314d156/ http://autobuild.buildroot.net/results/57f/57ffebbe925391badf81f6867fdbf16975b4af6f/ http://autobuild.buildroot.net/results/5f1/5f1966f1a7c8800846a8405b7e74f4893f3fcd14/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* arch/Config.in.x86: drop BR2_x86_genericPeter Korsgaard2014-11-071-5/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The fuzzy generic x86 variant doesn't make much sense in the context of Buildroot, and the recent change to use -march instead of -mtune broke it. From the GCC manual: https://gcc.gnu.org/onlinedocs/gcc-4.9.2/gcc/i386-and-x86-64-Options.html#i386-and-x86-64-Options: -mtune=cpu-type Tune to cpu-type everything applicable about the generated code, except for the ABI and the set of available instructions. While picking a specific cpu-type schedules things appropriately for that particular chip, the compiler does not generate any code that cannot run on the default machine type unless you use a -march=cpu-type option. For example, if GCC is configured for i686-pc-linux-gnu then -mtune=pentium4 generates code that is tuned for Pentium 4 but still runs on i686 machines. The choices for cpu-type are the same as for -march. In addition, -mtune supports 2 extra choices for cpu-type: ‘generic’ Produce code optimized for the most common IA32/AMD64/EM64T processors. If you know the CPU on which your code will run, then you should use the corresponding -mtune or -march option instead of -mtune=generic. But, if you do not know exactly what CPU users of your application will have, then you should use this option. As new processors are deployed in the marketplace, the behavior of this option will change. Therefore, if you upgrade to a newer version of GCC, code generation controlled by this option will change to reflect the processors that are most common at the time that version of GCC is released. There is no -march=generic option because -march indicates the instruction set the compiler can use, and there is no generic instruction set applicable to all processors. In contrast, -mtune indicates the processor (or, in this case, collection of processors) for which the code is optimized. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* bash: switch to release tarballGustavo Zacarias2014-11-077-5508/+2
| | | | | | | | | Yay! The release tarball allows us to drop sizable in-tree patches, so switch to it. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* systemd: Properly define the __NR_memfd_create macro for MIPSVicente Olivert Riera2014-11-071-0/+60
| | | | | | | | | | | | | | | | This is an upstream patch which has been applied to the master branch and I have adapted it to make it apply to the v216 version. v217 is not fixed. This patch can be removed when we bump to v218. Upstream commit: http://cgit.freedesktop.org/systemd/systemd/commit/?id=e6c019026b8cfd27a997e6e6ed1349f8f289b7e2 Fixes: http://autobuild.buildroot.net/results/596/59617a822fb2c8961881dd78a0dc8e41bdb14ede/ Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* systemd: rename patches to follow the new name structureVicente Olivert Riera2014-11-073-0/+0
| | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* grep: fix build failure for muslGustavo Zacarias2014-11-071-1/+2
| | | | | | | | musl doesn't implement re_match and friends and grep fails to detect this properly, so force internal regex routines for musl. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* coreutils: fix build failure for muslGustavo Zacarias2014-11-071-1/+2
| | | | | | | | musl doesn't implement re_match and friends and coreutils fails to detect this properly, so force internal regex routines for musl. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* ffmpeg: typo fixKaroly Kasza2014-11-071-1/+1
| | | | | | | Add missing bracket. Signed-off-by: Karoly Kasza <kaszak@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* gdk-pixbuf: host variant needs pkgconfig and libglib2 just like target variantPeter Korsgaard2014-11-071-1/+1
| | | | | | | | | | | | | Fixes: http://autobuild.buildroot.net/results/576/576d110cb02a8bc655e227bd949bb58ae39c2e38/ http://autobuild.buildroot.net/results/c48/c487a1fff7c74218a31024074aa2fd6255b6d09f/ http://autobuild.buildroot.net/results/b28/b282b7e7a9e3e5a8334d593be9092746509d4702/ http://autobuild.buildroot.net/results/dee/dee288268d81cc19fe685b32d68036b596af260e/ And many more. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* elfutils: disable for static buildsVicente Olivert Riera2014-11-074-7/+10
| | | | | | | | | | | | | | | | | | | | | | | Even when doing static builds, a shared library is built. This causes a build failure under some circumstances, for instance when building for MIPS + uClibc + static. After asking upstream if it would be possible to add a configure option to not build the shared library, the answer was that doing a static build is not a good idea. Here is a small snippet of the conversation: "Note that fully static builds are problematic. elfutils uses dlopen to open the EBL backends (the CPU-specific support snippets), so even if you link statically, the final binaries are still considerably dynamic." Related: https://lists.fedorahosted.org/pipermail/elfutils-devel/2014-November/004223.html Fixes: http://autobuild.buildroot.net/results/691/6913f5af6519463fbed39ef37b6a40ecf6a67b54/ Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* btrfs-progs: bump to version 3.17.1Gustavo Zacarias2014-11-072-2/+2
| | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Reviewed-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Tested-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* iproute2: bump to version 3.17.0Gustavo Zacarias2014-11-072-2/+2
| | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Reviewed-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Tested-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* pwgen: bump to version 2.07Gustavo Zacarias2014-11-072-1/+4
| | | | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Reviewed-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Tested-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* arch: remove the BR2_GCC_TARGET_TUNE optionThomas Petazzoni2014-11-071-3/+0
| | | | | | | The BR2_GCC_TARGET_TUNE option is now unused, so we can get rid of it. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
OpenPOWER on IntegriCloud