aboutsummaryrefslogtreecommitdiff
path: root/util-linux/mount.c
diff options
context:
space:
mode:
Diffstat (limited to 'util-linux/mount.c')
-rw-r--r--util-linux/mount.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c
index 1a39da2db..4d5c2243a 100644
--- a/util-linux/mount.c
+++ b/util-linux/mount.c
@@ -26,18 +26,17 @@
26//config: tree. The 'mount' utility is used to graft a filesystem onto a 26//config: tree. The 'mount' utility is used to graft a filesystem onto a
27//config: particular part of the tree. A filesystem can either live on a block 27//config: particular part of the tree. A filesystem can either live on a block
28//config: device, or it can be accessible over the network, as is the case with 28//config: device, or it can be accessible over the network, as is the case with
29//config: NFS filesystems. Most people using BusyBox will also want to enable 29//config: NFS filesystems.
30//config: the 'mount' utility.
31//config: 30//config:
32//config:config FEATURE_MOUNT_FAKE 31//config:config FEATURE_MOUNT_FAKE
33//config: bool "Support option -f" 32//config: bool "Support -f (fake mount)"
34//config: default y 33//config: default y
35//config: depends on MOUNT 34//config: depends on MOUNT
36//config: help 35//config: help
37//config: Enable support for faking a file system mount. 36//config: Enable support for faking a file system mount.
38//config: 37//config:
39//config:config FEATURE_MOUNT_VERBOSE 38//config:config FEATURE_MOUNT_VERBOSE
40//config: bool "Support option -v" 39//config: bool "Support -v (verbose)"
41//config: default y 40//config: default y
42//config: depends on MOUNT 41//config: depends on MOUNT
43//config: help 42//config: help
@@ -65,7 +64,6 @@
65//config: help 64//config: help
66//config: This allows for specifying a device by label or uuid, rather than by 65//config: This allows for specifying a device by label or uuid, rather than by
67//config: name. This feature utilizes the same functionality as blkid/findfs. 66//config: name. This feature utilizes the same functionality as blkid/findfs.
68//config: This also enables label or uuid support for swapon.
69//config: 67//config:
70//config:config FEATURE_MOUNT_NFS 68//config:config FEATURE_MOUNT_NFS
71//config: bool "Support mounting NFS file systems on Linux < 2.6.23" 69//config: bool "Support mounting NFS file systems on Linux < 2.6.23"
@@ -100,7 +98,7 @@
100//config: 98//config:
101//config:config FEATURE_MOUNT_FSTAB 99//config:config FEATURE_MOUNT_FSTAB
102//config: depends on MOUNT 100//config: depends on MOUNT
103//config: bool "Support /etc/fstab and -a" 101//config: bool "Support /etc/fstab and -a (mount all)"
104//config: default y 102//config: default y
105//config: help 103//config: help
106//config: Support mount all and looking for files in /etc/fstab. 104//config: Support mount all and looking for files in /etc/fstab.