diff options
author | Andreas Bießmann <andreas.devel@googlemail.com> | 2012-06-28 02:32:32 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-09-01 17:06:13 +0200 |
commit | 88461f164ed751b582998b28b93d5668d4afec56 (patch) | |
tree | b77cf8574c980b36f8e2c425db79bd77014db0c8 /include/configs/at91sam9263ek.h | |
parent | 9865b2ef726bbbb64d9c52e85cd2b8d669cb6145 (diff) | |
download | u-boot-88461f164ed751b582998b28b93d5668d4afec56.tar.gz |
at91sam9263ek: fix 'update' script
The old update script uses 'load_addr' which is never set. Use 'fileaddr'
instead which is automagically set by e.g. dhcp.
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
cc: Stelian Pop <stelian@popies.net>
Diffstat (limited to 'include/configs/at91sam9263ek.h')
-rw-r--r-- | include/configs/at91sam9263ek.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/at91sam9263ek.h b/include/configs/at91sam9263ek.h index 73af3aff8a..9421b5373c 100644 --- a/include/configs/at91sam9263ek.h +++ b/include/configs/at91sam9263ek.h @@ -164,7 +164,7 @@ "update=" \ "protect off ${monitor_base} +${filesize};" \ "erase ${monitor_base} +${filesize};" \ - "cp.b ${load_addr} ${monitor_base} ${filesize};" \ + "cp.b ${fileaddr} ${monitor_base} ${filesize};" \ "protect on ${monitor_base} +${filesize}\0" #ifndef CONFIG_SKIP_LOWLEVEL_INIT |