Merge pull request #1146 from chewitt/patch-10

add logic to start connman in debug mode
This commit is contained in:
Stephan Raue 2012-08-25 05:48:42 -07:00
commit 03b615167b

View File

@ -270,7 +270,11 @@ set_interface() {
set_interface
set_hwclock
/usr/sbin/connmand -n > /dev/null 2>&1
if [ -f $HOME/.config/debug.connman ]; then
/usr/sbin/connmand -nd > /dev/null 2>&1
else
/usr/sbin/connmand -n > /dev/null 2>&1
fi
usleep 250000
done
)&