diff options
author | Zhang Jiejing <jiejing.zhang@freescale.com> | 2012-01-10 15:17:01 +0800 |
---|---|---|
committer | Zhang Jiejing <jiejing.zhang@freescale.com> | 2012-01-12 09:51:24 +0800 |
commit | 44d91a044adf84106264ae104837a23a191bf67b (patch) | |
tree | 57be98c4cd84a81c0defaf939546e788a74ed6f1 /include/configs/mx6q_arm2.h | |
parent | b6f61895319e387e80b2a78b7cf42163cb52ecf1 (diff) | |
download | u-boot-imx-44d91a044adf84106264ae104837a23a191bf67b.zip u-boot-imx-44d91a044adf84106264ae104837a23a191bf67b.tar.gz u-boot-imx-44d91a044adf84106264ae104837a23a191bf67b.tar.bz2 |
ENGR00171633 MX6Q: config: android: update default config.
1. C macro don't eval, so the rd_loadaddr will be (CONFIG_LOADADDR + 0x300000)
rather then number, will cause uboot can't boot, change this to a number which
make default boot env correct.
2. update android mx6q saberlite config to align lastest code status.
Signed-off-by: Zhang Jiejing <jiejing.zhang@freescale.com>
Diffstat (limited to 'include/configs/mx6q_arm2.h')
-rw-r--r-- | include/configs/mx6q_arm2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/mx6q_arm2.h b/include/configs/mx6q_arm2.h index 18a351a..cf466de 100644 --- a/include/configs/mx6q_arm2.h +++ b/include/configs/mx6q_arm2.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010-2011 Freescale Semiconductor, Inc. + * Copyright (C) 2010-2012 Freescale Semiconductor, Inc. * * Configuration settings for the MX6Q Armadillo2 Freescale board. * @@ -110,7 +110,7 @@ #define CONFIG_PRIME "FEC0" #define CONFIG_LOADADDR 0x10800000 /* loadaddr env var */ -#define CONFIG_RD_LOADADDR (CONFIG_LOADADDR + 0x300000) +#define CONFIG_RD_LOADADDR 0x11000000 #define CONFIG_EXTRA_ENV_SETTINGS \ "netdev=eth0\0" \ |