buildroot.git
9 years agoxserver_xorg-server: disable libunwind on MIPS with 32-bit pointers
Vicente Olivert Riera [Fri, 5 Dec 2014 11:17:02 +0000 (11:17 +0000)]
xserver_xorg-server: disable libunwind on MIPS with 32-bit pointers

libunwind support in xorg-server is not only broken for MIPS64 n32 but
for all MIPS variants with 32-bit pointers. The reason is exactly the
same one. libunwind defines a uint64 variable to store the words. Then,
xorg-server casts that variable (64-bit) into a pointer (32-bit), and
the compilation fails:

backtrace.c:98:13: error: cast to pointer from integer of different size
[-Werror=int-to-pointer-cast]

Related:
  https://bugs.freedesktop.org/show_bug.cgi?id=79939

Fixes:
  http://autobuild.buildroot.net/results/87b/87be2c95957f9925c1258812e536df72689fc5da/

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 years agopkg-download: fix arguments to hash checking script
Yann E. MORIN [Sun, 7 Dec 2014 11:02:34 +0000 (12:02 +0100)]
pkg-download: fix arguments to hash checking script

The argument are correctly used, but incorrectly documented.
Inverse the comments to match the actual usage.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 years agofs/ext2: add option to specify a filesystem label
Yann E. MORIN [Sat, 6 Dec 2014 22:40:06 +0000 (23:40 +0100)]
fs/ext2: add option to specify a filesystem label

Filesystems of the ext familly can carry a filesystem label.
Add an option for the user to specify such a label.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Károly Kasza <kaszak@gmail.com>
Tested-by: Karoly Kasza <kaszak@gmail.com>
Reviewed-by: Karoly Kasza <kaszak@gmail.com>
Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tested-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 years agofs/ext2: use the new mke2img host package
Yann E. MORIN [Sat, 6 Dec 2014 22:40:05 +0000 (23:40 +0100)]
fs/ext2: use the new mke2img host package

And get rid of the old genext2fs.sh wrapper.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tested-by: Karoly Kasza <kaszak@gmail.com>
Reviewed-by: Karoly Kasza <kaszak@gmail.com>
Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tested-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 years agopackage/mke2img: new package
Yann E. MORIN [Sat, 6 Dec 2014 22:40:04 +0000 (23:40 +0100)]
package/mke2img: new package

Currently, we are using a shell script called genext2fs, that
impersonates the real genext2fs. But that script does much more than
just call genextfs: it also calls tune2fs and e2fsck.

Because it impersonates genext2fs, we can not easily add new options,
and are constrained by the genext2fs options.

But it turns out that, of all the options supported by the real
genext2fs, we only really care for a subset, namely:
  - number of blocks
  - number of inodes
  - percentage of blocks reeserved to root
  - the root directory which to generate the image from

So, we introduce a new host package, mke2img, that is intended to
eventually replace genext2fs.sh.

This new script is highly modeled from the existing genext2fs.sh, but
was slightly refreshed, and a new, supposedly sane set of options has
been choosen for the features we need (see above), and some new options
were added, too, rather than relying on the arguments order or
environment variables:
  -b <nb-blocks>    number of blocks in the filesystem
  -i <nb-inodes>    number of inodes in the filesystem
  -r <pc-reserved>  percentage of reserved blocks
* -d <root-dir>     directory containing the root of the filesystem
* -o <img-file>     output image file
  -G <ext-gen>      extfs generation: 2, 3, or 4 (default: 2)
  -R <ext-rev>      ext2 revision: 0 or 1 (default 1)
  -l <label>        filesystem label
  -u <uid>          filesystem UUID; if not specified, a random one is used

* Mandatory options

Since the upstream e2fsprogs are expected to release a new mke2fs that
will be able to generate a filesystem image from a directory, we then
will be able to replace all the logic in mke2img, to use mke2fs instead
of the (relatively fragile) combination of the three tools we currently
use.

An entry is added for it in the "Host utilities" menu, so it can be
selected for use by post-{build,image} scripts. The ext2 filesystem
selection is changed to select that now.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tested-by: Karoly Kasza <kaszak@gmail.com>
Reviewed-by: Karoly Kasza <kaszak@gmail.com>
Tested-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 years agopackage/binutils: fix comment dependencies
Romain Naour [Thu, 4 Dec 2014 21:11:02 +0000 (22:11 +0100)]
package/binutils: fix comment dependencies

[Thomas: re-adjust dependencies, according to Yann's comment.]

Signed-off-by: Romain Naour <romain.naour@openwide.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 years agopython-webpy: depend on Python 2.x only
Yegor Yefremov [Thu, 4 Dec 2014 21:36:57 +0000 (22:36 +0100)]
python-webpy: depend on Python 2.x only

webpy is still not ported to Python 3, so enable only for Python 2.

Fixes:

 http://autobuild.buildroot.org/results/e6b/e6bdb8e0ab6daa027a01507861ecde47338a11a8/

[Thomas: add autobuilder reference.]

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 years agopackage/minidlna: disable broken toolchains on nios2
Bernd Kuhls [Sun, 30 Nov 2014 10:24:50 +0000 (11:24 +0100)]
package/minidlna: disable broken toolchains on nios2

minidlna triggers the _gp bug:
http://article.gmane.org/gmane.comp.lib.uclibc.buildroot/77875/

Fixes
http://autobuild.buildroot.net/results/712/71230ee530a41b3611cd4526f0f010f9c2ef25eb/
http://autobuild.buildroot.net/results/79c/79cbae4dab3ad712bc20c752fdd91e168eade9fe/
http://autobuild.buildroot.net/results/df7/df7da91985a7bf2b05093bae7379ef22362a44fc/
and many others

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 years agopackage/dhcp: Only install the relevant unit file
Nathaniel Roach [Mon, 1 Dec 2014 14:18:16 +0000 (22:18 +0800)]
package/dhcp: Only install the relevant unit file

Previous to this patch, if BR2_PACKAGE_DHCP_CLIENT was selected,
dhcpd.service was installed to the target on systemd systems.

On the resultant system, this would mean that systemctl would
show an error starting dhcpd.service, as the requisite files
do not exist. This does not cause issue on sysvinit systems
as the init scripts silently error when the files aren't found.

Fix this by adding a conditional check to the install define.

Signed-off-by: Nathaniel Roach <nroach44@gmail.com>
Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 years agodocs: fix typo in cmake-package documentation
Thomas Petazzoni [Wed, 3 Dec 2014 21:41:28 +0000 (22:41 +0100)]
docs: fix typo in cmake-package documentation

The cmake-package documentation was referring to
BR2_PREFER_STATIC_LIBS, while the option is actually named
BR2_PREFER_STATIC_LIB. This commit fixes this mistake.

Cc: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Samuel Martin <s.martin49@gmail.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
9 years agoqtuio: add error handling to for loop
Thomas Petazzoni [Wed, 3 Dec 2014 22:05:44 +0000 (23:05 +0100)]
qtuio: add error handling to for loop

Also remove unneeded sub-shell usage in the build and installation
steps. It is kept for the configure step as it is actually useful, and
works fine because "|| exit 1" is outside the sub-shell.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
9 years agow_scan: bump version to 20141122
Vicente Olivert Riera [Thu, 4 Dec 2014 17:39:56 +0000 (17:39 +0000)]
w_scan: bump version to 20141122

- Bump version to 20141122
- Add a hash file

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 years agobtrfs-progs: bump to version 3.17.3
Gustavo Zacarias [Fri, 5 Dec 2014 12:12:17 +0000 (09:12 -0300)]
btrfs-progs: bump to version 3.17.3

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Tested-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 years agodocs/manual: document the new patch naming convention
Yann E. MORIN [Fri, 5 Dec 2014 18:06:24 +0000 (19:06 +0100)]
docs/manual: document the new patch naming convention

To ease generating patches, we now use a naming convention that is in
line with what git-format-patch does, that is:
  - do not prefix patches with the package name
  - prefix patches with a 4-digit mber
  - start numbering at 0001

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Peter Korsgaard <jacmet@uclibc.org>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Thomas De Schampheleire <patrickdepinguin@gmail.com>
Cc: Arnout Vandecappelle <arnout@mind.be>
Cc: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 years agopacakge/freerdp: disable building the manpages
Yann E. MORIN [Sun, 7 Dec 2014 11:39:27 +0000 (12:39 +0100)]
pacakge/freerdp: disable building the manpages

Building the manpages requires xsltproc, which might not be available.
Also, who needs the manpages on the target anyway? ;-)

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Acked-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 years agolibv4l: bump to version 1.6.2
Peter Seiderer [Fri, 5 Dec 2014 21:09:53 +0000 (22:09 +0100)]
libv4l: bump to version 1.6.2

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 years agopackage/nginx: disallow AIO support on arc
Samuel Martin [Sat, 6 Dec 2014 13:15:37 +0000 (14:15 +0100)]
package/nginx: disallow AIO support on arc

The nginx AIO support cannot build on arc, because it hardcodes
the usage of SYS_eventfd(), while it should just use eventfd() from
the C library.

Fixes:
  http://autobuild.buildroot.org/results/f3e/f3e2c7a937517a5444f8c6cc0b02692af897b3e0/

[Thomas: adjust comment as suggested by Yann.]

Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 years agolibevdev: bump version to 1.3.2
Peter Seiderer [Fri, 5 Dec 2014 21:15:15 +0000 (22:15 +0100)]
libevdev: bump version to 1.3.2

See [1] for details.

[1] http://lists.freedesktop.org/archives/input-tools/2014-December/001132.html

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Tested-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 years agorp-pppoe: install helper scripts
Ryan Coe [Sat, 6 Dec 2014 06:42:38 +0000 (22:42 -0800)]
rp-pppoe: install helper scripts

Signed-off-by: Ryan Coe <bluemrp9@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 years agofconfig: add hash file
Thomas Petazzoni [Sat, 6 Dec 2014 09:56:27 +0000 (10:56 +0100)]
fconfig: add hash file

Add locally computed hash file for fconfig.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
9 years agofconfig: remove redundant CFLAGS/LDFLAGS
Thomas Petazzoni [Sat, 6 Dec 2014 09:56:26 +0000 (10:56 +0100)]
fconfig: remove redundant CFLAGS/LDFLAGS

CFLAGS and LDFLAGS are already passed as part of
$(TARGET_CONFIGURE_OPTS).

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
9 years agofconfig: change upstream site
Thomas Petazzoni [Sat, 6 Dec 2014 09:56:25 +0000 (10:56 +0100)]
fconfig: change upstream site

The upstream site is dead, used http://sources.buildroot.net
temporarly.

Fixes:

  http://autobuild.buildroot.org/results/778/77899f882e04121ca5f2b96f0df9f24ead26d12b/

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
9 years agopackage/tvheadend: Rework CFLAGS handling for liburiparser
Bernd Kuhls [Sat, 6 Dec 2014 15:00:31 +0000 (16:00 +0100)]
package/tvheadend: Rework CFLAGS handling for liburiparser

Suggested by Thomas:
http://article.gmane.org/gmane.comp.lib.uclibc.buildroot/100646

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 years agopackage/libnss: need dynamic library support
Samuel Martin [Sun, 7 Dec 2014 11:09:33 +0000 (12:09 +0100)]
package/libnss: need dynamic library support

Fixes:
  http://autobuild.buildroot.net/results/e01733c4b8c23f62e2081f0c4aadc16e22c4a2c4/

Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9 years agorp-pppoe: install default conf file
Ryan Coe [Tue, 2 Dec 2014 23:21:02 +0000 (15:21 -0800)]
rp-pppoe: install default conf file

Signed-off-by: Ryan Coe <bluemrp9@gmail.com>
Acked-by: Matt Weber <matthew.weber@rockwellcollins.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agoffmpeg: Add ffprobe option
Steve Kenton [Tue, 2 Dec 2014 00:55:35 +0000 (18:55 -0600)]
ffmpeg: Add ffprobe option

Signed-off-by Stephen M. Kenton <skenton@ou.edu>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agopackage: add python-gobject
Peter Korsgaard [Mon, 1 Dec 2014 17:48:30 +0000 (18:48 +0100)]
package: add python-gobject

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agonetatalk: bump to version 3.1.7
Gustavo Zacarias [Wed, 3 Dec 2014 20:53:48 +0000 (17:53 -0300)]
netatalk: bump to version 3.1.7

Rename patch to new standard and add hash file as well.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agopackage/lxc: disable broken toolchains on nios2
Bernd Kuhls [Sun, 30 Nov 2014 16:48:54 +0000 (17:48 +0100)]
package/lxc: disable broken toolchains on nios2

As discussed with Thomas
http://article.gmane.org/gmane.comp.lib.uclibc.buildroot/100998
only the current toolchains are broken:
"it's better to blacklist the individual toolchains that are known
to be broken, so that if we add another toolchain, we will be able
to see if the same bug happens as well or not."

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agopackage/crda: disable broken toolchains on nios2
Bernd Kuhls [Sun, 30 Nov 2014 16:48:53 +0000 (17:48 +0100)]
package/crda: disable broken toolchains on nios2

As discussed with Thomas
http://article.gmane.org/gmane.comp.lib.uclibc.buildroot/100998
only the current toolchains are broken:
"it's better to blacklist the individual toolchains that are known
to be broken, so that if we add another toolchain, we will be able
to see if the same bug happens as well or not."

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agopackage/aiccu: disable broken toolchains on nios2
Bernd Kuhls [Sun, 30 Nov 2014 16:48:52 +0000 (17:48 +0100)]
package/aiccu: disable broken toolchains on nios2

As discussed with Thomas
http://article.gmane.org/gmane.comp.lib.uclibc.buildroot/100998
only the current toolchains are broken:
"it's better to blacklist the individual toolchains that are known
to be broken, so that if we add another toolchain, we will be able
to see if the same bug happens as well or not."

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agoxlib_libXau: add host-pkgconf to its dependencies
Vicente Olivert Riera [Wed, 3 Dec 2014 14:18:42 +0000 (14:18 +0000)]
xlib_libXau: add host-pkgconf to its dependencies

xlib_libXau needs pkg-config during the configure phase. Otherwise it
will fail with an error like this one:

checking for XAU... configure: error: in
`/br/output/build/xlib_libXau-1.0.8':
configure: error: The pkg-config script could not be found or is too
old.  Make sure it
is in your PATH or set the PKG_CONFIG environment variable to the full
path to pkg-config.

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agopackage/nginx: remove rtsig module support
Samuel Martin [Mon, 1 Dec 2014 22:04:56 +0000 (23:04 +0100)]
package/nginx: remove rtsig module support

rtsig module uses the deprecated sysctl syscall, which is not
implemented on some recent architecture (such as arc).

Also, rtsig module is almost considered as deprecated by some nginx
developers [1].

So, just remove this option.

Fixes:
  http://autobuild.buildroot.org/results/730/730105fc0a89b381b3b29192d07f28ef1f13cbb3/

[1] http://mailman.nginx.org/pipermail/nginx-devel/2014-November/006295.html

Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agopackage/nginx: rename patch to new convention
Samuel Martin [Mon, 1 Dec 2014 22:04:55 +0000 (23:04 +0100)]
package/nginx: rename patch to new convention

Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agobdwgc: fix _ARCH_SUPPORTS kconfig warning
Peter Korsgaard [Wed, 3 Dec 2014 08:45:40 +0000 (09:45 +0100)]
bdwgc: fix _ARCH_SUPPORTS kconfig warning

We have to define it as a bool, otherwise kconfig complains with:

package/bdwgc/Config.in:1:warning: config symbol defined without type

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agopackage/flac: fix patch file extension
Samuel Martin [Tue, 2 Dec 2014 20:42:10 +0000 (21:42 +0100)]
package/flac: fix patch file extension

Fixes:
  http://autobuild.buildroot.org/results/c22/c22f29fd787a3d12d86cc3cd3e2d9c8688d2f65d/
  http://autobuild.buildroot.org/results/1f8/1f824e3aa17fb17e7efe3e4c1636974fea79c1f9/
  http://autobuild.buildroot.org/results/8ad/8ad965fbc19e22d3f43899cb5efb42626fa2f55e/

Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agopackage/dejavu: add hashes from project site
Samuel Martin [Tue, 2 Dec 2014 20:42:09 +0000 (21:42 +0100)]
package/dejavu: add hashes from project site

[Peter: drop locally computed sha1sum]
Signed-off-by: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agopython-flask: fix s/flash/flask/ _DEPENDENCIES typo
Peter Korsgaard [Tue, 2 Dec 2014 22:58:23 +0000 (23:58 +0100)]
python-flask: fix s/flash/flask/ _DEPENDENCIES typo

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agodocs: RWD website - upgrading bootswatch theme file
Angelo Compagnucci [Tue, 2 Dec 2014 17:23:17 +0000 (18:23 +0100)]
docs: RWD website - upgrading bootswatch theme file

This patch updates to the latest bootstrap versione (3.3.0) and
contextually pushes the colour theme and fonts required by
our style. The patch provides source files (*.less) to
recompile bootstrap.min.css .

Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agoexiv2: XMP support needs largefile
Baruch Siach [Mon, 1 Dec 2014 20:42:06 +0000 (22:42 +0200)]
exiv2: XMP support needs largefile

XMP code enables largefile unconditionally.

Fixes:
http://autobuild.buildroot.net/results/116/1166068a64733d22a2f891849177ad826347dc9f/

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Tested-by: Nicolas Serafini <nicolas.serafini@sensefly.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agotcpdump: add security fix patch
Baruch Siach [Tue, 2 Dec 2014 11:16:16 +0000 (13:16 +0200)]
tcpdump: add security fix patch

Fixes CVE-2014-9140, PPP dissector vulnerability.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agolinux-headers: bump 3.4.x series
Gustavo Zacarias [Tue, 2 Dec 2014 10:12:47 +0000 (07:12 -0300)]
linux-headers: bump 3.4.x series

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agosysstat: bump to version 11.0.2
Gustavo Zacarias [Tue, 2 Dec 2014 10:10:58 +0000 (07:10 -0300)]
sysstat: bump to version 11.0.2

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agodialog: bump to version 1.2-20140911
Gustavo Zacarias [Tue, 2 Dec 2014 10:10:57 +0000 (07:10 -0300)]
dialog: bump to version 1.2-20140911

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agolive555: fix test programs target installation
Baruch Siach [Tue, 2 Dec 2014 10:04:55 +0000 (12:04 +0200)]
live555: fix test programs target installation

Commit 43ebd93e1fcb (live555: add error handling to for loop) removed the
shell command delimiter. Add it back.

Fixes:
http://autobuild.buildroot.net/results/00f/00f26fa3b6fc8c707009f44ede7b680849f18d5f/

Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agolive555: fix shared library build on x86
Baruch Siach [Tue, 2 Dec 2014 07:48:41 +0000 (09:48 +0200)]
live555: fix shared library build on x86

-fPIC is required for shared libraries on x86.

Fixes:
http://autobuild.buildroot.net/results/6e7/6e78d3e29856c25d233f1629c31bc15f7ecb2f89/

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agoopenvpn: CVE-2014-8104: bump to version 2.3.6
Fabian Mewes [Mon, 1 Dec 2014 21:50:11 +0000 (22:50 +0100)]
openvpn: CVE-2014-8104: bump to version 2.3.6

see
https://community.openvpn.net/openvpn/wiki/SecurityAnnouncement-97597e732b

Signed-off-by: Fabian Mewes <architekt@coding4coffee.org>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agopackage/bdwgc: only enable on supported architectures
Yann E. MORIN [Mon, 1 Dec 2014 23:13:21 +0000 (00:13 +0100)]
package/bdwgc: only enable on supported architectures

bdwgc has support for a sub-set of the architectures we support.

Since there is roughly a 50-50 split of our architectures that have
support in bdwgc vs. those that do not, use a positive dependency logic,
rather than a negative one.

The list was constructed by visual inspection of the source code of
bdwgc, but the header doing the check is, to say it politely, a bit
difficult to read...

So, some working archotectures may be missing. Users needing it may
investigate if their architectures are indeed supported.

Fixes;
    http://autobuild.buildroot.net/results/529/529b0b6dd47744c13f56e59a4c669a3f5d56530d/

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Pedro Aguilar <paguilar@paguilar.org>
Cc: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agoffmpeg: bump version to 2.4.4
Vicente Olivert Riera [Mon, 1 Dec 2014 16:36:26 +0000 (16:36 +0000)]
ffmpeg: bump version to 2.4.4

- Bump version to 2.4.4.
- Remove upstreamed patch
- Add a hash file

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agosysklogd: fix redundant newline escape
Baruch Siach [Tue, 2 Dec 2014 07:13:08 +0000 (09:13 +0200)]
sysklogd: fix redundant newline escape

Broken since 428f1e7e70c6b (sysklogd: install configuration file
unconditionally). Fixes:

package/sysklogd/sysklogd.mk:21: *** missing 'endef', unterminated 'define'.  Stop.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agoproftpd: remove redundant newline escape
Baruch Siach [Tue, 2 Dec 2014 07:10:38 +0000 (09:10 +0200)]
proftpd: remove redundant newline escape

Broken since 0e18b0a4e12e7 (proftpd: install configuration file
unconditionally). Fixes the following make error:

package/proftpd/proftpd.mk:49: *** missing 'endef', unterminated 'define'.  Stop.

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agoifplugd: remove spurious newline escape
Baruch Siach [Tue, 2 Dec 2014 06:58:49 +0000 (08:58 +0200)]
ifplugd: remove spurious newline escape

Commit 5ad5d55924bcc (ifplugd: install configuration files unconditionally)
removed the conditional configuration file install, but left an redundant
newline escape, causing the following error:

package/ifplugd/ifplugd.mk:23: *** missing 'endef', unterminated 'define'.  Stop.

Fix this.

Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agompd: install configuration file unconditionally
Thomas Petazzoni [Sun, 30 Nov 2014 14:19:01 +0000 (15:19 +0100)]
mpd: install configuration file unconditionally

As discussed, users should use a rootfs overlay or a post-build script
instead of a custom skeleton to override files installed by Buildroot,
so there is no point in having conditions when installing init scripts
or configuration files.

[Peter: use install -m as noted by Yann]
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>
9 years agoinadyn: install configuration file unconditionally
Thomas Petazzoni [Sun, 30 Nov 2014 14:19:00 +0000 (15:19 +0100)]
inadyn: install configuration file unconditionally

As discussed, users should use a rootfs overlay or a post-build script
instead of a custom skeleton to override files installed by Buildroot,
so there is no point in having conditions when installing init scripts
or configuration files.

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>
9 years agophp: install configuration file unconditionally
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:59 +0000 (15:18 +0100)]
php: install configuration file unconditionally

As discussed, users should use a rootfs overlay or a post-build script
instead of a custom skeleton to override files installed by Buildroot,
so there is no point in having conditions when installing init scripts
or configuration files.

[Peter: use install -D]
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>
9 years agousbmount: install configuration file unconditionally
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:58 +0000 (15:18 +0100)]
usbmount: install configuration file unconditionally

As discussed, users should use a rootfs overlay or a post-build script
instead of a custom skeleton to override files installed by Buildroot,
so there is no point in having conditions when installing init scripts
or configuration files.

[Peter: fix indentation as noted by Yann]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agoscreen: install configuration file unconditionally
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:57 +0000 (15:18 +0100)]
screen: install configuration file unconditionally

As discussed, users should use a rootfs overlay or a post-build script
instead of a custom skeleton to override files installed by Buildroot,
so there is no point in having conditions when installing init scripts
or configuration files.

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>
9 years agosysklogd: install configuration file unconditionally
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:56 +0000 (15:18 +0100)]
sysklogd: install configuration file unconditionally

As discussed, users should use a rootfs overlay or a post-build script
instead of a custom skeleton to override files installed by Buildroot,
so there is no point in having conditions when installing init scripts
or configuration files.

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>
9 years agoifplugd: install configuration files unconditionally
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:55 +0000 (15:18 +0100)]
ifplugd: install configuration files unconditionally

As discussed, users should use a rootfs overlay or a post-build script
instead of a custom skeleton to override files installed by Buildroot,
so there is no point in having conditions when installing init scripts
or configuration files.

[Peter: use install -m as noted by Yann]
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>
9 years agologrotate: install configuration file unconditionally
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:53 +0000 (15:18 +0100)]
logrotate: install configuration file unconditionally

As discussed, users should use a rootfs overlay or a post-build script
instead of a custom skeleton to override files installed by Buildroot,
so there is no point in having conditions when installing init scripts
or configuration files.

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>
9 years agosamba: install configuration file unconditionally
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:52 +0000 (15:18 +0100)]
samba: install configuration file unconditionally

As discussed, users should use a rootfs overlay or a post-build script
instead of a custom skeleton to override files installed by Buildroot,
so there is no point in having conditions when installing init scripts
or configuration files.

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>
9 years agoproftpd: install configuration file unconditionally
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:51 +0000 (15:18 +0100)]
proftpd: install configuration file unconditionally

As discussed, users should use a rootfs overlay or a post-build script
instead of a custom skeleton to override files installed by Buildroot,
so there is no point in having conditions when installing init scripts
or configuration files.

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>
9 years agofluxbox: install session file unconditionally
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:50 +0000 (15:18 +0100)]
fluxbox: install session file unconditionally

As discussed, users should use a rootfs overlay or a post-build script
instead of a custom skeleton to override files installed by Buildroot,
so there is no point in having conditions when installing init scripts
or configuration files.

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>
9 years agoinput-event-daemon: install configuration file unconditionally
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:49 +0000 (15:18 +0100)]
input-event-daemon: install configuration file unconditionally

As discussed, users should use a rootfs overlay or a post-build script
instead of a custom skeleton to override files installed by Buildroot,
so there is no point in having conditions when installing init scripts
or configuration files.

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>
9 years agostunnel: install configuration file unconditionally
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:48 +0000 (15:18 +0100)]
stunnel: install configuration file unconditionally

As discussed, users should use a rootfs overlay or a post-build script
instead of a custom skeleton to override files installed by Buildroot,
so there is no point in having conditions when installing init scripts
or configuration files.

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>
9 years agotransmission: install init script unconditionally
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:47 +0000 (15:18 +0100)]
transmission: install init script unconditionally

As discussed, users should use a rootfs overlay or a post-build script
instead of a custom skeleton to override files installed by Buildroot,
so there is no point in having conditions when installing init scripts
or configuration files.

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>
9 years agorsyslog: install init script and config file unconditionally
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:46 +0000 (15:18 +0100)]
rsyslog: install init script and config file unconditionally

As discussed, users should use a rootfs overlay or a post-build script
instead of a custom skeleton to override files installed by Buildroot,
so there is no point in having conditions when installing init scripts
or configuration files.

Also, we take this opportunity to rename RSYSLOG_INSTALL_CONF_SCRIPT
to RSYSLOG_INSTALL_CONF because it is no longer installing an init
script.

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>
9 years agorpcbind: install init script unconditionally
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:45 +0000 (15:18 +0100)]
rpcbind: install init script unconditionally

As discussed, users should use a rootfs overlay or a post-build script
instead of a custom skeleton to override files installed by Buildroot,
so there is no point in having conditions when installing init scripts
or configuration files.

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>
9 years agolighttpd: install configuration files with sensible (0644) permissions
Peter Korsgaard [Mon, 1 Dec 2014 23:22:19 +0000 (00:22 +0100)]
lighttpd: install configuration files with sensible (0644) permissions

And use the same (0-prefixed) form everywhere.

Reported-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agolighttpd: install init script and config file unconditionally
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:44 +0000 (15:18 +0100)]
lighttpd: install init script and config file unconditionally

As discussed, users should use a rootfs overlay or a post-build script
instead of a custom skeleton to override files installed by Buildroot,
so there is no point in having conditions when installing init scripts
or configuration files.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agoiucode-tool: install init script unconditionally
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:43 +0000 (15:18 +0100)]
iucode-tool: install init script unconditionally

As discussed, users should use a rootfs overlay or a post-build script
instead of a custom skeleton to override files installed by Buildroot,
so there is no point in having conditions when installing init scripts
or configuration files.

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>
9 years agodmraid: install init script unconditionally
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:42 +0000 (15:18 +0100)]
dmraid: install init script unconditionally

As discussed, users should use a rootfs overlay or a post-build script
instead of a custom skeleton to override files installed by Buildroot,
so there is no point in having conditions when installing init scripts
or configuration files.

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>
9 years agobusybox: install init script and config file unconditionally
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:41 +0000 (15:18 +0100)]
busybox: install init script and config file unconditionally

As discussed, users should use a rootfs overlay or a post-build script
instead of a custom skeleton to override files installed by Buildroot,
so there is no point in having conditions when installing init scripts
or configuration files.

[Peter: drop && conditional from watchdog installation as noted by Yann]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agoaiccu: install init script and config file unconditionally
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:40 +0000 (15:18 +0100)]
aiccu: install init script and config file unconditionally

As discussed, users should use a rootfs overlay or a post-build script
instead of a custom skeleton to override files installed by Buildroot,
so there is no point in having conditions when installing init scripts
or configuration files.

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>
9 years agoxenomai: add error handling to for loop
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:39 +0000 (15:18 +0100)]
xenomai: add error handling to for loop

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>
9 years agosound-theme-borealis: add error handling to for loop
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:38 +0000 (15:18 +0100)]
sound-theme-borealis: add error handling to for loop

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>
9 years agoqt5base: add error handling to for loop
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:36 +0000 (15:18 +0100)]
qt5base: add error handling to for loop

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>
9 years agolockfile-progs: add error handling to for loop
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:35 +0000 (15:18 +0100)]
lockfile-progs: add error handling to for loop

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>
9 years agolive555: add error handling to for loop
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:34 +0000 (15:18 +0100)]
live555: add error handling to for loop

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>
9 years agojimtcl: add error handling to for loop
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:33 +0000 (15:18 +0100)]
jimtcl: add error handling to for loop

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>
9 years agoirda-utils: add error handling to for loop
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:32 +0000 (15:18 +0100)]
irda-utils: add error handling to for loop

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>
9 years agogptfdisk: add error handling to for loop
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:31 +0000 (15:18 +0100)]
gptfdisk: add error handling to for loop

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>
9 years agogooglefontdirectory: add error handling to for loop
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:30 +0000 (15:18 +0100)]
googlefontdirectory: add error handling to for loop

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>
9 years agoflot: add error handling to for loop
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:29 +0000 (15:18 +0100)]
flot: add error handling to for loop

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>
9 years agoebtables: add error handling to for loop
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:28 +0000 (15:18 +0100)]
ebtables: add error handling to for loop

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>
9 years agocoreutils: add error handling to for loop
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:27 +0000 (15:18 +0100)]
coreutils: add error handling to for loop

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>
9 years agoalsa-utils: add error handling to for loop
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:26 +0000 (15:18 +0100)]
alsa-utils: add error handling to for loop

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>
9 years agorp-pppoe: bail out if installation fails
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:25 +0000 (15:18 +0100)]
rp-pppoe: bail out if installation fails

Add an "|| exit 1" in the installation loop, otherwise if one of the
file fails to install, the build doesn't abort.

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>
9 years agorp-pppoe: don't install man pages
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:24 +0000 (15:18 +0100)]
rp-pppoe: don't install man pages

We don't support installing documentation on the target, so there's no
point in having explicit code to do so.

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>
9 years agognupg: don't bother removing a man page
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:23 +0000 (15:18 +0100)]
gnupg: don't bother removing a man page

The target-finalize target in the main Makefile removes
$(TARGET_DIR)/usr/share/man entirely, so there's no point in having
some package specific logic to remove man pages.

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>
9 years agopptp-linux: don't install man page
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:22 +0000 (15:18 +0100)]
pptp-linux: don't install man page

We don't support installing documentation on the target, so there's no
point in having explicit code to do so.

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>
9 years agoiostat: remove legacy code
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:21 +0000 (15:18 +0100)]
iostat: remove legacy code

Some custom iostat-source target was mistakenly left in place when the
iostat package was migrated to gentargets in commit
ee77963588b09babfd71befb0b5eb9fd1e776bbc, back 4 years ago. This
commit removes this unnecessary custom target.

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>
9 years agoiostat: ensure binary gets installed with proper permissions
Peter Korsgaard [Mon, 1 Dec 2014 22:16:45 +0000 (23:16 +0100)]
iostat: ensure binary gets installed with proper permissions

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agoiostat: don't install man page
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:20 +0000 (15:18 +0100)]
iostat: don't install man page

We don't support installing documentation on the target, so there's no
point in having explicit code to do so.

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>
9 years agotree: don't install man page
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:19 +0000 (15:18 +0100)]
tree: don't install man page

We don't support installing documentation on the target, so there's no
point in having explicit code to do so.

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>
9 years agondisc6: remove man page related code
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:18 +0000 (15:18 +0100)]
ndisc6: remove man page related code

The target-finalize target takes care of removing
$(TARGET_DIR)/usr/share/man, so there's no point in having package
specific code doing this.

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>
9 years agowipe: ensure binary gets installed with proper permissions
Peter Korsgaard [Mon, 1 Dec 2014 22:08:46 +0000 (23:08 +0100)]
wipe: ensure binary gets installed with proper permissions

Reported-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
9 years agowipe: don't install man pages
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:17 +0000 (15:18 +0100)]
wipe: don't install man pages

We don't support installing documentation on the target, so there's no
point in having explicit code to do so.

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>
9 years agosnowball-init: use <pkg>_INSTALL_INIT_SYSV mechanism
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:16 +0000 (15:18 +0100)]
snowball-init: use <pkg>_INSTALL_INIT_SYSV mechanism

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>
9 years agompd: use <pkg>_INSTALL_INIT_SYSV mechanism
Thomas Petazzoni [Sun, 30 Nov 2014 14:18:15 +0000 (15:18 +0100)]
mpd: use <pkg>_INSTALL_INIT_SYSV mechanism

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>