Ryan Barnett
bc4f79d665
Support for multiple BR2_GLOBAL_PATCH_DIR
...
Adding support for specifying multiple directories in
BR2_GLOBAL_PATCH_DIR. This will allow for a layered approach for the
patching of a package.
Signed-off-by: Ryan Barnett <rjbarnet@rockwellcollins.com >
Cc: Thomas De Schampheleire <patrickdepinguin@gmail.com >
Cc: Arnout Vandecappelle <arnout@mind.be >
Reviewed-by: Thomas De Schampheleire <patrickdepinguin@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2013-12-25 17:31:10 +01:00
Thomas Petazzoni
87815fc695
gnutls: fix libopts detection causing build failures
...
Following the recent bump of gnutls to version 3.2.8, the build
started to fail on some machines where libopts is installed on the
system: gnutls configure script was incorrectly assuming that libopts
was available.
Since we don't have a package in Buildroot, this commit tells gnutls
to use its builtin libopts version.
Fixes (tested on gcc20):
http://autobuild.buildroot.org/results/18f/18f61b3be6aed73f83b449b5082492a4a6ba8ffb/build-end.log
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2013-12-25 17:14:44 +01:00
Ezequiel Garcia
43e9128600
fio: new package
...
[Thomas: add largefile and thread dependencies, bump to version 2.1.4,
use upstream Git instead of Debian tarballs, adjust license
information]
Signed-off-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2013-12-25 16:44:13 +01:00
Sonic Zhang
b7cac3e86e
e2fsprogs: rename the first patch to match the naming policy
...
Signed-off-by: Sonic Zhang <sonic.zhang@analog.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2013-12-25 12:41:59 +01:00
Mathias De Maré
a10073b6b0
package: make package download from Mercurial repositories more robust
...
Previously, when cloning a Mercurial repository,
aborting the clone could (in some cases) leave behind an empty directory.
As a result, a later clone would fail.
Signed-off-by: Mathias De Maré <mathias.demare@gmail.com >
Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2013-12-25 12:36:39 +01:00
Thomas Petazzoni
5c4b60c7e0
binutils: do not allow on NIOS2, no support available
...
binutils does not have support for NIOS2 on the target, so disable the
selection of binutils on this architecture.
Fixes:
http://autobuild.buildroot.org/results/40d/40d9cbefd03727af82610412ed0bc47674c44dbb/build-end.log
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
Acked-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com >
2013-12-25 12:31:18 +01:00
Thomas De Schampheleire
c4c55206fb
Config.in files: fix incorrect indentation
...
Tab instead of spaces
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2013-12-25 12:29:52 +01:00
Thomas De Schampheleire
545f3a3b32
python-id3: correct indentation of Config.in file
...
Tab instead of four spaces.
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2013-12-25 12:29:34 +01:00
Thomas De Schampheleire
7e6716137f
python-bottle: add missing dependency on python
...
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2013-12-25 12:29:10 +01:00
Baruch Siach
4ec35e76b8
ffmpeg: fix build for xtensa
...
The ffmpeg package generates libraries that are too large for the xtensa
default placement of literals in a dedicated section. Use
-mtext-section-literal to place literals in the text section.
Fixes
http://autobuild.buildroot.net/results/606/60670d35f16c3b8fe19debf7f8e40a046a579520/
Signed-off-by: Baruch Siach <baruch@tkos.co.il >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2013-12-25 12:28:20 +01:00
Thomas De Schampheleire
35eaed8d07
Config.in files: use if/endif instead of 'depends on' for main symbol
...
In the Config.in file of package foo, it often happens that there are other
symbols besides BR2_PACKAGE_FOO. Typically, these symbols only make sense
when foo itself is enabled. There are two ways to express this: with
depends on BR2_PACKAGE_FOO
in each extra symbol, or with
if BR2_PACKAGE_FOO
...
endif
around the entire set of extra symbols.
The if/endif approach avoids the repetition of 'depends on' statements on
multiple symbols, so this is clearly preferred. But even when there is only
one extra symbol, if/endif is a more logical choice:
- it is future-proof for when extra symbols are added
- it allows to have just one strategy instead of two (less confusion)
This patch modifies the Config.in files accordingly.
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2013-12-25 12:21:39 +01:00
Axel Lin
142a81d605
redis: bump to version 2.6.17
...
Fixes since 2.6.16:
* [FIX] redis-cli: fix big keys search when the key no longer exist.
* [FIX] Allow AUTH / PING when disconnected from slave with serve-stale-data on.
* [FIX] redis-benchmark: update help for new __rand_int__ form.
* [FIX] Fix broken rdbWriteRaw() return value check in rdb.c (harmless).
* [FIX] Log to what master a slave is going to connect to.
* [FIX] Only run the fast active expire cycle if master & enabled.
* [FIX] Fixed a replication bug involving 32 bit instances and big datasets
hard to compress that resulted into more than 2GB of RDB file sent.
Signed-off-by: Axel Lin <axel.lin@ingics.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2013-12-25 10:26:15 +01:00
Maxime Hadjinlian
1497e1b133
cmake: bump to version 2.8.12.1
...
Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2013-12-25 10:25:19 +01:00
Thomas De Schampheleire
91a4ce4876
menu: visually split Shells from Utilities
...
As discussed in [1], add comments to distinghuish shells from utilities in
the 'Shells and Utilities' menu.
[1] http://lists.busybox.net/pipermail/buildroot/2013-December/083836.html
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2013-12-25 10:17:27 +01:00
Gustavo Zacarias
da30463346
gnutls: bump to version 3.2.8
...
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2013-12-25 10:12:51 +01:00
Gustavo Zacarias
d3d00c010e
libmicrohttpd: bump to version 0.9.33
...
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2013-12-25 10:12:39 +01:00
Axel Lin
a5ade62999
kmod: bump to version 16
...
kmod-0001-Add-configure-check-for-_Static_assert.patch is already merged in
upstream.
Signed-off-by: Axel Lin <axel.lin@ingics.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2013-12-25 10:11:15 +01:00
Yann E. MORIN
441579d613
package/python-pycrypto: fix legal-info
...
The pycrypto package contains a LICENSE.orig file, but apply-patches.sh
removes all .orig file, so we can't list a .orig file asa license file,
as it would have disapeared by the time 'make legal-info' sould be called.
Add a post-extract hook that renames this license file, so it is renamed
just before we apply patches and remove .orig files.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr >
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
Cc: Ryan Barnett <rjbarnet@rockwellcollins.com >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2013-12-25 10:08:45 +01:00
Philippe Reynes
0a353bf26b
apf27: bump kernel version to 3.12.6
...
Signed-off-by: Philippe Reynes <tremyfr@yahoo.fr >
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2013-12-25 10:07:32 +01:00
Thomas Petazzoni
280b16f69d
Revert "util-linux: Add config switches for some more binaries"
...
This reverts commit 2746158497 . This
commit is causing build issues when chfn/chsh are selected, due to bad
interactions with PAM. The initial submitter of the patch has agreed
to work on an improved version that fixes those problems, but in the
mean time, we revert this commit to prevent the problem from occuring
in the autobuilders.
Fixes:
http://autobuild.buildroot.org/results/820/8204008da6944923034fa17ecbcfefcf15373ee5/build-end.log
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
2013-12-25 10:02:02 +01:00
Gustavo Zacarias
6b5fd46de3
libpng: security bump to version 1.6.8
...
Fixes CVE-2013-6954.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-22 12:09:31 +01:00
Gustavo Zacarias
59544198ab
squid: drop session external acl helper, use file_userip
...
The session external acl helper needs berkeleydb, switch to the basic
file_userip one which was my original intention (renamed from ip_user in
the 3.3.x series). Fixes:
http://autobuild.buildroot.net/results/635/6359137cde3b293d46df732836b8966d30f23cbc/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-22 12:09:24 +01:00
Axel Lin
3bbaee01d6
subversion: bump to version 1.7.14
...
Upgrade to latest security-related bugfixes release.
Signed-off-by: Axel Lin <axel.lin@ingics.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-22 10:59:41 +01:00
Gustavo Zacarias
a95dc1fdb9
linux: bump to version 3.12.6
...
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-21 14:18:50 +01:00
Gustavo Zacarias
ee7291d03b
linux-headers: bump 3.{4, 10, 12}.x stable versions
...
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-21 14:18:39 +01:00
Paul Cercueil
2746158497
util-linux: Add config switches for some more binaries
...
Signed-Off-By: Paul Cercueil <paul@crapouillou.net >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-20 22:45:31 +01:00
Thomas Petazzoni
0fd8e8ddb4
python-pycrypto: do not include host headers
...
This commit adds a patch to python-pycrypto that removes /usr/include
for the headers path, which is wrong when cross-compiling.
Fixes:
http://autobuild.buildroot.org/results/5bf/5bf5e31c485a4ee8c0b0a5721205f0fed9b5ae5d/build-end.log
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-20 22:23:10 +01:00
Gustavo Zacarias
d738fc6b44
squid: bump to version 3.4.1
...
New for 3.4 series:
* SSL Server Certificate Validator
* Multicast DNS
* Transaction Annotations
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-20 22:12:13 +01:00
Paul Cercueil
9fce881c38
cairo: Patch to fix OpenVG backend on X11-less platforms
...
Submitted upstream: https://bugs.freedesktop.org/show_bug.cgi?id=72911
Signed-off-by: Paul Cercueil <paul@crapouillou.net >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-20 15:51:24 +01:00
Yegor Yefremov
cdc12b9b62
fluxbox: bump to 1.3.5
...
Remove obsolete patch.
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-20 15:44:41 +01:00
Alexandre Belloni
9dc1bbe5ea
bluez-utils: Add GATT support
...
This allows to compile gatttool which can help use Bluetooth Low Energy
devices.
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-20 15:43:57 +01:00
Gustavo Zacarias
cbb6cdc69c
libcurl: security bump to version 7.34.0
...
Fixes CVE-2013-4545.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-19 23:17:25 +01:00
Gustavo Zacarias
43f46fccba
wireshark: security bump to version 1.10.4
...
Fixes CVE-2013-7112, CVE-2013-7113 and CVE-2013-7114.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-19 23:17:20 +01:00
Gustavo Zacarias
86c5d5932b
pcre: bump to version 8.34
...
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-19 22:33:21 +01:00
Simon Dawson
09b6200a56
zyre: use a git snapshot that builds
...
Commit abe6a13cea bumped the git snapshot for
zyre. Unfortunately, the newer snapshot requires a newer version of
czmq than is currently available in Buildroot. The simplest short-term fix is
to roll zyre back to an earlier git snapshot.
Fixes autobuild failures such as the following.
http://autobuild.buildroot.net/results/0ef/0efbbcc7e94cdb184c5d032469e03b2b7da3d054/
Signed-off-by: Simon Dawson <spdawson@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-19 22:33:00 +01:00
Thomas De Schampheleire
b85319da02
gst-plugins-good: fix typo BR2_TOOLCHAIN_HAS_THREAD
...
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-19 22:31:49 +01:00
Thomas De Schampheleire
30abaffe55
gstreamer1 packages: factorize dependency on gstreamer1
...
Proposed-by: Arnout Vandecappelle <arnout@mind.be >
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-19 22:31:34 +01:00
Thomas De Schampheleire
61cef6db35
gstreamer packages: factorize dependency on gstreamer
...
Proposed-by: Arnout Vandecappelle <arnout@mind.be >
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-19 22:31:03 +01:00
Paul Cercueil
5582d5c707
cairo: Build with GLESv2 and VG backends if possible
...
Signed-Off-By: Paul Cercueil <paul@crapouillou.net >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-19 22:00:16 +01:00
Thomas De Schampheleire
6386eda4a7
manual: explain format of comment about udev /dev management dependency
...
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-19 21:54:36 +01:00
Thomas De Schampheleire
71bdf4c40b
Config.in files: unify comment dependency on udev /dev management
...
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-19 21:53:46 +01:00
Thomas De Schampheleire
dd72ecc0db
gawk: add missing comment for toolchain option dependencies
...
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-19 21:42:27 +01:00
Thomas De Schampheleire
02dc29cbba
udev: add missing comment for toolchain option dependencies
...
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-19 21:42:03 +01:00
Thomas De Schampheleire
bd6f2371a2
p11-kit: add missing comment for dynamic library support
...
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-19 21:41:49 +01:00
Thomas De Schampheleire
9235bb17a6
qt5quick1: add missing comment for toolchain option dependencies
...
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-19 21:41:03 +01:00
Thomas De Schampheleire
39fb8b7018
tzdata: add missing comment for toolchain option dependencies
...
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-19 21:41:01 +01:00
Thomas De Schampheleire
f05e3c9ab6
mongrel2: add missing comment for toolchain option dependencies
...
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-19 21:40:57 +01:00
Jerzy Grzegorek
aa593ddbc1
package: add <pkg>_VERSION_MAJOR variable
...
Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net >
Reviewed-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-19 21:37:39 +01:00
Jerzy Grzegorek
dffcc7034e
imagemagick: bump to version 6.8.7-10
...
Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-19 21:36:17 +01:00
Anders Darander
12a9c3f295
ktap: update to v0.4
...
Add a check for BR2_PACKAGE_ELFUTILS; if this is enabled, then try to link
against libelf from the elfutils package. This allows ktap to resolve
symbols in userspace.
The new FFI functionality in ktap is not exposed, as it currently only
supports x86_64...
Signed-off-by: Anders Darander <anders@chargestorm.se >
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be >
Signed-off-by: Peter Korsgaard <peter@korsgaard.com >
2013-12-19 21:29:36 +01:00