Files
rtems/cpukit/libmisc/shell
Sebastian Huber 2cec5acdf2 shell: Fix rtems_shell_init_env()
Do not discard a user provided task name in rtems_shell_init_env().
2018-03-12 11:24:44 +01:00
..
2015-10-26 09:13:19 +01:00
2008-08-21 12:29:02 +00:00
2009-06-12 05:51:43 +00:00
2008-08-21 12:29:02 +00:00
2015-10-26 09:13:19 +01:00
2008-08-21 12:29:02 +00:00
2017-02-15 13:05:27 +01:00
2017-02-15 13:05:27 +01:00
2017-12-13 09:04:27 +01:00
2017-08-25 10:59:52 +02:00
2017-09-28 13:18:52 +02:00
2017-08-25 10:59:52 +02:00
2015-10-26 09:13:19 +01:00
2017-08-25 10:58:58 +02:00
2017-02-14 08:46:22 +01:00
2015-10-26 09:13:19 +01:00
2017-08-25 10:58:58 +02:00
2015-10-26 09:13:19 +01:00
2017-08-22 14:18:58 +02:00
2018-03-12 11:24:44 +01:00
2014-09-16 15:19:58 +10:00
2015-10-26 09:13:19 +01:00
2015-10-26 09:13:19 +01:00
2015-10-26 09:13:19 +01:00
2015-10-26 09:13:19 +01: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

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.