From: Robert Griebl Date: Tue, 14 May 2002 22:56:29 +0000 (-0000) Subject: Entries with "noauto" options are ignored correctly when mounting all X-Git-Tag: 0_60_4~204 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=aa385d40156d909ef51be4d52fa90b5c24081a88;p=oweals%2Fbusybox.git Entries with "noauto" options are ignored correctly when mounting all ("mount -a"), but mount fails when these entries are specified explicitly In these cases the "noauto" option has to be simply ignored. --- diff --git a/util-linux/mount.c b/util-linux/mount.c index 79335669d..d58eecaeb 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -101,6 +101,7 @@ static const struct mount_options mount_options[] = { {"async", ~MS_SYNCHRONOUS, 0}, {"atime", ~0, ~MS_NOATIME}, {"defaults", ~0, 0}, + {"noauto", ~0, 0}, {"dev", ~MS_NODEV, 0}, {"diratime", ~0, ~MS_NODIRATIME}, {"exec", ~MS_NOEXEC, 0},