diff options
author | Simon Glass <sjg@chromium.org> | 2019-07-20 20:51:20 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-08-02 11:19:14 -0400 |
commit | 2452bb7636beb5eeae29185518a899349289c609 (patch) | |
tree | b9e58f04a7a20d3ad9fd64b94caa4f9924c5e265 /common/autoboot.c | |
parent | e79e4b250af3c714cfa9aecb2cf5165443429210 (diff) | |
download | u-boot-2452bb7636beb5eeae29185518a899349289c609.tar.gz u-boot-2452bb7636beb5eeae29185518a899349289c609.tar.bz2 u-boot-2452bb7636beb5eeae29185518a899349289c609.zip |
autoboot: Drop unused CONFIG_MENUPROMPT
This is not defined by any board. We could use CONFIG_AUTOBOOT_PROMPT
instead perhaps, but this depends on CONFIG_AUTOBOOT_KEYED which is not
used for the single-key case.
So let's just remove CONFIG_MENUPROMPT.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/autoboot.c')
-rw-r--r-- | common/autoboot.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/common/autoboot.c b/common/autoboot.c index 012dd5797e..a6071ab839 100644 --- a/common/autoboot.c +++ b/common/autoboot.c @@ -233,11 +233,7 @@ static int abortboot_single_key(int bootdelay) int abort = 0; unsigned long ts; -#ifdef CONFIG_MENUPROMPT - printf(CONFIG_MENUPROMPT); -#else printf("Hit any key to stop autoboot: %2d ", bootdelay); -#endif /* * Check if key already pressed |