diff options
| author | Michael Forney <mforney@mforney.org> | 2016-06-12 20:55:34 -0700 |
|---|---|---|
| committer | Michael Forney <mforney@mforney.org> | 2016-06-12 20:55:34 -0700 |
| commit | d147b5554b8bc5ce304fbd7a3446eec06a64a851 (patch) | |
| tree | 23eccb5822028a92f82389b3cc5e047305d201cd | |
| parent | a56ab573c52396a896a7e69e2290a2bd892f4ac4 (diff) | |
ubase: Fix mount with noauto
| -rw-r--r-- | core/ubase/patch/0002-mount-Don-t-pass-no-auto-to-kernel.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/core/ubase/patch/0002-mount-Don-t-pass-no-auto-to-kernel.patch b/core/ubase/patch/0002-mount-Don-t-pass-no-auto-to-kernel.patch new file mode 100644 index 00000000..f524e07a --- /dev/null +++ b/core/ubase/patch/0002-mount-Don-t-pass-no-auto-to-kernel.patch @@ -0,0 +1,24 @@ +From d893d74e564d3f7fcaf9dfcdd485ebad0f01b602 Mon Sep 17 00:00:00 2001 +From: Michael Forney <mforney@mforney.org> +Date: Sun, 12 Jun 2016 20:51:43 -0700 +Subject: [PATCH] mount: Don't pass {,no}auto to kernel + +--- + mount.c | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/mount.c b/mount.c +index 2eb175c..4ce6680 100644 +--- a/mount.c ++++ b/mount.c +@@ -29,6 +29,7 @@ struct { + { "dirsync", NULL, MS_DIRSYNC }, + { "nodev", "dev", MS_NODEV }, + { "noatime", "atime", MS_NOATIME }, ++ { "noauto", "auto", 0 }, + { "nodiratime", "diratime", MS_NODIRATIME }, + { "noexec", "exec", MS_NOEXEC }, + { "nosuid", "suid", MS_NOSUID }, +-- +2.8.1 + |
