diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-03-09 21:32:57 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-03-09 21:32:57 +0000 |
commit | 2715fa147a36662b59b58b78ff31e225e785fef9 (patch) | |
tree | d65e17d3d9e2058a2ae8bad735ba2972df94134e | |
parent | 21d308601eb5556065070e5b479dd5aace47bd52 (diff) | |
download | busybox-w32-2715fa147a36662b59b58b78ff31e225e785fef9.tar.gz busybox-w32-2715fa147a36662b59b58b78ff31e225e785fef9.tar.bz2 busybox-w32-2715fa147a36662b59b58b78ff31e225e785fef9.zip |
Note that /proc must be mounted for filesystem type autodetection
to work. Without /proc mounted, one must explicitly specify the
type of every filesystem being mounted.
-rw-r--r-- | include/usage.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/usage.h b/include/usage.h index 05fd23129..9390e3415 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -1696,7 +1696,8 @@ | |||
1696 | #define mount_trivial_usage \ | 1696 | #define mount_trivial_usage \ |
1697 | "[flags] DEVICE NODE [-o options,more-options]" | 1697 | "[flags] DEVICE NODE [-o options,more-options]" |
1698 | #define mount_full_usage \ | 1698 | #define mount_full_usage \ |
1699 | "Mount a filesystem\n\n" \ | 1699 | "Mount a filesystem. Autodetection of filesystem type requires the\n" \ |
1700 | "/proc filesystem be already mounted.\n\n" \ | ||
1700 | "Flags:\n" \ | 1701 | "Flags:\n" \ |
1701 | "\t-a:\t\tMount all filesystems in fstab.\n" \ | 1702 | "\t-a:\t\tMount all filesystems in fstab.\n" \ |
1702 | USAGE_MTAB( \ | 1703 | USAGE_MTAB( \ |