use /tmp/resolv.conf when using a static nameserver (#177)
[openwrt.git] / package / base-files / default / etc / hotplug.d / net / 10-net
index 0417b39..7c8cd67 100644 (file)
@@ -7,11 +7,19 @@ setup_eth()
        iwconfig "$INTERFACE" 2>&- | grep -v 'no wireless' >&- && {
                /sbin/wifi
        }
+       [ -d /proc/switch ] || {
+               insmod switch-core
+               insmod switch-robo || insmod switch-adm
+       }
        if="$(echo "$INTERFACE" | sed s,eth,et,)"
        ifconfig "$INTERFACE" up 2>&- >&-
        for vlan in $(seq 0 15); do
-               [ "$(nvram get vlan${vlan}hwname)" = "$if" ] && \
+               [ "$(nvram get vlan${vlan}hwname)" = "$if" ] && {
                        $DEBUG vconfig add "$INTERFACE" "$vlan"
+                       vports="$(nvram get vlan${vlan}ports)"
+                       [ \! -z "$vports" -a -d "/proc/switch/$INTERFACE" ] && \
+                               echo "$vports" > "/proc/switch/$INTERFACE/vlan/$vlan/ports"
+               }
        done
 }
 
@@ -61,10 +69,10 @@ do_ifup() {
                        $DEBUG ifconfig $if $ip ${netmask:+netmask $netmask} broadcast + up
                        ${gateway:+$DEBUG route add default gw $gateway}
        
-                       [ -f /etc/resolv.conf ] || {
-                               debug "# --- creating /etc/resolv.conf ---"
+                       [ -f /tmp/resolv.conf ] || {
+                               debug "# --- creating /tmp/resolv.conf ---"
                                for dns in $(nvram get ${2}_dns); do
-                                       echo "nameserver $dns" >> /etc/resolv.conf
+                                       echo "nameserver $dns" >> /tmp/resolv.conf
                                done
                        }
                        
This page took 0.020993 seconds and 4 git commands to generate.