Re: [OE-core] [PATCH] gstreamer1.0-plugins-bad: disable uvch264 for systemd

2015-11-14 Thread Martin Jansa
NAK, see http://lists.openembedded.org/pipermail/openembedded-core/2015-November/112685.html On Sat, Nov 14, 2015 at 7:21 AM, wrote: > From: Wenzong Fan > > Disable uvch264 to remove the dependency to libgudev which has been > removed from systemd project. > > Signed-off-by: Wenzong Fan > ---

Re: [OE-core] State of bitbake world, wrong PACKAGE_ARCHs 2015-11-13

2015-11-14 Thread Martin Jansa
On Fri, Nov 13, 2015 at 05:48:56PM +0100, Martin Jansa wrote: > On Fri, Aug 01, 2014 at 03:46:13PM +0200, Martin Jansa wrote: > > On Thu, Jul 24, 2014 at 01:19:01PM +0200, Martin Jansa wrote: > > > This is new report generated with oe-core/scripts/sstate-diff-machines.sh > > > > > > To reproduce

Re: [OE-core] [PATCH] gstreamer1.0-plugins-bad: disable uvch264 for systemd

2015-11-14 Thread wenzong fan
On 11/14/2015 04:23 PM, Martin Jansa wrote: NAK, see http://lists.openembedded.org/pipermail/openembedded-core/2015-November/112685.html Hi Martin Thanks for your reply. If we build oe-core + systemd only (without meta-oe), it will fail with: ERROR: Nothing PROVIDES 'libgudev' (but /path/to

Re: [OE-core] [PATCH] gstreamer1.0-plugins-bad: disable uvch264 for systemd

2015-11-14 Thread Martin Jansa
On Sat, Nov 14, 2015 at 05:19:03PM +0800, wenzong fan wrote: > On 11/14/2015 04:23 PM, Martin Jansa wrote: > > NAK, see > > http://lists.openembedded.org/pipermail/openembedded-core/2015-November/112685.html > > Hi Martin > > Thanks for your reply. > > If we build oe-core + systemd only (without

Re: [OE-core] State of bitbake world, test-dependencies 2015-11-12

2015-11-14 Thread Martin Jansa
On Thu, Nov 12, 2015 at 12:43:11PM +0100, Martin Jansa wrote: > Another incremental test, only 26 recipes were tested, but it found enough > issues in just released Jethro. > > Complete log: > http://logs.nslu2-linux.org/buildlogs/oe/world/log.dependencies.2015_112937.log/ > > ERROR: 42 issue

Re: [OE-core] [PATCH] gstreamer1.0-plugins-bad: disable uvch264 for systemd

2015-11-14 Thread wenzong fan
On 11/14/2015 05:49 PM, Martin Jansa wrote: On Sat, Nov 14, 2015 at 05:19:03PM +0800, wenzong fan wrote: On 11/14/2015 04:23 PM, Martin Jansa wrote: NAK, see http://lists.openembedded.org/pipermail/openembedded-core/2015-November/112685.html Hi Martin Thanks for your reply. If we build oe-c

Re: [OE-core] [PATCH 0/1] python3: Upgrade from 3.4.3 to 3.5

2015-11-14 Thread Burton, Ross
On 13 November 2015 at 20:44, Burton, Ross wrote: > This failed on the autobuilder in the world-lsb target: > > | ./Programs/_freeze_importlib \ > | > /home/pokybuild/yocto-autobuilder/yocto-worker/nightly-world-lsb/build/build/tmp/work/x86-pokymllib32-linux/lib32-python3/3.5.0-r1.0/ > Python-3.5

[OE-core] [meta-oe][PATCH 1/3] connman: fix qemu config

2015-11-14 Thread Adrian Freihofer
If a network interface is configured by kernel boot parameters and the image is booted in qemu, connman takes the IP settings from /proc/cmdline for this NIC. The regex for parsing /proc/cmdline is invalid. Signed-off-by: Adrian Freihofer --- meta/recipes-connectivity/connman/connman-conf/qemual

[OE-core] [meta-oe][PATCH 0/3] runqemu improve networking

2015-11-14 Thread Adrian Freihofer
This patch series adds two features to runqemu: - Support the emulation of more than one NIC - Add a hostonly networking mode. This networking mode enables the user to implement different virtual networking environments such as a bridged network as discussed in #7887. Note: Without the first p

[OE-core] [meta-oe][PATCH 3/3] runqemu: support hostonly net mode

2015-11-14 Thread Adrian Freihofer
This patch adds a "hostonly" command line parameter to runqemu. If this parameter is passed to runqemu, runquemu does not pass the default gateway to the kernel parameters of the virtual device and it does not configure NAT routing on the host. Whit NAT routing on the host becoming an optional fea

[OE-core] [meta-oe][PATCH 2/3] runqemu: add support for multiple NICs

2015-11-14 Thread Adrian Freihofer
Fixes [YOCTO #6356] Current runqemu script does not support qemu configurations with more than one emulated NIC. If parameters for one or more additional NICs are appended qemu ends up with an invalid configuration. Example to reproduce: runqemu ... qemuparams="-net nic,model=virtio... -net tap,

[OE-core] [meta-oe][PATCH] python-pickle: Add rdepend python-db

2015-11-14 Thread Adrian Freihofer
Signed-off-by: Adrian Freihofer --- meta/recipes-devtools/python/python-2.7-manifest.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/python/python-2.7-manifest.inc b/meta/recipes-devtools/python/python-2.7-manifest.inc index dd8d825..818b204 100644 -

Re: [OE-core] [meta-oe][PATCH 0/3] runqemu improve networking

2015-11-14 Thread Aws Ismail
Thanks Adrian for the patchset. I will test it and get back to you. Aws\ On Sat, Nov 14, 2015 at 4:35 PM, Adrian Freihofer wrote: > This patch series adds two features to runqemu: > - Support the emulation of more than one NIC > - Add a hostonly networking mode. This networking mode enables >