- start connman later (after udev)
- disaqble busyboxs networkscript
This commit is contained in:
Stephan Raue 2009-11-29 05:59:51 +01:00
parent deca0ccd3a
commit 2d784800a0
3 changed files with 15 additions and 16 deletions

View File

@ -1,16 +0,0 @@
#!/bin/sh
#
# start Connection Manager
#
# runlevels: openelec, text, debug
. /etc/sysconfig
if test -f /usr/sbin/connmand; then
progress "Starting Connection Manager"
connmand -d
udhcpc > /dev/null 2>&1
fi
exit 0

View File

@ -0,0 +1,15 @@
#!/bin/sh
#
# start Connection Manager
#
# runlevels: openelec, text, debug
. /etc/sysconfig
progress "Starting Connection Manager"
connmand
udhcpc
exit 0