diff options
| author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-05 21:57:47 +0000 |
|---|---|---|
| committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-05 21:57:47 +0000 |
| commit | bf295dd5b67c1e192600f3510de2d5d1e686c685 (patch) | |
| tree | 652596d819687154790512fc68b2047290c9efc9 /util-linux | |
| parent | df5bbb938ae73cf668778d1d54718fddb0f76130 (diff) | |
| download | busybox-w32-bf295dd5b67c1e192600f3510de2d5d1e686c685.tar.gz busybox-w32-bf295dd5b67c1e192600f3510de2d5d1e686c685.tar.bz2 busybox-w32-bf295dd5b67c1e192600f3510de2d5d1e686c685.zip | |
[u]mount: extend -t option (Roy Marples <uberlord@gentoo.org>)
Diffstat (limited to 'util-linux')
| -rw-r--r-- | util-linux/mount.c | 5 | ||||
| -rw-r--r-- | util-linux/umount.c | 10 |
2 files changed, 9 insertions, 6 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index 567514ccb..4a0237196 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c | |||
| @@ -77,6 +77,7 @@ struct { | |||
| 77 | {"defaults", 0}, | 77 | {"defaults", 0}, |
| 78 | /* {"quiet", 0}, - do not filter out, vfat wants to see it */ | 78 | /* {"quiet", 0}, - do not filter out, vfat wants to see it */ |
| 79 | {"noauto", MOUNT_NOAUTO}, | 79 | {"noauto", MOUNT_NOAUTO}, |
| 80 | {"sw", MOUNT_SWAP}, | ||
| 80 | {"swap", MOUNT_SWAP}, | 81 | {"swap", MOUNT_SWAP}, |
| 81 | USE_DESKTOP({"user", MOUNT_USERS},) | 82 | USE_DESKTOP({"user", MOUNT_USERS},) |
| 82 | USE_DESKTOP({"users", MOUNT_USERS},) | 83 | USE_DESKTOP({"users", MOUNT_USERS},) |
| @@ -1703,9 +1704,7 @@ int mount_main(int argc, char **argv) | |||
| 1703 | 1704 | ||
| 1704 | } else { | 1705 | } else { |
| 1705 | // Do we need to match a filesystem type? | 1706 | // Do we need to match a filesystem type? |
| 1706 | // TODO: support "-t type1,type2"; "-t notype1,type2" | 1707 | if (fstype && match_fstype(mtcur, fstype)) continue; |
| 1707 | |||
| 1708 | if (fstype && strcmp(mtcur->mnt_type, fstype)) continue; | ||
| 1709 | 1708 | ||
| 1710 | // Skip noauto and swap anyway. | 1709 | // Skip noauto and swap anyway. |
| 1711 | 1710 | ||
diff --git a/util-linux/umount.c b/util-linux/umount.c index 4ea15d91b..19f13454b 100644 --- a/util-linux/umount.c +++ b/util-linux/umount.c | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | #include <mntent.h> | 12 | #include <mntent.h> |
| 13 | #include <getopt.h> | 13 | #include <getopt.h> |
| 14 | 14 | ||
| 15 | #define OPTION_STRING "flDnravd" | 15 | #define OPTION_STRING "flDnravdt:" |
| 16 | #define OPT_FORCE 1 | 16 | #define OPT_FORCE 1 |
| 17 | #define OPT_LAZY 2 | 17 | #define OPT_LAZY 2 |
| 18 | #define OPT_DONTFREELOOP 4 | 18 | #define OPT_DONTFREELOOP 4 |
| @@ -27,6 +27,7 @@ int umount_main(int argc, char **argv) | |||
| 27 | char path[2*PATH_MAX]; | 27 | char path[2*PATH_MAX]; |
| 28 | struct mntent me; | 28 | struct mntent me; |
| 29 | FILE *fp; | 29 | FILE *fp; |
| 30 | char *fstype = 0; | ||
| 30 | int status = EXIT_SUCCESS; | 31 | int status = EXIT_SUCCESS; |
| 31 | unsigned opt; | 32 | unsigned opt; |
| 32 | struct mtab_list { | 33 | struct mtab_list { |
| @@ -37,7 +38,7 @@ int umount_main(int argc, char **argv) | |||
| 37 | 38 | ||
| 38 | /* Parse any options */ | 39 | /* Parse any options */ |
| 39 | 40 | ||
| 40 | opt = getopt32(argc, argv, OPTION_STRING); | 41 | opt = getopt32(argc, argv, OPTION_STRING, &fstype); |
| 41 | 42 | ||
| 42 | argc -= optind; | 43 | argc -= optind; |
| 43 | argv += optind; | 44 | argv += optind; |
| @@ -61,6 +62,9 @@ int umount_main(int argc, char **argv) | |||
| 61 | bb_error_msg_and_die("cannot open %s", bb_path_mtab_file); | 62 | bb_error_msg_and_die("cannot open %s", bb_path_mtab_file); |
| 62 | } else { | 63 | } else { |
| 63 | while (getmntent_r(fp, &me, path, sizeof(path))) { | 64 | while (getmntent_r(fp, &me, path, sizeof(path))) { |
| 65 | /* Match fstype if passed */ | ||
| 66 | if (fstype && match_fstype(&me, fstype)) | ||
| 67 | continue; | ||
| 64 | m = xmalloc(sizeof(struct mtab_list)); | 68 | m = xmalloc(sizeof(struct mtab_list)); |
| 65 | m->next = mtl; | 69 | m->next = mtl; |
| 66 | m->device = xstrdup(me.mnt_fsname); | 70 | m->device = xstrdup(me.mnt_fsname); |
| @@ -71,7 +75,7 @@ int umount_main(int argc, char **argv) | |||
| 71 | } | 75 | } |
| 72 | 76 | ||
| 73 | /* If we're not umounting all, we need at least one argument. */ | 77 | /* If we're not umounting all, we need at least one argument. */ |
| 74 | if (!(opt & OPT_ALL)) { | 78 | if (!(opt & OPT_ALL) && !fstype) { |
| 75 | m = 0; | 79 | m = 0; |
| 76 | if (!argc) bb_show_usage(); | 80 | if (!argc) bb_show_usage(); |
| 77 | } | 81 | } |
