Files
rtems/cpukit/libmisc/shell
Chris Johns 071640d310 libmisc/shell: Add an 'rtems' command to report a running build
- Report version, cpu, bsp, tools and options.
2022-08-03 10:46:10 +10:00
..
2020-04-28 09:04:00 +02:00
2022-06-15 13:01:03 +10:00
2020-04-16 07:30:00 +02:00
2020-12-14 10:48:57 +01:00
2020-12-14 10:48:57 +01:00
2019-01-07 09:49:16 +01:00
2020-12-14 10:48:57 +01:00
2020-04-16 07:30:00 +02:00
2022-04-06 16:26:52 +02: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.