From 3c6646b816ff7d7cb328dc4cf541fd89ac778a7a Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Tue, 1 Dec 2009 11:15:38 +0100 Subject: [PATCH] connman: - ugly hack for bug in connman: "export interface=eth0" - remove of standalone start of udhcpc - faster startup --- packages/network/connman/init.d/20_connman | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/packages/network/connman/init.d/20_connman b/packages/network/connman/init.d/20_connman index 5b823f5dd5..bd8b2dbfbc 100755 --- a/packages/network/connman/init.d/20_connman +++ b/packages/network/connman/init.d/20_connman @@ -4,12 +4,13 @@ # # runlevels: openelec, text, debug -. /etc/sysconfig +( + . /etc/sysconfig -progress "Starting Connection Manager" + progress "Starting Connection Manager" -connmand - -udhcpc + export interface=eth0 + connmand +)& exit 0