summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ifupdown: bump to version 0.8.13Gustavo Zacarias2016-06-152-4/+4
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* exfat-utils: bump to version 1.2.4Gustavo Zacarias2016-06-152-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* exfat: bump to version 1.2.4Gustavo Zacarias2016-06-152-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* file: bump to version 5.28Gustavo Zacarias2016-06-152-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libpng: bump to version 1.6.23Gustavo Zacarias2016-06-152-4/+4
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* pcre: bump to version 8.39Gustavo Zacarias2016-06-156-233/+38
| | | | | | | Drop upstream patches and giterize/rebase the other ones. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* linux-headers: bump 3.10.x seriesGustavo Zacarias2016-06-151-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* wireshark: remove documentationGilles Chanteperdrix2016-06-141-0/+7
| | | | | | | | | | Remove html and txt documentation from the rootfs as they unlikely to be needed. [Peter: use xargs instead of GNU extensions as suggested by Yann] Signed-off-by: Gilles Chanteperdrix <gilles.chanteperdrix@xenomai.org> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* log4cpp: disable documentation build and installBaruch Siach2016-06-141-0/+1
| | | | | | | | | | | | | | | We don't need the documentation on target. Also fixes: http://autobuild.buildroot.net/results/402/402587fe3ba9d537195ba470cf6f19f25ac246bf/ http://autobuild.buildroot.net/results/ea2/ea257496f51665b0a6b03f31e50744761c5d43da/ http://autobuild.buildroot.net/results/353/3533a32a7de7dae288558f43eb2b068081939e4d/ and many more. Cc: Damien Lanson <damien@kal-host.com> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* dhcpcd: security bump to version 6.11.0Baruch Siach2016-06-142-2/+2
| | | | | | | | | | Fixes CVE-2014-7913: The print_option function in dhcp-common.c in dhcpcd through 6.10.2 misinterprets the return value of the snprintf function, which allows remote DHCP servers to execute arbitrary code or cause a denial of service (memory corruption) via a crafted message. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* imlib2: drop unneeded autoreconfPeter Korsgaard2016-06-141-1/+0
| | | | | | | This was forgotten when the patch to Makefile.am was removed in 779676f62d56 (imlib2: security bump to version 1.4.8). Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/mpd: bump to version 0.19.16Jörg Krause2016-06-142-6/+2
| | | | | | | | Remove fetching upstream patch to fix build with GCC 6 - it's included in the update. Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* opus: drop unneeded autoreconfPeter Korsgaard2016-06-131-1/+0
| | | | | | | This was forgotten when the patch to configure.ac was removed in 218938e470 (opus: bump version to 1.1.1). Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/qwt: bump version to 6.1.3Bernd Kuhls2016-06-132-3/+4
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/qwt: Fix selecting OpenGL support in qt4Bernd Kuhls2016-06-131-1/+1
| | | | | | | | | | | A Kconfig option being part of a choice can not be selected directly, so we use the new option BR2_PACKAGE_QT_OPENGL. Fixes http://autobuild.buildroot.net/results/2a8/2a8edb18ab7f8a9e324966282858014e9b5bbea0/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt: enable opengl support by default if availablePeter Korsgaard2016-06-131-0/+1
| | | | | | | If opengl(-es) support is available then it makes sense for Qt to use it by default. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/qt: Fix Kconfig for OpenGL supportBernd Kuhls2016-06-131-3/+11
| | | | | | | | | | | | | | | | BR2_PACKAGE_QT_OPENGL_ES was moved to a choice option. This option kind can apparently not be selected by other packages. Therefore this patch introduces a new Kconfig option BR2_PACKAGE_QT_OPENGL which takes care of OpenGL support as such, BR2_PACKAGE_QT_OPENGL_NONE is not needed anymore now. The choice options are now only used to determine the type of OpenGL support. This patch contains the necessary preparation to fix a build error in the qwt package. [Peter: fix QT_OPENGL dependencies to match options] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/libmicrohttpd: Fix build with !C99 compilersBernd Kuhls2016-06-131-0/+1
| | | | | | | | | | | | The code assumes C99 mode for loop variables, so ensure it is used. Fixes http://autobuild.buildroot.net/results/734/734652bbdd7b6b18a8d67a30fe03bed62cd644e7/ http://autobuild.buildroot.net/results/d03/d03d36bfd4a97ff8091a815a45b4670bff992233/ [Peter: fixup/extend commit message] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* python-dataproperty: bump to version 0.3.1Yegor Yefremov2016-06-132-4/+4
| | | | | | | | | | | | | | | | Version 0.3.1 makes pytest-runner dependency optional. Fixes: http://autobuild.buildroot.net/results/0c8/0c8e0ceccc2d5f48138ec4f95e57729e33108f59 http://autobuild.buildroot.net/results/eab/eab2d2bf78ac943156a0b8698e63bdf6e63865bf http://autobuild.buildroot.net/results/4d6/4d60c711e9c1da6dd5bb809bbe328e6252d2d747 http://autobuild.buildroot.net/results/ed1/ed1982367fa1531d772d29b35e333b34e5889cec http://autobuild.buildroot.net/results/a0e/a0ebb6b155fa11c5886080f993c9aa9d596ac1c3 http://autobuild.buildroot.net/results/85e/85e5086401a314a2d3d24efa887ac0188add85fc http://autobuild.buildroot.net/results/99e/99ea243303ae12aceb2fac3a5df5e3b552712eda Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* gmp: disable ASM for m68k coldfireWaldemar Brodkorb2016-06-131-2/+2
| | | | | | | | | | | Some m68k assembly is used inside gmp, so disable it for coldfire. Fixes following autobuild error: http://autobuild.buildroot.net/results/30ac7b7fdaa51c0fe4fcafbbb558d60cb3d9fe51/ Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* fwup: add hash fileThomas Petazzoni2016-06-121-0/+2
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* fwup: new packageWojciech Niziński2016-06-126-0/+113
| | | | | | | | | | | | | | | | Signed-off-by: Wojciech Nizinski <niziak@spox.org> [Thomas: - Add missing dependency on wchar - Rewrap Config.in help text - Add missing "depends on BR2_USE_MMU" on the comment about wchar dependency. - Switch to upstream 0.7.0 version - Replace the hook calling autogen.sh by a hook simply creating the m4 directory, which is what prevented <pkg>_AUTORECONF from working. - Add patch to fix build with uClibc. - Split in separate patches the addition of the host variants of libarchive and libsodium.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libsodium: add host variantWojciech Niziński2016-06-121-0/+1
| | | | | Signed-off-by: Wojciech Niziński <niziak@spox.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libarchive: add host variantThomas Petazzoni2016-06-121-0/+17
| | | | | | | | This will be needed for the host variant of the fwup package. We enable zlib support since host-fwup needs it. All other features are explicitly disabled. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* gst1-imx: make kernel dependency optionalBaruch Siach2016-06-122-10/+9
| | | | | | | | | | | The i.MX specific kernel headers are not a hard dependency. Quoting README.md: Without [--kernel-headers], the [ipu.h] header is not found, and elements using the IPU will not be built. Cc: Gary Bisson <gary.bisson@boundarydevices.com> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/libv4l: add optional support for libgluBernd Kuhls2016-06-121-0/+4
| | | | | | | | | libv4l has optional support for libglu: https://git.linuxtv.org/v4l-utils.git/tree/configure.ac#n166 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/libv4l: add optional support for libglBernd Kuhls2016-06-121-0/+4
| | | | | | | | | libv4l has optional support for OpenGL: https://git.linuxtv.org/v4l-utils.git/tree/configure.ac#n160 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/libv4l: add optional support for alsa-libBernd Kuhls2016-06-121-0/+4
| | | | | | | | | | | | | | | Add alsa-lib as optional dependency to get a reproducable build. Without this patch configure logs: checking for ALSA... no configure: WARNING: ALSA library not available After this patch alsa-lib was built before libv4l: checking for ALSA... yes Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/libv4l: qt4 support depends on OpenGLBernd Kuhls2016-06-121-1/+1
| | | | | | | | | Fixes http://autobuild.buildroot.net/results/8fc/8fc8cbc85dacebce5cb6ab13f5ff3b0764117471/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/qt: Add optional support for OpenGLBernd Kuhls2016-06-122-0/+23
| | | | | | | | | | | | OpenGL support is only available for the desktop variant of Qt4 and not the embedded one: http://code.qt.io/cgit/qt/qt.git/tree/configure#n6612 This patch is needed to fix a compile error with libv4l which depends on OpenGL support if qt4 is used by libv4l as optional dependency. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* fmc: added powerpc e6500 supportMatt Weber2016-06-122-3/+12
| | | | | | | | | Signed-off-by: Matt Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Ronak Desai <ronak.desai@rockwellcollins.com> [Thomas: - remove useless indentation.] - calculate FMC_PLATFORM from BR2_PACKAGE_FMLIB_PLATFORM.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* fmlib: use RM macroThomas Petazzoni2016-06-121-1/+1
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* fmlib: add powerpc e6500 supportMatt Weber2016-06-122-5/+40
| | | | | | | | Signed-off-by: Matt Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Ronak Desai <ronak.desai@rockwellcollins.com> [Thomas: remove existing definition of FMLIB_ARCHTYPE in the .mk file, change QORIQ to QorIQ.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/cups: add _PRE_CONFIGURE_HOOKS for proper autoconfBernd Kuhls2016-06-122-14/+18
| | | | | | | | cups uses only autoconf, also using autoheader is broken: https://github.com/apple/cups/issues/4667#issuecomment-197689571 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* uboot: Use "mdbtrick" target when building elf for ARCZakharov Vlad2016-06-121-0/+4
| | | | | | | | | | | | | | | | By default position independent executables (PIE) are generated when building U-Boot elf target. MetaWare debugger doesn't support PIE (position-independent executable). In order to allow MDB load and run U-Boot elf, we need to do a special trick, called "mdbtrick". This special build target is used to fake generated U-Boot elf by: 1. Reset PIE flag in ELF header 2. Strip all debug information from elf Signed-off-by: Zakharov Vlad <vzakhar@synopsys.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* board/atmel: update documentation with development defconfigsLudovic Desroches2016-06-121-0/+15
| | | | | | | Add a description of the development defconfig files. Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs: atmel: add development rootfs for sama5d3 xplainedLudovic Desroches2016-06-121-0/+101
| | | | | | | This development defconfig provides tools to test features of the SoC. Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs: atmel: add sd card development image for sama5d3 xplainedLudovic Desroches2016-06-121-0/+104
| | | | | | | This development defconfig provides tools to test features of the SoC. Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs: atmel: add development rootfs for sama5d4 xplainedLudovic Desroches2016-06-121-0/+105
| | | | | | | This development defconfig provides tools to test features of the SoC. Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs: atmel: add sd card development image for sama5d4 xplainedLudovic Desroches2016-06-121-0/+105
| | | | | | | This development defconfig provides tools to test features of the SoC. Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs: atmel: add sd card development image for sama5d2 xplainedLudovic Desroches2016-06-121-0/+105
| | | | | | | This development defconfig provides tools to test features of the SoC. Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xen: new packageAlistair Francis2016-06-124-0/+100
| | | | | | | | | | | | | | | | | Add support to compile Xen 4.6 and Xen tools for arm32 and arm64 targets. Signed-off-by: Alistair Francis <alistair.francis@xilinx.com> [Thomas: - Remove all "select" from the main Xen option, since the hypervisor can build fine without any additional library. The dependencies have been moved to the "tools" sub-option. - Make sure that at least one of the sub-option is enabled by selecting the hypervisor sub-option if the tools sub-option is not enabled. - Add a Config.in comment about the dependencies of the Xen tools. - Add missing dependency on argp-standalone in the .mk file. - Simplify the handling of XEN_INSTALL_TARGET_OPTS.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs: add support for LinkSprite pcDuinoSergey Matyukevich2016-06-127-0/+196
| | | | | | | | | Add basic support for LinkSprite pcDuino board series including pcDuino, pcDuino-Lite, pcDuino-Lite-WiFi. Tested on pcDuino-Lite-WiFi. Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/libmicrohttpd: bump version to 0.9.50Bernd Kuhls2016-06-122-3/+3
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/monolite: bump to version 140Angelo Compagnucci2016-06-122-2/+2
| | | | | | | This patch bumps monolite to version 140 Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/mono: bump to version 4.4.0.182Angelo Compagnucci2016-06-124-58/+2
| | | | | | | This patch bumps mono to versione 4.4.0.182. Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/php: fix date.timezoneYann E. MORIN2016-06-121-1/+2
| | | | | | | | | | | | | | | | In 5f37843a (php.ini: set date.timezone), the configured timezone was used as the default for PHP. However, BR2_TARGET_LOCALTIME is a string, so is quoted, so it is never empty, so the check for emptynessnever matches. Fix that by q-stripping the value before testing it. Note however that we do not q-strip it before storing it in the php.ini file, because it has to be q-stripped in there. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Floris Bos <bos@je-eigen-domein.nl> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* efibootmgr: new packageErico Nunes2016-06-124-0/+47
| | | | | | | | | | | | | | | | | | | | | | A Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager. This application can create and destroy boot entries, change the boot order, change the next running boot option, and more. The only issue found was that it was trying to include headers from the host, so $(STAGING_DIR) has been prepended to the include path so that the package finds the right headers. efibootmgr depends on the libraries provided by efivar. Signed-off-by: Erico Nunes <nunes.erico@gmail.com> [Thomas: - change the "depends on" for efivar to a "select", and propagate the relevant dependencies. - the license is GPLv2+, not GPLv2. - move the Makefile tweak to a post-patch hook rather than doing it as part of the build step.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* efivar: new packageErico Nunes2016-06-126-0/+151
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | efivar contains tools and libraries to manipulate EFI variables. This package has some restrictions to build. It needs uchar.h which apparently does not come in uClibc, and it also needs __bswap_constant_*() definitions which are only present in glibc. So, this package was limited to build with glibc toolchains. Although it probably makes sense mostly on x86, x86-64 and aarch64 architectures, there are no architecture specific limitations which would prevent it to build for other architectures, so this restriction was not imposed. This package has been build-tested additionaly on many architectures which support glibc, such as mips, MicroBlaze, sparc64, ppc64. There were some build flag issues found when building to some of these some architectures, although the flags can be also added in the general case, so they were added by default. It has also been found that in some host systems it failed to build due to not generating the .pc files. This has been tracked to the use of make 3.81, so a patch was prepared for it and was submitted upstream. There's also a dependency on the linux/nvme.h header, which is somewhat conturbed, as it has appeared in user space linux headers 3.12 and in 4.4 it was renamed. This has been solved by restricting it to build with linux headers >= 3.12 and a patch from upstream was picked which fixes it for linux headers >= 4.4. Signed-off-by: Erico Nunes <nunes.erico@gmail.com> [Thomas: - Pass TARGET_LDFLAGS in LDFLAGS. - Pass -shared-libgcc only on Microblaze.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* make: bump to version 4.2.1Gustavo Zacarias2016-06-112-4/+4
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
OpenPOWER on IntegriCloud