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 | 397e49b6b9a34872c5f144293a4cc4e02bdda7a0 (patch) | |
tree | cef85eefffe89f4b6f119e2aaef26424f16a4dbd /package/nvram | |
parent | 74fb19715ef3e9a2a925460c87246b637a7f077f (diff) | |
download | upstream-397e49b6b9a34872c5f144293a4cc4e02bdda7a0.tar.gz upstream-397e49b6b9a34872c5f144293a4cc4e02bdda7a0.tar.bz2 upstream-397e49b6b9a34872c5f144293a4cc4e02bdda7a0.zip |
nvram: fix nvram set invokation after r21497
SVN-Revision: 21517
Diffstat (limited to 'package/nvram')
-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 |