diff options
Diffstat (limited to 'common')
| -rw-r--r-- | common/main.c | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/common/main.c b/common/main.c index f6b9dc212..56da214b2 100644 --- a/common/main.c +++ b/common/main.c @@ -358,6 +358,11 @@ static void process_boot_delay(void)  	s = getenv ("bootdelay");  	bootdelay = s ? (int)simple_strtol(s, NULL, 10) : CONFIG_BOOTDELAY; +#ifdef CONFIG_OF_CONTROL +	bootdelay = fdtdec_get_config_int(gd->fdt_blob, "bootdelay", +			bootdelay); +#endif +  	debug ("### main_loop entered: bootdelay=%d\n\n", bootdelay);  #if defined(CONFIG_MENU_SHOW) |