diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-16 23:28:42 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-16 23:28:42 +0000 |
commit | b1d8e7db0fced98ba2cd049019f8820fd91a0482 (patch) | |
tree | f57502cb47f3036e742e34609a3f485197b3fd73 /util-linux/Config.in | |
parent | 25591c322c9305bd54d3ab80cfaf01ef87640d77 (diff) | |
download | busybox-w32-b1d8e7db0fced98ba2cd049019f8820fd91a0482.tar.gz busybox-w32-b1d8e7db0fced98ba2cd049019f8820fd91a0482.tar.bz2 busybox-w32-b1d8e7db0fced98ba2cd049019f8820fd91a0482.zip |
mount: make -f work even without mtab support
(Cristian Ionescu-Idbohrn <cristian.ionescu-idbohrn at axis.com>)
Diffstat (limited to 'util-linux/Config.in')
-rw-r--r-- | util-linux/Config.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/util-linux/Config.in b/util-linux/Config.in index d1688e8c9..5a47318fe 100644 --- a/util-linux/Config.in +++ b/util-linux/Config.in | |||
@@ -386,6 +386,13 @@ config MOUNT | |||
386 | NFS filesystems. Most people using BusyBox will also want to enable | 386 | NFS filesystems. Most people using BusyBox will also want to enable |
387 | the 'mount' utility. | 387 | the 'mount' utility. |
388 | 388 | ||
389 | config FEATURE_MOUNT_FAKE | ||
390 | bool "mount -f option" | ||
391 | default n | ||
392 | depends on MOUNT | ||
393 | help | ||
394 | Enable support for faking a file system mount. | ||
395 | |||
389 | config FEATURE_MOUNT_HELPERS | 396 | config FEATURE_MOUNT_HELPERS |
390 | bool "Support mount helpers" | 397 | bool "Support mount helpers" |
391 | default n | 398 | default n |
@@ -542,6 +549,7 @@ config FEATURE_MTAB_SUPPORT | |||
542 | bool "Support for the old /etc/mtab file" | 549 | bool "Support for the old /etc/mtab file" |
543 | default n | 550 | default n |
544 | depends on MOUNT || UMOUNT | 551 | depends on MOUNT || UMOUNT |
552 | select FEATURE_MOUNT_FAKE | ||
545 | help | 553 | help |
546 | Historically, Unix systems kept track of the currently mounted | 554 | Historically, Unix systems kept track of the currently mounted |
547 | partitions in the file "/etc/mtab". These days, the kernel exports | 555 | partitions in the file "/etc/mtab". These days, the kernel exports |