summaryrefslogtreecommitdiffstats
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:54:37 +0000
commite93b6376a0cff5321dd7fc13a88c8b06ae8b83c7 (patch)
tree996ae55651ef0f7096672cd292d71d5ff0a5483f /meta/recipes-connectivity/connman/connman
parentfdd76ead8573a6c0ca39602b8e894291edc171aa (diff)
downloadpoky-e93b6376a0cff5321dd7fc13a88c8b06ae8b83c7.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. (From OE-Core rev: 858ad53aee9ef5848c09d76c0e6bf464bc31d30e) 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() {
32 ethn=`ifconfig | grep eth | sed -e "s/\(eth[0-9]\)\(.*\)/\1/"` 32 ethn=`ifconfig | grep eth | sed -e "s/\(eth[0-9]\)\(.*\)/\1/"`
33 EXTRA_PARAM="-I $ethn" 33 EXTRA_PARAM="-I $ethn"
34 fi 34 fi
35 if [ -f /etc/connman/wired-setup ] ; then 35 if [ -f /usr/lib/connman/wired-setup ] ; then
36 . /etc/connman/wired-setup 36 . /usr/lib/connman/wired-setup
37 fi 37 fi
38 $DAEMON $EXTRA_PARAM 38 $DAEMON $EXTRA_PARAM
39} 39}