From patchwork Thu Aug 30 23:34:22 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: connman: Ignore eth0 cleanup when booting over the network Date: Thu, 30 Aug 2012 23:34:22 -0000 From: Saul Wold X-Patchwork-Id: 35571 Message-Id: <1346369662-17265-1-git-send-email-sgw@linux.intel.com> To: openembedded-core@lists.openembedded.org 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. The -I option will cause the device to be ignored. [YOCTO #3008] Signed-off-by: Saul Wold --- meta/recipes-connectivity/connman/connman/connman | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-connectivity/connman/connman/connman b/meta/recipes-connectivity/connman/connman/connman index f01bf37..2c8354a 100644 --- a/meta/recipes-connectivity/connman/connman/connman +++ b/meta/recipes-connectivity/connman/connman/connman @@ -29,7 +29,7 @@ done do_start() { EXTRA_PARAM="" if test $nfsroot -eq 1 ; then - EXTRA_PARAM="-P ethernet" + EXTRA_PARAM="-P ethernet -I eth0" fi $DAEMON $EXTRA_PARAM }