buildroot.git
10 years agomanual/common-usage.txt: fix typo
Jerzy Grzegorek [Thu, 20 Mar 2014 22:07:25 +0000 (23:07 +0100)]
manual/common-usage.txt: fix typo

Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoccache: Make the cache directory after ccache is built
Dan Moulding [Thu, 20 Mar 2014 21:08:54 +0000 (15:08 -0600)]
ccache: Make the cache directory after ccache is built

This ensures that the cache directory (and all of its ancestor
directories) exist. This is a nice thing to do because, if the parent
of the cache directory doesn't exist, then ccache will complain that
it cannot create the cache directory, causing the build to fail.

[Peter: drop BR2_CCACHE conditional, use POST_INSTALL hook]
Signed-off-by: Dan Moulding <dan.moulding@rackwareinc.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agogcc: fix snapshot compile
Peter Seiderer [Thu, 20 Mar 2014 22:35:36 +0000 (23:35 +0100)]
gcc: fix snapshot compile

Add gcc snapshot versions dependency on host-flex and host-bison
(done as suggested by Thomas Petazzoni [1]).

Fixes gcc snapshot version 4.9-20140309 compile failure [2].

Tested the following buildroot configs

BR2_arm=y
BR2_cortex_a9=y
BR2_TOOLCHAIN_BUILDROOT_GLIBC=y
BR2_BINUTILS_VERSION_2_24=y
BR2_GCC_VERSION_SNAP=y
BR2_GCC_SNAP_DATE="4.9-20140309"

and

BR2_arcle=y

For the ARC case disabled the BINUTILS_FROM_GIT host-flex and host-bison
dependency.

[1] http://lists.busybox.net/pipermail/buildroot/2014-March/092490.html
[2] http://lists.busybox.net/pipermail/buildroot/2014-March/092459.html

[Peter: simplify logic]
Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoboard/arm/foundation-v8: update defconfig and instructions
Thomas Petazzoni [Fri, 21 Mar 2014 04:34:06 +0000 (05:34 +0100)]
board/arm/foundation-v8: update defconfig and instructions

This commit updates the defconfig of the foundation-v8 platform, which
can be tested under the AArch64 emulator provided by ARM. The main
change is that we switch to the mainline 3.13.6 kernel instead of a
Linaro-specific Git tree.

Another change is to update the download link for the emulator in the
instructions, in order to use the latest version of the emulator,
which was used for testing.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agotoolchain-external: Linaro AArch64 toolchains need a symlink, like ARM ones
Thomas Petazzoni [Fri, 21 Mar 2014 04:34:05 +0000 (05:34 +0100)]
toolchain-external: Linaro AArch64 toolchains need a symlink, like ARM ones

Like ARM ones, the Linaro AArch64 toolchains expect libraries in
/lib/aarch64-linux-gnu and /usr/lib/aarch64-linux-gnu, but Buildroot
always installs them in /lib and /usr/lib. Therefore, this commit adds
the appropriate symbolic links, just like we're already doing for
Linaro ARM toolchains.

Reported-by: Kevin Hilman <khilman@linaro.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoboot-wrapper-aarch64: bump version and switch to autotools-package
Thomas Petazzoni [Fri, 21 Mar 2014 04:34:04 +0000 (05:34 +0100)]
boot-wrapper-aarch64: bump version and switch to autotools-package

This commit updates boot-wrapper-aarch64 to the latest version. As it
now uses the autotools, we switch the package to the autotools-package
infrastructure.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agopkg-autotools: add a AUTOCONF_AC_CHECK_FILE_VAL macro
Thomas Petazzoni [Fri, 21 Mar 2014 04:34:03 +0000 (05:34 +0100)]
pkg-autotools: add a AUTOCONF_AC_CHECK_FILE_VAL macro

When configure.ac scripts do AC_CHECK_FILE tests, they always fail in
cross-compilation contexts because it is not possible to check for
file existence during the build process. Therefore we have to preseed
the configure environment with ac_cv_file_<foo>=yes variable, <foo>
being the path of the file, where all slashes, dots or dashes have
been replaced by underscores.

In the context of the boot-wrapper-aarch64, we will have to use three
of these variables, with fairly complex paths. So instead of
replicating the logic each time, we create a
AUTOCONF_AC_CHECK_FILE_VAL macro to help defining such variables.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agorsyslog: Update patch to upstreamed version
Clayton Shotwell [Wed, 19 Mar 2014 17:27:58 +0000 (12:27 -0500)]
rsyslog: Update patch to upstreamed version

Patch for the libgcrypt-config path correction was accepted by the
mainline for rsyslog. Updating the buildroot patch until a new version
with the fix is released.

Signed-off-by: Clayton Shotwell <clshotwe@rockwellcollins.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoFix microblize little endian toolchain
Jan Drazil [Wed, 19 Mar 2014 12:01:05 +0000 (13:01 +0100)]
Fix microblize little endian toolchain

Buildroot toolchain creates big endian binaries instead of little endian
ones for microblaze architecture. The reason is wrong BR2_ARCH string.
KERNEL_ARCH must contain microblaze in both cases.

Signed-off-by: Jan Drazil <xdrazi00@stud.fit.vutbr.cz>
Signed-off-by: Jan Viktorin <xvikto03@stud.fit.vutbr.cz>
Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Tested-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agomtools: fix target compilation
Gustavo Zacarias [Wed, 19 Mar 2014 10:49:00 +0000 (07:49 -0300)]
mtools: fix target compilation

It needs some help regarding setpgrp, fixes:
http://autobuild.buildroot.net/results/33e/33e38bf1c30cc09dbe992dfb95c48997ca860212/
Also disable X11 support since it picks up the host variant.
And use normal indentation for variables.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibraries: add category Logging
Yegor Yefremov [Tue, 18 Mar 2014 16:01:43 +0000 (17:01 +0100)]
libraries: add category Logging

Add new category and move all logging packages there:

liblog4c-localtime
liblogging
log4cplus
log4cxx
zlog

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agofeh: bump to 2.10
Yegor Yefremov [Tue, 18 Mar 2014 16:40:11 +0000 (17:40 +0100)]
feh: bump to 2.10

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agonewt: bump to 0.52.17
Yegor Yefremov [Tue, 18 Mar 2014 09:10:17 +0000 (10:10 +0100)]
newt: bump to 0.52.17

Changed download location, added popt dependency and
updated the Makefile.in patch.

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agodocs/docs.html: use @buildroot.org for the mailing list
Peter Korsgaard [Tue, 18 Mar 2014 08:12:16 +0000 (09:12 +0100)]
docs/docs.html: use @buildroot.org for the mailing list

Now that @buildroot.org is working, we should use it everywhere.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agovlc: use @buildroot.org for the mailing list
Peter Korsgaard [Tue, 18 Mar 2014 08:11:09 +0000 (09:11 +0100)]
vlc: use @buildroot.org for the mailing list

Now that @buildroot.org is working, we should use it everywhere.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agouboot: mark custom network settings as deprecated
Peter Korsgaard [Tue, 18 Mar 2014 08:04:31 +0000 (09:04 +0100)]
uboot: mark custom network settings as deprecated

As discussed on the the mailing list.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agopackage: drop <PKG>_VERSION_MINOR variable
Jerzy Grzegorek [Mon, 17 Mar 2014 08:06:41 +0000 (09:06 +0100)]
package: drop <PKG>_VERSION_MINOR variable

Since <PKG>_VARIABLE_MINOR variable in some packages is used only once,
so it is unusable. This patch removes it.

Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agomtools: add support for building for target
Frank Hunleth [Mon, 17 Mar 2014 22:30:58 +0000 (18:30 -0400)]
mtools: add support for building for target

This patch adds a menu option and updates the mtools.mk file to support
building mtools for the target.

[Peter: use same upstream URL as host variant]
Signed-off-by: Frank Hunleth <fhunleth@troodon-software.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agomtools: remove ignored configure options
Frank Hunleth [Sun, 16 Mar 2014 19:47:17 +0000 (15:47 -0400)]
mtools: remove ignored configure options

The --enable-xdf, --enable-vold, and --enable-new-vold options were
actually not being passed to ./configure since they were specified on
the wrong variable (MTOOLS_CONF_OPT vs. HOST_MTOOLS_CONF_OPT) and mtools
is a host-only package. Fixing the variable name so that the options are
actually used ends up causing the build to fail due to linker errors.
Since vold identifiers and OS/2 XDF support are unlikely to be used any
more, remove them completely.

Signed-off-by: Frank Hunleth <fhunleth@troodon-software.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agomtools: update upstream URL
Frank Hunleth [Sun, 16 Mar 2014 18:42:42 +0000 (14:42 -0400)]
mtools: update upstream URL

The previously specified tux.org URL did not appear to be maintained.
The gnu.org URL looks better maintained and is the same domain as the
actual tarball download.

Signed-off-by: Frank Hunleth <fhunleth@troodon-software.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agopackage/crosstool-ng: remove
Yann E. MORIN [Sun, 16 Mar 2014 22:22:04 +0000 (23:22 +0100)]
package/crosstool-ng: remove

No one is using this host-package, since we no longer have the
crosstool-NG toolchain backend.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoimagemagick: bump to version 6.8.8-8
Jerzy Grzegorek [Mon, 17 Mar 2014 08:03:55 +0000 (09:03 +0100)]
imagemagick: bump to version 6.8.8-8

Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolvm2: needs threads
Gustavo Zacarias [Mon, 17 Mar 2014 21:46:53 +0000 (18:46 -0300)]
lvm2: needs threads

lvm2 needs threads because of commit
35d3713bdc20a3ac22537ca04b0c1c6deab625cc
Fixes:
http://autobuild.buildroot.net/results/b4d/b4dcd9e98c4ea61f81b28675c0f87cfb2341f091/

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoeudev: bump to version 1.5.2.
Eric Le Bihan [Mon, 17 Mar 2014 14:32:58 +0000 (15:32 +0100)]
eudev: bump to version 1.5.2.

This version of eudev is synced with systemd 210 (notably gudev API
changes).

It comes with an upstream patch to fix a build error involving
<fcntl.h>.

Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agosystemd: bump to version 210.
Eric Le Bihan [Mon, 17 Mar 2014 14:25:42 +0000 (15:25 +0100)]
systemd: bump to version 210.

This patch bumps systemd to version 210. Systemd 209 introduced some majors
changes, which generated a lot of feedback and bugfixes. This lead to
version 210 a few days later.

Notable changes in 210:

- dropped dependency on libdbus in favor of internal sd-bus library.
- experimental support for kdbus.
- introduction of systemd-networkd, a simple network configuration manager.
- merge of libsystemd-*.so libraries into libsystemd.so.
- changes in Gudev API.

See NEWS file in the tarball for an exhaustive list.

Changes introduced by this bump:

- new configuration menu entry to enable systemd-networkd, which is an
  alternative to ISC dhcp and dhcpcd.
- remove EFI patch for version 208.
- update of the getty unit patch.
- new patch to remove the *.service files accidentally shipped in the
  official tarball (contain some invalid hardcoded paths) and force
  their re-generation.

[Peter: add a note that dbus is only a runtime dependency now]
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibpng: security bump to version 1.6.10
Gustavo Zacarias [Mon, 17 Mar 2014 12:19:46 +0000 (09:19 -0300)]
libpng: security bump to version 1.6.10

Fixes CVE-2014-0333.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoRemove STAMP_DIR
Arnout Vandecappelle [Mon, 17 Mar 2014 08:22:33 +0000 (09:22 +0100)]
Remove STAMP_DIR

Since the migration of the toolchains to the generic package
infrastructure, it is no longer used.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agopython3: bump version
Peter Korsgaard [Mon, 17 Mar 2014 21:10:12 +0000 (22:10 +0100)]
python3: bump version

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolftp: fix static linking
Peter Korsgaard [Mon, 17 Mar 2014 08:59:45 +0000 (09:59 +0100)]
lftp: fix static linking

Fixes http://autobuild.buildroot.net/results/14b/14b72a78936233b60dd893cef7803f909b846bea/

--with-modules only makes sense when linking shared, so disable when not.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agos61x9_micoboard_defconfig: move to internal toolchain
Peter Korsgaard [Sun, 16 Mar 2014 21:44:47 +0000 (22:44 +0100)]
s61x9_micoboard_defconfig: move to internal toolchain

Now that the xilinx external toolchains have been deprecated.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agodocs/index.html: make recent git/email headers links to cgit/gmane
Peter Korsgaard [Sun, 16 Mar 2014 21:02:45 +0000 (22:02 +0100)]
docs/index.html: make recent git/email headers links to cgit/gmane

So it is easy to start browsing directly from the homepage.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agosdl_mixer: drop custom target install
Peter Korsgaard [Sun, 16 Mar 2014 20:31:18 +0000 (21:31 +0100)]
sdl_mixer: drop custom target install

Fixes http://autobuild.buildroot.net/results/6ba/6ba399db1715a7759048e0d532768a335c3c97cc/

The default rule (make install) works fine, even for static build - so use
that instead of explicitly copying *so files.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoconfigs/raspberrypi: bump kernel version
Yann E. MORIN [Sun, 16 Mar 2014 15:25:25 +0000 (16:25 +0100)]
configs/raspberrypi: bump kernel version

Bump from rpi-3.10.32 to rpi-3.10.33:
  - added support for extra GPIOs or Rev.2 boards (at last! ;-) )
  - v4l2 fixes for high FPS
  - audio fixes

Bump the kernel headers used for the toolchain at the same time (as
spotted by Cyrille.)

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Cyrille DERORY <cyrille.derory@derory.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agopackage/rpi-userland: bump version
Yann E. MORIN [Sun, 16 Mar 2014 15:25:24 +0000 (16:25 +0100)]
package/rpi-userland: bump version

High frame rates and full FoV in camera code.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agopackage/rpi-firmware: bump version
Yann E. MORIN [Sun, 16 Mar 2014 15:25:23 +0000 (16:25 +0100)]
package/rpi-firmware: bump version

Bump for misc fixes and enhancements:
  - firmware: smaller cut-down (aka rescue) firmware
  - audio: sample rates, float samples, any-number-of-channels
  - hdmi: fix for (high?) output rates
  - video: h264 decode when changing resolution
  - camera: high frame rates, full FoV

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agohttping: needs host-gettext
Gustavo Zacarias [Sun, 16 Mar 2014 11:49:17 +0000 (08:49 -0300)]
httping: needs host-gettext

For msgfmt, fixes:
http://autobuild.buildroot.net/results/9ce/9ce9b4c52a7e0d0159b5b4b9835b9e3e7f8b2a08/

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agopulseaudio: bump version
Peter Korsgaard [Sun, 16 Mar 2014 20:06:40 +0000 (21:06 +0100)]
pulseaudio: bump version

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agorsyslog: bump to version 7.6.0
Clayton Shotwell [Wed, 12 Mar 2014 17:51:09 +0000 (12:51 -0500)]
rsyslog: bump to version 7.6.0

Bumping version of rsyslog and adding new dependencies of liblogging
and libestr.  The first patch has be submitted to the upstream mailing
list and the second patch is a backport from the development branch of
the upstream.

[Peter: needs libuuid / host-pkgconf, fix comment]
Signed-off-by: Clayton Shotwell <clshotwe@rockwellcollins.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoliblogging: 'va_list' needs stdarg.h (atleast on uClibc)
Peter Korsgaard [Sat, 15 Mar 2014 22:37:21 +0000 (23:37 +0100)]
liblogging: 'va_list' needs stdarg.h (atleast on uClibc)

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoliblogging: new package
Clayton Shotwell [Wed, 12 Mar 2014 17:51:08 +0000 (12:51 -0500)]
liblogging: new package

Signed-off-by: Clayton Shotwell <clshotwe@rockwellcollins.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibee: new package
Clayton Shotwell [Wed, 12 Mar 2014 17:51:07 +0000 (12:51 -0500)]
libee: new package

[Peter: needs host-pkgconf to find libestr]
Signed-off-by: Clayton Shotwell <clshotwe@rockwellcollins.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibestr: new package
Clayton Shotwell [Wed, 12 Mar 2014 17:51:06 +0000 (12:51 -0500)]
libestr: new package

Signed-off-by: Clayton Shotwell <clshotwe@rockwellcollins.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agomodem-manager: install to staging
Yegor Yefremov [Thu, 13 Mar 2014 15:26:37 +0000 (16:26 +0100)]
modem-manager: install to staging

network-manager can use modem-manager as a plug-in, so install
modem-manager development files to stating.

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agonetwork-manager: change display name to comply with the naming policy
Yegor Yefremov [Fri, 14 Mar 2014 10:26:36 +0000 (11:26 +0100)]
network-manager: change display name to comply with the naming policy

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agonetwork-manager: bump to 0.9.8.8
Yegor Yefremov [Fri, 14 Mar 2014 10:26:35 +0000 (11:26 +0100)]
network-manager: bump to 0.9.8.8

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agonetwork-manager: add support for ModemManager
Yegor Yefremov [Fri, 14 Mar 2014 10:26:34 +0000 (11:26 +0100)]
network-manager: add support for ModemManager

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agonetwork-manager: add support for pppd
Yegor Yefremov [Fri, 14 Mar 2014 10:26:33 +0000 (11:26 +0100)]
network-manager: add support for pppd

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agopppd: install to staging
Yegor Yefremov [Fri, 14 Mar 2014 10:26:32 +0000 (11:26 +0100)]
pppd: install to staging

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agopython-posix-ipc and mobile-broadband-provider-info: fix package .mk name
Arnaud Aujon [Fri, 14 Mar 2014 21:39:25 +0000 (22:39 +0100)]
python-posix-ipc and mobile-broadband-provider-info: fix package .mk name

Fix typo in python-posix-ipc package name and rename
mobile_broadband_provider_info according to naming policy

Signed-off-by: Arnaud Aujon <arnaud@intelibre.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoAdded support for configuration of boost binary names layout
Uwe Kindler [Sat, 15 Mar 2014 04:27:52 +0000 (05:27 +0100)]
Added support for configuration of boost binary names layout

[Peter: fix trailing whitescape / too long lines]
Signed-off-by: Uwe Kindler <uwe_kindler@web.de>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Reviewed-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agominidlna: bump version to 1.1.2
Bernd Kuhls [Fri, 14 Mar 2014 20:51:07 +0000 (21:51 +0100)]
minidlna: bump version to 1.1.2

Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agominidlna: needs gettext and host-gettext tools if locale is enabled
Bernd Kuhls [Fri, 14 Mar 2014 20:51:06 +0000 (21:51 +0100)]
minidlna: needs gettext and host-gettext tools if locale is enabled

Fixes http://autobuild.buildroot.net/results/c6b/c6baebe005d6c024514bb1ade5ca391ea341c239/

Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agofetchmail: New package
Bernd Kuhls [Fri, 14 Mar 2014 22:21:33 +0000 (23:21 +0100)]
fetchmail: New package

Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoCreate new section "Mail" in menuconfig and collect mail packages
Bernd Kuhls [Fri, 14 Mar 2014 22:21:32 +0000 (23:21 +0100)]
Create new section "Mail" in menuconfig and collect mail packages

Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agopackage/tzdata: bump to latest version 2014a
Yann E. MORIN [Sat, 15 Mar 2014 17:19:19 +0000 (18:19 +0100)]
package/tzdata: bump to latest version 2014a

Adds new definition for Turkish DST.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoslang: add license info
Peter Korsgaard [Sat, 15 Mar 2014 20:14:46 +0000 (21:14 +0100)]
slang: add license info

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoslang: bump to 2.2.4
Yegor Yefremov [Sat, 15 Mar 2014 09:31:31 +0000 (10:31 +0100)]
slang: bump to 2.2.4

Convert package from generic to autotools.

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibesmtp: not available for static builds
Vicente Olivert Riera [Thu, 13 Mar 2014 13:55:21 +0000 (13:55 +0000)]
libesmtp: not available for static builds

This package requires libltdl and checks for it in the configure phase.
If it's not present, then the build process is stopped.

Fixes:
   http://autobuild.buildroot.net/results/5cf/5cf145d3f9c78bef1f66fe9b1831723de8b4969f/

[Peter: dependency should only apply to COLLECTD_NOTIFY_EMAIL suboption]
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoigmpproxy: uclinux is also linux
Gustavo Zacarias [Wed, 12 Mar 2014 21:50:40 +0000 (18:50 -0300)]
igmpproxy: uclinux is also linux

Fixes:
http://autobuild.buildroot.net/results/3dc/3dcb26947d7eee7ae4f17a082a144912c44f0526/

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoluajit: bump to version 2.0.3
Francois Perrad [Wed, 12 Mar 2014 20:42:27 +0000 (21:42 +0100)]
luajit: bump to version 2.0.3

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agosqlite: bump to version 3.8.4.1
Gustavo Zacarias [Wed, 12 Mar 2014 19:02:58 +0000 (16:02 -0300)]
sqlite: bump to version 3.8.4.1

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolighttpd: security bump to version 1.4.35
Gustavo Zacarias [Wed, 12 Mar 2014 18:05:42 +0000 (15:05 -0300)]
lighttpd: security bump to version 1.4.35

Fixes lighttpd SA-2014-01 (CVE not assigned yet).

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibcdio: need mmu
Gustavo Zacarias [Wed, 12 Mar 2014 16:54:01 +0000 (13:54 -0300)]
libcdio: need mmu

Fixes:
http://autobuild.buildroot.net/results/92b/92b6513a10bed9018d64e1347c99ff6db96990eb/

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoopenswan: security bump to version 2.6.41
Gustavo Zacarias [Wed, 12 Mar 2014 16:50:00 +0000 (13:50 -0300)]
openswan: security bump to version 2.6.41

Fixes CVE-2014-2037 (continuation of CVE-2013-6466 issues).

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agosystemd: bump to v208.
Eric Le Bihan [Wed, 12 Mar 2014 14:49:45 +0000 (15:49 +0100)]
systemd: bump to v208.

This version bump comes with a patch, backported from v209, to fix
a linker error when EFI support is disabled.

Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agodevice table dev: drop old CDROMs
Gustavo Zacarias [Wed, 12 Mar 2014 10:58:43 +0000 (07:58 -0300)]
device table dev: drop old CDROMs

Drop old custom CDROM devices from the device table, these are x86-only
and really really old so it would be amazing these would be in working
order.
And they haven't been supported in linux for while.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agosamba4: security bump to version 4.1.6
Gustavo Zacarias [Wed, 12 Mar 2014 13:48:41 +0000 (10:48 -0300)]
samba4: security bump to version 4.1.6

Fixes CVE-2013-4496 and CVE-2013-6442.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agosamba: security bump to version 3.6.23
Gustavo Zacarias [Wed, 12 Mar 2014 13:48:40 +0000 (10:48 -0300)]
samba: security bump to version 3.6.23

Fixes CVE-2013-4496 and CVE-2013-6442.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolinux-headers: bump 3.{4, 12}.x stable versions
Gustavo Zacarias [Wed, 12 Mar 2014 12:40:50 +0000 (09:40 -0300)]
linux-headers: bump 3.{4, 12}.x stable versions

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agohttping: disable ncurses support
Gustavo Zacarias [Wed, 12 Mar 2014 00:30:43 +0000 (21:30 -0300)]
httping: disable ncurses support

The new version requires ncursesw support so disable it until we've got
support for it. Fixes:
http://autobuild.buildroot.net/results/588/58840df1254034bf77cde3935fd900d1da13de56/

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoptpd2: needs libpcap
Gustavo Zacarias [Wed, 12 Mar 2014 00:30:42 +0000 (21:30 -0300)]
ptpd2: needs libpcap

That's what happens when testing a bunch of stuff that uses libpcap.
Fixes:
http://autobuild.buildroot.net/results/eaa/eaa615830a6b4cf3da88e71315364ad3e380f681/

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agostrongswan: only show comment if applicable
Peter Korsgaard [Tue, 11 Mar 2014 22:35:52 +0000 (23:35 +0100)]
strongswan: only show comment if applicable

strongswan needs USE_MMU, so only show comment if that is available.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agopcsc-lite: not available for static builds
Vicente Olivert Riera [Mon, 10 Mar 2014 12:10:33 +0000 (12:10 +0000)]
pcsc-lite: not available for static builds

This package requires dlopen and checks for it in the configure phase.
If it's not present, then the build process is stopped.

Fixes:
   http://autobuild.buildroot.net/results/34b/34b83c3ea4a8aac6aeda225e5859bd318b13a676/

[Peter: propagate deps to reverse dependencies, merge toolchain comments]
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agotcpreplay: bump to version 4.0.3
Gustavo Zacarias [Mon, 10 Mar 2014 20:26:34 +0000 (17:26 -0300)]
tcpreplay: bump to version 4.0.3

Patch removed, already upstream.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Reviewed-by: Chris Packham <judge.packham@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoxl2tp: bump to version 1.3.6
Gustavo Zacarias [Mon, 10 Mar 2014 20:26:33 +0000 (17:26 -0300)]
xl2tp: bump to version 1.3.6

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoptpd2: bump to version 2.3.0
Gustavo Zacarias [Mon, 10 Mar 2014 20:26:32 +0000 (17:26 -0300)]
ptpd2: bump to version 2.3.0

Now a proper autotools package, almost... (configure not shipped)

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agomacchanger: bump to version 1.6.0
Gustavo Zacarias [Mon, 10 Mar 2014 20:26:31 +0000 (17:26 -0300)]
macchanger: bump to version 1.6.0

Also switch the homepage, it's not a proper one but at least it's no
longer a 404.
The license is now GPLv2+ but there's no COPYING file.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoradvd: bump to version 1.9.9
Gustavo Zacarias [Mon, 10 Mar 2014 20:26:30 +0000 (17:26 -0300)]
radvd: bump to version 1.9.9

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agohttping: bump to version 2.3.4
Gustavo Zacarias [Mon, 10 Mar 2014 20:26:29 +0000 (17:26 -0300)]
httping: bump to version 2.3.4

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agonetatalk: bump to version 3.0.8
Gustavo Zacarias [Mon, 10 Mar 2014 20:26:28 +0000 (17:26 -0300)]
netatalk: bump to version 3.0.8

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agomsmtp: bump to version 1.4.32
Gustavo Zacarias [Mon, 10 Mar 2014 20:26:27 +0000 (17:26 -0300)]
msmtp: bump to version 1.4.32

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoipsec-tools: bump to version 0.8.2
Gustavo Zacarias [Mon, 10 Mar 2014 20:26:26 +0000 (17:26 -0300)]
ipsec-tools: bump to version 0.8.2

Also rename patch according to policy and add homepage.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoipsec-tools: fix static linking
Gustavo Zacarias [Mon, 10 Mar 2014 20:26:25 +0000 (17:26 -0300)]
ipsec-tools: fix static linking

As with other packages that use openssl and don't use pkg-config to
pick up the deps it fails to build for static scenarios.
So fix it by adding the zlib link option to LIBS.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoiftop: bump to version 1.0pre4
Gustavo Zacarias [Mon, 10 Mar 2014 20:26:24 +0000 (17:26 -0300)]
iftop: bump to version 1.0pre4

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agonmap: bump to version 6.40
Gustavo Zacarias [Mon, 10 Mar 2014 20:26:23 +0000 (17:26 -0300)]
nmap: bump to version 6.40

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agofping: bump to version 3.9
Gustavo Zacarias [Mon, 10 Mar 2014 20:26:22 +0000 (17:26 -0300)]
fping: bump to version 3.9

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibpcap: bump to version 1.5.3
Gustavo Zacarias [Mon, 10 Mar 2014 20:26:21 +0000 (17:26 -0300)]
libpcap: bump to version 1.5.3

TPACKET_V3 support issues fixed in 1.5.2/1.5.3 so the patch is no longer
necessary.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agochrony: bump version
Peter Korsgaard [Tue, 11 Mar 2014 15:46:42 +0000 (16:46 +0100)]
chrony: bump version

Fixes CVE-2014-0021: Amplification in chrony control protocol

In the chrony control protocol some replies are significantly larger than
their requests, which allows an attacker to use it in an amplification
attack.  With hosts allowed by cmdallow (only localhost by default) the
maximum amplification factor is 9.2.  Hosts that are not allowed receive a
small reply with error status, which allows amplification of up to 1.5.

To fix the problem, the protocol has been modified to require padding in the
request packet, so replies are never larger than their requests.  Also,
chronyd no longer sends replies with error status to hosts that are not
allowed by cmdallow.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agolibxmlrpc: needs threads
Alvaro G. M [Tue, 11 Mar 2014 14:31:24 +0000 (15:31 +0100)]
libxmlrpc: needs threads

Fixes:
  http://autobuild.buildroot.net/results/81ea576d219aaee2bf1a2a5e2d23f0b66a7be6e8/

Signed-off-by: Alvaro G. M <alvaro.gamez@hazent.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agodosfstools: bump to version 3.0.26
Gustavo Zacarias [Mon, 10 Mar 2014 17:26:12 +0000 (14:26 -0300)]
dosfstools: bump to version 3.0.26

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agosquid: bump to version 3.4.4
Gustavo Zacarias [Mon, 10 Mar 2014 16:30:38 +0000 (13:30 -0300)]
squid: bump to version 3.4.4

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agonetsnmp: security bump to version 5.7.2.1
Gustavo Zacarias [Mon, 10 Mar 2014 17:13:02 +0000 (14:13 -0300)]
netsnmp: security bump to version 5.7.2.1

Fixes CVE-2014-2284 but not CVE-2014-2285 so add a patch for that one.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agosocat: add optional openssl and readline support
Gustavo Zacarias [Mon, 10 Mar 2014 19:34:06 +0000 (16:34 -0300)]
socat: add optional openssl and readline support

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agosocat: security bump to version 2.0.0-b7
Gustavo Zacarias [Mon, 10 Mar 2014 19:34:05 +0000 (16:34 -0300)]
socat: security bump to version 2.0.0-b7

Fixes CVE-2014-0019.
Also rename patch according to policy.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agoipset: bump to version 6.21.1
Gustavo Zacarias [Mon, 10 Mar 2014 18:08:39 +0000 (15:08 -0300)]
ipset: bump to version 6.21.1

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agopackage/tvheadend: bump version
Yann E. MORIN [Mon, 10 Mar 2014 21:24:17 +0000 (22:24 +0100)]
package/tvheadend: bump version

The list of changes is too long to repeat here, but lots of fixes
and improvements, plus a brand new rewrite of the DVB handling code.

Refresh patches, except patch 4 which has now been upstreamed.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agopackage/rpi-firmware: bump version
Yann E. MORIN [Mon, 10 Mar 2014 21:24:16 +0000 (22:24 +0100)]
package/rpi-firmware: bump version

Bump to latest changeset:
  - fix for detecting monitor

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agopackage/linux-firmware: different iwlwifi3160/7260 firmwares for different kernels
Yann E. MORIN [Mon, 10 Mar 2014 21:24:15 +0000 (22:24 +0100)]
package/linux-firmware: different iwlwifi3160/7260 firmwares for different kernels

The firmwares to use for iwlwifi 3160/7260 are different, depending on which
version of the Linux kernel is being used:
  - rev. 7 is for linux 3.10 through 3.12 (both included)
  - rev. 8 is for linux 3.13 onward

Add a config choice to select the appropriate version.

(See cset a0a6eeb in the linux-firmware repository for the details.)

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agopackage/linux-firmware: bump for new firmwares
Yann E. MORIN [Mon, 10 Mar 2014 21:24:14 +0000 (22:24 +0100)]
package/linux-firmware: bump for new firmwares

A bunch of new WiFi firmwares has been added, some have been updated.
Not limited to WiFi, but other firmwares are of less interest to
Buildroot for now (eg. radeon, myri10ge...).

Fixups in WHENCE file (the all-licenses file).

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
10 years agopackage/linux-firmware: fix typo in firmware file for cxgb4
Yann E. MORIN [Mon, 10 Mar 2014 21:24:13 +0000 (22:24 +0100)]
package/linux-firmware: fix typo in firmware file for cxgb4

Trivial inversion b/g: cxbg4 -> cxgb4

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Jeremy Kerr <jk@ozlabs.org>
Acked-by: Jeremy Kerr <jk@ozlabs.org.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>