swconfig: fix vlan/port configs being applied to all switches
[openwrt.git] / package / base-files / files / etc / init.d / network
index c2095a4..fc51221 100755 (executable)
@@ -9,11 +9,14 @@ boot() {
 
        include /lib/network
        setup_switch
 
        include /lib/network
        setup_switch
-       /sbin/wifi detect >> /etc/config/wireless
+
+       /sbin/wifi detect > /tmp/wireless.tmp
+       [ -s /tmp/wireless.tmp ] && {
+               cat /tmp/wireless.tmp >> /etc/config/wireless
+       }
+       rm -f /tmp/wireless.tmp
        grep -qs config /etc/config/wireless && {
                /sbin/wifi up
        grep -qs config /etc/config/wireless && {
                /sbin/wifi up
-       } || {
-               rm -f /etc/config/wireless
        }
 
        scan_interfaces
        }
 
        scan_interfaces
This page took 0.028845 seconds and 4 git commands to generate.