Files
rtems/cpukit/libmisc/shell
Chris Johns d0fcd0b8a6 2011-03-15 Chris Johns <chrisj@rtems.org>
PR 1763/shell
        * libmisc/shell/hexdump-conv.c: Remove debug hacks.

        PR 1757/filesystem
        * libfs/src/rfs/rtems-rfs-block-pos.h,
        libfs/src/rfs/rtems-rfs-block.h, libfs/src/rfs/rtems-rfs-file.c,
        libfs/src/rfs/rtems-rfs-rtems-file.c: Set the file size in
        iop-size when a file is open. Fix lseek to end of file then write
        for sizes less than half the file system block size.
        * libfs/src/rfs/rtems-rfs-rtems-dev.c,
        libfs/src/rfs/rtems-rfs-rtems-dir.c,
        libfs/src/rfs/rtems-rfs-rtems.c, libfs/src/rfs/rtems-rfs-rtems.h:
        Fix the fstat and fchmod calls due to the change in the iop struct
        where pathinfo went away. The node_access field in pathinfo was
        overloaded.
2011-03-15 05:02:34 +00:00
..
2009-11-29 12:12:39 +00:00
2009-06-12 05:51:43 +00:00
2009-10-22 04:29:32 +00:00
2009-11-29 12:12:39 +00:00
2009-11-29 12:12:39 +00:00
2009-11-29 12:12:39 +00:00
2009-04-14 13:41:33 +00:00
2009-11-29 12:12:39 +00:00
2009-11-29 12:12:39 +00:00
2009-11-29 12:12:39 +00:00
2009-11-29 12:12:39 +00:00
2009-11-29 12:12:39 +00:00
2009-11-29 12:12:39 +00:00
2009-11-29 12:12:39 +00:00
2009-11-29 12:12:39 +00:00
2009-11-29 12:12:39 +00:00
2009-11-29 12:12:39 +00:00
2009-11-29 12:12:39 +00:00
2009-11-29 12:12:39 +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.