Thomas Petazzoni [Tue, 8 Oct 2013 18:17:06 +0000 (20:17 +0200)]
toolchain: modify the wildcard logic for shared libraries copying
Until now, the copy_toolchain_lib_root function took as argument the
base name of a library (e.g: libm.so), and was assuming that the usual
scheme libm.so.<x> being a symbolic link to the real library was used.
However, with musl based toolchains, the C library is named libc.so
directly, with no symbolic link at all. Therefore, this commit changes
the copy_toolchain_lib_root to move the responsibility of using a
wildcard or not after the library name the caller's responsibility.
So, all the existing LIB_EXTERNAL_LIBS values are modified to have a
.* at the end, so that the behavior is effectively unchanged.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas Petazzoni [Tue, 8 Oct 2013 18:17:05 +0000 (20:17 +0200)]
toolchain-external: conditionalize the installation of libraries
The external toolchain code makes the assumption that all C libraries
have a ld*.so, libc.so, libcrypt.so, libdl.so, libgcc_s.so, libm.so,
libnsl.so, libresolv.so, libutil.so, and when thread support is
enabled, libpthread.so, etc.
However, this is not the case with the musl C library, which
integrates all the functionalities in a single libc.so file. In
preparation of the support of the musl library, we make the current
value of LIB_EXTERNAL_LIBS conditional to glibc or uClibc.
The addition of additional libraries through
BR2_TOOLCHAIN_EXTRA_EXTERNAL_LIBS is kept outside the condition, at
the end.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas Petazzoni [Tue, 8 Oct 2013 18:17:04 +0000 (20:17 +0200)]
dependencies: remove useless targets
The dependencies-source, dependencies-clean and dependencies-dirclean
targets are not needed, as long as 'dependencies' is not used in the
<pkg>_DEPENDENCIES of a package.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas Petazzoni [Tue, 8 Oct 2013 18:17:03 +0000 (20:17 +0200)]
toolchain-external: convert to the package infrastructure
This commit converts the 'toolchain-external' logic to the package
infrastructure.
The TOOLCHAIN_EXTERNAL_DIR variable (which points to where the
toolchain is located) is renamed to TOOLCHAIN_EXTERNAL_INSTALL_DIR,
because the former conflicts with the package infrastructure (which
defines the <pkg>_DIR variable for each package as pointing to its
build directory).
The new _EXTRA_DOWNLOADS mechanism is used for Blackfin toolchains.
The extract, configuration and installation steps are converted inside
the <pkg>_EXTRACT_CMDS, <pkg>_CONFIGURE_CMDS and
<pkg>_INSTALL_STAGING_CMDS.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Luca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas Petazzoni [Tue, 8 Oct 2013 18:17:02 +0000 (20:17 +0200)]
toolchain-buildroot: convert to the package infrastructure
This commit converts the toolchain-buildroot logic to the package
infrastructure. The package is fairly simple as it only defines
BUILDROOT_LIBC, and depends on host-gcc-final to get the overall
internal toolchain build logic started.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas Petazzoni [Tue, 8 Oct 2013 18:17:01 +0000 (20:17 +0200)]
toolchain: introduce a virtual package
This commit introduces a virtual package called 'toolchain', located
in 'toolchain/toolchain', which simply depends on
'toolchain-buildroot' or 'toolchain-external' depending on the
selected toolchain backend.
For now, toolchain-buildroot and toolchain-external are still manual
make targets, but the following patches convert those backends to use
the package infrastructure as well.
In addition to this:
* The main Makefile is modified to always make BASE_TARGETS point to
this new toolchain virtual package.
* The main Makefile is changed to include all the toolchain/*/*.mk
files: the toolchain virtual package, and the toolchain-buildroot
and toolchain-external directories.
* The dependency of the toolchain on prepare dirs and dependencies is
moved to the toolchain virtual package. It is moved as a
prerequisite of the "toolchain-source" rule to ensure that all
directories are prepared before we even start extracting the
toolchain.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Luca Ceresoli <luca@lucaceresoli.net>
Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas Petazzoni [Tue, 8 Oct 2013 18:17:00 +0000 (20:17 +0200)]
package: add a <pkg>_EXTRA_DOWNLOADS variable
Converting the external toolchain logic into a package raises a very
special use case that wasn't handled by the package infrastructure:
the Blackfin toolchain is delivered as two tarballs instead of
one. Unfortunately <pkg>_SOURCE only allows to pass one tarball name.
However, we really want both tarballs to be known by the package
infrastructure, so that the normal 'source' and 'external-deps'
mechanism work fine.
In order to achieve this, we add a <pkg>_EXTRA_DOWNLOADS variable,
which allows a package to list other stuff it would like to see
downloaded, but that are otherwise not used by the package
infrastructure itself: it is up to the package to do it by itself.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas Petazzoni [Tue, 8 Oct 2013 18:16:59 +0000 (20:16 +0200)]
glibc: fix glibc build by creating an empty gnu/stubs.h
The stubs.h header is not installed by install-headers, but is needed
for the gcc build. An empty stubs.h will work, as explained in
http://gcc.gnu.org/ml/gcc/2002-01/msg00900.html. The same trick is
used by Crosstool-NG.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas Petazzoni [Tue, 8 Oct 2013 18:16:58 +0000 (20:16 +0200)]
glibc: both eglibc and glibc need host-gawk
Until now, only the eglibc build was pulling host-gawk as a
dependency, but after more testing, it turns out that the glibc build
also requires host-gawk.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Tue, 8 Oct 2013 01:31:48 +0000 (09:31 +0800)]
lvm2: bump to version 2.02.103 and add license information
[Peter: License is explictly GPLv2 LGPLv2.1 (not +)]
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Tue, 8 Oct 2013 19:02:33 +0000 (21:02 +0200)]
ruby: fix license info
Based on the contents of LEGAL, without checking the code.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Tue, 8 Oct 2013 19:02:32 +0000 (21:02 +0200)]
perl: fix license info
According to the README, perl can be used either under
Artistic or under GPLv1+ license, so include both.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnout Vandecappelle [Tue, 8 Oct 2013 19:02:31 +0000 (21:02 +0200)]
netatalk: add license info
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Tue, 8 Oct 2013 20:36:48 +0000 (22:36 +0200)]
harfbuzz: unbreak legal-info after version bump
The embedded icu support library has been removed upstream:
http://cgit.freedesktop.org/harfbuzz/commit/src?id=
ac1b723917d9b8f247a350f8d3e1bc5d1e472073
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Jerzy Grzegorek [Tue, 8 Oct 2013 06:03:17 +0000 (08:03 +0200)]
imagemagick: bump to version 6.8.7 0
Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Jerzy Grzegorek [Tue, 8 Oct 2013 06:03:16 +0000 (08:03 +0200)]
imagemagick: change the patch name
Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Tue, 8 Oct 2013 07:59:29 +0000 (15:59 +0800)]
stress: add license information
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Tue, 8 Oct 2013 02:43:49 +0000 (10:43 +0800)]
stress: fix download url
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Phil Eichinger [Tue, 8 Oct 2013 08:36:48 +0000 (10:36 +0200)]
rpi-userland: needs threads
Fixes http://autobuild.buildroot.net/results/
c3b4c09edee2499e811808018be1858bdee70436/
Signed-off-by: Phil Eichinger <phil@zankapfel.net>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas De Schampheleire [Tue, 8 Oct 2013 13:49:25 +0000 (15:49 +0200)]
conntrack-tools: correct license GPLv2 -> GPLv2+
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Yegor Yefremov [Tue, 8 Oct 2013 07:11:55 +0000 (09:11 +0200)]
libsoc: bump to 0.4
"Non-blocking GPIO Interrupts with callback mechanism" feature
requires pthreads.
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Jerzy Grzegorek [Tue, 8 Oct 2013 06:35:40 +0000 (08:35 +0200)]
harfbuzz: bump to version 0.9.22
Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias [Tue, 8 Oct 2013 02:18:20 +0000 (23:18 -0300)]
minidlna: fix build failure
With the 1.0.26 version bump a new routine was added to find newer
versions of ffmpeg and/or libav on different include paths.
Unfortunately this uses absolute pathnames hence when there's no
matching ffmpeg/libav headers on the host it fails to build. Fixes:
http://autobuild.buildroot.net/results/20a/
20a1b3a9f040d2207b6c533a158e9747054ddd2d/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Tue, 8 Oct 2013 01:08:21 +0000 (09:08 +0800)]
icu: needs threads
Fixes:
http://autobuild.buildroot.net/results/ae7/
ae721db2dd4e764a2af3825c388a63cad9720ebe/
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Tue, 8 Oct 2013 00:46:45 +0000 (08:46 +0800)]
fmtools: add license information
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias [Mon, 7 Oct 2013 20:21:58 +0000 (17:21 -0300)]
linphone: bump to version 3.6.1
Because of the previous mediastreamer bump (because of the untested ortp
bump) we need to bump linphone as well to avoid build failures.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias [Mon, 7 Oct 2013 20:21:57 +0000 (17:21 -0300)]
mediastreamer: bump to version 2.9.0
Fixes the fallout from commit
280a387737ed72a2dd844253eeb64cc373ca7656
which didn't test building things that links against ortp, fixing:
http://autobuild.buildroot.net/results/ac6/
ac69ff3332713e3a6681fd1d418f1cb9c1941098
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias [Mon, 7 Oct 2013 21:02:15 +0000 (18:02 -0300)]
lighttpd: fix build failure without ipv6
Reported in https://bugs.gentoo.org/show_bug.cgi?id=486426
and http://redmine.lighttpd.net/issues/2515
Autobuilders didn't hit it yet, but i did.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Reviewed-by: Markos Chandras <markos.chandras@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias [Mon, 7 Oct 2013 19:46:56 +0000 (16:46 -0300)]
minidlna: security bump to version 1.0.26
Fixes CVE-2013-2738, CVE-2013-2739 and CVE-2013-2745.
Also needs threads, which fixes:
http://autobuild.buildroot.net/results/d91/
d91b64c93097580e1da53b6ccfb4b492f382a5f3
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias [Mon, 7 Oct 2013 19:46:55 +0000 (16:46 -0300)]
ffmpeg: security bump to version 0.8.15
Fixes several vulnerabilities.
TODO: update to a more modern branch.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Markos Chandras [Mon, 7 Oct 2013 12:49:56 +0000 (13:49 +0100)]
lighttpd: Version bump to 1.4.33
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias [Mon, 7 Oct 2013 12:18:16 +0000 (09:18 -0300)]
polarssl: security bump to version 1.2.9
Fixes PolarSSL SA 2013-05.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Mon, 7 Oct 2013 10:35:56 +0000 (18:35 +0800)]
minicom: bump to version 2.6.2
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Mon, 7 Oct 2013 07:08:41 +0000 (15:08 +0800)]
lcms2: bump to version 2.5
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Mon, 7 Oct 2013 05:51:25 +0000 (13:51 +0800)]
ortp: bump to version 0.22.0
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Mon, 7 Oct 2013 09:56:14 +0000 (17:56 +0800)]
gtest: add license information
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Mon, 7 Oct 2013 09:46:31 +0000 (17:46 +0800)]
mpg123: bump to version 1.16.0
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Mon, 7 Oct 2013 09:10:20 +0000 (17:10 +0800)]
sudo: bump to version 1.8.8
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Fabio Porcedda [Mon, 7 Oct 2013 08:44:42 +0000 (10:44 +0200)]
barebox: bump to version 2013.10.0
Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Mon, 7 Oct 2013 05:35:18 +0000 (13:35 +0800)]
smartmontools: bump to version 6.2
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Mon, 7 Oct 2013 05:26:28 +0000 (13:26 +0800)]
gtest: bump to version 1.7.0
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias [Mon, 7 Oct 2013 00:09:26 +0000 (21:09 -0300)]
openssh: needs mmu
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Mon, 7 Oct 2013 07:33:46 +0000 (09:33 +0200)]
manual/known-issues.txt: fix s/Soucery/Sourcery/ typo
Reported-by: homas De Schampheleire <patrickdepinguin@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Mon, 7 Oct 2013 07:05:04 +0000 (09:05 +0200)]
util-inux: MKINSTALLDIRS workaround is needed for host install as well
Fixes http://autobuild.buildroot.net/results/3c8/
3c8c78a5c0421b9079190ddf97b366fc7f0c0859
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Sun, 6 Oct 2013 21:45:10 +0000 (23:45 +0200)]
binutils: default to 2.22
2.21.1 is getting quite old, the linker issues with 2.22 seems to be
(mostly?) sorted out by now and armhf needs 2.22+, so let's bump the
default version.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas Petazzoni [Sun, 6 Oct 2013 15:28:05 +0000 (17:28 +0200)]
media-ctl: fix build with old kernel headers
Add a patch to fix the recurrent media-ctl build problems with
toolchains based on relatively old (< 2.6.39) kernel headers.
Finally fixes:
http://autobuild.buildroot.org/results/54a/
54afc80d4b58a4064a49226bcd4a28f32e3cf814/build-end.log
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Tested-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas Petazzoni [Sun, 6 Oct 2013 15:28:04 +0000 (17:28 +0200)]
media-ctl: bump version
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Tested-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas De Schampheleire [Wed, 25 Sep 2013 08:01:43 +0000 (10:01 +0200)]
package/Config.in: order alphabetically
Even though new packages are normally added in the right alphabetical order,
there still remain quite a number of incorrect orderings in package/Config.in.
In this patch, alphabetical order is created in each menu.
Note that this sometimes mean that packages that logically belong together, like
cups, gutenprint, hplip, are now split apart.
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Jerzy Grzegorek [Wed, 25 Sep 2013 09:07:47 +0000 (11:07 +0200)]
package: remove the default value of the $(PKG)_SOURCE variable
Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net>
Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com)
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas De Schampheleire [Wed, 25 Sep 2013 08:56:34 +0000 (10:56 +0200)]
trivial: manual: fix typo formating --> formatting
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Acked-by: "Samuel Martin" <s.martin49@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Jerzy Grzegorek [Sun, 6 Oct 2013 19:03:07 +0000 (21:03 +0200)]
git: bump to version 1.8.4.1
Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas Petazzoni [Sun, 6 Oct 2013 14:19:13 +0000 (16:19 +0200)]
toolchain-external: make ext-tool.mk includable in all cases
The ext-tool.mk logic uses the TOOLCHAIN_EXTERNAL_PREFIX variable
unconditionally, even if the external toolchain is not used. Until now
this wasn't a problem since ext-tool.mk was only included when the
external toolchain backend was selected, but the next patches are
going to include this file unconditionally.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas Petazzoni [Sun, 6 Oct 2013 14:19:12 +0000 (16:19 +0200)]
docs: update manual after Crosstool-NG backend removal
[Peter: remove a few more ctng references in customize-store.txt]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas Petazzoni [Sun, 6 Oct 2013 14:19:11 +0000 (16:19 +0200)]
toolchain-crosstool-ng: remove support
In order to avoid the work of converting the toolchain-crosstool-ng
logic to the package infrastructure, we remove it from Buildroot,
since it has been deprecated since quite some time.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Jérôme Pouiller [Sun, 6 Oct 2013 08:27:46 +0000 (10:27 +0200)]
Fix glibc dependency to gcc-intermediate
In commit
ebc81933, we reverted
2babed4a, but meanwhile eglibc/ was
renamed glibc/ so rules eglibc-build must be renamed glibc-build to
correctly work.
Signed-off-by: Jérôme Pouiller <jezz@sysmic.org>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Yann E. MORIN [Sat, 5 Oct 2013 22:17:17 +0000 (00:17 +0200)]
pakage/rpi-userland: add and install our bcm_host.pc
This allows pkg-config-aware packages to include headers from, and
link against Broadcom VideoCore host API library.
bcm_host.pc copied almost as-is from:
http://cgit.collabora.com/git/user/pq/android-pc-files.git/tree/pkgconfig?h=raspberrypi
with only a fix to the prefix (we're using /usr).
[Peter: s/TARGET/STAGING/]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas Petazzoni [Sun, 6 Oct 2013 16:30:33 +0000 (18:30 +0200)]
pv: fix build issue with some toolchains
While 'pv' uses autoconf, it does not use automake for its
makefiles. It uses $(LD) $(LDFLAGS) to achieve partial linking, but
using 'ld' directly doesn't work well with some toolchain
configuration, as the ld default emulation may not necessarily be the
correct one. By passing custom values for LD and LDFLAGS, we ensure
that 'gcc' is used to do these partial linking steps.
Fixes the following build failures (x86-64 and mips64) :
http://autobuild.buildroot.org/results/9ac/
9aca276a220ad1460e5b32bd042dd4c93649baf3/build-end.log
http://autobuild.buildroot.org/results/910/
91044c01dcc3c4150aa6e74f5964fff27b9dac79/build-end.log
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas Petazzoni [Sun, 6 Oct 2013 16:30:32 +0000 (18:30 +0200)]
pv: bump to version 1.4.12
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Jerzy Grzegorek [Sun, 6 Oct 2013 18:36:12 +0000 (20:36 +0200)]
lockfile-progs: bump to version 0.1.17
Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Jerzy Grzegorek [Sun, 6 Oct 2013 18:36:11 +0000 (20:36 +0200)]
lockfile-progs: change the patch name
Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Jerzy Grzegorek [Sun, 6 Oct 2013 18:13:12 +0000 (20:13 +0200)]
glib-networking: bump to version 2.36.2
Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas Petazzoni [Sun, 6 Oct 2013 17:49:07 +0000 (19:49 +0200)]
docs/manual: add a 'Known issues' chapter
Add a 'Known issues' chapter, which lists the exceptions I have
currently in the autobuilder scripts to avoid known problems from
occuring. I believe it is more useful to document them rather than
keeping them hidden in my autobuilder script.
[Peter: s/either/either use/]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Sun, 6 Oct 2013 18:32:32 +0000 (20:32 +0200)]
ltp-testsuite: needs largefile support
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas Petazzoni [Sun, 6 Oct 2013 17:52:25 +0000 (19:52 +0200)]
ltp-testsuite: bump version and other fixes
This commit bumps ltp-testsuite to the latest version available. In
addition to that, it also:
* Removes the ltp-testsuite-disable-controllers.patch file, which
becomes useless thanks to the workaround that consists in removing
-D_FILE_OFFSET_BITS=64 from the CFLAGS. This is necessary because
ltp-testsuite uses the non-largefile compatible <fts.h> interface.
* Marks the package as not-available on AArch64, since it doesn't
build properly. A bug has been submitted upstream to the Linaro
people doing the AArch64 support.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Romain Naour [Sat, 5 Oct 2013 23:39:55 +0000 (01:39 +0200)]
dbus: fix static linking issue with pthread
-lpthread is missing when dbus is build with static lib
Fixes build failures:
http://autobuild.buildroot.net/results/
80a317e33afd1d5ba2f7dd9ecd89314b09b4b1fe/
http://autobuild.buildroot.net/results/
2c3c040624652547bbeec363d7d6b03f2477ff00/
Signed-off-by: Romain Naour <romain.naour@openwide.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Sun, 6 Oct 2013 01:39:47 +0000 (09:39 +0800)]
socat: bump to version 2.0.0-b6
2.0.0-b6 fix a security issue:
Under certain circumstances an FD leak occurs and may be misused for denial of
service attacks against socat running in server mode.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Sun, 6 Oct 2013 01:31:10 +0000 (09:31 +0800)]
stunnel: bump to version 4.56
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Sun, 6 Oct 2013 01:30:24 +0000 (09:30 +0800)]
stunnel: fix download url
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias [Sat, 5 Oct 2013 22:50:02 +0000 (19:50 -0300)]
linux: bump 3.11.x stable version
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias [Sat, 5 Oct 2013 22:50:01 +0000 (19:50 -0300)]
linux-headers: bump 3.{0, 4, 10, 11}.x stable versions
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Romain Naour [Sat, 5 Oct 2013 13:52:05 +0000 (15:52 +0200)]
netatalk: disable dtrace
fix build failure:
http://autobuild.buildroot.net/results/
dbade69e610a079c5e12356991e6b908f4f716e9/
Signed-off-by: Romain Naour <romain.naour@openwide.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Sat, 5 Oct 2013 09:35:53 +0000 (17:35 +0800)]
neon: bump to version 0.30.0
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Sat, 5 Oct 2013 09:07:09 +0000 (17:07 +0800)]
ndisc6: needs mmu
Fix below build error if !BR2_USE_MMU:
tcpspray.o: In function `tcpspray':
tcpspray.c:(.text+0x4a8): undefined reference to `fork'
collect2: ld returned 1 exit status
make[3]: *** [tcpspray] Error 1
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Sat, 5 Oct 2013 04:31:52 +0000 (12:31 +0800)]
proxychains-ng: bump to version 4.6
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Sat, 5 Oct 2013 04:30:59 +0000 (12:30 +0800)]
proxychains-ng: needs dynamic library support
Fix below build error if BR2_PREFER_STATIC_LIB is set:
src/libproxychains.c:34:19: fatal error: dlfcn.h: No such file or directory
compilation terminated.
make[1]: *** [src/libproxychains.o] Error 1
In additional, the README file also mentions that this program works only on
dynamically linked programs.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Sat, 5 Oct 2013 14:59:03 +0000 (22:59 +0800)]
enchant: bump to version 1.6.0
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas Petazzoni [Sat, 5 Oct 2013 18:34:20 +0000 (20:34 +0200)]
mysql_client: needs thread support
Fixes:
http://autobuild.buildroot.org/results/9b1/
9b19b312651d21ea2fd54f364b11b01e4aa25e4b/build-end.log
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Thomas Petazzoni [Sat, 5 Oct 2013 18:29:56 +0000 (20:29 +0200)]
sqlcipher: needs thread support
Fixes:
http://autobuild.buildroot.org/results/ac4/
ac482030479b8172bf45c4f850d9007ec7c95ea5/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Sat, 5 Oct 2013 19:02:48 +0000 (21:02 +0200)]
gst1-plugins-bad: ensure bluetooth support is picked up if enabled
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Sat, 5 Oct 2013 18:59:17 +0000 (20:59 +0200)]
gst1-plugins-bad: fix bluez plugin compilation on big endian
Fixes http://autobuild.buildroot.org/results/5cd/
5cdc28f3040b17f19d94f3b2a2bf669e2e921077/
Patch from upstream git.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Yann E. MORIN [Fri, 4 Oct 2013 22:00:08 +0000 (00:00 +0200)]
package/rpi-userland: bump version
Misc enhancements and fixes for USB, camera, audio, codecs, dispman,
and openMAX.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Yann E. MORIN [Fri, 4 Oct 2013 22:00:07 +0000 (00:00 +0200)]
package/rpi-firmware: bump version
Fix for issues with USB, audio, and GLESv2.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Fri, 4 Oct 2013 21:52:11 +0000 (23:52 +0200)]
configs/qemu_*: unbreak after version bump
Commit
2c859079cd (configs/qemu: bump relevant config version) renamed
a number of linux configuration files, but forgot to update the defconfigs.
Tests shows that atleast arm versatile doesn't boot with 3.11, so rename
the linux configuration files back rather than adjusting the defconfigs.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Fri, 4 Oct 2013 20:06:52 +0000 (22:06 +0200)]
atngw100_defconfig: use BR2_KERNEL_HEADERS_VERSION to specify kernel headers
No functional change, but the HEADERS_3_9 option will go away by the
time 3.9 is no longer supported, possibly leading to breakage.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Fri, 4 Oct 2013 20:05:21 +0000 (22:05 +0200)]
atstk100x_defconfig: use kernel 3.9.x like atngw100
And lock kernel headers to match.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Fri, 4 Oct 2013 19:42:44 +0000 (21:42 +0200)]
uClibc: 0.9.33.2: Unbreak on avr32 after recent pread patches
avr32 only provides __NR_pread and not __NR_pread64, so the fallback
handling must be used.
Patch sent upstream:
http://lists.uclibc.org/pipermail/uclibc/2013-October/047967.html
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Fri, 4 Oct 2013 14:54:40 +0000 (16:54 +0200)]
dropbear: bump version
Fixes two security issues:
- The Dropbear server could be made to consume large amounts
of memory because decompressed packet sizes weren't checked.
Depending on the OS and hardware this might be a denial of
service.
- Valid users could be identified due to timing variations.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias [Fri, 4 Oct 2013 13:28:18 +0000 (10:28 -0300)]
gstreamer: fix bison bump build failure
It's due to deprecations in bison 3.0+, fixes:
http://autobuild.buildroot.net/results/df4/
df473cb34c9914b2c3d3d8ae344cbf7c19255468/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Fabio Porcedda [Thu, 3 Oct 2013 12:10:42 +0000 (14:10 +0200)]
package/Makefile.in: don't force jobs when BR2_JLEVEL is empty
When the "BR2_JLEVEL" variable is empty use "make" without
the "-j" option, because to be able to use top-level parallel
make we must not force the number of jobs in sub-make.
Example:
make BR2_JLEVEL= -j8
Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo Zacarias [Fri, 4 Oct 2013 12:49:38 +0000 (09:49 -0300)]
configs/qemu: bump relevant config versions
arm_nuri needs some DT fixups to switch to the 3.11.x series since it's
now default for that kernel defconfig.
[Peter: adjust comment in sparc defconfig to match]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Fri, 4 Oct 2013 12:00:39 +0000 (20:00 +0800)]
file: bump to version 5.15
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Fri, 4 Oct 2013 08:09:59 +0000 (16:09 +0800)]
dmidecode: add license info
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Axel Lin [Fri, 4 Oct 2013 08:09:12 +0000 (16:09 +0800)]
dmidecode: bump to version 2.12
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Fri, 4 Oct 2013 12:57:38 +0000 (14:57 +0200)]
package: drop unneeded HOST_<pkg>_AUTORECONF = YES
Since
97c687000 (pkg-autotools.mk: default host AUTORECONF{,_OPT} to the
target values) we automatically enable autoreconf for host builds if it
is enabled for the target, so these can go.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Fri, 4 Oct 2013 12:54:06 +0000 (14:54 +0200)]
gst1-plugins-ugly: bump version
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Fri, 4 Oct 2013 12:47:54 +0000 (14:47 +0200)]
gst1-plugins-bad: bump version
accurip, audiofxbad, ivtc, midi and yadif are new dependency less plugins,
dtmf, rtpmux/rtpvp8 and scaletempo got moved to -good, hls needs gnutls,
celt is gone and dash + webp are new.
At the same time fix the libmms comment dependency.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Fri, 4 Oct 2013 11:46:26 +0000 (13:46 +0200)]
gst1-plugins-good: bump version
DTMF plugin moved from bad, udp plugin no longer needs IPv6 and taglib
support was missing.
Patch needed for O_CLOEXEC on uClibc / older Glibc versions.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Fri, 4 Oct 2013 11:45:17 +0000 (13:45 +0200)]
gst1-plugins-base: bump version
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Fri, 4 Oct 2013 11:44:52 +0000 (13:44 +0200)]
gstreamer1: bump version
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter Korsgaard [Fri, 4 Oct 2013 08:11:11 +0000 (10:11 +0200)]
mpc: autoreconf no longer needed
Since
0be0899bfda5 (mpc: bump to version 1.0.1 and license change), we
no longer patch configure.ac, so we can skip the autoreconf step.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>