summaryrefslogtreecommitdiff
path: root/drivers/serial
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2011-10-26 00:21:29 (GMT)
committerWolfgang Denk <wd@denx.de>2011-11-03 21:35:21 (GMT)
commitab06a758b9407a3f4b89d23ac08dc45aa7749f11 (patch)
tree8ce0ad0d59b2ed86b010be7d7e6a30311a6ad5d3 /drivers/serial
parentec8f0b9024adc1075bb514edefbf186e63f84268 (diff)
downloadu-boot-ab06a758b9407a3f4b89d23ac08dc45aa7749f11.tar.xz
sandbox: put stdin into raw mode
This allows us to act like a serial device: we get tab chars and CTRL+C and respond appropriately. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Tested-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/serial')
-rw-r--r--drivers/serial/sandbox.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/serial/sandbox.c b/drivers/serial/sandbox.c
index 814a0f9..1927c16 100644
--- a/drivers/serial/sandbox.c
+++ b/drivers/serial/sandbox.c
@@ -30,6 +30,7 @@
int serial_init(void)
{
+ os_tty_raw(0);
return 0;
}