File indexing completed on 2025-05-11 08:24:19
0001
0002
0003
0004
0005
0006
0007 #ifdef HAVE_CONFIG_H
0008 #include "config.h"
0009 #endif
0010
0011 #include <stdio.h>
0012 #include <unistd.h>
0013 #include <string.h>
0014 #include <errno.h>
0015
0016 #include <rtems.h>
0017 #include <rtems/shell.h>
0018 #include <rtems/stringto.h>
0019 #include <rtems/shellconfig.h>
0020 #include <rtems/rtems-rfs-shell.h>
0021 #include <rtems/fsmount.h>
0022 #include "internal.h"
0023
0024 #define OPTIONS "[-h]"
0025
0026 rtems_shell_cmd_t rtems_shell_DEBUGRFS_Command = {
0027 "debugrfs",
0028 "debugrfs " OPTIONS,
0029 "files",
0030 rtems_shell_debugrfs,
0031 NULL,
0032 NULL
0033 };