update dnsmasq to 2.50 (#5784)
[openwrt.git] / package / nvram / files / nvram.init
index fcfa7f6..75d712b 100755 (executable)
@@ -57,10 +57,12 @@ fixup_linksys() {
                                nvram_set sdram_ncdl 0x0
                        }
        esac
-       [ "$COMMIT" = "1" ] && nvram commit
 }
 
 start() {
+       # Don't do any fixups on the WGT634U
+       [ "$(cat /proc/diag/model)" = "Netgear WGT634U" ] && return
+
        fixup_linksys
 
        # OFDM Power Offset is set incorrectly on many boards.
@@ -72,4 +74,5 @@ start() {
                nvram set il0macaddr=$(nvram get et0macaddr|
                awk '{OFS=FS=":";for(x=7,y=2;--x;){$x=sprintf("%02x",(y+="0x"$x)%256);y/=256}print}')
        }
+       [ "$COMMIT" = "1" ] && nvram commit
 }
This page took 0.025789 seconds and 4 git commands to generate.