- May 22, 2015
-
-
Peter Korsgaard authored
Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Michał Leśniewski authored
Fixes #8186 Mkfs.jffs2 accepts a --pagesize parameter, which allows specifying the size of the virtual memory page size of the target machine, where the image will be used. (This is the value of the PAGE_SIZE macro in Linux.) In most cases the parameter doesn't need to be set as the default value of 4 kB is usually correct. The parameter was used incorrectly in Buildroot -- it was set to the page size of flash memory chip -- this commit fixes this problem. Now the --pagesize parameter is not used at all (unless the user explicitly chooses to use a custom value during configuration). All existing defconfigs were corrected to match the new configuration variable names. [Peter: reword, add Config.in.legacy handling] Signed-off-by:
Michał Leśniewski <mlesniew@gmail.com> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Baruch Siach authored
Signed-off-by:
Baruch Siach <baruch@tkos.co.il> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Samuel Martin authored
Since its update, the *_SITE points to the git repository, so configure script is not generated in this tarball. Fixes: http://autobuild.buildroot.org/results/ccb/ccba6d8c73b5e826b86065b77b3fe5077db7b99c/ http://autobuild.buildroot.org/results/57e/57ea34e9b48293075e10f0dd2331de2785730827/ and many more... [Peter: drop redundant HOST_*_AUTORECONF] Signed-off-by:
Samuel Martin <s.martin49@gmail.com> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
- May 21, 2015
-
-
Peter Korsgaard authored
Fixes: http://autobuild.buildroot.net/results/a40/a400e1fe7291d3bd3171ad04ce5fd7ba235d39af/ http://autobuild.buildroot.net/results/ec3/ec38d0f1d1faa2a87321bab10f87772eb819adc9/ http://autobuild.buildroot.net/results/7cb/7cbc8cd265d527c7b56d57e511903b23a4a84489/ newt uses autoconf but not automake, and unconditionally tries to build a .so file - So it doesn't work in static only builds. The only reverse dependency is network-manager, which already depends on glibc. Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Peter Korsgaard authored
Fixes: http://autobuild.buildroot.net/results/e9e/e9ea569b5fe6fd875b3fa8f4eee82e3fddd95e90/ http://autobuild.buildroot.net/results/c97/c97f7df043469bc51ebbb41ddf30f8e82d4e6bb5/ http://autobuild.buildroot.net/results/ba8/ba82769109f205123834627bbf782bd1811ea43e/ Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Peter Korsgaard authored
Commit 5504039c (neardal: fix readline/libedit detection with static linking) added the output of pkg-config to the LIBS shell variable without adding quotes around it, breaking the logic if the output would ever consist of more than 1 word. Now, pkg-config --libs ncurses currently only outputs '-lncurses', so nothing is really broken (for now atleast), but lets add the quotes before it does or the syntax gets copied somewhere else where it does. Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Peter Korsgaard authored
Fixes: http://autobuild.buildroot.net/results/25f/25f8088ecb276ff4559a56fcc4f1b92d11f7deac/ As opposed to the other audio backends, the configure script does NOT use pkg-config to figure out how to link with portaudio, breaking static linking as portaudio uses pthreads. Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Peter Korsgaard authored
Fixes: http://autobuild.buildroot.net/results/e53/e537a500852ddb8aa0b1155ea9bc8a17636dd50d/ Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Mirko Langisch authored
Fixes #8126 Signed-off-by:
Mirko Langisch <pud@nerdpunx.net> Acked-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Peter Korsgaard authored
Otherwise we can end up with various linker issues (E.G. linking shared against libc for a static build, ..). Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Peter Korsgaard authored
The (handwritten) configure script uses pkg-config, so ensure it is available. With this in place XT and IPT_LIB_DIR detection works correctly, so drop the overrides. Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Baruch Siach authored
iproute2 always builds m_xt.so as a shared library. Fixes: http://autobuild.buildroot.net/results/f42/f42bbbf5be4594a8806d0e571586ce2bf119582d/ http://autobuild.buildroot.net/results/3b3/3b37871bdf5766677fc20dca22c13177091d104f/ Signed-off-by:
Baruch Siach <baruch@tkos.co.il> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Bernd Kuhls authored
Package moved to github: https://developers.google.com/protocol-buffers/docs/downloads "Our old Google Code repositiory is: https://code.google.com/p/protobuf/ . We moved to github on Aug 26, 2014 [...]" Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Bernd Kuhls authored
This patch fixes an error during source-check. Thanks to Thomas for the hint: http://article.gmane.org/gmane.comp.lib.uclibc.buildroot/116183 Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Bernd Kuhls authored
libuuid is picked up by apr when present: Checking for OS UUID Support... checking uuid/uuid.h usability... yes checking uuid/uuid.h presence... yes checking for uuid/uuid.h... yes checking for library containing uuid_generate... -luuid checking for uuid_generate... yes checking for os uuid usability... yes $ output/host/usr/bin/i586-buildroot-linux-uclibc-readelf -a output/target/usr/lib/libapr-1.so | grep libuuid 0x00000001 (NEEDED) Shared library: [libuuid.so.1] [Thomas: move the added chunk a bit further down, and use += instead of =.] Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Bernd Kuhls authored
Upstream URL has changed: http://article.gmane.org/gmane.network.leafnode/4773 Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Yann E. MORIN authored
Fixes: http://autobuild.buildroot.org/results/aed/aed3690689b60844e3278626da3c3eb75f2a2586/ Signed-off-by:
"Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Bernd Kuhls authored
Signed-off-by:
Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
- May 20, 2015
-
-
Fabio Porcedda authored
Signed-off-by:
Fabio Porcedda <fabio.porcedda@gmail.com> Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Fabio Porcedda authored
Signed-off-by:
Fabio Porcedda <fabio.porcedda@gmail.com> Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Fabio Porcedda authored
Signed-off-by:
Fabio Porcedda <fabio.porcedda@gmail.com> Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Fabio Porcedda authored
Signed-off-by:
Fabio Porcedda <fabio.porcedda@gmail.com> Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Fabio Porcedda authored
Signed-off-by:
Fabio Porcedda <fabio.porcedda@gmail.com> Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Fabio Porcedda authored
Signed-off-by:
Fabio Porcedda <fabio.porcedda@gmail.com> Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Fabio Porcedda authored
Signed-off-by:
Fabio Porcedda <fabio.porcedda@gmail.com> Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Baruch Siach authored
Since 1b54fbc9 (qt5base: fix postgresql plugin compile, 2015-02-19) QT5BASE_CONFIGURE_ENV is never set. Remove it. Cc: Peter Seiderer <ps.report@gmx.net> Signed-off-by:
Baruch Siach <baruch@tkos.co.il> Reviewed-by:
Peter Seiderer <ps.report@gmx.net> Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Max Filippov authored
Signed-off-by:
Max Filippov <jcmvbkbc@gmail.com> Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Romain Naour authored
Even though BR2_PACKAGE_LIBSIGROKCXX is selected, the C++ binding is disabled due to lack of C++11 support in the toolchain. Configure output: Enabled language bindings: - C++............................. no (C++11 compiler required) So disable libsigrok C++ binding and pulseview for CS powerpc toolchains. Fixes: http://autobuild.buildroot.net/results/737/737453011ac0d13ab197258171ffa0f81bc4c368/ [Thomas: use 'depends on !foo && !bar' instead of 'depends on !(foo || bar)', seems it looks more logical in this situation.] Signed-off-by:
Romain Naour <romain.naour@openwide.fr> Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Samuel Martin authored
FreeRDP with gstreamer support enabled needs gstreamer and gst-plugins-base with gstapp. Fixes: http://autobuild.buildroot.net/results/937/9373d4238bc3f027e571581bd3531018c4faed91/ http://autobuild.buildroot.org/results/f77/f77a2c9eea7973b54a22e12ab33ee8964adaddfd/ Signed-off-by:
Samuel Martin <s.martin49@gmail.com> Tested-by:
Gergely Imreh <imrehg@gmail.com> Signed-off-by:
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-
Floris Bos authored
Signed-off-by:
Floris Bos <bos@je-eigen-domein.nl> Acked-by:
Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Floris Bos authored
Add PHP_VERSION_MAJOR variable to php.mk for use by other packages. E.g. to install the Ioncube loader binary, it is necessary to know the PHP major version. Signed-off-by:
Floris Bos <bos@je-eigen-domein.nl> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
- May 19, 2015
-
-
Peter Korsgaard authored
Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Peter Korsgaard authored
Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Floris Bos authored
php-fpm installs a sample status page to $datadir/fpm/status.html It is not of any use in that directory, so remove it from target. If someone wants to use it, he can copy it to webroot manually. Signed-off-by:
Floris Bos <bos@je-eigen-domein.nl> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Floris Bos authored
Add a line to load the opcache extension in php.ini, at the bottom of the "dynamic extensions" section. Signed-off-by:
Floris Bos <bos@je-eigen-domein.nl> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Floris Bos authored
aclocal.m4 gets regenerated from acinclude.m4, so patch the last. Fixes "Extensions are not supported on this platform" error when loading any external (zend) extension in php.ini. Was caused by 0001-ditch-unset.patch not being applied to the correct file, and our ac_cv_func_dlopen=yes env setting being unset. Signed-off-by:
Floris Bos <bos@je-eigen-domein.nl> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Floris Bos authored
Fixes #8121 External PHP modules like the OPcache may live in /usr/lib/php/extensions, so only delete /usr/lib/php/build Signed-off-by:
Floris Bos <bos@je-eigen-domein.nl> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-
Max Filippov authored
xtensa gcc is not able to generate correct code when compiling with -O0 enabled by --enable-debug. Instead of disabling package build it with --disable-debug. Fixes: http://autobuild.buildroot.net/results/5d17055027055ffd33fcd28b208130afb26343c9/ Signed-off-by:
Max Filippov <jcmvbkbc@gmail.com> Signed-off-by:
Peter Korsgaard <peter@korsgaard.com>
-