Change Details
| package/base-files/files/etc/hotplug.d/net/10-net |
| 11 | 11 | |
| 12 | 12 | # PPP devices are configured by pppd, no need to run setup_interface here |
| 13 | 13 | case "$INTERFACE" in |
| 14 | | ppp*) return 0;; |
| 14 | ppp*|3g-*) return 0;; |
| 15 | 15 | ath*) return 0;; |
| 16 | 16 | wlan*) return 0;; |
| 17 | 17 | esac |
| package/base-files/files/etc/init.d/network |
| 23 | 23 | local proto |
| 24 | 24 | config_get proto "$ifc" proto |
| 25 | 25 | |
| 26 | | type "coldplug_interface_$proto" >/dev/null && \ |
| 26 | local auto |
| 27 | config_get_bool auto "$ifc" auto 1 |
| 28 | |
| 29 | type "coldplug_interface_$proto" >/dev/null && [ "$auto" = 1 ] && \ |
| 27 | 30 | coldplug_interface_$proto "$ifc" |
| 28 | 31 | done |
| 29 | 32 | } |
Download the corresponding diff file