From 6159ad1063f4be518d8f0a1c024f12fc16d13592 Mon Sep 17 00:00:00 2001 From: Cristian Iorga Date: Mon, 4 Mar 2013 19:17:50 +0200 Subject: connman: Wired inteface provisioned via qemu - connman-conf package re-implemented - connman 1.12 introduces provisioning for wired interfaces also; - wired interface settings are read from kernel cmdline if present; - after that are passed to connman as a config file - for BA, this is not needed, as BA will have a network infrastructure to work with. Fixes [YOCTO #3227]; Fixes [YOCTO #3804]; Fixes [YOCTO #3843]. (From OE-Core rev: 5711e0cf88fac0de8a5317b16a287b335c827c8f) Signed-off-by: Cristian Iorga Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- meta/recipes-connectivity/connman/connman/connman | 3 +++ 1 file changed, 3 insertions(+) (limited to 'meta/recipes-connectivity/connman/connman/connman') diff --git a/meta/recipes-connectivity/connman/connman/connman b/meta/recipes-connectivity/connman/connman/connman index aed4a792db..ffd7fac547 100644 --- a/meta/recipes-connectivity/connman/connman/connman +++ b/meta/recipes-connectivity/connman/connman/connman @@ -32,6 +32,9 @@ do_start() { ethn=`ifconfig | grep eth | sed -e "s/\(eth[0-9]\)\(.*\)/\1/"` EXTRA_PARAM="-I $ethn" fi + if [ -f /etc/connman/wired-setup ] ; then + . /etc/connman/wired-setup + fi $DAEMON $EXTRA_PARAM } -- cgit v1.2.3-54-g00ecf