summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* qemu/x86_64: update to the latest versionsGustavo Zacarias2014-10-073-6/+6
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qemu/xtensa-lx60: update to the latest versionsGustavo Zacarias2014-10-073-6/+6
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qemu/sparc-ss10: update to the latest versionsGustavo Zacarias2014-10-072-5/+5
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qemu/sh4-r2d: update to the latest versionsGustavo Zacarias2014-10-073-33/+7
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qemu/mips-malta: update to the latest versionsGustavo Zacarias2014-10-073-6/+6
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qemu/mipsel-malta: update to the latest versionsGustavo Zacarias2014-10-073-6/+6
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qemu/mips64-malta: update to the latest versionsGustavo Zacarias2014-10-073-6/+6
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qemu/mips64el-malta: update to the latest versionsGustavo Zacarias2014-10-073-6/+6
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qemu/microblazeel-mmu: update to the latest versionsGustavo Zacarias2014-10-073-10/+8
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qemu/microblazebe-mmu: update to the latest versionsGustavo Zacarias2014-10-073-10/+6
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qemu/arm-vexpress: update to the latest versionsGustavo Zacarias2014-10-072-5/+5
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qemu/arm-versatile: update to the latest versionsGustavo Zacarias2014-10-073-7/+7
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qemu/arm-nuri: update to the latest versionsGustavo Zacarias2014-10-072-3/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qemu/aarch64-virt: update to the latest versionsGustavo Zacarias2014-10-073-8/+7
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* kmod: add patches to support build on RHEL 5Thomas De Schampheleire2014-10-072-0/+117
| | | | | | | | | | | kmod uses certain features not available on older RHEL 5 machines (RedHat Enterprise Linux). This commit adds two patches to fix that. Both patches have been proposed upstream, the second one being accepted, the first rejected with the suggestion to add the patch in Buildroot instead. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* btrfs-progs: fix build breakage on uClibc without backtraceGustavo Zacarias2014-10-072-1/+90
| | | | | | | | | | | | | uClibc has optional support for backtrace() hence on default configurations where it's disabled it'll fail. Add patch to make backtrace support conditional and disable it for uClibc-based builds since it's mostly for debugging purposes. Fixes: http://autobuild.buildroot.net/results/325/32523398a8c66a7ac6d3e789332d1b57e090aef1/ Patch status: sent upstream. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* ympd: Depends on MMUYuvaraj Patil2014-10-071-0/+1
| | | | | | | | | | This package needs MMU. Hence added dependency on BR2_USE_MMU Fixes: http://autobuild.buildroot.net/results/834/8340e69763e263fcf20e73f75eafcb31989e9f51// Signed-off-by: Yuvaraj Patil <yuvaraj.patil@wipro.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* .mk files: bulk aligment and whitespace cleanup of assignmentsThomas De Schampheleire2014-10-07134-396/+396
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Buildroot coding style defines one space around make assignments and does not align the assignment symbols. This patch does a bulk fix of offending packages. The package infrastructures (or more in general assignments to calculated variable names, like $(2)_FOO) are not touched. Alignment of line continuation characters (\) is kept as-is. The sed command used to do this replacement is: find * -name "*.mk" | xargs sed -i \ -e 's#^\([A-Z0-9a-z_]\+\)\s*\([?:+]\?=\)\s*$#\1 \2#' -e 's#^\([A-Z0-9a-z_]\+\)\s*\([?:+]\?=\)\s*\([^\\]\+\)$#\1 \2 \3#' -e 's#^\([A-Z0-9a-z_]\+\)\s*\([?:+]\?=\)\s*\([^\\ \t]\+\s*\\\)\s*$#\1 \2 \3#' -e 's#^\([A-Z0-9a-z_]\+\)\s*\([?:+]\?=\)\(\s*\\\)#\1 \2\3#' Brief explanation of this command: ^\([A-Z0-9a-z_]\+\) a regular variable at the beginning of the line \([?:+]\?=\) any assignment character =, :=, ?=, += \([^\\]\+\) any string not containing a line continuation \([^\\ \t]\+\s*\\\) string, optional whitespace, followed by a line continuation character \(\s*\\\) optional whitespace, followed by a line continuation character Hence, the first subexpression handles empty assignments, the second handles regular assignments, the third handles regular assignments with line continuation, and the fourth empty assignments with line continuation. This expression was tested on following test text: (initial tab not included) FOO = spaces before FOO = spaces before and after FOO = tab before FOO = tab and spaces before FOO = tab after FOO = tab and spaces after FOO = spaces and tab after FOO = \ FOO = bar \ FOO = bar space \ FOO = \ GENIMAGE_DEPENDENCIES = host-pkgconf libconfuse FOO += spaces before FOO ?= spaces before and after FOO := FOO = FOO = FOO = FOO = $(MAKE1) CROSS_COMPILE=$(TARGET_CROSS) -C AT91BOOTSTRAP3_DEFCONFIG = \ AXEL_DISABLE_I18N=--i18n=0 After this bulk change, following manual fixups were done: - fix line continuation alignment in cegui06 and spice (the sed expression leaves the number of whitespace between the value and line continuation character intact, but the whitespace before that could have changed, causing misalignment. - qt5base was reverted, as this package uses extensive alignment which actually makes the code more readable. Finally, the end result was manually reviewed. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Cc: Yann E. Morin <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* openssh: bump to version 6.7p1Gustavo Zacarias2014-10-072-1/+3
| | | | | | | Also add hash file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* liboping: bump to version 1.7.0Gustavo Zacarias2014-10-072-1/+3
| | | | | | | Also add hash file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libassuan: bump to version 2.1.2Gustavo Zacarias2014-10-072-1/+3
| | | | | | | Also add hash file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libgcrypt: add hash fileGustavo Zacarias2014-10-071-0/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* gnupg2: add hash fileGustavo Zacarias2014-10-071-0/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* gnupg: add hash fileGustavo Zacarias2014-10-071-0/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libksba: bump to version 1.3.1Gustavo Zacarias2014-10-072-1/+3
| | | | | | | Also add hash file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* btrfs-progs: bump to version 3.16.2Gustavo Zacarias2014-10-074-146/+4
| | | | | | | Patches now upstream. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* tcpreplay: bump to version 4.0.5Gustavo Zacarias2014-10-072-1/+4
| | | | | | | Also add hash file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* whois: bump to version 5.2.0Gustavo Zacarias2014-10-072-1/+3
| | | | | | | Also add hash file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* openvmtools: remove unnecessary C flagKaroly Kasza2014-10-061-1/+0
| | | | | | | | | Since commit 8bec0a1af57165081dc275f813c8c5c74ff12c14 the -Wno-unused-local-typedefs CFLAG in not needed. Signed-off-by: Karoly Kasza <kaszak@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* tinyalsa: new packageMaxime Hadjinlian2014-10-063-0/+52
| | | | | | | | | | | [Thomas: - remove 'default n', since it's the default - add dependency on !BR2_PREFER_STATIC_LIB since the Makefile always builds a shared library. - move from Audio/video applications to Libraries -> Audio.] Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* bash: security bump to patchlevel 30Gustavo Zacarias2014-10-062-1/+2070
| | | | | | | | More security issues, sigh. Also fix typo in pl29 patch. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* legal-info: fix bug leading to one package not being consideredThomas Petazzoni2014-10-061-1/+1
| | | | | | | | | | | | | | | | | Due to excessive parenthesis, the TARGETS_LEGAL_INFO expression was evaluated to something like this: toolchain-legal-info toolchain-external-legal-info busybox-legal-info zlib-legal-info)) Yes, with the last two parenthesis. This had the effect that the zlib-legal-info rule was never called: the last package of $(TARGETS) $(TARGET_HOST_DEPS) $(HOST_DEPS) was never added in the legal-info information. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Yann E. MORIN <yann.morin.1998@free.fr> Cc: Luca Ceresoli <luca@lucaceresoli.net> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
* package/canfestival: new packageSamuel Martin2014-10-064-0/+214
| | | | | | | | | | | | | | | | | | | | Note: the patch adding the pkgconfig module has been sent upstream [1]. [1] http://sourceforge.net/p/canfestival/mailman/message/32876320/ [Thomas: - license seems to be only LGPLv2.1+. At least, the specific files pointed to be GPLv2 carry a LGPLv2.1+ header. - added thread dependency - minor rewording here and there.] Signed-off-by: Samuel Martin <s.martin49@gmail.com> Cc: Eric Jarrige <eric.jarrige@armadeus.org> Cc: Julien Boibessot <julien.boibessot@armadeus.com> Cc: Davide Viti <zinosat@tiscali.it> Cc: Claudio Laurita <claudio.laurita@integrazionetotale.it> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/erlang: build host-erlang with support for opensslYann E. MORIN2014-10-061-2/+5
| | | | | | | | | | | | | | Erlang uses openssl for all things crypto. Since there are host Erlang tools that use crypto (such as rebar), we need to build host-erlang with support for crypto, and thus it shall depends on openssl. Suggested-by: Frank Hunleth <fhunleth@troodon-software.com> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Frank Hunleth <fhunleth@troodon-software.com> Cc: Johan Oudinet <johan.oudinet@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* linux: bump default version to 3.17Gustavo Zacarias2014-10-061-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* linux-headers: add 3.17.x seriesGustavo Zacarias2014-10-061-1/+10
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* toolchain: add 3.17 choice for headersGustavo Zacarias2014-10-062-0/+9
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* linux-headers: bump 3.{16, 14, 10}.x seriesGustavo Zacarias2014-10-061-3/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* fan-ctrl: add hash fileThomas Petazzoni2014-10-061-0/+2
| | | | | | | | | Should avoid autobuilder download issues, and therefore fix issues such as: http://autobuild.buildroot.net/results/afc/afcf6977e7845cf423d3f58d751f762622d84615/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* dejavu: add hash fileThomas Petazzoni2014-10-061-0/+2
| | | | | | | | | Should avoid download issues in the autobuilders, and therefore ultimately fix issues such as: http://autobuild.buildroot.net/results/3da/3dadab55abebf89ab1abd6b943b66d2f70a07e14/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* atftp: add hash fileThomas Petazzoni2014-10-061-0/+2
| | | | | | | | | | | | Adding a hash file will allow autobuilders to detect that the files they have downloaded is invalid. It will be removed, and then re-downloaded in a followup build. Should fix issues such as: http://autobuild.buildroot.org/results/939/93963514fc42d481808b1a046f3e1376286bdae2/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Revert "protobuf: bump version to 2.6.0"Thomas Petazzoni2014-10-062-5/+6
| | | | | | | | This reverts commit 7b6304af9d69d44ee3040c00b0670f19c02de7d2, since it causing too many build failures, with python-protobuf and host-protobuf-c. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/sispmctl: fix static linkingRomain Naour2014-10-052-1/+73
| | | | | | | | | | | | | | | | | | | | | | | | | The static linking doesn't work with libusb-compat when using libusb-config. Also the CFLAGS initialization with libusb-config --cflags is comented out. Based on libftdi's patch, this commit adds the support for pkg-config to link sispmctl correctly. This allow to add the correct include directories to CFLAGS (Add -I$(STAGING_DIR)/usr/include and -I$(STAGING_DIR)/usr/include/libusb-1.0) and also add the required libraries during static linking (-lusb -lusb-1.0 and -pthread). Since configure.ac is modified, the configure script needs to be regenerated with autoreconf. Fixes: http://autobuild.buildroot.net/results/647/6473088e751d3ab3a5227e9d7876966934e66378/build-end.log Cc: Phil Eichinger <phil.eichinger@gmail.com> Signed-off-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Tested-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* netcat-openbsd: new packageMaxime Hadjinlian2014-10-053-0/+60
| | | | | | | | | | | | The OpenBSD implementations of netcat. The main difference from netcat is the support for IPv6, proxies, and Unix sockets. [Thomas: use tabs in the command applying Debian patches, add dependency on Busybox when enabled so that we override the 'nc' command installed by Busybox.] Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libbsd: enable package on ARMMaxime Hadjinlian2014-10-051-4/+9
| | | | | | | | | | | Rework the architecture dependency by adding a BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS blind option. [Thomas: slightly reword commit log.] Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Tested-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/libshairplay: bump git snapshotJörg Krause2014-10-051-1/+1
| | | | | Signed-off-by: Jörg Krause <jkrause@posteo.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qemu-aarch64: Update to latest kernel.Waldemar Brodkorb2014-10-051-2/+2
| | | | | | | Update to Linux 3.16.3. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qemu-ppc64: Update kernel to latestWaldemar Brodkorb2014-10-051-2/+2
| | | | | | | Update to Linux 3.16.3 Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/apr-util: Add comment to describe toolchain dependenciesBernd Kuhls2014-10-051-0/+4
| | | | | | 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/libplist: bump versionYann E. MORIN2014-10-054-128/+12
| | | | | | | | | | | | | | | | libplist has switched to using autotools, so remove our cmake-related patches. Completely disable Python bindings: - it requires cython, which we do not have packaged (so far) - the only user of libplist is XBMC, which does not need the Python bindings. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Cc: Samuel Martin <s.martin49@gmail.com> Tested-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
OpenPOWER on IntegriCloud