summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell/main_mkrfs.c
blob: 42eb2016c666ed7ec56d7a95f95f3e01b101f9a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>

#include <rtems.h>
#include <rtems/shell.h>
#include <rtems/stringto.h>
#include <rtems/shellconfig.h>
#include <rtems/rtems-rfs-shell.h>
#include <rtems/fsmount.h>
#include "internal.h"

#define OPTIONS "[-v] [-s blksz] [-b grpblk] [-i grpinode] [-I] [-o %inode]"

rtems_shell_cmd_t rtems_shell_MKRFS_Command = {
  "mkrfs",                                   /* name */
  "mkrfs " OPTIONS " dev",                   /* usage */
  "files",                                   /* topic */
  rtems_shell_rfs_format,                    /* command */
  NULL,                                      /* alias */
  NULL                                       /* next */
};