- Nov 30, 2013
-
-
Peter Korsgaard authored
Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Ezequiel García authored
Signed-off-by:
Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Peter Korsgaard authored
Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Ivan Sergeev authored
dbus-python requires xml.parsers.expat, which is provided by the pyexpat module. This patch enables the pyexpat module as a dependency when dbus-python is selected. [Peter: fixup whitespace] Signed-off-by:
Ivan Sergeev <vsergeev@kumunetworks.com> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Vicente Olivert Riera authored
Use updated libtool from buildroot to fix MIPS64/n64 build problems http://autobuild.humanoidz.org/results/a9a/a9aa506a591581e413dc38c53d0e56bec5970634/build-end.log [Peter: add comment explaining why] Acked-by:
Markos Chandras <markos.chandras@imgtec.com> Signed-off-by:
Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Vicente Olivert Riera authored
This libtool change ensures that ld uses the right machine emulation file, which will allow to fix several MIPS64 n64 link failures, such as the one currently visible on the libiscsi package. Packages affected by this problem will have to use <pkg>_AUTORECONF = YES to benefit from this libtool fix, until they are fixed upstream. Acked-by:
Markos Chandras <markos.chandras@imgtec.com> Signed-off-by:
Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
- Nov 29, 2013
-
-
Vicente Olivert Riera authored
qt5base fails to compile on MIPS64 BigEndian n64 platforms because there are multiple calls to some functions that are disabled. Since every Qt5 package depends on qt5base we can disable Qt5 entirely. This is a quick fix for the next release. In the meantime, a proposed patch to fix this problem has already been sent to Qt: https://bugreports.qt-project.org/browse/QTBUG-35228 Signed-off-by:
Vicente Olivert Riera <Vincent.Riera@imgtec.com> Acked-by:
Markos Chandras <markos.chandras@imgtec.com> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Gustavo Zacarias authored
libnl-3 uses threads and this isn't accounted for in hostapd (or libnl-3*.pc files for that matter - hostapd doesn't use pkg-config anyway). Since linking order matters for static scenarios also throw in -lnl-3 into LIBS first since it gets appended to in hostapd makefiles to add libnl-3. Fixes: http://autobuild.buildroot.net/results/d4a/d4a9f44effeb08eda6c4b32764274ae81d185d5e/ Signed-off-by:
Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Vicente Olivert Riera authored
Remove -Werror from CFLAGS to avoid build failures caused by warnings. Fixes the following autobuild failure on MIPS64 n32/64: http://autobuild.buildroot.net/results/6be/6be075726ac6db0a48dd6b535841ada932c9ffbb/ Reviewed-by:
Markos Chandras <markos.chandras@imgtec.com> Signed-off-by:
Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Simon Dawson authored
The perf_event_open syscall is not available on avr32. Fixes build failures such as the following. http://autobuild.buildroot.net/results/38f/38fa81315be448c409b9af29f92621fcf5676f71/ Signed-off-by:
Simon Dawson <spdawson@gmail.com> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Peter Korsgaard authored
Fixes http://autobuild.buildroot.net/results/efe/efe26c54361094fb1e201da6915900cd9b24d596/ qt doesn't use pkg-config to figure out the needed compiler/linker flags for egl, so pass them explicitly instead. Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Simon Dawson authored
lua-ev is a reverse dependency of libev, but the architecture filtering is not propagated. Fixes autobuild failure such as the following. http://autobuild.buildroot.net/results/387/38704a4362ab6c3458c45603975b274937059fa9/ Signed-off-by:
Simon Dawson <spdawson@gmail.com> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
- Nov 28, 2013
-
-
Baruch Siach authored
Signed-off-by:
Baruch Siach <baruch@tkos.co.il> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Chris Zankel authored
Xtensa is not yet supported in libnspr. Also add dependencies to libnss, which requires libnspr, and ecryptfs-utils, which requires libnss. Fixes (xtensa) http://autobuild.buildroot.net/results/14b/14ba6426edbffa100de924aa69157b3f59368ff2/ Fixes (blackfin) http://autobuild.buildroot.net/results/dd3/dd353703ed94cec48cd126d80cd2f1b039811be4/ [baruch: fix summary, add autobuild reference, add comment dependency, add blackfin] Signed-off-by:
Chris Zankel <chris@zankel.net> Signed-off-by:
Baruch Siach <baruch@tkos.co.il> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Vicente Olivert Riera authored
This package selects BR2_PACKAGE_QT_SCRIPT which is not supported on certain platforms. To prevent this behaviour we use the same solution as we applied for BR2_PACKAGE_QT_SCRIPT Signed-off-by:
Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Vicente Olivert Riera authored
There is no support for certain platforms in QtScript right now, so buildroot upstream suggested to disable the possibility of enabling QtScript on those platforms as a quick fix for the 2013.11 release: http://lists.busybox.net/pipermail/buildroot/2013-November/083157.html QtScript doesn't build because it uses JavaScriptCore, so we re-use the existing BR2_PACKAGE_QT_ARCH_SUPPORTS_WEBKIT option which already lists which platforms are supported by JavaScriptCore in Qt4. In addition, a proposed fix to add support for MIPS64 has already been sent to Qt: https://bugreports.qt-project.org/browse/QTBUG-35030 Fixes: http://autobuild.buildroot.net/results/fd7/fd7e7e53290f235b540ed5f3c784e2584fdb41e0/ Signed-off-by:
Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Gustavo Zacarias authored
Fixes bug #6554 Signed-off-by:
Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Thomas Petazzoni authored
Fixes: http://autobuild.buildroot.org/results/0ae/0ae3a53a1a6e870ee1bf2a902a400893339777df/ Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Gustavo Zacarias authored
BINDIR is used to point systemd/dbus service files to the correct binary path where wpa_supplicant resides. So define it to avoid the default /usr/local path that doesn't work. Solves bug #6704 Signed-off-by:
Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Arnout Vandecappelle authored
BR2_PACKAGE_LVM2_DMSETUP_ONLY is a "negative" option that disables build and install of part of the suite. This option cannot be unselected by other config options, which gives a problem for BR2_PACKAGE_UDISKS_LVM2: it needs BR2_PACKAGE_LVM2_APP_LIBRARY, which requires the full suite. Therefore, replace the negative BR2_PACKAGE_LVM2_DMSETUP_ONLY by a positive BR2_PACKAGE_LVM2_STANDARD_INSTALL. To make sure that existing defconfigs keep working, the new option defaults to y unless the legacy BR2_PACKAGE_LVM2_DMSETUP_ONLY was selected. Fixes http://autobuild.buildroot.net/results/ea4627cae45e972ebba5b33a2b2871ce7f46fedc/ Signed-off-by:
Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Gustavo Zacarias authored
The patch has a minor mistake so fix it. Credit go to Daniel Mentz <daniel@exxm.de> for the detailed bug report. Closes bug #6428 Signed-off-by:
Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Gustavo Zacarias authored
Fixes: http://autobuild.buildroot.net/results/e4a/e4a0f93e2abdad0222063b3f71970ee1c5940f3a/ Signed-off-by:
Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Thomas Petazzoni authored
The profiling support is not available on AArch64, causing build failures such as: http://autobuild.buildroot.net/results/724f8646e1c2c28cf187f2313244d1e3e61b4c25/ According to Will Newton, function profiling will only be added in the next version of the AArch64 Linaro toolchain. This indicates it is a rather new feature in AArch64, so for the moment, just disallow profiling on AArch64. We can revise this later, when this feature has been made available in Linaro toolchains, and official gcc releases (for internal toolchain support). Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Gustavo Zacarias authored
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4788 http://hmarco.org/bugs/CVE-2013-4788.html Signed-off-by:
Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Gustavo Zacarias authored
Uses fork() in apr_proc_fork() which is used by almost all the packages that use apr (log4cxx, subversion). apr-util doesn't use fork or apr_proc_fork but it's of no use alone. [Peter: also hide log4cxx comment if !BR2_USE_MMU] Signed-off-by:
Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Gustavo Zacarias authored
apr's configure doesn't try to guess which library is needed for threading when cross-compiling hence this is never reflected in apr-1-config, leading to a build failure such as: http://autobuild.buildroot.net/results/035/035a00de0a56be00559767ba822a396ddc18a9fb/ Signed-off-by:
Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
- Nov 27, 2013
-
-
Peter Korsgaard authored
pkg-autotools.mk already handles static/shared linking, so no need to explictly force it. Worse even, the build fails with BR2_PREFER_STATIC_LINK as we end up calling libtool with --static when it tries to link the .so, breaking the build: ../ld: attempted static link of dynamic object `../opcodes/.libs/libopcodes.so' collect2: error: ld returned 1 exit status Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Gustavo Zacarias authored
Add more library links into LDFLAGS. -lncurses because readline uses it (missing _tputs and others). -lpthread for missing _pthread_rwlock_unlock and others. -lm for missing _rint. Fixes: http://autobuild.buildroot.net/results/6b1/6b1f4f2167d8aca0d73dc0e66fd2e1704c821c61/ Signed-off-by:
Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Vicente Olivert Riera authored
It should be BR2_MIPS_NABI64 instead of BR_MIPS_NABI64 Fixes: http://autobuild.buildroot.net/results/c5d/c5da2d99c09b1a2f7da23f1636f1ccc8978cc4a3/ Signed-off-by:
Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Gustavo Zacarias authored
Fixes CVE-2013-4164. Signed-off-by:
Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Gustavo Zacarias authored
Fixes CVE-2013-5605. Signed-off-by:
Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Gustavo Zacarias authored
Fixes CVE-2013-6051. Signed-off-by:
Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
- Nov 26, 2013
-
-
Peter Korsgaard authored
Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Gustavo Zacarias authored
Signed-off-by:
Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Gustavo Zacarias authored
Fix a rare edge build failure when iconv is enabled, easily reproduced in a debian chroot with an aarch64 external toolchain with iconv + xmlrpc support enabled with a php cgi + cli target. Should solve bug #6500. Signed-off-by:
Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Chris Zankel authored
With uClibc commit e8065705, valloc is now optional in SUSv2 and removed from SUSv3 and later. However, cdrkit currently requires valloc, so enable it in the uClibc snapshot configuration file. Fixes http://autobuild.buildroot.net/results/5a5/5a51f3f06e04eed39d59477ea1178aef7d397754/ Signed-off-by:
Chris Zankel <chris@zankel.net> [baruch: fix summary line, add autobuild reference] Signed-off-by:
Baruch Siach <baruch@tkos.co.il> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Davide Viti authored
Startup script fails to restart the service: 1s delay is enough to fix this. Also apply a minor fix of the script name in the usage string Signed-off-by:
Davide Viti <d.viti@infosolution.it> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Baruch Siach authored
Disable FP environment on sh4a. Fixes http://autobuild.buildroot.net/results/8dc9bca5969d455cc30206fc1ae6e1d3ba6eb6ca/ . Signed-off-by:
Baruch Siach <baruch@tkos.co.il> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Fatih Aşıcı authored
Signed-off-by:
Fatih Aşıcı <fatih.asici@gmail.com> Reviewed-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Ryan Barnett authored
Fixes http://autobuild.buildroot.net/results/f47c4f0883019ba3a8e61a9ae51b7bd7f347b38c/ Signed-off-by:
Ryan Barnett <rjbarnet@rockwellcollins.com> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-