summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucas Stach <[email protected]>2013-01-22 00:15:49 +0000
committerTom Rini <[email protected]>2013-01-30 19:33:01 -0500
commit4e5eb45898b6f05fef3a4690399726c03bc1f398 (patch)
treeba232563f95dc471a0a3475f8e96f0acdcd7a8d4
parentb6832af85078e24308d2326fcc5b078484797c63 (diff)
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 <[email protected]> Acked-by: Simon Glass <[email protected]> Acked-by: Allen Martin <[email protected]>
-rw-r--r--arch/arm/lib/board.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c
index cfe32cc926d..9f861ccaf66 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