Re: [OE-core] [PATCH V6] connman: ignore the networking device which nfs for rootfs is working on

2013-10-22 Thread Rongqing Li
On 10/22/2013 10:29 PM, Iorga, Cristian wrote: Hello, On the first look, this looks like a lot of changes will go in... Maybe we should first integrate connman 1.19 and see how we can simplify network management? Regards, Cristian I did not see how they can simplify it? I see you are upda

Re: [OE-core] [oe][PATCHv2] libjson: update to 0.11 and rename to json-c

2013-10-22 Thread Jack Mitchell
On 10/22/13 21:44, Saul Wold wrote: On 10/21/2013 01:56 AM, Jack Mitchell wrote: From: Jack Mitchell libjson is now known as json-c, it keeps support for the old libjson namespace so it shouldn't break anything. Built without parallel make as it would fail when it tries to link to link back to

Re: [OE-core] [oe][PATCHv2] libjson: update to 0.11 and rename to json-c

2013-10-22 Thread Saul Wold
On 10/21/2013 01:56 AM, Jack Mitchell wrote: From: Jack Mitchell libjson is now known as json-c, it keeps support for the old libjson namespace so it shouldn't break anything. Built without parallel make as it would fail when it tries to link to link back to itself, which is odd, but the offici

Re: [OE-core] [PATCH][for-dora] udev: update local rules for new touchscreen device

2013-10-22 Thread Maupin, Chase
>-Original Message- >From: Maupin, Chase >Sent: Monday, October 21, 2013 4:44 PM >To: openembedded-core@lists.openembedded.org >Cc: Maupin, Chase >Subject: [PATCH][for-dora] udev: update local rules for new >touchscreen device Please ignore this in favor of the patch from Tom Rini. > >* W

[OE-core] [PATCH] udev: Update touchscreen rule for ID_INPUT_TOUCHSCREEN

2013-10-22 Thread Tom Rini
Since udev 174 udev has been running input_id as a built-in command and setting this value in the environment for touchscreens. Use this logic to detect when to make a touchscreen0 symlink. Signed-off-by: Tom Rini --- meta/recipes-core/udev/udev/local.rules |2 +- 1 file changed, 1 insertio

Re: [OE-core] [PATCH v4] connman: ignore the networking device which nfs for rootfs is working on

2013-10-22 Thread Enrico Scholz
"Iorga, Cristian" writes: > I might be wrong, but I fail to see how this relates to our situation. > Care to elaborate? The provisining works only when static ips are configured. Using connman in dhcp setup will do all the bad things which were tried to be fixed by the provisioning (bringing do

Re: [OE-core] [PATCH v4] connman: ignore the networking device which nfs for rootfs is working on

2013-10-22 Thread Iorga, Cristian
I might be wrong, but I fail to see how this relates to our situation. Care to elaborate? Thanks, Cristian -Original Message- From: Enrico Scholz [mailto:enrico.sch...@sigma-chemnitz.de] Sent: Tuesday, October 22, 2013 5:54 PM To: Iorga, Cristian Cc: openembedded-core@lists.openembedded.

Re: [OE-core] [PATCH v4] connman: ignore the networking device which nfs for rootfs is working on

2013-10-22 Thread Enrico Scholz
"Iorga, Cristian" writes: > Sorry to ask, what is this case: 'ip=dhcp'? That's the case when kernel gets the ip by dhcp (--> CONFIG_IP_PNP); it is configured by a 'ip=dhcp' kernel cmdline option. Enrico ___ Openembedded-core mailing list Openembedded

Re: [OE-core] [PATCH v4] connman: ignore the networking device which nfs for rootfs is working on

2013-10-22 Thread Iorga, Cristian
Sorry to ask, what is this case: 'ip=dhcp'? Care to clarify? -Original Message- From: openembedded-core-boun...@lists.openembedded.org [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of Enrico Scholz Sent: Friday, October 18, 2013 3:48 PM To: openembedded-core@lists.o

[OE-core] [PATCH 08/10] wic: Remove binary dependencies

2013-10-22 Thread Tom Zanussi
Current functionality doesn't make use of kpartx, mount, or unmount, and we use native mkswap, so remove the binary checks for those. Signed-off-by: Tom Zanussi --- scripts/lib/mic/utils/partitionedfs.py | 4 1 file changed, 4 deletions(-) diff --git a/scripts/lib/mic/utils/partitionedfs.p

[OE-core] [PATCH 06/10] wic: Remove rpm and grabber dependencies from BaseImageCreator

2013-10-22 Thread Tom Zanussi
BaseImageCreator is a base class for DirectImageCreator and others, and imports rpm and grabber (which imports rpm). The various plugins e.g. DirectPlugin import the creators and therefore these dependencies, which manifest at run-time as e.g.: Warning: Failed to load plugin imager/direct_plugi

Re: [OE-core] [PATCH V6] connman: ignore the networking device which nfs for rootfs is working on

2013-10-22 Thread Iorga, Cristian
Hello, On the first look, this looks like a lot of changes will go in... Maybe we should first integrate connman 1.19 and see how we can simplify network management? Regards, Cristian -Original Message- From: openembedded-core-boun...@lists.openembedded.org [mailto:openembedded-core-bou

[OE-core] [PATCH 00/10] wic dependency and rootfs updates

2013-10-22 Thread Tom Zanussi
This patchset mainly removes unnecessary run-time python module and executable dependencies for mic functionality we currently don't use. I didn't originally hit these myself because I did development on Fedora and Ubuntu users hit these - I've tested the resulting patchset on both Fedora and Ubunt

[OE-core] [PATCH 09/10] wic: Make find_binary_path() more user-friendly

2013-10-22 Thread Tom Zanussi
find_binary_path() is useful, but if the binary isn't found, it prints a stacktrace and a less-than-useful message. Users complain when they get stacktraces for things they can act on, so remove the stacktrace and tell the user what the problem is. Signed-off-by: Tom Zanussi --- scripts/lib/mic

[OE-core] [PATCH 05/10] wic: remove rpm warning code from BackendPlugin

2013-10-22 Thread Tom Zanussi
We don't currently use rpm functionality, so we don't need to silence rpm warnings. Signed-off-by: Tom Zanussi --- scripts/lib/mic/pluginbase.py | 5 - 1 file changed, 5 deletions(-) diff --git a/scripts/lib/mic/pluginbase.py b/scripts/lib/mic/pluginbase.py index 6ac195b..2f9d720 100644 ---

[OE-core] [PATCH 03/10] wic: Remove dependency on rpmmisc

2013-10-22 Thread Tom Zanussi
rpmmisc imports rpm and contains misc rpm utilities related to packaging and determining arches based on the packaging. We should never run across this in the initial version of wic, so remove the dependency. Signed-off-by: Tom Zanussi --- scripts/lib/mic/creator.py | 2 +- scripts/lib/mi

[OE-core] [PATCH 04/10] wic: Remove dependency on myurlgrab module

2013-10-22 Thread Tom Zanussi
mylrlgrab is in grabber, which imports rpm. For current functionality, we don't need to grab urls or import rpm, so remove the dependency. Signed-off-by: Tom Zanussi --- scripts/lib/mic/utils/misc.py | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/lib/mic/utils/misc.py b/scripts/lib/

[OE-core] [PATCH 07/10] wic: Remove rpmmisc call from livecd

2013-10-22 Thread Tom Zanussi
We don't currently use LiveCDImageCreator, but it makes calls when initialized via the plugin interface to rpmmisc module functions, which we don't want the dependency on. To make it (and LiveUSBImageCreator) happy, we give it the dummy "i386" value for now. Signed-off-by: Tom Zanussi --- scrip

[OE-core] [PATCH 10/10] wic: Update and generalize pseudo setup for rootfs generation

2013-10-22 Thread Tom Zanussi
Remove unnecessary pseudo exports i.e. PSEUDO_DISABLED and move the setup to the top-level prepare_rootfs(). Signed-off-by: Tom Zanussi --- .../lib/mic/kickstart/custom_commands/partition.py | 28 -- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/scripts/lib/

[OE-core] [PATCH 02/10] wic: eliminate module checks

2013-10-22 Thread Tom Zanussi
We're removing all external dependencies including rpm and urlgrabber, so we don't need this check. Signed-off-by: Tom Zanussi --- scripts/wic | 10 -- 1 file changed, 10 deletions(-) diff --git a/scripts/wic b/scripts/wic index 08473d3..b6fd16c 100755 --- a/scripts/wic +++ b/scripts/wi

[OE-core] [PATCH 01/10] wic: Remove dependency on rt_util module

2013-10-22 Thread Tom Zanussi
rt_util contains bootstrap_mic(), which imports rpm and other things we don't need because we don't do bootstrap i.e. runtime (set in wic.conf) is always set to 'native', which means use what's on the local host. bootstrap mode is for downloading and installing rpms that wic needs, which we may wa

[OE-core] [PATCH 1/1] connman: upgrade to 1.19

2013-10-22 Thread Cristian Iorga
Improvements: - On startup keep interfaces already configured with static IPv4 addresses if there is a service configuration file containing the very same static values. If not, take the interface down and flush the old configuration as before (Jukka Rissanen). - Handle FallbackNameservers properly

[OE-core] [PATCH 0/1] connman: upgrade to 1.19

2013-10-22 Thread Cristian Iorga
The following changes since commit 505114c13d29799a25379f7ce720d632616d8776: wic: add pseudo to the populate-extfs step (2013-10-18 16:03:39 +0100) are available in the git repository at: git://git.yoctoproject.org/poky-contrib ciorga/PUs http://git.yoctoproject.org/cgit.cgi/poky-contrib/l

[OE-core] do directories get processed recursively with FILES_${PN}?

2013-10-22 Thread Robert P. J. Day
thought i understood this, now not so sure. in oe-core, udev recipe, there's this in udev.inc: FILES_${PN}-dbg += "${base_libdir}/udev/.debug/" FILES_${PN}-dbg += "${base_libdir}/udev/.debug/*" is it really necessary to have both of those lines? if you have the second, isn't the first one redu

[OE-core] OE Changelog since 2013-10-13 until 2013-10-20

2013-10-22 Thread cliff . brake
Changelog since 2013-10-13 until 2013-10-20. Projects included in this report: bitbake: git://git.openembedded.org/bitbake openembedded-core: git://git.openembedded.org/openembedded-core meta-openembedded: git://git.openembedded.org/meta-openembedded meta-angstrom: git://github.com/Angstrom-distr

[OE-core] [PATCH] initramfs-framework: fix test that filter backup module files

2013-10-22 Thread Michaël Burtin
Test that filter backup module files (files starting with ~) was accidentally reversed in e6039e6e3b98d6ab91252a5012d76279b1fac6e8, this patch restore initial behavior. Signed-off-by: Michaël Burtin --- meta/recipes-core/initrdscripts/initramfs-framework/init | 2 +- 1 file changed, 1 insertion(

[OE-core] [PATCH] dbus: no messages of status command print

2013-10-22 Thread Chong.Lu
From: Lu Chong /etc/init.d/dbus-1 use "set -e" to let the script exit when any command failes. This will cause "/etc/init.d/dbus-1 status" command can't display messages when dbus is stopped. Signed-off-by: Lu Chong --- meta/recipes-core/dbus/dbus-1.6.10/dbus-1.init |2 +- 1 file changed,

Re: [OE-core] [PATCH 1/3] ltp: cleanup recipe

2013-10-22 Thread Khem Raj
On Tuesday, October 22, 2013, Riku Voipio wrote: > On 22 October 2013 01:42, Khem Raj wrote: >> On Monday, October 21, 2013, Riku Voipio wrote: >>> Cleanups for ltp: >>> >>> 1. Instead of using giturl like in Anders's patch use the sourceforge >>> mirror URL. >> >> whats wrong with git url ? > >

Re: [OE-core] [PATCH 1/3] ltp: cleanup recipe

2013-10-22 Thread Riku Voipio
On 22 October 2013 01:42, Khem Raj wrote: > On Monday, October 21, 2013, Riku Voipio wrote: >> Cleanups for ltp: >> >> 1. Instead of using giturl like in Anders's patch use the sourceforge >> mirror URL. > > whats wrong with git url ? The previous LTP version in OE used to have tarball url, so I