diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-05-20 07:11:26 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-05-20 07:11:26 +0000 |
commit | 30e31235d4ac5db356f8005c99b6c962f9edf26e (patch) | |
tree | f234002435cb3280c8195cc83454f1ed13be4b08 | |
parent | 7bccce5b4278f98141c83ec0ed14c9c36b8617e2 (diff) | |
download | master-187ad058-30e31235d4ac5db356f8005c99b6c962f9edf26e.tar.gz master-187ad058-30e31235d4ac5db356f8005c99b6c962f9edf26e.tar.bz2 master-187ad058-30e31235d4ac5db356f8005c99b6c962f9edf26e.zip |
[package] nvram: fix nvram set invokation after r21497
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21517 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-x | package/nvram/files/nvram.init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/nvram/files/nvram.init b/package/nvram/files/nvram.init index e6ef8619c0..0267a80c5a 100755 --- a/package/nvram/files/nvram.init +++ b/package/nvram/files/nvram.init @@ -57,7 +57,7 @@ fixup_linksys() { [ "$SDRAM_INIT" -lt "9" -o "$SDRAM_INIT" -gt "17" ] && { # set this to default: 0x09 only if value is invaild like 16MB on Asus WL-500GP echo "sdram_init is invaild: $(printf 0x%04x $SDRAM_INIT), force to default!" - $(/usr/sbin/nvram_set sdram_init "0x0009") + nvram_set sdram_init 0x0009 } [ "$COMMIT" = 1 ] && { nvram_set sdram_ncdl 0x0 |