Changeset 4e54befe in rtems


Ignore:
Timestamp:
02/19/09 18:54:00 (15 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 5, master
Children:
0a90bf2
Parents:
16e6f5b
Message:

2009-02-19 Joel Sherrill <joel.sherrill@…>

  • libmisc/Makefile.am, libmisc/shell/shellconfig.h: Add halt command to shell which results in the shutting RTEMS down.
  • libmisc/shell/main_halt.c: New file.
Location:
cpukit
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • cpukit/ChangeLog

    r16e6f5b r4e54befe  
     12009-02-19      Joel Sherrill <joel.sherrill@oarcorp.com>
     2
     3        * libmisc/Makefile.am, libmisc/shell/shellconfig.h: Add halt command to
     4        shell which results in the shutting RTEMS down.
     5        * libmisc/shell/main_halt.c: New file.
     6
    172009-02-17      Joel Sherrill <joel.sherrill@OARcorp.com>
    28
  • cpukit/libmisc/Makefile.am

    r16e6f5b r4e54befe  
    6969    shell/main_chdir.c shell/main_chmod.c shell/main_chroot.c \
    7070    shell/main_cp.c shell/main_cpuuse.c shell/main_date.c shell/main_dir.c \
    71     shell/main_echo.c shell/main_exit.c shell/main_help.c shell/main_id.c \
    72     shell/main_logoff.c shell/main_ls.c shell/main_mallocinfo.c \
    73     shell/main_mdump.c shell/main_medit.c shell/main_mfill.c \
    74     shell/main_mkdir.c shell/main_mount.c \
     71    shell/main_echo.c shell/main_exit.c shell/main_halt.c shell/main_help.c \
     72    shell/main_id.c shell/main_logoff.c shell/main_ls.c \
     73    shell/main_mallocinfo.c shell/main_mdump.c shell/main_medit.c \
     74    shell/main_mfill.c shell/main_mkdir.c shell/main_mount.c \
    7575    shell/main_mount_msdos.c shell/main_mmove.c shell/main_msdosfmt.c \
    76     shell/main_mv.c shell/main_mwdump.c shell/main_perioduse.c shell/main_pwd.c \
    77     shell/main_rm.c shell/main_rmdir.c shell/main_sleep.c \
     76    shell/main_mv.c shell/main_mwdump.c shell/main_perioduse.c \
     77    shell/main_pwd.c shell/main_rm.c shell/main_rmdir.c shell/main_sleep.c \
    7878    shell/main_stackuse.c shell/main_tty.c shell/main_umask.c \
    7979    shell/main_unmount.c shell/main_blksync.c shell/main_whoami.c \
  • cpukit/libmisc/shell/shellconfig.h

    r16e6f5b r4e54befe  
    5555extern rtems_shell_cmd_t rtems_shell_BLKSYNC_Command;
    5656
     57extern rtems_shell_cmd_t rtems_shell_HALT_Command;
    5758extern rtems_shell_cmd_t rtems_shell_CPUUSE_Command;
    5859extern rtems_shell_cmd_t rtems_shell_STACKUSE_Command;
     
    305306     *  RTEMS Related commands
    306307     */
     308    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
     309         !defined(CONFIGURE_SHELL_NO_COMMAND_HALT)) || \
     310        defined(CONFIGURE_SHELL_COMMAND_HALT)
     311      &rtems_shell_HALT_Command,
     312    #endif
    307313    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
    308314         !defined(CONFIGURE_SHELL_NO_COMMAND_CPUUSE)) || \
Note: See TracChangeset for help on using the changeset viewer.