1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-12-24 22:06:31 +02:00

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
This commit is contained in:
nbd 2009-04-27 15:27:32 +00:00
parent 0cc51371c0
commit f9f1a96774

View File

@ -57,7 +57,6 @@ fixup_linksys() {
nvram_set sdram_ncdl 0x0 nvram_set sdram_ncdl 0x0
} }
esac esac
[ "$COMMIT" = "1" ] && nvram commit
} }
start() { start() {
@ -72,4 +71,5 @@ start() {
nvram set il0macaddr=$(nvram get et0macaddr| 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}') awk '{OFS=FS=":";for(x=7,y=2;--x;){$x=sprintf("%02x",(y+="0x"$x)%256);y/=256}print}')
} }
[ "$COMMIT" = "1" ] && nvram commit
} }