2 * (C) Copyright 2007 OpenMoko, Inc.
3 * Written by Harald Welte <laforge@openmoko.org>
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29 #include <stdio_dev.h>
32 int do_terminal(cmd_tbl_t * cmd, int flag, int argc, char * const argv[])
35 struct stdio_dev *dev = NULL;
40 /* Scan for selected output/input device */
41 dev = stdio_get_by_name(argv[1]);
46 printf("Entering terminal mode for port %s\n", dev->name);
47 puts("Use '~.' to leave the terminal and get back to u-boot\n");
52 /* read from console and display on serial port */
53 if (stdio_devices[0]->tstc()) {
54 c = stdio_devices[0]->getc();
55 if (last_tilde == 1) {
62 /* write the delayed tilde */
64 /* fall-through to print current
76 /* read from serial port and display on console */
86 /***************************************************/
89 terminal, 3, 1, do_terminal,
90 "start terminal emulator",