[OE-core] [PATCH][krogoth] binutils: advance SRCREV to obtain versioned symbols

2016-09-04 Thread Reinette Chatre
Libraries needing versioned symbols, for example mysql, are not supported by current version of binutils in krogoth. When mysql library from MariaDB is compiled with the current version of binutils we encounter errors at runtime as seen below where php linked to mysql tries to run: php:

[OE-core] [PATCH] rpm: ensure rpm2cpio call rpm relocation code

2016-09-04 Thread Zhixiong Chi
We need to call rpmcliInit to ensure the rpm relocation code is called. when we allow rpm2cpio to be relocatable, The adjusted path used to find the macro files was being built into the binary and this path was valid for the machine it was built on and some of our other build machines, but invalid

Re: [OE-core] [PATCH 0/4] groff: add file-homedir-perl to RDEPENDS

2016-09-04 Thread Yu, Mingli
On 2016年09月02日 19:41, Richard Purdie wrote: On Fri, 2016-09-02 at 09:54 +0800, Yu, Mingli wrote: ping I'm with Ross here. We don't often have need for sheet music conversion in groff in embedded or IoT devices. I'd prefer to have configuration to disable this. Okay, thanks Richard for

Re: [OE-core] [PATCH 1/2] u-boot: Factor out common bits

2016-09-04 Thread Marek Vasut
On 09/05/2016 12:23 AM, Marek Vasut wrote: > On 09/05/2016 12:11 AM, Richard Purdie wrote: >> On Sun, 2016-09-04 at 23:49 +0200, Marek Vasut wrote: >>> On 09/04/2016 11:28 PM, Richard Purdie wrote: On Sun, 2016-09-04 at 18:21 +0200, Marek Vasut wrote: > > The u-boot recipes share

Re: [OE-core] [PATCH 1/2] u-boot: Factor out common bits

2016-09-04 Thread Marek Vasut
On 09/05/2016 12:11 AM, Richard Purdie wrote: > On Sun, 2016-09-04 at 23:49 +0200, Marek Vasut wrote: >> On 09/04/2016 11:28 PM, Richard Purdie wrote: >>> >>> On Sun, 2016-09-04 at 18:21 +0200, Marek Vasut wrote: The u-boot recipes share a couple of common variables, which makes

Re: [OE-core] [PATCH 1/2] u-boot: Factor out common bits

2016-09-04 Thread Richard Purdie
On Sun, 2016-09-04 at 23:49 +0200, Marek Vasut wrote: > On 09/04/2016 11:28 PM, Richard Purdie wrote: > > > > On Sun, 2016-09-04 at 18:21 +0200, Marek Vasut wrote: > > > > > > The u-boot recipes share a couple of common variables, which > > > makes > > > updating of the recipes error prone and a

Re: [OE-core] [PATCH 1/2] u-boot: Factor out common bits

2016-09-04 Thread Marek Vasut
On 09/04/2016 11:28 PM, Richard Purdie wrote: > On Sun, 2016-09-04 at 18:21 +0200, Marek Vasut wrote: >> The u-boot recipes share a couple of common variables, which makes >> updating of the recipes error prone and a toil. Factor those common >> bits into u-boot-common.inc so that they are in one

Re: [OE-core] [PATCH 1/2] u-boot: Factor out common bits

2016-09-04 Thread Richard Purdie
On Sun, 2016-09-04 at 18:21 +0200, Marek Vasut wrote: > The u-boot recipes share a couple of common variables, which makes > updating of the recipes error prone and a toil. Factor those common > bits into u-boot-common.inc so that they are in one place. > > No functional change. > >

[OE-core] [PATCH] busybox: avoid circular dependency when using initramfs

2016-09-04 Thread Stefan Agner
The kernel does not automatically mount devtmpfs when using initramfs based booting (even when using CONFIG_DEVTMPFS_MOUNT). If the rootfs is built with USE_DEVFS=1 (which is the default), the system ends up with a completely empty /dev to begin with. Busybox uses the first entry in inittab

[OE-core] [PATCH] libcap: Replace EXTRA_OECONF with PACKAGECONFIG_CONFARGS

2016-09-04 Thread Marek Vasut
When building libcap and DISTRO_FEATURES does not contain pam, the build will fail on missing pam headers. This is because the bits from EXTRA_OECONF moved to PACKAGECONFIG_CONFARGS and thus the necessary options are not propagated to oe_runmake anymore. Replace EXTRA_OECONF with

[OE-core] [PATCH] u-boot: Set u-boot binary permissions to 0644

2016-09-04 Thread Marek Vasut
The U-Boot binary is not an executable, it is a binary file, set it's permissions to 0644 instead of 0755. Signed-off-by: Marek Vasut --- meta/recipes-bsp/u-boot/u-boot.inc | 28 ++-- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git

[OE-core] [PATCH 2/2] u-boot: Update to 2016.07 release

2016-09-04 Thread Marek Vasut
Upgrade U-Boot to the latest version. Signed-off-by: Marek Vasut --- meta/recipes-bsp/u-boot/u-boot-common.inc | 6 +++--- .../{u-boot-fw-utils_2016.03.bb => u-boot-fw-utils_2016.07.bb} | 0 .../u-boot/{u-boot-mkimage_2016.03.bb =>

[OE-core] [PATCH 1/2] u-boot: Factor out common bits

2016-09-04 Thread Marek Vasut
The u-boot recipes share a couple of common variables, which makes updating of the recipes error prone and a toil. Factor those common bits into u-boot-common.inc so that they are in one place. No functional change. Signed-off-by: Marek Vasut ---