source: rtems/cpukit/libmisc/shell/main_unmount.c @ 9a77af8

4.104.115
Last change on this file since 9a77af8 was 0893220, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/29/09 at 12:12:39

Whitespace removal.

  • Property mode set to 100644
File size: 1.5 KB
Line 
1/*
2 *   Shell Command Implmentation
3 *
4 *  Author: Fernando RUIZ CASAS
5 *  Work: fernando.ruiz@ctv.es
6 *  Home: correo@fernando-ruiz.com
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.rtems.com/license/LICENSE.
11 *
12 *  $Id$
13 */
14
15#ifdef HAVE_CONFIG_H
16#include "config.h"
17#endif
18
19#include <stdio.h>
20#include <unistd.h>
21#include <string.h>
22#include <errno.h>
23
24#include <rtems.h>
25#include <rtems/shell.h>
26#include <rtems/shellconfig.h>
27#include <rtems/fsmount.h>
28#include "internal.h"
29
30int rtems_shell_main_unmount(
31  int   argc,
32  char *argv[]
33)
34{
35  char* mount_point = NULL;
36  int   arg;
37
38  for (arg = 1; arg < argc; arg++) {
39    if (!mount_point)
40      mount_point = argv[arg];
41    else {
42      fprintf (stderr, "error: only one mount path require: %s\n", argv[arg]);
43      return 1;
44    }
45  }
46
47  if (!mount_point) {
48    fprintf (stderr, "error: no mount point\n");
49    return 1;
50  }
51
52  /*
53   * Unmount the disk.
54   */
55
56  if (unmount (mount_point) < 0) {
57    fprintf (stderr, "error: unmount failed: %s: %s\n",
58             mount_point, strerror (errno));
59    return 1;
60  }
61
62  printf ("unmounted %s\n", mount_point);
63
64  return 0;
65}
66
67rtems_shell_cmd_t rtems_shell_UNMOUNT_Command = {
68  "unmount",                     /* name */
69  "unmount path # unmount disk", /* usage */
70  "files",                       /* topic */
71  rtems_shell_main_unmount,      /* command */
72  NULL,                          /* alias */
73  NULL                           /* next */
74};
Note: See TracBrowser for help on using the repository browser.