source: rtems/cpukit/libmisc/shell/shellconfig.h @ 9f527308

4.115
Last change on this file since 9f527308 was 9f527308, checked in by Sebastian Huber <sebastian.huber@…>, on 06/12/12 at 07:46:09

libblock: Add block device statistics

  • Property mode set to 100644
File size: 16.2 KB
Line 
1/**
2 * @file rtems/shellconfig.h
3 *
4 * RTEMS Shell Command Set Configuration
5 */
6
7/*
8 *  COPYRIGHT (c) 1989-2012.
9 *  On-Line Applications Research Corporation (OAR).
10 *
11 *  The license and distribution terms for this file may be
12 *  found in the file LICENSE in this distribution or at
13 *  http://www.rtems.com/license/LICENSE.
14 */
15
16#ifndef _RTEMS_SHELL_CONFIG_h
17#define _RTEMS_SHELL_CONFIG_h
18
19#include <rtems/shell.h>
20
21/*
22 *  Externs for all command definition structures
23 */
24extern rtems_shell_cmd_t rtems_shell_HELP_Command;
25extern rtems_shell_cmd_t rtems_shell_ALIAS_Command;
26extern rtems_shell_cmd_t rtems_shell_TIME_Command;
27extern rtems_shell_cmd_t rtems_shell_LOGOFF_Command;
28extern rtems_shell_cmd_t rtems_shell_SETENV_Command;
29extern rtems_shell_cmd_t rtems_shell_GETENV_Command;
30extern rtems_shell_cmd_t rtems_shell_UNSETENV_Command;
31
32extern rtems_shell_cmd_t rtems_shell_MDUMP_Command;
33extern rtems_shell_cmd_t rtems_shell_WDUMP_Command;
34extern rtems_shell_cmd_t rtems_shell_LDUMP_Command;
35extern rtems_shell_cmd_t rtems_shell_MEDIT_Command;
36extern rtems_shell_cmd_t rtems_shell_MFILL_Command;
37extern rtems_shell_cmd_t rtems_shell_MMOVE_Command;
38
39extern rtems_shell_cmd_t rtems_shell_JOEL_Command;
40extern rtems_shell_cmd_t rtems_shell_DATE_Command;
41extern rtems_shell_cmd_t rtems_shell_ECHO_Command;
42extern rtems_shell_cmd_t rtems_shell_SLEEP_Command;
43extern rtems_shell_cmd_t rtems_shell_ID_Command;
44extern rtems_shell_cmd_t rtems_shell_TTY_Command;
45extern rtems_shell_cmd_t rtems_shell_WHOAMI_Command;
46
47extern rtems_shell_cmd_t rtems_shell_CP_Command;
48extern rtems_shell_cmd_t rtems_shell_PWD_Command;
49extern rtems_shell_cmd_t rtems_shell_LS_Command;
50extern rtems_shell_cmd_t rtems_shell_CHDIR_Command;
51extern rtems_shell_cmd_t rtems_shell_MKDIR_Command;
52extern rtems_shell_cmd_t rtems_shell_RMDIR_Command;
53extern rtems_shell_cmd_t rtems_shell_CHROOT_Command;
54extern rtems_shell_cmd_t rtems_shell_CHMOD_Command;
55extern rtems_shell_cmd_t rtems_shell_CAT_Command;
56extern rtems_shell_cmd_t rtems_shell_MKRFS_Command;
57extern rtems_shell_cmd_t rtems_shell_MSDOSFMT_Command;
58extern rtems_shell_cmd_t rtems_shell_MSDOSFMT_Alias;
59extern rtems_shell_cmd_t rtems_shell_MV_Command;
60extern rtems_shell_cmd_t rtems_shell_RM_Command;
61extern rtems_shell_cmd_t rtems_shell_LN_Command;
62extern rtems_shell_cmd_t rtems_shell_MKNOD_Command;
63extern rtems_shell_cmd_t rtems_shell_UMASK_Command;
64extern rtems_shell_cmd_t rtems_shell_LSOF_Command;
65extern rtems_shell_cmd_t rtems_shell_MOUNT_Command;
66extern rtems_shell_cmd_t rtems_shell_UNMOUNT_Command;
67extern rtems_shell_cmd_t rtems_shell_BLKSYNC_Command;
68extern rtems_shell_cmd_t rtems_shell_BLKSTATS_Command;
69extern rtems_shell_cmd_t rtems_shell_FDISK_Command;
70extern rtems_shell_cmd_t rtems_shell_DD_Command;
71extern rtems_shell_cmd_t rtems_shell_HEXDUMP_Command;
72extern rtems_shell_cmd_t rtems_shell_DEBUGRFS_Command;
73
74extern rtems_shell_cmd_t rtems_shell_RTC_Command;
75
76extern rtems_shell_cmd_t rtems_shell_HALT_Command;
77extern rtems_shell_cmd_t rtems_shell_CPUUSE_Command;
78extern rtems_shell_cmd_t rtems_shell_STACKUSE_Command;
79extern rtems_shell_cmd_t rtems_shell_PERIODUSE_Command;
80extern rtems_shell_cmd_t rtems_shell_WKSPACE_INFO_Command;
81extern rtems_shell_cmd_t rtems_shell_MALLOC_INFO_Command;
82#if RTEMS_NETWORKING
83  extern rtems_shell_cmd_t rtems_shell_IFCONFIG_Command;
84  extern rtems_shell_cmd_t rtems_shell_ROUTE_Command;
85  extern rtems_shell_cmd_t rtems_shell_NETSTATS_Command;
86#endif
87
88extern rtems_shell_cmd_t *rtems_shell_Initial_commands[];
89
90/*
91 *  Extern for alias commands
92 */
93extern rtems_shell_alias_t rtems_shell_DIR_Alias;
94extern rtems_shell_alias_t rtems_shell_CD_Alias;
95extern rtems_shell_alias_t rtems_shell_EXIT_Alias;
96
97extern rtems_shell_alias_t *rtems_shell_Initial_aliases[];
98
99/*
100 *  If we are configured to alias a command, then make sure the underlying
101 *  command is configured.
102 */
103
104#if !defined(CONFIGURE_SHELL_COMMANDS_ALL)
105  #if defined(CONFIGURE_SHELL_COMMANDS_DIR) && \
106      !defined(CONFIGURE_SHELL_COMMANDS_LS)
107    #define CONFIGURE_SHELL_COMMAND_LS
108  #endif
109
110  #if defined(CONFIGURE_SHELL_COMMANDS_CD) && \
111      !defined(CONFIGURE_SHELL_COMMANDS_CHDIR)
112    #define CONFIGURE_SHELL_COMMAND_CHDIR
113  #endif
114
115  #if defined(CONFIGURE_SHELL_COMMANDS_EXIT) && \
116      !defined(CONFIGURE_SHELL_COMMANDS_LOGOFF)
117    #define CONFIGURE_SHELL_COMMAND_LOGOFF
118  #endif
119#endif
120
121#if defined(CONFIGURE_SHELL_COMMANDS_INIT)
122  rtems_shell_alias_t *rtems_shell_Initial_aliases[] = {
123    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
124         !defined(CONFIGURE_SHELL_NO_COMMAND_DIR)) || \
125        defined(CONFIGURE_SHELL_COMMAND_DIR)
126      &rtems_shell_DIR_Alias,
127    #endif
128    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
129         !defined(CONFIGURE_SHELL_NO_COMMAND_CD)) || \
130        defined(CONFIGURE_SHELL_COMMAND_CD)
131      &rtems_shell_CD_Alias,
132    #endif
133    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
134         !defined(CONFIGURE_SHELL_NO_COMMAND_EXIT)) || \
135        defined(CONFIGURE_SHELL_COMMAND_EXIT)
136      &rtems_shell_EXIT_Alias,
137    #endif
138
139    /*
140     *  User defined shell aliases
141     */
142    #if defined(CONFIGURE_SHELL_USER_ALIASES)
143      CONFIGURE_SHELL_USER_ALIASES,
144    #endif
145    NULL
146  };
147
148  rtems_shell_cmd_t *rtems_shell_Initial_commands[] = {
149    /*
150     *  General comamnds that should be present
151     */
152    &rtems_shell_HELP_Command,
153    &rtems_shell_ALIAS_Command,
154    &rtems_shell_TIME_Command,
155
156    /*
157     *  Common commands that can be optional
158     */
159    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
160         !defined(CONFIGURE_SHELL_NO_COMMAND_JOEL)) || \
161        defined(CONFIGURE_SHELL_COMMAND_JOEL)
162      &rtems_shell_JOEL_Command,
163    #endif
164    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
165         !defined(CONFIGURE_SHELL_NO_COMMAND_DATE)) || \
166        defined(CONFIGURE_SHELL_COMMAND_DATE)
167      &rtems_shell_DATE_Command,
168    #endif
169    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
170         !defined(CONFIGURE_SHELL_NO_COMMAND_ECHO)) || \
171        defined(CONFIGURE_SHELL_COMMAND_ECHO)
172      &rtems_shell_ECHO_Command,
173    #endif
174    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
175         !defined(CONFIGURE_SHELL_NO_COMMAND_SLEEP)) || \
176        defined(CONFIGURE_SHELL_COMMAND_SLEEP)
177      &rtems_shell_SLEEP_Command,
178    #endif
179    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
180         !defined(CONFIGURE_SHELL_NO_COMMAND_ID)) || \
181        defined(CONFIGURE_SHELL_COMMAND_ID)
182      &rtems_shell_ID_Command,
183    #endif
184    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
185         !defined(CONFIGURE_SHELL_NO_COMMAND_TTY)) || \
186        defined(CONFIGURE_SHELL_COMMAND_TTY)
187      &rtems_shell_TTY_Command,
188    #endif
189    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
190         !defined(CONFIGURE_SHELL_NO_COMMAND_WHOAMI)) || \
191        defined(CONFIGURE_SHELL_COMMAND_WHOAMI)
192      &rtems_shell_WHOAMI_Command,
193    #endif
194    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
195         !defined(CONFIGURE_SHELL_NO_COMMAND_LOGOFF)) || \
196        defined(CONFIGURE_SHELL_COMMAND_LOGOFF)
197      &rtems_shell_LOGOFF_Command,
198    #endif
199    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
200         !defined(CONFIGURE_SHELL_NO_COMMAND_SETENV)) || \
201        defined(CONFIGURE_SHELL_COMMAND_SETENV)
202      &rtems_shell_SETENV_Command,
203    #endif
204    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
205         !defined(CONFIGURE_SHELL_NO_COMMAND_GETENV)) || \
206        defined(CONFIGURE_SHELL_COMMAND_GETENV)
207      &rtems_shell_GETENV_Command,
208    #endif
209    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
210         !defined(CONFIGURE_SHELL_NO_COMMAND_CRLENV)) || \
211        defined(CONFIGURE_SHELL_COMMAND_UNSETENV)
212      &rtems_shell_UNSETENV_Command,
213    #endif
214
215    /*
216     *  Memory printing/modification family commands
217     */
218    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
219        !defined(CONFIGURE_SHELL_NO_COMMAND_MDUMP)) || \
220        defined(CONFIGURE_SHELL_COMMAND_MDUMP)
221      &rtems_shell_MDUMP_Command,
222    #endif
223    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
224         !defined(CONFIGURE_SHELL_NO_COMMAND_WDUMP)) || \
225        defined(CONFIGURE_SHELL_COMMAND_WDUMP)
226      &rtems_shell_WDUMP_Command,
227    #endif
228    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
229         !defined(CONFIGURE_SHELL_NO_COMMAND_LDUMP)) || \
230        defined(CONFIGURE_SHELL_COMMAND_LDUMP)
231      &rtems_shell_LDUMP_Command,
232    #endif
233    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
234         !defined(CONFIGURE_SHELL_NO_COMMAND_MEDIT)) || \
235        defined(CONFIGURE_SHELL_COMMAND_MEDIT)
236      &rtems_shell_MEDIT_Command,
237    #endif
238    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
239         !defined(CONFIGURE_SHELL_NO_COMMAND_MFILL)) || \
240        defined(CONFIGURE_SHELL_COMMAND_MFILL)
241      &rtems_shell_MFILL_Command,
242    #endif
243    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
244         !defined(CONFIGURE_SHELL_NO_COMMAND_MMOVE)) || \
245        defined(CONFIGURE_SHELL_COMMAND_MMOVE)
246      &rtems_shell_MMOVE_Command,
247    #endif
248
249    /*
250     *  File and directory commands
251     */
252    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
253         !defined(CONFIGURE_SHELL_NO_COMMAND_CP)) || \
254        defined(CONFIGURE_SHELL_COMMAND_CP)
255      &rtems_shell_CP_Command,
256    #endif
257    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
258         !defined(CONFIGURE_SHELL_NO_COMMAND_PWD)) || \
259        defined(CONFIGURE_SHELL_COMMAND_PWD)
260      &rtems_shell_PWD_Command,
261    #endif
262    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
263         !defined(CONFIGURE_SHELL_NO_COMMAND_LS)) || \
264        defined(CONFIGURE_SHELL_COMMAND_LS)
265      &rtems_shell_LS_Command,
266    #endif
267    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
268         !defined(CONFIGURE_SHELL_NO_COMMAND_CHDIR)) || \
269        defined(CONFIGURE_SHELL_COMMAND_CHDIR)
270      &rtems_shell_CHDIR_Command,
271    #endif
272    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
273         !defined(CONFIGURE_SHELL_NO_COMMAND_MKDIR)) || \
274        defined(CONFIGURE_SHELL_COMMAND_MKDIR)
275      &rtems_shell_MKDIR_Command,
276    #endif
277    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
278         !defined(CONFIGURE_SHELL_NO_COMMAND_RMDIR)) || \
279        defined(CONFIGURE_SHELL_COMMAND_RMDIR)
280      &rtems_shell_RMDIR_Command,
281    #endif
282    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
283         !defined(CONFIGURE_SHELL_NO_COMMAND_CHROOT)) || \
284        defined(CONFIGURE_SHELL_COMMAND_CHROOT)
285      &rtems_shell_CHROOT_Command,
286    #endif
287    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
288         !defined(CONFIGURE_SHELL_NO_COMMAND_CHMOD)) || \
289        defined(CONFIGURE_SHELL_COMMAND_CHMOD)
290      &rtems_shell_CHMOD_Command,
291    #endif
292    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
293         !defined(CONFIGURE_SHELL_NO_COMMAND_CAT)) || \
294        defined(CONFIGURE_SHELL_COMMAND_CAT)
295      &rtems_shell_CAT_Command,
296    #endif
297    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
298         !defined(CONFIGURE_SHELL_NO_COMMAND_MKRFS)) || \
299        defined(CONFIGURE_SHELL_COMMAND_MKRFS)
300      &rtems_shell_MKRFS_Command,
301    #endif
302    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
303         !defined(CONFIGURE_SHELL_NO_COMMAND_MSDOSFMT)) || \
304        defined(CONFIGURE_SHELL_COMMAND_MSDOSFMT)
305      &rtems_shell_MSDOSFMT_Command,
306      &rtems_shell_MSDOSFMT_Alias,
307    #endif
308    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
309         !defined(CONFIGURE_SHELL_NO_COMMAND_MV)) || \
310        defined(CONFIGURE_SHELL_COMMAND_MV)
311      &rtems_shell_MV_Command,
312    #endif
313    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
314         !defined(CONFIGURE_SHELL_NO_COMMAND_RM)) || \
315        defined(CONFIGURE_SHELL_COMMAND_RM)
316      &rtems_shell_RM_Command,
317    #endif
318    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
319         !defined(CONFIGURE_SHELL_NO_COMMAND_LN)) || \
320        defined(CONFIGURE_SHELL_COMMAND_LN)
321      &rtems_shell_LN_Command,
322    #endif
323    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
324         !defined(CONFIGURE_SHELL_NO_COMMAND_MKNOD)) || \
325        defined(CONFIGURE_SHELL_COMMAND_MKNOD)
326      &rtems_shell_MKNOD_Command,
327    #endif
328    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
329         !defined(CONFIGURE_SHELL_NO_COMMAND_UMASK)) || \
330        defined(CONFIGURE_SHELL_COMMAND_UMASK)
331      &rtems_shell_UMASK_Command,
332    #endif
333    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
334         !defined(CONFIGURE_SHELL_NO_COMMAND_LSOF)) || \
335        defined(CONFIGURE_SHELL_COMMAND_LSOF)
336      &rtems_shell_LSOF_Command,
337    #endif
338    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
339         !defined(CONFIGURE_SHELL_NO_COMMAND_MOUNT)) || \
340        defined(CONFIGURE_SHELL_COMMAND_MOUNT)
341      &rtems_shell_MOUNT_Command,
342    #endif
343    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
344         !defined(CONFIGURE_SHELL_NO_COMMAND_UNMOUNT)) || \
345        defined(CONFIGURE_SHELL_COMMAND_UNMOUNT)
346      &rtems_shell_UNMOUNT_Command,
347    #endif
348    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
349         !defined(CONFIGURE_SHELL_NO_COMMAND_BLKSYNC)) || \
350        defined(CONFIGURE_SHELL_COMMAND_BLKSYNC)
351      &rtems_shell_BLKSYNC_Command,
352    #endif
353    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
354         !defined(CONFIGURE_SHELL_NO_COMMAND_BLKSTATS)) || \
355        defined(CONFIGURE_SHELL_COMMAND_BLKSTATS)
356      &rtems_shell_BLKSTATS_Command,
357    #endif
358    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
359         !defined(CONFIGURE_SHELL_NO_COMMAND_FDISK)) || \
360        defined(CONFIGURE_SHELL_COMMAND_FDISK)
361      &rtems_shell_FDISK_Command,
362    #endif
363    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
364         !defined(CONFIGURE_SHELL_NO_COMMAND_DD)) || \
365        defined(CONFIGURE_SHELL_COMMAND_DD)
366      &rtems_shell_DD_Command,
367    #endif
368    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
369         !defined(CONFIGURE_SHELL_NO_COMMAND_HEXDUMP)) || \
370        defined(CONFIGURE_SHELL_COMMAND_HEXDUMP)
371      &rtems_shell_HEXDUMP_Command,
372    #endif
373    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
374         !defined(CONFIGURE_SHELL_NO_COMMAND_DEBUGRFS)) || \
375        defined(CONFIGURE_SHELL_COMMAND_DEBUGRFS)
376      &rtems_shell_DEBUGRFS_Command,
377    #endif
378
379    /*
380     *  RTEMS Related commands
381     */
382    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
383         !defined(CONFIGURE_SHELL_NO_COMMAND_HALT)) || \
384        defined(CONFIGURE_SHELL_COMMAND_HALT)
385      &rtems_shell_HALT_Command,
386    #endif
387    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
388         !defined(CONFIGURE_SHELL_NO_COMMAND_CPUUSE)) || \
389        defined(CONFIGURE_SHELL_COMMAND_CPUUSE)
390      &rtems_shell_CPUUSE_Command,
391    #endif
392    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
393         !defined(CONFIGURE_SHELL_NO_COMMAND_STACKUSE)) || \
394        defined(CONFIGURE_SHELL_COMMAND_STACKUSE)
395      &rtems_shell_STACKUSE_Command,
396    #endif
397    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
398         !defined(CONFIGURE_SHELL_NO_COMMAND_PERIODUSE)) || \
399        defined(CONFIGURE_SHELL_COMMAND_PERIODUSE)
400      &rtems_shell_PERIODUSE_Command,
401    #endif
402    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
403         !defined(CONFIGURE_SHELL_NO_COMMAND_WKSPACE_INFO)) || \
404        defined(CONFIGURE_SHELL_COMMAND_WKSPACE_INFO)
405      &rtems_shell_WKSPACE_INFO_Command,
406    #endif
407
408    /*
409     *  Malloc family commands
410     */
411    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) && \
412         !defined(CONFIGURE_SHELL_NO_COMMAND_MALLOC_INFO)) || \
413        defined(CONFIGURE_SHELL_COMMAND_MALLOC_INFO)
414      &rtems_shell_MALLOC_INFO_Command,
415    #endif
416
417    /*
418     *  Network related commands
419     */
420    #if RTEMS_NETWORKING
421      #if (defined(CONFIGURE_SHELL_COMMANDS_ALL_NETWORKING) && \
422           !defined(CONFIGURE_SHELL_NO_COMMAND_IFCONFIG)) || \
423          defined(CONFIGURE_SHELL_COMMAND_IFCONFIG)
424        &rtems_shell_IFCONFIG_Command,
425      #endif
426
427      #if (defined(CONFIGURE_SHELL_COMMANDS_ALL_NETWORKING) && \
428           !defined(CONFIGURE_SHELL_NO_COMMAND_ROUTE)) || \
429          defined(CONFIGURE_SHELL_COMMAND_ROUTE)
430        &rtems_shell_ROUTE_Command,
431      #endif
432
433      #if (defined(CONFIGURE_SHELL_COMMANDS_ALL_NETWORKING) && \
434           !defined(CONFIGURE_SHELL_NO_COMMAND_NETSTATS)) || \
435          defined(CONFIGURE_SHELL_COMMAND_NETSTATS)
436        &rtems_shell_NETSTATS_Command,
437      #endif
438    #endif
439
440    /* Miscanellous shell commands */
441    #if (defined(CONFIGURE_SHELL_COMMANDS_ALL) \
442          && !defined(CONFIGURE_SHELL_NO_COMMAND_RTC)) \
443        || defined(CONFIGURE_SHELL_COMMAND_RTC)
444      &rtems_shell_RTC_Command,
445    #endif
446
447    /*
448     *  User defined shell commands
449     */
450    #if defined(CONFIGURE_SHELL_USER_COMMANDS)
451      CONFIGURE_SHELL_USER_COMMANDS,
452    #endif
453    NULL
454  };
455
456#endif
457
458#endif
Note: See TracBrowser for help on using the repository browser.