Changes in / [b89e1d3:dc0b964] in mainline
- Files:
-
- 5 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.common
rb89e1d3 rdc0b964 97 97 $(USPACE_PATH)/srv/fs/tmpfs/tmpfs \ 98 98 $(USPACE_PATH)/srv/fs/fat/fat \ 99 $(USPACE_PATH)/srv/fs/pipefs/pipefs \100 99 $(USPACE_PATH)/srv/taskmon/taskmon \ 101 100 $(USPACE_PATH)/srv/hw/netif/dp8390/dp8390 \ -
uspace/Makefile
rb89e1d3 rdc0b964 70 70 srv/fs/tmpfs \ 71 71 srv/fs/devfs \ 72 srv/fs/pipefs \73 72 srv/hid/adb_mouse \ 74 73 srv/hid/char_mouse \ -
uspace/app/bdsh/cmds/modules/mount/mount.c
rb89e1d3 rdc0b964 44 44 { 45 45 static char helpfmt[] = 46 "Usage: %s <fstype> <mp> [dev][<moptions>]\n";46 "Usage: %s <fstype> <mp> <dev> [<moptions>]\n"; 47 47 if (level == HELP_SHORT) { 48 48 printf("'%s' mounts a file system.\n", cmdname); … … 59 59 unsigned int argc; 60 60 const char *mopts = ""; 61 const char *dev = "";62 61 int rc; 63 62 64 63 argc = cli_count_args(argv); 65 64 66 if ((argc < 3) || (argc > 5)) {65 if ((argc < 4) || (argc > 5)) { 67 66 printf("%s: invalid number of arguments.\n", 68 67 cmdname); 69 68 return CMD_FAILURE; 70 69 } 71 if (argc > 3)72 dev = argv[3];73 70 if (argc == 5) 74 71 mopts = argv[4]; 75 72 76 rc = mount(argv[1], argv[2], dev, mopts, 0);73 rc = mount(argv[1], argv[2], argv[3], mopts, 0); 77 74 if (rc != EOK) { 78 75 printf("Unable to mount %s filesystem to %s on %s (rc=%d)\n",
Note:
See TracChangeset
for help on using the changeset viewer.