From: Felix Fietkau 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: reboot~23839 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=f8fb679405a4476db37cab7a124de10765e0a834;p=openwrt%2Fopenwrt.git nvram fixup: move the nvram commit hook to commit for all variables, since changes no longer take effect after only a set operation SVN-Revision: 15441 --- 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 }