From: Felix Fietkau Date: Thu, 24 Aug 2006 13:22:53 +0000 (+0000) Subject: default value for *_device in scan_interfaces X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e23ea22b7a5323c119468cfffc40aa71cbf7e48d;p=librecmc%2Flibrecmc.git default value for *_device in scan_interfaces SVN-Revision: 4652 --- diff --git a/openwrt/package/base-files/default/lib/network/config.sh b/openwrt/package/base-files/default/lib/network/config.sh index 0cd6cb889f..d4864ae86e 100755 --- a/openwrt/package/base-files/default/lib/network/config.sh +++ b/openwrt/package/base-files/default/lib/network/config.sh @@ -30,6 +30,9 @@ scan_interfaces() { config_get proto "$CONFIG_SECTION" proto append interfaces "$CONFIG_SECTION" ( type "scan_$proto" ) >/dev/null 2>/dev/null && eval "scan_$proto '$CONFIG_SECTION'" + config_get ifname "$CONFIG_SECTION" ifname + config_get device "$CONFIG_SECTION" device + config_set "$CONFIG_SECTION" device "${device:-$ifname}" ;; esac }