diff options
author | Scott Talbot <psyc@stalbot.com> | 2008-11-19 17:11:17 +0000 |
---|---|---|
committer | Andy Green <agreen@pads.home.warmcat.com> | 2008-11-19 17:11:17 +0000 |
commit | 754d92cefb28dc338af35babdff43e280c2a1d27 (patch) | |
tree | a45d8443acf2be68f39b4f3c6ec8fbc6026a1ac2 | |
parent | 67ac1095bb91e19087eb5b6ed414be9205711377 (diff) |
Fix load address for Freerunner devices
Make the load address within RAM, rather than a memory mapped
register. (Fix a copy-and-paste error.)
-rwxr-xr-x | build | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ if [ ! -z "`grep CONFIG_ARCH_S3C64XX=y .config`" ] ; then fi if [ ! -z "`grep CONFIG_ARCH_S3C2410=y .config`" ] ; then - START=50008000 + START=30008000 PRODUCT=FR fi |