diff --git a/packages/network/connman/init.d/21_network b/packages/network/connman/init.d/21_network index 683135989d..b3daccd5be 100644 --- a/packages/network/connman/init.d/21_network +++ b/packages/network/connman/init.d/21_network @@ -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 )&