Files
rtems/cpukit/libmisc/shell
Joel Sherrill 8a775c27fc 2009-03-27 Sebastian Huber <sebastian.huber@embedded-brains.de>
* Makefile.am, preinstall.am, libmisc/Makefile.am,
	libmisc/shell/shell.c, libmisc/shell/shell.h, telnetd/check_passwd.c,
	telnetd/telnetd.c, telnetd/telnetd.h:
	Generalized login check.
	* libmisc/shell/login.h, libmisc/shell/login_check.c,
	libmisc/shell/login_prompt.c: New files.
	* libmisc/stackchk/check.c: Changed format for blown stack message.
	* libcsupport/src/libio_sockets.c: Removed superfluous cast.
	* libnetworking/rtems/ftpfs.h: Documentation.
2009-03-27 13:45:31 +00:00
..
2008-08-21 12:29:02 +00:00
2008-08-21 12:29:02 +00:00
2008-08-21 12:29:02 +00:00
2008-08-21 12:29:02 +00:00
2008-08-21 06:07:07 +00:00
2008-08-21 12:29:02 +00:00
2008-08-21 12:29:02 +00:00
2008-08-21 12:29:02 +00:00
2008-08-21 12:29:02 +00:00
2008-08-21 12:29:02 +00:00
2008-08-21 12:29:02 +00:00
2008-08-21 12:29:02 +00:00
2008-08-21 12:29:02 +00:00

#
#  $Id$
#

This directory contains a shell user extension
primary features:

   + create a user shell terminal task.

This code has not been extensively tested.  It is provided as a tool
for RTEMS users to open more shell terminal.
Suggestions and comments are appreciated.

NOTES:

1.  printf() & getchar() works but you can't use 
    0,1,2 like fildes. You need to use fileno(stdin),fileno(stdout),...
    
2.  You only need a termios dev to start a new session, add your new commands
    and enjoy it.

3.  Telnetd daemon uses this (browse libnetworking/rtems_telnetd)
    Enjoy it.

FUTURE:

1.  Adding new commands in cmds.c to give file manegement to shell.