summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* lttng-libust: fix build on muslThomas Petazzoni2017-03-053-0/+161
| | | | | | | | | | | This commit backports two upstream patches in lttng-libust, that fix the build with the musl C library. Fixes: http://autobuild.buildroot.net/results/8bbcac9f9debf76cd1f56734bfd494677f2acd21/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* altera_*_defconfig: remove broken defconfigsArnout Vandecappelle2017-03-055-1063/+0
| | | | | | | | | | | | | | | | | | These defconfigs have been broken due to gcc5 for more than half a year, and nobody stepped up to fix it. In addition, the rocketboards git repository used by these defconfigs hasn't been reachable for more than half a year. Finally, these defconfigs don't even use the BR2_TARGET_UBOOT_ALTERA_SOCFPGA_IMAGE_CRC option so they are not a great example for this family of targets. Remove these defconfigs, as well as the board directory. Both are removed in a single commit to avoid having an inconsistent readme. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Cc: Jan Viktorin <viktorin@rehivetech.com> Cc: Charles Manning <cdhmanning@gmail.com> Cc: Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* via_imx6_vab820_defconfig: remove broken defconfigArnout Vandecappelle2017-03-054-209/+0
| | | | | | | | | | | This defconfig has been broken due to gcc5 for more than half a year, and nobody stepped up to fix it. Remove it, as well as it board directory. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Cc: Gergely Imreh <imrehg@gmail.com> Cc: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* board/minnowboard: remove support for minnowboardArnout Vandecappelle2017-03-054-5/+1
| | | | | | | | | The scripts used for the minnowboards were generic for MinnowBoard and MinnowBoard MAX. Since we removed the original MinnowBoard, this isn't necessary anymore. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* minnowboard_defconfig: remove broken defconfigArnout Vandecappelle2017-03-054-217/+3
| | | | | | | | | This defconfig has been broken due to gcc5 for more than half a year, and nobody stepped up to fix it. Remove it, as well as the files it references. Update the readme to remove references to MinnowBoard. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* python-pylibftdi: new packageChristian Kellermann2017-03-056-0/+64
| | | | | | | | Adds the python binding for libftdi to buildroot. Signed-off-by: Christian Kellermann <christian.kellermann@solectrix.de> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* odroid-mali: mark package as BROKENThomas Petazzoni2017-03-051-0/+10
| | | | | | | | | | | | | | | | | | | | | | | The version of the khrplatform.h header bundled with odroid-mali has a definition of the khronos_intptr_t and khronos_ssize_t that doesn't match the official Khronos registry headers or the Mesa3D headers. Due to this, it causes conflicts with some packages that redefines those types (with the correct definitions), such as libepoxy. Issue reported upstream at: https://github.com/mdrjr/c2_mali/issues/1 Since nobody bothered fixing the issue even though it has been happening since July 2016 (first build failure at http://autobuild.buildroot.net/results/ed8d562ae5fdb472a83f9a07b2f755c80c972c34/), let's mark this package as BROKEN. Fixes: http://autobuild.buildroot.net/results/ca48bb6291ca16e410edb83b5cdeb24847b6eaee/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sngrep: use pkg-config to discover OpenSSL to fix static linkingThomas Petazzoni2017-03-053-1/+119
| | | | | | | | | | | | | | | | | | | | Building sngrep with OpenSSL support in static linking configurations currently fails due to undefined symbols in the OpenSSL library. It's the usual problem with using AC_CHECK_LIB() to discover libraries instead of the pkg-config based PKG_CHECK_MODULES(). Therefore, this commit introduces a patch that switches to using pkg-config to discover OpenSSL. A preliminary patch is needed, without which appending to LIBS/CFLAGS doesn't work. Both patches have been submitted upstream. Fixes: http://autobuild.buildroot.net/results/911143de823b2c749ac0a59dfa06adb6ddd3de50/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* x264: fix build on OpenRISCThomas Petazzoni2017-03-051-0/+5
| | | | | | | | | | | | | | | Even though x264 doesn't use an autoconf generated configure script (and hence doesn't use the autotools-package infrastructure), it uses config.guess and config.sub. The ones bundled in x264 are too old to know about the OpenRISC architecture, so this commit leverages the UPDATE_CONFIG_HOOK from the autotools-package infrastructure to update config.sub and config.guess. Fixes: http://autobuild.buildroot.net/results/b458c2dff0ecde61248f058092c6eeaa75039cfb Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* core/pkg-cmake: better way to pass our CMAKE_MODULE_PATHYann E. MORIN2017-03-052-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Currently, we tell cmake where to look for our own custom platform description by passing the path to the moduls directory on the command line. However, this causes two different problems. First, some packages simply set CMAKE_MODULE_PATH in their CMakeList.txt, thus overriding our own path, and then our platform description is not found. Second, cmake may internally call sub-cmake (e.g. in the try_compile macro), but the CMAKE_MODULE_PATH is not automatically passed down in this case. For the first problem, we could hunt down and fix all offenders, but this is an endless endeavour, especially since packagers are told to do so on the cmake wiki [0]: CMAKE_MODULE_PATH tell CMake to search first in directories listed in CMAKE_MODULE_PATH when you use FIND_PACKAGE() or INCLUDE() SET(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/MyCMakeScripts) FIND_PACKAGE(HelloWorld) The second problem could be solved by passing yet another variable on the command line, that tells cmake to explicitly pass arbitrary variables down to sub-cmake calls: -DCMAKE_TRY_COMPILE_PLATFORM_VARIABLES=CMAKE_MODULE_PATH However, this only covers the case of try_compile. Even though no other case is known yet, we'd still risk missing locations where we would need to propagate CMAKE_MODULE_PATH, even some where we'd have no solution like for try_compile. Instead, ngladitz on IRC suggested that CMAKE_MODULE_PATH be set directly from the toolchain file. And indeed this fixes both problems explained above. So be it. [0] https://cmake.org/Wiki/CMake_Useful_Variables Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Samuel Martin <s.martin49@gmail.com> Cc: Jörg Krause <joerg.krause@embedded.rocks> Cc: Ben Boeckel <mathstuf@gmail.com> Cc: Baruch Siach <baruch@tkos.co.il> Cc: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libwebsockets: bump to version 2.1.1Kurt Van Dijck2017-03-052-2/+2
| | | | | | | | Mosquitto combined with version 2.1.0 of libwebsockets yields a failing system. Version 2.1.1 restores the websocket interface again. Signed-off-by: Kurt Van Dijck <dev.kurt@vandijck-laurijssen.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* cryptsetup: install to stagingThomas Petazzoni2017-03-051-0/+1
| | | | | | | | | | cryptsetup installs a library and a header file, so it makes sense to install it to staging. Fixes bug #9691. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: Yann E. MORIN <yann.morin.1998@free.fr>
* ipset: bump to version 6.31Baruch Siach2017-03-052-4/+4
| | | | | Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* ipset: drop obsolete patchBaruch Siach2017-03-052-41/+0
| | | | | | | | | Since commit 0552a367dbd ("Remove --{enable, disable}-debug configure flags.") we do not pass --enable-debug to configure script. The patch to remove -Werror in this case is thus no longer needed. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/raspberrypi3_defconfig: add raspberry pi 3 compute module supportMartin Bark2017-03-052-1/+2
| | | | | Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/raspberrypi0_defconfig: add raspberry pi zero w supportMartin Bark2017-03-052-1/+2
| | | | | Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/rpi-userland: bump versionMartin Bark2017-03-052-2/+2
| | | | | Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/rpi-firmware: bump versionMartin Bark2017-03-052-2/+2
| | | | | Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/raspberrypi3_defconfig: bump kernel version to 4.9.13Martin Bark2017-03-051-3/+3
| | | | | Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/raspberrypi2_defconfig: bump kernel version to 4.9.13Martin Bark2017-03-051-3/+3
| | | | | Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/raspberrypi0_defconfig: bump kernel version to 4.9.13Martin Bark2017-03-051-3/+3
| | | | | Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/raspberrypi_defconfig: bump kernel version to 4.9.13Martin Bark2017-03-051-3/+3
| | | | | Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/{mesa3d, mesa3d-headers}: bump version to 17.0.1Bernd Kuhls2017-03-053-6/+6
| | | | | | | Changed _SITE according to URL mentioned in upstream release note. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/x11r7/xapp_sessreg: bump version to 1.1.1Bernd Kuhls2017-03-054-36/+4
| | | | | | | | | | | Removed patch applied upstream: https://cgit.freedesktop.org/xorg/app/sessreg/commit/?id=93f5d5abf6b214a4b36e00cd09174d24b2ed0a6d Renumbered remaining patch. Changed _SITE according to URL mentioned in upstream release note. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/x11r7/xlib_libX11: bump version to 1.6.5Bernd Kuhls2017-03-052-4/+4
| | | | | | | Changed _SITE according to URL mentioned in upstream release note. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/x11r7/xserver_xorg-server: bump version to 1.19.2Bernd Kuhls2017-03-056-5/+5
| | | | | | | Changed _SITE according to URL mentioned in upstream release note. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/wayland: don't build testsYann E. MORIN2017-03-052-1/+73
| | | | | | | | | | | | | | | wayland is entirely written in C, except for a single test that is written in C++. Since we are not interested in running the tests on the target, add an option to configure to disable tests altogether. Fixes: http://autobuild.buildroot.org/results/291/291e0f1ea18004190ae5acd9bec147cacc3e4bda/ Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/wayland: drop non-existing configure optionYann E. MORIN2017-03-051-1/+1
| | | | | | | | --disable-scanner was removed back in 2015, so drop it. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* lpeg: bump to version 1.0.1Francois Perrad2017-03-052-2/+2
| | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* DEVELOPERS: add Martin Bark for package/nodejsMartin Bark2017-03-051-0/+1
| | | | | Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/tzdata: bump version to 2017aMartin Bark2017-03-052-3/+3
| | | | | Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/zic: bump version to 2017aMartin Bark2017-03-052-3/+3
| | | | | Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/bluez5_utils: bump version to 5.44Bernd Kuhls2017-03-052-2/+2
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/chrony: bump version to 3.1Bernd Kuhls2017-03-052-4/+4
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* uclibc: add patch to sync sys/timex.hWaldemar Brodkorb2017-03-051-0/+85
| | | | | | | | | This fixes a qemu-user compile error. Reported-by: François Perrad <francois.perrad@gadz.org> Reported-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* putty: needs wchar supportThomas Petazzoni2017-03-041-0/+5
| | | | | | | | | | | putty uses mbstate_t, which is a wchar related definition, so wchar support is needed in the toolchain. Fixes: http://autobuild.buildroot.net/results/0e3f4306513b79306d43338eced890205632c395/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* DEVELOPERS: remove cosmo packageThomas Petazzoni2017-03-041-1/+0
| | | | | | | | The cosmo package has been removed in commit 2c8438866394f2146ab60c483a820e3ca78ce560, but the entry in the DEVELOPERS file was forgotten. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* arch: add support for the csky architectureGuo Ren2017-03-044-0/+62
| | | | | | | | This commit provides basic support for the C-SKY architecture. Signed-off-by: Guo Ren <ren_guo@c-sky.com> [Thomas: minor tweaks.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* support/mkusers: rename variable to avoid name clashingYann E. MORIN2017-03-041-7/+7
| | | | | | | | | | | | | | | | | | | The LINES variable is automatically set by bash to represent the number of lines in the terminal. That variable can be set when the shell receives SIGWINCH. If the shell does receive SIGWINCH after our LINES array is filled, the content of the array is mangled. Rename the variable to avoid that. Fixes #9456 Reported-by: George Y. <georgebrmz@oss3d.com> Reported-by: Paul Stewart <paulstewartis@gmail.com> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Arnout Vandecappelle <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/librsvg: disable gdk-pixbuf-loaderRomain Naour2017-03-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | gdk-pixbuf-loader support is enabled by default but it silently fail to generate gdk-pixbuf.loaders file when host != target. For exemple on ARM target: output/host/usr/bin/gdk-pixbuf-query-loaders ./libpixbufloader-svg.la g_module_open() failed for output/build/librsvg-2.40.16/gdk-pixbuf-loader/./libpixbufloader-svg.la: output/build/librsvg-2.40.16/gdk-pixbuf-loader/./.libs/libpixbufloader-svg.so: wrong ELF class: ELFCLASS32 But it doesn't break the build. When host = target using the Sourcery CodeBench AMD64 2016.11 toolchain optimized for x86_68 AMD Puma/Jaguar or AMD Steamroller, it break the build due to "Illegal instruction". output/host/usr/bin/gdk-pixbuf-query-loaders libpixbufloader-svg.la Illegal instruction (core dumped) Since this option is broken for cross-compilation, disable it. Fixes: http://autobuild.buildroot.net/results/393/393145bc9bcb93d6df55ec8c63725c3d9a299957 Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Revert "python-pytrie: bump to version 0.3"Thomas Petazzoni2017-03-042-5/+5
| | | | | | | | | | | This reverts commit b0c7bd34286b39192dc8958dcf2140b240032b19, which causes some build failures. Fixes: http://autobuild.buildroot.net/results/e4209a2209bba769c264f8c4c6dfe2995443c243/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Revert "python-pyasn: bump to version 1.6.0b1"Thomas Petazzoni2017-03-042-6/+6
| | | | | | | | | | | This reverts commit 98c9b1bec6fd511889f38c72bc4aa5aba89e264d, which causes build failures. Fixes: http://autobuild.buildroot.net/results/27e1c6cdf330bd2009bf8895d8c72a7c4f5186af/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Revert "python-pyasn: fix legal info"Thomas Petazzoni2017-03-041-2/+2
| | | | | | | | This reverts commit aca82a056b04f1bc1d2578e414d8a8d1eaf66207, which is needed to revert commit 98c9b1bec6fd511889f38c72bc4aa5aba89e264d, which itself causes build failures. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Revert "python-cherrypy: bump to version 10.1.1"Thomas Petazzoni2017-03-042-5/+5
| | | | | | | | | | | This reverts commit 98c0bb2324ab8a2eb2bacaa497f11f773af771cd, which causes some build failures. Fixes: http://autobuild.buildroot.net/results/b66/b66f8fbce3a5127b69a09bdc91a460a3c107e29d/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* python-enum: fix license informationThomas Petazzoni2017-03-041-2/+2
| | | | | | | | | | | | | | | | | | | | | The bump of python-enum to version 0.4.6 in commit 636df89872c7b6a6bed2c679cf65da41309ac652 forgot to update the license information. Even though the PKG-INFO file still pretends it's GPLv2 or Python license, the only license file available is LICENSE.GPL-3 (which indicates a GPLv3 license), and the comment header in the source code is pretty clear: This is free software: you may copy, modify, and/or distribute this work under the terms of the GNU General Public License as published by the Free Software Foundation; version 3 of that license or any later version. No warranty expressed or implied. See the file ‘LICENSE.GPL-3’ for details. Fixes: http://autobuild.buildroot.net/results/7fec1c7cde710f523263e74b1849f1f4488b7d26/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/mx51evk: Bump U-Boot and kernel versionsFabio Estevam2017-03-031-4/+4
| | | | | | | Bump U-Boot to 2017.01 version and kernel to 4.9.13. Signed-off-by: Fabio Estevam <festevam@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* vala: bump to version 0.34.5Gustavo Zacarias2017-03-032-3/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* ed: bump to version 1.14.2Baruch Siach2017-03-032-5/+3
| | | | | Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* docker-engine: bump to version 17.03.0-ceFabrice Fontaine2017-03-032-3/+3
| | | | | Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* docker-containerd: bump to version 977c511eda0925a723debdc94d09459af49d082aFabrice Fontaine2017-03-032-2/+2
| | | | | | | This is a runtime dependency of docker-engine in version 17.03.0-ce Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
OpenPOWER on IntegriCloud