diff mbox

[U-Boot] TI:omap5: Add rdaddr, use consistent loadaddr values

Message ID 1382133859-14094-1-git-send-email-trini@ti.com
State Accepted
Delegated to: Tom Rini
Headers show

Commit Message

Tom Rini Oct. 18, 2013, 10:04 p.m. UTC
rdaddr was missing which is a common location for loading ramdisks to.
loadaddr was higher than it needs to be, so use the same value other TI
platforms use.

Signed-off-by: Tom Rini <trini@ti.com>
---
 include/configs/omap5_common.h |    7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

Comments

Tom Rini Nov. 4, 2013, 2:19 p.m. UTC | #1
On Fri, Oct 18, 2013 at 06:04:19PM -0400, Tom Rini wrote:

> rdaddr was missing which is a common location for loading ramdisks to.
> loadaddr was higher than it needs to be, so use the same value other TI
> platforms use.
> 
> Signed-off-by: Tom Rini <trini@ti.com>

Applied to u-boot-ti/master, thanks!
diff mbox

Patch

diff --git a/include/configs/omap5_common.h b/include/configs/omap5_common.h
index 827eaab..c7fa37e 100644
--- a/include/configs/omap5_common.h
+++ b/include/configs/omap5_common.h
@@ -70,10 +70,11 @@ 
 #endif
 
 #define CONFIG_EXTRA_ENV_SETTINGS \
-	"loadaddr=0x82000000\0" \
-	"console=" CONSOLEDEV ",115200n8\0" \
+	"loadaddr=0x80200000\0" \
+	"fdtaddr=0x80F80000\0" \
 	"fdt_high=0xffffffff\0" \
-	"fdtaddr=0x80f80000\0" \
+	"rdaddr=0x81000000\0" \
+	"console=" CONSOLEDEV ",115200n8\0" \
 	"fdtfile=undefined\0" \
 	"bootpart=0:2\0" \
 	"bootdir=/boot\0" \