aboutsummaryrefslogtreecommitdiff
path: root/shell/Config.in
diff options
context:
space:
mode:
authorsolar <solar@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-02-09 21:07:23 +0000
committersolar <solar@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-02-09 21:07:23 +0000
commit62077bd183e7b64af25f3efdc5a1d3be885d62f1 (patch)
treef99c5b31b74ed26400a67a073f8eef788b8f793e /shell/Config.in
parentda97828ad35b1c1aa16c6495210f4548801cbd0b (diff)
downloadbusybox-w32-62077bd183e7b64af25f3efdc5a1d3be885d62f1.tar.gz
busybox-w32-62077bd183e7b64af25f3efdc5a1d3be885d62f1.tar.bz2
busybox-w32-62077bd183e7b64af25f3efdc5a1d3be885d62f1.zip
- add ash read -t timeout support. initial code provided by Tim Yamin on Oct/21/2004 on the busybox mailing list. Edited his code a little to keep syntax highlighers happy and make it optional when CONFIG_ASH_TIMEOUT is defined
git-svn-id: svn://busybox.net/trunk/busybox@9837 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell/Config.in')
-rw-r--r--shell/Config.in11
1 files changed, 11 insertions, 0 deletions
diff --git a/shell/Config.in b/shell/Config.in
index bdba40d3b..1a3c388a4 100644
--- a/shell/Config.in
+++ b/shell/Config.in
@@ -53,6 +53,17 @@ config CONFIG_ASH_JOB_CONTROL
53 help 53 help
54 Enable job control in the ash shell. 54 Enable job control in the ash shell.
55 55
56config CONFIG_ASH_TIMEOUT
57 bool " Enable read timeout support."
58 default n
59 depends on CONFIG_ASH_JOB_CONTROL
60 help
61 This option provides read -t <seconds> support.
62
63 read builtin which allows the function to pass control back
64 if no character input is read from the terminal within a set
65 number of seconds.
66
56config CONFIG_ASH_ALIAS 67config CONFIG_ASH_ALIAS
57 bool " Enable alias support" 68 bool " Enable alias support"
58 default y 69 default y