From 930fa5defd36021d8d17b507d4dbe6957caa786b Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Mon, 23 Jan 2012 22:06:05 +0100 Subject: [PATCH] connman: start loopback device before connman starts Signed-off-by: Stephan Raue --- packages/network/connman/init.d/21_network | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/network/connman/init.d/21_network b/packages/network/connman/init.d/21_network index a678a1297f..aa749b645a 100644 --- a/packages/network/connman/init.d/21_network +++ b/packages/network/connman/init.d/21_network @@ -40,6 +40,9 @@ fi progress "creating /etc/hosts" echo -e "127.0.0.1\tlocalhost $NET_HOSTNAME" > /etc/hosts +# starting loopback device + ifconfig lo up + # add user defined hosts.conf entry's [ -f $HOME/.config/hosts.conf ] && cat $HOME/.config/hosts.conf >> /etc/hosts