summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2019-02-25 12:26:07 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2019-04-24 12:22:59 +0200
commit5455198d56153b6ca39819c07cf9358ad02883fd (patch)
tree6b885ec7d83a2679cb1238c2cb94e7d8f080b34f /commands
parentec5f3d3dbbc054cf704a658d2734b67df466926b (diff)
downloadbarebox-5455198d56153b6ca39819c07cf9358ad02883fd.tar.gz
barebox-5455198d56153b6ca39819c07cf9358ad02883fd.tar.xz
console_countdown: Add pattern list
This adds an optional string argument to console_countdown() which can hold a list of keys which also abort the countdown. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'commands')
-rw-r--r--commands/timeout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/timeout.c b/commands/timeout.c
index d197cedd8b..db88900287 100644
--- a/commands/timeout.c
+++ b/commands/timeout.c
@@ -61,7 +61,7 @@ static int do_timeout(int argc, char *argv[])
return COMMAND_ERROR_USAGE;
timeout = simple_strtoul(argv[optind], NULL, 0);
- ret = console_countdown(timeout, flags, str);
+ ret = console_countdown(timeout, flags, NULL, str);
if (varname && str[0])
setenv(varname, str);