diff options
author | Kim Phillips | 2008-09-24 08:46:25 -0500 |
---|---|---|
committer | Kim Phillips | 2008-09-24 09:58:34 -0500 |
commit | 7fd0bea2e4a78eab7e6693140940f9f9a0009bc2 (patch) | |
tree | 6f7c2569152d5a5097ddb96c1349d4202e0b9a1a /include/configs/MPC8323ERDB.h | |
parent | 2fb29c520c42b7bfef33ea3fd1527eba64099164 (diff) |
mpc83xx: don't disable autoboot
bootdelay set to -1 'permanently' disables autobooting, even if
bootcmd is specified. Change to a positive value to allow
autobooting when a bootcmd is set.
Reported-by: Coray Tate <Coray.Tate@freescale.com>
Cc: Scott Wood <scottwood@freescale.com>
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Diffstat (limited to 'include/configs/MPC8323ERDB.h')
-rw-r--r-- | include/configs/MPC8323ERDB.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/MPC8323ERDB.h b/include/configs/MPC8323ERDB.h index 697c5ad5359..1ae5bae7c0f 100644 --- a/include/configs/MPC8323ERDB.h +++ b/include/configs/MPC8323ERDB.h @@ -571,7 +571,7 @@ #define CONFIG_FDTFILE mpc832x_rdb.dtb #define CONFIG_LOADADDR 500000 /* default location for tftp and bootm */ -#define CONFIG_BOOTDELAY -1 /* -1 disables auto-boot */ +#define CONFIG_BOOTDELAY 6 /* -1 disables auto-boot */ #define CONFIG_BAUDRATE 115200 #define XMK_STR(x) #x |