From patchwork Wed Jan 18 06:18:11 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [U-Boot, v2] common, menu: do not timeout again if an item was selected but not found Date: Tue, 17 Jan 2012 20:18:11 -0000 From: Heiko Schocher X-Patchwork-Id: 136556 Message-Id: <1326867491-20038-1-git-send-email-hs@denx.de> To: u-boot@lists.denx.de Cc: Heiko Schocher Signed-off-by: Heiko Schocher Acked-by: Jason Hobbs Cc: Mike Frysinger --- - changes for v2: - add Acked-by from Jason Hobbs - add comment from Mike Frysinger: - respell summary text --- common/menu.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/common/menu.c b/common/menu.c index 754a9f9..aa16c9a 100644 --- a/common/menu.c +++ b/common/menu.c @@ -236,8 +236,10 @@ static inline int menu_interactive_choice(struct menu *m, void **choice) if (readret >= 0) { choice_item = menu_item_by_key(m, cbuf); - if (!choice_item) + if (!choice_item) { printf("%s not found\n", cbuf); + m->timeout = 0; + } } else { puts("^C\n"); return -EINTR;