From d27692e9421206177fd572a79298f5988607ce21 Mon Sep 17 00:00:00 2001 From: Saul Wold Date: Thu, 30 Aug 2012 16:34:22 -0700 Subject: connman: Don't start connmand when booting using nfsroot There was a change to connman, such that it cleans up the route table for devices at startup, this was causing the network to get lost and NFS to loose it connection. [YOCTO #3008] Signed-off-by: Saul Wold --- meta/recipes-connectivity/connman/connman/connman | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'meta/recipes-connectivity/connman/connman') diff --git a/meta/recipes-connectivity/connman/connman/connman b/meta/recipes-connectivity/connman/connman/connman index f01bf371c2..4a0017fc18 100644 --- a/meta/recipes-connectivity/connman/connman/connman +++ b/meta/recipes-connectivity/connman/connman/connman @@ -28,10 +28,9 @@ done do_start() { EXTRA_PARAM="" - if test $nfsroot -eq 1 ; then - EXTRA_PARAM="-P ethernet" + if test $nfsroot -eq 0 ; then + $DAEMON $EXTRA_PARAM fi - $DAEMON $EXTRA_PARAM } do_stop() { -- cgit 1.2.3-korg