aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/connman/connman
diff options
context:
space:
mode:
authorJukka Rissanen <jukka.rissanen@linux.intel.com>2013-03-22 10:11:41 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-22 16:22:05 +0000
commit858ad53aee9ef5848c09d76c0e6bf464bc31d30e (patch)
tree73feb06066e00a72046e5d3af7ee3d5f54a905b4 /meta/recipes-connectivity/connman/connman
parentbc830ab3f6e9704c830e934c6f39c85ef11f867d (diff)
downloadopenembedded-core-858ad53aee9ef5848c09d76c0e6bf464bc31d30e.tar.gz
connman-conf: Move the setup script into /usr/lib/connman
The /etc/connman is not suitable for the setup script. There are other connman related scripts in /usr/lib/connman so moving the wired setup script there. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/connman/connman')
-rw-r--r--meta/recipes-connectivity/connman/connman/connman4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-connectivity/connman/connman/connman b/meta/recipes-connectivity/connman/connman/connman
index ffd7fac547..a111f609dc 100644
--- a/meta/recipes-connectivity/connman/connman/connman
+++ b/meta/recipes-connectivity/connman/connman/connman
@@ -32,8 +32,8 @@ 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
+ if [ -f /usr/lib/connman/wired-setup ] ; then
+ . /usr/lib/connman/wired-setup
fi
$DAEMON $EXTRA_PARAM
}