diff options
| author | Lucas Stach <dev@lynxeye.de> | 2013-01-22 00:15:49 +0000 | 
|---|---|---|
| committer | Tom Warren <twarren@nvidia.com> | 2013-02-11 10:35:26 -0700 | 
| commit | fd8e1c3866578d87ed14a04a59faae341fd415df (patch) | |
| tree | 69410319c9ae4f6856e476a905dcc71b0fbc9514 | |
| parent | 07067145dee374e970ffc033cff76982e8cf2e19 (diff) | |
| download | olio-uboot-2014.01-fd8e1c3866578d87ed14a04a59faae341fd415df.tar.xz olio-uboot-2014.01-fd8e1c3866578d87ed14a04a59faae341fd415df.zip | |
arm: fix CONFIG_DELAY_ENVIRONMENT to act like it claims in the README
No one expects to end up in a delayed environment if
CONFIG_DELAY_ENVIRONMENT isn't defined.
Signed-off-by: Lucas Stach <dev@lynxeye.de>
Acked-by: Simon Glass <sjg@chromium.org>
Acked-by: Allen Martin <amartin@nvidia.com>
| -rw-r--r-- | arch/arm/lib/board.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c index cfe32cc92..9f861ccaf 100644 --- a/arch/arm/lib/board.c +++ b/arch/arm/lib/board.c @@ -488,7 +488,7 @@ static char *failed = "*** failed ***\n";  static int should_load_env(void)  {  #ifdef CONFIG_OF_CONTROL -	return fdtdec_get_config_int(gd->fdt_blob, "load-environment", 0); +	return fdtdec_get_config_int(gd->fdt_blob, "load-environment", 1);  #elif defined CONFIG_DELAY_ENVIRONMENT  	return 0;  #else |