From 95b0ec47784dfed712d1680bd3979c378ba92826 Mon Sep 17 00:00:00 2001 From: Calin Crisan Date: Thu, 19 Dec 2019 00:52:30 +0200 Subject: [PATCH] S40network: bring up all auto interfaces --- board/common/overlay/etc/init.d/S40network | 3 +++ 1 file changed, 3 insertions(+) diff --git a/board/common/overlay/etc/init.d/S40network b/board/common/overlay/etc/init.d/S40network index f66d4e9c0e..0ecb82fa1d 100755 --- a/board/common/overlay/etc/init.d/S40network +++ b/board/common/overlay/etc/init.d/S40network @@ -206,6 +206,9 @@ start() { echo "nameserver ${STATIC_DNS}" > /etc/resolv.conf test $? == 0 && msg_done || msg_fail fi + + # Make sure all auto interfaces are brought up + ifup -i ${INTERFACES_CONF} -a >/dev/null else if [[ -n "${STATIC_GW}" ]]; then msg_begin "Setting static gateway to ${STATIC_GW}"