From: nbd Date: Mon, 27 Apr 2009 15:27:32 +0000 (+0000) Subject: nvram fixup: move the nvram commit hook to commit for all variables, since changes... X-Git-Tag: fast2504n-3.10.28-merged~16012 X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=f9f1a967746c940b98080ee24439e795faa826c6;p=openwrt.git nvram fixup: move the nvram commit hook to commit for all variables, since changes no longer take effect after only a set operation git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15441 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/unvram/files/nvram.init b/package/unvram/files/nvram.init index fcfa7f65e9..001b294959 100755 --- a/package/unvram/files/nvram.init +++ b/package/unvram/files/nvram.init @@ -57,7 +57,6 @@ fixup_linksys() { nvram_set sdram_ncdl 0x0 } esac - [ "$COMMIT" = "1" ] && nvram commit } start() { @@ -72,4 +71,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 }