buildroot.git
8 years agocore/pkg-utils: add macro to escape-and-printf
Yann E. MORIN [Mon, 6 Jun 2016 20:43:38 +0000 (22:43 +0200)]
core/pkg-utils: add macro to escape-and-printf

In some cases we need to escape make variables and pass them to
printf(1).

This is the case in our fs infra, where we want to shoe-horn the
commands to generate the filesystems in the fakeroot script, or the
devices, permissions and users tables to their respective files.

We currently do so by replacing $(sep) with the literal '\n' but that's
not enough. This does not protect against strings with an embedded '%'
or a backslash.

Add a new macro that properly escapes a string and calls printf(1), so
that we get the expected output.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agoboot/barebox: use the generic help rules
Yann E. MORIN [Sat, 4 Jun 2016 16:30:53 +0000 (18:30 +0200)]
boot/barebox: use the generic help rules

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Arnout Vandecappelle <arnout@mind.be>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
[Thomas: don't use the helper.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agopackage/uclibc: use the generic help rules
Yann E. MORIN [Sat, 4 Jun 2016 16:30:52 +0000 (18:30 +0200)]
package/uclibc: use the generic help rules

Note that the uclibc-menuconfig rule was guarded behind
BR2_TOOLCHAIN_BUILDROOT, which is wrong since we can build
glibc or musl toolchains too...

This is de facto fixed by moving the help text to the uClibc package.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Arnout Vandecappelle <arnout@mind.be>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
[Thomas: don't use the helper.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agolinux: use the generic help rules
Yann E. MORIN [Sat, 4 Jun 2016 16:30:51 +0000 (18:30 +0200)]
linux: use the generic help rules

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Arnout Vandecappelle <arnout@mind.be>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
[Thomas: don't use the helper.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agopackage/busybox: use the generic help rules
Yann E. MORIN [Sat, 4 Jun 2016 16:30:50 +0000 (18:30 +0200)]
package/busybox: use the generic help rules

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Arnout Vandecappelle <arnout@mind.be>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
[Thomas: don't use a helper.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agocore: name the package before its help text
Yann E. MORIN [Sat, 4 Jun 2016 16:30:48 +0000 (18:30 +0200)]
core: name the package before its help text

Currently, all our internal packages provide actions that are prefixed
with their own names. This makes it obvious what package the action
refer to.

However, the help commands are really free-form. This means that
packages (and especially packages from a br2-external tree) may provide
completely arbitrary help text.

As such, all that text can get pretty easily mixed up, and it will be
very difficult to read.

Prefix each package-specific help text with the name of the package it
refers to. This generate a "make help" that looks like:

    [...]
    Package-specific:
      <pkg>                  - Build and install <pkg> and all its dependencies
      <pkg>-source           - Only download the source files for <pkg>
      <pkg>-extract          - Extract <pkg> sources
      <pkg>-patch            - Apply patches to <pkg>
      <pkg>-depends          - Build <pkg>'s dependencies
      <pkg>-configure        - Build <pkg> up to the configure step
      <pkg>-build            - Build <pkg> up to the build step
      <pkg>-graph-depends    - Generate a graph of <pkg>'s dependencies
      <pkg>-dirclean         - Remove <pkg> build directory
      <pkg>-reconfigure      - Restart the build from the configure step
      <pkg>-rebuild          - Restart the build from the build step

    busybox:
      busybox-menuconfig     - Run BusyBox menuconfig
      busybox-nconfig        - Run BusyBox nconfig

    barebox:
      barebox-menuconfig     - Run barebox menuconfig
      barebox-savedefconfig  - Run barebox savedefconfig

    linux:
      linux-menuconfig       - Run Linux kernel menuconfig
      linux-savedefconfig    - Run Linux kernel savedefconfig
      linux-update-defconfig - Save the Linux configuration to the path specified
                               by BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE

    Documentation:
      manual                 - build manual in all formats
      manual-html            - build manual in HTML
      [...]

(Note: busybox, barebox, linux help will be converted in followup
commits, they are represented here as an example of what this patch
does look like.)

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
cc: Arnout Vandecappelle <arnout@mind.be>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agocore/pkg-generic: add support for package-defined help
Yann E. MORIN [Sat, 4 Jun 2016 16:30:47 +0000 (18:30 +0200)]
core/pkg-generic: add support for package-defined help

Add a package-variable to store the package-specific make rules.

Although this variable would be seldom used, we still document it.
However, we make sure the documentation explicitly states that this
variable should not be used (if it needs to be, the submitter of a
package will be told so during reviews).

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Arnout Vandecappelle <arnout@mind.be>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agowiringpi: needs threads
Peter Seiderer [Tue, 7 Jun 2016 18:43:01 +0000 (20:43 +0200)]
wiringpi: needs threads

Fixes [1]:

  wiringPi.c:66:21: fatal error: pthread.h: No such file or directory

[1] http://autobuild.buildroot.net/results/4e1/4e17697c1116b418d8d9c07a202f3c89186e463f

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agolua: bump to version 5.3.3
Francois Perrad [Tue, 7 Jun 2016 16:29:15 +0000 (18:29 +0200)]
lua: bump to version 5.3.3

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agoconfigs/beaglebone: Add missing genimage.cfg file
Ezequiel Garcia [Tue, 7 Jun 2016 13:58:01 +0000 (10:58 -0300)]
configs/beaglebone: Add missing genimage.cfg file

Commit 7d0b7d3c27a6 ("configs/beaglebone: Use genimage
to produce the SD card image") introduce genimage usage,
but forgot to add the genimage config file. Fix it.

Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agochrony: bump to version 2.4
Peter Korsgaard [Tue, 7 Jun 2016 13:10:31 +0000 (15:10 +0200)]
chrony: bump to version 2.4

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agopackage/liquid-dsp: bump version
Bernd Kuhls [Sun, 5 Jun 2016 21:26:03 +0000 (23:26 +0200)]
package/liquid-dsp: bump version

Removed patches applied upstream:
https://github.com/jgaeddert/liquid-dsp/commit/c9d239490d47d5dd3d7d7b8b7d9007171c5f60ce
https://github.com/jgaeddert/liquid-dsp/commit/3055eb3da9d0a202c1a975f7db0c8370a09a30bc

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agopackage/lcdapi: bump version to v0.10
Bernd Kuhls [Sun, 5 Jun 2016 21:26:02 +0000 (23:26 +0200)]
package/lcdapi: bump version to v0.10

Removed patch to fix docs install after upstream fixed the problem:
https://github.com/spdawson/lcdapi/commit/34e1d3b26055b02cecb7e738574b8fddcc2ab5eb

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agopackage/am335x-pru-package: bump version
Bernd Kuhls [Sun, 5 Jun 2016 21:26:01 +0000 (23:26 +0200)]
package/am335x-pru-package: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agopackage/emlog: bump version
Bernd Kuhls [Sun, 5 Jun 2016 21:26:00 +0000 (23:26 +0200)]
package/emlog: bump version

Removed patch applied upstream:
https://github.com/nicupavel/emlog/commit/576a6c0fcf76dfeff48124b2f5fc0b4207d88ca1

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agopython-xlsxwriter: new package
Yegor Yefremov [Mon, 6 Jun 2016 12:47:12 +0000 (14:47 +0200)]
python-xlsxwriter: new package

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agom68k: remove BR2_GCC_TARGET_ARCH
Waldemar Brodkorb [Tue, 7 Jun 2016 02:45:22 +0000 (04:45 +0200)]
m68k: remove BR2_GCC_TARGET_ARCH

Setting BR2_GCC_TARGET_ARCH is possible, but breaks
external toolchain users. m68k/cf defconfigs just
working without it.

Reported-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agoxterm: bump to version 325
Gustavo Zacarias [Tue, 7 Jun 2016 00:44:11 +0000 (21:44 -0300)]
xterm: bump to version 325

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agognutls: bump to version 3.4.13
Gustavo Zacarias [Mon, 6 Jun 2016 23:43:12 +0000 (20:43 -0300)]
gnutls: bump to version 3.4.13

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agohiawatha: bump to version 10.3
Gustavo Zacarias [Mon, 6 Jun 2016 23:20:51 +0000 (20:20 -0300)]
hiawatha: bump to version 10.3

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agomsmtp: bump to version 1.6.5
Gustavo Zacarias [Mon, 6 Jun 2016 23:09:12 +0000 (20:09 -0300)]
msmtp: bump to version 1.6.5

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agoopenntpd: bump to version 6.0p1
Gustavo Zacarias [Mon, 6 Jun 2016 23:08:15 +0000 (20:08 -0300)]
openntpd: bump to version 6.0p1

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agogcc: bump 5.x series to version 5.4.0
Gustavo Zacarias [Tue, 7 Jun 2016 01:21:48 +0000 (22:21 -0300)]
gcc: bump 5.x series to version 5.4.0

130-fix_build_with_gcc-6.patch is upstream so remove it.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agopackage/libplayer: switch to BR2_PACKAGE_MPLAYER_ARCH_SUPPORTS
Bernd Kuhls [Sat, 4 Jun 2016 13:16:40 +0000 (15:16 +0200)]
package/libplayer: switch to BR2_PACKAGE_MPLAYER_ARCH_SUPPORTS

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agopackage/mplayer: add optional support for mpg123
Bernd Kuhls [Sat, 4 Jun 2016 08:00:20 +0000 (10:00 +0200)]
package/mplayer: add optional support for mpg123

mplayer has optional support for mpg123, to get reproducable builds
add mpg123 as optional dependency.

Linked libraries without this patch:
$ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/bin/mplayer | grep NEEDED
 0x0000000000000001 (NEEDED)             Shared library: [librt.so.1]
 0x0000000000000001 (NEEDED)             Shared library: [libpthread.so.1]
 0x0000000000000001 (NEEDED)             Shared library: [libdl.so.1]
 0x0000000000000001 (NEEDED)             Shared library: [libm.so.1]
 0x0000000000000001 (NEEDED)             Shared library: [libc.so.1]

Linked libraries after this patch:
$ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/bin/mplayer | grep NEEDED
 0x0000000000000001 (NEEDED)             Shared library: [librt.so.1]
 0x0000000000000001 (NEEDED)             Shared library: [libmpg123.so.0]
 0x0000000000000001 (NEEDED)             Shared library: [libpthread.so.1]
 0x0000000000000001 (NEEDED)             Shared library: [libdl.so.1]
 0x0000000000000001 (NEEDED)             Shared library: [libm.so.1]
 0x0000000000000001 (NEEDED)             Shared library: [libc.so.1]

Like with many other optional libraries detection of mpg123 is broken if
--enable-mpg123 is passed to configure leading to a build error:

libmpcodecs/ad_mpg123.o: In function `set_format':
ad_mpg123.c:(.text+0x63): undefined reference to `mpg123_getformat'
libmpcodecs/ad_mpg123.o: In function `decode_a_bit':
ad_mpg123.c:(.text+0x1b6): undefined reference to `mpg123_feed'
ad_mpg123.c:(.text+0x20e): undefined reference to `mpg123_replace_buffer'
ad_mpg123.c:(.text+0x223): undefined reference to `mpg123_decode_frame_64'
ad_mpg123.c:(.text+0x275): undefined reference to `mpg123_strerror'
[...]

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agopackage/audiofile: fix compilation with gcc6
Bernd Kuhls [Sat, 4 Jun 2016 16:13:52 +0000 (18:13 +0200)]
package/audiofile: fix compilation with gcc6

Fixes

make[3]: Entering directory '/home/buildroot/br7_freeswitch/output/build/audiofile-0.3.6/libaudiofile/modules'
/bin/bash ../../libtool  --tag=CXX   --mode=compile /home/buildroot/br7_freeswitch/output/host/usr/bin/i586-buildroot-linux-uclibc-g++ -DHAVE_CONFIG_H -I. -I../.. -I./..  -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wno-multichar    -fvisibility=hidden -fno-rtti -fno-exceptions -fvisibility-inlines-hidden -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64  -Os  -c -o ALAC.lo ALAC.cpp
libtool: compile:  /home/buildroot/br7_freeswitch/output/host/usr/bin/i586-buildroot-linux-uclibc-g++ -DHAVE_CONFIG_H -I. -I../.. -I./.. -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DNDEBUG -Wall -Wno-multichar -fvisibility=hidden -fno-rtti -fno-exceptions -fvisibility-inlines-hidden -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -c ALAC.cpp  -fPIC -DPIC -o .libs/ALAC.o
In file included from ALAC.cpp:29:0:
SimpleModule.h: In instantiation of 'const int signConverter<(FormatCode)0>::kMinSignedValue':
SimpleModule.h:130:52:   required from 'signConverter<Format>::UnsignedType signConverter<Format>::signedToUnsigned::operator()(signConverter<Format>::SignedType) [with FormatCode Format = (FormatCode)0; signConverter<Format>::UnsignedType = unsigned char; signConverter<Format>::SignedType = signed char]'
/home/buildroot/br7_freeswitch/output/host/usr/i586-buildroot-linux-uclibc/include/c++/6.1.0/bits/stl_algo.h:4184:24:   required from '_OIter std::transform(_IIter, _IIter, _OIter, _UnaryOperation) [with _IIter = const signed char*; _OIter = unsigned char*; _UnaryOperation = signConverter<(FormatCode)0>::signedToUnsigned]'
SimpleModule.h:104:16:   required from 'void transform(const void*, void*, size_t) [with UnaryFunction = signConverter<(FormatCode)0>::signedToUnsigned; size_t = unsigned int]'
SimpleModule.h:176:62:   required from 'static void ConvertSign::convertSignedToUnsigned(const void*, void*, size_t) [with FormatCode Format = (FormatCode)0; size_t = unsigned int]'
SimpleModule.h:183:51:   required from here
SimpleModule.h:126:40: error: left operand of shift expression '(-1 << 7)' is negative [-fpermissive]
  static const int kMinSignedValue = -1 << kScaleBits;
                                     ~~~^~~~~~~~~~~~~

To reproduce the build error use this defconfig:

BR2_GCC_VERSION_6_X=y
BR2_TOOLCHAIN_BUILDROOT_CXX=y
BR2_PACKAGE_AUDIOFILE=y

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agopackage/omxplayer: remove BR2_PACKAGE_BOOST_ARCH_SUPPORTS option
Bernd Kuhls [Sat, 4 Jun 2016 13:13:01 +0000 (15:13 +0200)]
package/omxplayer: remove BR2_PACKAGE_BOOST_ARCH_SUPPORTS option

The option was globally removed with
https://git.busybox.net/buildroot/commit/package/boost?id=668ce456448d671f30bf98c4d4819a88b0bf9f4e

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>
8 years agopackage/kodi: remove BR2_PACKAGE_BOOST_ARCH_SUPPORTS option, 2nd try
Bernd Kuhls [Sat, 4 Jun 2016 13:13:00 +0000 (15:13 +0200)]
package/kodi: remove BR2_PACKAGE_BOOST_ARCH_SUPPORTS option, 2nd try

For whatever reason this commit
https://git.busybox.net/buildroot/commit/package/kodi?id=668ce456448d671f30bf98c4d4819a88b0bf9f4e
did not make it into the master branch preventing to select the Kodi
package in menuconfig.

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>
8 years agofs/cloop: split long line
Yann E. MORIN [Mon, 6 Jun 2016 20:43:40 +0000 (22:43 +0200)]
fs/cloop: split long line

.. and add the missing newline-at-end-of-file.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agoconfigs/beaglebone: Bump U-Boot version
Ezequiel Garcia [Mon, 6 Jun 2016 17:05:35 +0000 (14:05 -0300)]
configs/beaglebone: Bump U-Boot version

Currently selected version of U-Boot fails to compile.
Dying words are:

  gcc -g -O2 -I/home/zeta/buildroot/buildroot/output/host/usr/include -c -o env_embedded.o /home/zeta/buildroot/buildroot/output/build/uboot-2013.10/common/env_embedded.c
  /home/zeta/buildroot/buildroot/output/build/uboot-2013.10/lib/crc32.c:14:20: fatal error: common.h: No such file or directory
  compilation terminated.
  Makefile:258: recipe for target 'crc32.o' failed

Since it's quite old, instead of trying to fix it, let's
just upgrade.

Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agoconfigs/beaglebone: Use genimage to produce the SD card image
Ezequiel Garcia [Sat, 4 Jun 2016 21:29:09 +0000 (18:29 -0300)]
configs/beaglebone: Use genimage to produce the SD card image

Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
[Thomas: added host dosfstools to the defconfig, needed to build a SD
card image with genimage when a FAT partition is listed in the
genimage configuration.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agouclibc: use shell script testsuite runner
Waldemar Brodkorb [Sat, 4 Jun 2016 20:49:32 +0000 (22:49 +0200)]
uclibc: use shell script testsuite runner

There is no need for GNU make to run the testsuite.
The benefit is you can even try it on noMMU targets as
the script runs with busybox hush.
Parallel build of the testsuite seems to work well.

Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agouclibc: the internal toolchain only uses uClibc-ng
Waldemar Brodkorb [Sat, 4 Jun 2016 20:53:47 +0000 (22:53 +0200)]
uclibc: the internal toolchain only uses uClibc-ng

Point to the right website and tell the user the right name.

Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agopackage/softether: add hash
Bernd Kuhls [Sun, 5 Jun 2016 21:43:23 +0000 (23:43 +0200)]
package/softether: add hash

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/zyre: add hash
Bernd Kuhls [Sun, 5 Jun 2016 21:40:05 +0000 (23:40 +0200)]
package/zyre: add hash

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/zlog: add hash
Bernd Kuhls [Sun, 5 Jun 2016 21:40:04 +0000 (23:40 +0200)]
package/zlog: add hash

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/vim: add hash
Bernd Kuhls [Sun, 5 Jun 2016 21:40:03 +0000 (23:40 +0200)]
package/vim: add hash

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/socketcand: add hash
Bernd Kuhls [Sun, 5 Jun 2016 21:40:01 +0000 (23:40 +0200)]
package/socketcand: add hash

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/open-plc-utils: add hash
Bernd Kuhls [Sun, 5 Jun 2016 21:40:00 +0000 (23:40 +0200)]
package/open-plc-utils: add hash

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/libshairplay: add hash
Bernd Kuhls [Sun, 5 Jun 2016 21:39:59 +0000 (23:39 +0200)]
package/libshairplay: add hash

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/janus-gateway: add hash
Bernd Kuhls [Sun, 5 Jun 2016 21:39:58 +0000 (23:39 +0200)]
package/janus-gateway: add hash

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/inotify-tools: add hash
Bernd Kuhls [Sun, 5 Jun 2016 21:39:57 +0000 (23:39 +0200)]
package/inotify-tools: add hash

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/glmark2: add hash
Bernd Kuhls [Sun, 5 Jun 2016 21:39:56 +0000 (23:39 +0200)]
package/glmark2: add hash

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/can-utils: add hash
Bernd Kuhls [Sun, 5 Jun 2016 21:39:55 +0000 (23:39 +0200)]
package/can-utils: add hash

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/avrdude: add hash
Bernd Kuhls [Sun, 5 Jun 2016 21:39:54 +0000 (23:39 +0200)]
package/avrdude: add hash

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopython-serial: fix Python 2.7.x related compilation error
Yegor Yefremov [Mon, 6 Jun 2016 11:30:11 +0000 (13:30 +0200)]
python-serial: fix Python 2.7.x related compilation error

aio.py is an experimental module, that is compatible with
Python 3 only, so remove it for Python 2 environment or it
will cause compilation errors.

Fixes:
http://autobuild.buildroot.org/results/f26/f26351da925d6ef3adea8053dc7fc24061554daf/

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agoConfig.in: add BR2_HOST_GCC_AT_LEAST_6
Martin Bark [Mon, 6 Jun 2016 10:18:14 +0000 (11:18 +0100)]
Config.in: add BR2_HOST_GCC_AT_LEAST_6

Signed-off-by: Martin Bark <martin@barkynet.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agoconfigs/minnowboard_max: bump kernel to 4.6.1
Vincent Stehlé [Mon, 6 Jun 2016 16:20:57 +0000 (18:20 +0200)]
configs/minnowboard_max: bump kernel to 4.6.1

Also, rebase kernel config and adapt kernel command line in grub config file
to follow mmc numbering change.

[Peter: drop now unused linux-4.4.config]
Signed-off-by: Vincent Stehlé <vincent.stehle@intel.com>
Cc: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
Cc: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agoBinutils: ARC: Fix build failures if makeinfo is missing
Zakharov Vlad [Mon, 6 Jun 2016 11:14:19 +0000 (14:14 +0300)]
Binutils: ARC: Fix build failures if makeinfo is missing

Build failed when "makeinfo" was missing on the build host.
This was happening because "makeinfo" is required to build .info targets
and make exited with error. The issue hadn't appeared before as there was
prebuilt documentation in ARC binutils tarballs, so no attempts had been
made to build docs.

Missing "makeinfo" only stops us from building docs
("missing" script already throws a warning on that regard).
Let's continue to build other targets.

Now exit code of the script called "missing" is checked.
The value 127 means that "makeinfo" is not available on the build host.

So when such value occurs, 0 is returned to the top level makefile.
Documentation is not being built but further build of binutils continues.

Fixes http://autobuild.buildroot.net/results/55c/55cd09a559016f4f252f0e4c27313b9806135cf4//

Signed-off-by: Zakharov Vlad <vzakhar@synopsys.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/janus-gateway: Changed WebSockets library from libwebsock to libwebsockets
Bernd Kuhls [Mon, 6 Jun 2016 05:21:15 +0000 (07:21 +0200)]
package/janus-gateway: Changed WebSockets library from libwebsock to libwebsockets

For details see
https://github.com/meetecho/janus-gateway/commit/f500ae8ea492109e7e8d52c669e1a7d1a5021537

Fixes
http://autobuild.buildroot.net/results/e46/e468792af4aadbc6c9fce828a9d423e35c303b90/
http://autobuild.buildroot.net/results/88f/88f2cdbe2aad2d2476372dd4d559edf2bf16d5b1/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/zyre: update license
Bernd Kuhls [Mon, 6 Jun 2016 04:58:00 +0000 (06:58 +0200)]
package/zyre: update license

The project switched to MPLv2.0:
https://github.com/zeromq/zyre/issues/327

Fixes
http://autobuild.buildroot.net/results/88f/88fa0b150ad83e42625666cbffdf95ee178015cb/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agosupport/gnuconfig: bump version to 2016-05-15
Bernd Kuhls [Sat, 4 Jun 2016 16:29:49 +0000 (18:29 +0200)]
support/gnuconfig: bump version to 2016-05-15

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopython-cryptography: bump to version 1.3.4
Gustavo Zacarias [Sat, 4 Jun 2016 13:32:33 +0000 (10:32 -0300)]
python-cryptography: bump to version 1.3.4

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agonginx: security bump to version 1.10.1
Gustavo Zacarias [Sat, 4 Jun 2016 13:14:44 +0000 (10:14 -0300)]
nginx: security bump to version 1.10.1

Fixes:
CVE-2016-4450 - NULL pointer dereference while writing client request
body.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/openpowerlink: enable openpowerlink PCIe driver support
Romain Naour [Sat, 4 Jun 2016 14:38:11 +0000 (16:38 +0200)]
package/openpowerlink: enable openpowerlink PCIe driver support

Also, disable error=date-time for kernel >= 3.14 and fix musl build.

Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/openpowerlink: bump to v2.4.0
Romain Naour [Sat, 4 Jun 2016 14:38:10 +0000 (16:38 +0200)]
package/openpowerlink: bump to v2.4.0

Remove upstream patches and rebase all remaining patches.

Disable PCIe MN library by default, it will be added in a follow up patch.

Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/wiringpi: uses fork(), needs mmu
Bernd Kuhls [Sat, 4 Jun 2016 17:27:05 +0000 (19:27 +0200)]
package/wiringpi: uses fork(), needs mmu

Fixes
http://autobuild.buildroot.net/results/c60/c6013c214674f9802309d8cd770d3da2f751674d/

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Reviewed-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agouclibc: add microblaze support
Waldemar Brodkorb [Sat, 4 Jun 2016 20:26:04 +0000 (22:26 +0200)]
uclibc: add microblaze support

Latest uClibc-ng 1.0.15 release fixed open issues with
microblaze shared library and linuxthreads support.
gcc 4.9.3 and gcc 5.3.0 require a small patch.

Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agolvm2: bump to version 2.02.155
Gustavo Zacarias [Sat, 4 Jun 2016 20:52:42 +0000 (17:52 -0300)]
lvm2: bump to version 2.02.155

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agocryptsetup: bump to version 1.7.2
Gustavo Zacarias [Sat, 4 Jun 2016 20:52:41 +0000 (17:52 -0300)]
cryptsetup: bump to version 1.7.2

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agoxserver_xorg-server: apply modesettings patch for 1.18.3 only
Stanislas Bach [Sun, 5 Jun 2016 20:10:43 +0000 (22:10 +0200)]
xserver_xorg-server: apply modesettings patch for 1.18.3 only

We currently have two choices for the server's version (1.18.3, and 1.14.7)
but the following patch will only apply for versions >= 1.17.2.

If 1.14.7 is selected the build will fail with the following error:

Applying 0001-modesettings-needs-dri2.patch using patch:
patching file configure.ac
Hunk #1 FAILED at 2036

So move this patch to an appropriate version folder in the package's
directory. It should be good enough until this package provides more
versions >= 1.17.2.

Signed-off-by: Stanislas Bach <sbach@0g.re>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/hidapi: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:52:21 +0000 (19:52 +0200)]
package/hidapi: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/open-plc-utils: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:52:20 +0000 (19:52 +0200)]
package/open-plc-utils: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/php-ssh2: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:52:19 +0000 (19:52 +0200)]
package/php-ssh2: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/php-geoip: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:52:18 +0000 (19:52 +0200)]
package/php-geoip: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/turbolua: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:52:17 +0000 (19:52 +0200)]
package/turbolua: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/zyre: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:52:16 +0000 (19:52 +0200)]
package/zyre: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/czmq: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:52:15 +0000 (19:52 +0200)]
package/czmq: bump version

Needed for zyre bump:
https://github.com/zeromq/zyre/issues/442#issuecomment-189127583

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/odhcp6c: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:52:14 +0000 (19:52 +0200)]
package/odhcp6c: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/sconeserver: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:52:13 +0000 (19:52 +0200)]
package/sconeserver: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/v4l2grab: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:52:12 +0000 (19:52 +0200)]
package/v4l2grab: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/zxing-cpp: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:52:11 +0000 (19:52 +0200)]
package/zxing-cpp: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/zlog: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:52:10 +0000 (19:52 +0200)]
package/zlog: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/vim: bump version to v7.4.1902
Bernd Kuhls [Sun, 5 Jun 2016 17:52:09 +0000 (19:52 +0200)]
package/vim: bump version to v7.4.1902

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/socketcand: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:52:08 +0000 (19:52 +0200)]
package/socketcand: bump version

Removed patch applied upstream:
https://github.com/dschanoeh/socketcand/commit/bdb3cd081a694f8f6924e399d944e32c1578235c

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/softether: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:52:07 +0000 (19:52 +0200)]
package/softether: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/vpnc: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:52:06 +0000 (19:52 +0200)]
package/vpnc: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/libshairplay: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:52:05 +0000 (19:52 +0200)]
package/libshairplay: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/janus-gateway: bump version to v0.1.0
Bernd Kuhls [Sun, 5 Jun 2016 17:52:04 +0000 (19:52 +0200)]
package/janus-gateway: bump version to v0.1.0

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/minizip: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:52:03 +0000 (19:52 +0200)]
package/minizip: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/iputils: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:52:02 +0000 (19:52 +0200)]
package/iputils: bump version

tracepath and tracepath6 were merged recently:
https://github.com/iputils/iputils/pull/48

Therefore we do not need to install tracepath6 anymore.

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/inotify-tools: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:52:01 +0000 (19:52 +0200)]
package/inotify-tools: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/gr-osmosdr: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:52:00 +0000 (19:52 +0200)]
package/gr-osmosdr: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/gmrender-resurrect: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:51:59 +0000 (19:51 +0200)]
package/gmrender-resurrect: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/glmark2: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:51:58 +0000 (19:51 +0200)]
package/glmark2: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/filemq: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:51:57 +0000 (19:51 +0200)]
package/filemq: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/can-utils: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:51:56 +0000 (19:51 +0200)]
package/can-utils: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/avrdude: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:51:55 +0000 (19:51 +0200)]
package/avrdude: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/axfsutils: bump version
Bernd Kuhls [Sun, 5 Jun 2016 17:51:54 +0000 (19:51 +0200)]
package/axfsutils: bump version

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
8 years agopackage/nodejs: Update npm to use NODEJS_CONF_OPTS
Martin Bark [Fri, 3 Jun 2016 19:15:46 +0000 (20:15 +0100)]
package/nodejs: Update npm to use NODEJS_CONF_OPTS

Signed-off-by: Martin Bark <martin@barkynet.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agopackage/nodejs: Update openssl to use NODEJS_CONF_OPTS
Martin Bark [Fri, 3 Jun 2016 19:15:45 +0000 (20:15 +0100)]
package/nodejs: Update openssl to use NODEJS_CONF_OPTS

Signed-off-by: Martin Bark <martin@barkynet.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agopackage/nodejs: Update icu to use NODEJS_CONF_OPTS
Martin Bark [Fri, 3 Jun 2016 19:15:44 +0000 (20:15 +0100)]
package/nodejs: Update icu to use NODEJS_CONF_OPTS

Signed-off-by: Martin Bark <martin@barkynet.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agopackage/nodejs: Add NODEJS_CONF_OPTS
Martin Bark [Fri, 3 Jun 2016 19:15:43 +0000 (20:15 +0100)]
package/nodejs: Add NODEJS_CONF_OPTS

Most packages in buildroot pass a FOO_CONF_OPTS variable into the
configure script.  Transition nodejs to follow this convention.

Signed-off-by: Martin Bark <martin@barkynet.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agowiringpi: new package
Peter Seiderer [Fri, 3 Jun 2016 18:10:33 +0000 (20:10 +0200)]
wiringpi: new package

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agoconfigs/arm_juno: adding CMA support to the kernel
Joao Pinto [Wed, 25 May 2016 10:56:58 +0000 (11:56 +0100)]
configs/arm_juno: adding CMA support to the kernel

This patch adds CMA to the juno's default kernel config that is in
board/arm/juno. This is critical if the user decides to config video
resolution to 1920x1080.

Signed-off-by: Joao Pinto <jpinto@synopsys.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agoconfigs/pc_x86_64_{bios, efi}_defconfig: new samples
Gustavo Zacarias [Fri, 29 Apr 2016 18:26:53 +0000 (15:26 -0300)]
configs/pc_x86_64_{bios, efi}_defconfig: new samples

Add two new sample defconfigs oriented towards real PC targets.

It adds two variants for BIOS and EFI boot strategy.

On the build side we enable eudev to autoload relevant kernel
modules/support when necessary.

It adds a bunch of drivers and extra filesystem support which is by no
means extensive/complete, mostly geared towards the hardware i've got at
hand to test with.
This is accomplished by adding on top of the Qemu x86_64 kernel sample
config.

Build connman since by using eudev network interfaces get renamed on
boot thus complicating any form of automatic and friendly bringup.
It also makes Wi-Fi configuration/support easier.

In principle these base defconfigs should work just fine for other
storage media != pendrive like sata or ssd disk, however driver support
isn't there quite yet, and pendrive is mostly supported by usb storage
plus the usual usb host controller drivers.

Tested on old Lenovo laptop (BIOS) and Asus Zenbook (EFI).

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agopackage/omxplayer: new package
Yann E. MORIN [Mon, 2 May 2016 10:09:58 +0000 (12:09 +0200)]
package/omxplayer: new package

OMXplayer uses openMAX on the RPi to play videos with hardware
acceleration.

Compared to using a gstreamer pipe, OMXplayer uses a complete
"tunnel-mode", in which the video is piped (after demuxing) into the
hardware, all the way down to the display, whereas gstreamer composes
the video using the eglgles sink, which uses mem-to-mem copies.

So, when playing a locally-stored 1080p video, OMXplayer averages 20%
(with peaks up to ~30%, depending on the complexity of the video) CPU,
while gstreamer bursts up to 40+% when playing 720p and totally chokes
on a 1080p video; all on an non-overclocked RPi-1.

Note that we have to depend on rpi-userland. rpi-userland is a GLES/EGL
provider, so it can't be selected (as all providers of a virtual package
can't).

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
[Thomas: add a depends on BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agoqt5connectivity: add bluez5_utils option for QtBluetooth submodule
Julien CORJON [Tue, 19 Apr 2016 11:43:54 +0000 (13:43 +0200)]
qt5connectivity: add bluez5_utils option for QtBluetooth submodule

Signed-off-by: Julien Corjon <corjon.j@ecagroup.com>
[Thomas: simplify ifneq conditions in the .mk file.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agoqt5connectivity: add QtNfc submodule
Julien CORJON [Tue, 19 Apr 2016 11:43:53 +0000 (13:43 +0200)]
qt5connectivity: add QtNfc submodule

Signed-off-by: Julien Corjon <corjon.j@ecagroup.com>
[Thomas:
 - remove useless 'depends on' on toolchain features, since we now
   depend on bluez_utils/neard
 - remove the QT5CONNECTIVITY_INSTALL_TARGET_QMLS variable, and directly
   use QT5CONNECTIVITY_INSTALL_TARGET_BLUETOOTH_QMLS and
   QT5CONNECTIVITY_INSTALL_TARGET_NFC_QMLS in
   QT5CONNECTIVITY_INSTALL_TARGET_CMDS.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 years agovpnc: add patches to fix build with the musl C library
Thomas Petazzoni [Wed, 10 Feb 2016 22:44:15 +0000 (23:44 +0100)]
vpnc: add patches to fix build with the musl C library

This commit adds three patches that are needed to fix build issues on
musl:

 - <error.h> not available on musl
 - structure redefinitions due to direct inclusion of kernel headers
 - missing <sys/ttydefaults.h> inclusion

Patches have been submitted upstream:
http://lists.unix-ag.uni-kl.de/pipermail/vpnc-devel/2016-June/004186.html

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>