The delay occurs, when there is no cable connected.
At the moment, I have the ip address for the RPi hardcoded at the end of /boot/cmdline.txt
Code: Select all
dwc_otg.lpm_enable=0 console=tty1 root=/dev/mmcblk0p6 rootfstype=ext4 elevator=deadline rootwait ip=192.168.2.2
Code: Select all
auto wlan0
iface lo inet loopback
iface eth0 inet static
address 192.168.2.2
netmask 255.255.255.0
gateway 192.168.2.1
allow-hotplug wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcpI can later correct the situation by manually invoking 'sudo ifup lo' and '/etc/init.d/postgresql start', but i would prefer not to - maybe other things failed as well.
What can I do to correct the situation?