diff options
| author | Isaac Dunham <ibid.ag@gmail.com> | 2015-03-11 16:07:24 +0100 |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2015-03-11 16:07:24 +0100 |
| commit | 7b434a67dcaa88047095cf0196941c5456bb1c87 (patch) | |
| tree | 8351fef0f03720421f3aed7ea6a2a68be45ca1d0 /util-linux/Config.src | |
| parent | 3c31b092ac21c09ce6c76111bceba00debe300c3 (diff) | |
| download | busybox-w32-7b434a67dcaa88047095cf0196941c5456bb1c87.tar.gz busybox-w32-7b434a67dcaa88047095cf0196941c5456bb1c87.tar.bz2 busybox-w32-7b434a67dcaa88047095cf0196941c5456bb1c87.zip | |
mount: -T OTHERTAB support
function old new delta
mount_main 1221 1241 +20
packed_usage 30616 30610 -6
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Signed-off-by: Isaac Dunham <ibid.ag@gmail.com>
Diffstat (limited to 'util-linux/Config.src')
| -rw-r--r-- | util-linux/Config.src | 88 |
1 files changed, 0 insertions, 88 deletions
diff --git a/util-linux/Config.src b/util-linux/Config.src index c1cd6daa4..854b3682e 100644 --- a/util-linux/Config.src +++ b/util-linux/Config.src | |||
| @@ -434,94 +434,6 @@ config MORE | |||
| 434 | you will probably find this utility very helpful. If you don't have | 434 | you will probably find this utility very helpful. If you don't have |
| 435 | any need to reading text files, you can leave this disabled. | 435 | any need to reading text files, you can leave this disabled. |
| 436 | 436 | ||
| 437 | config MOUNT | ||
| 438 | bool "mount" | ||
| 439 | default y | ||
| 440 | select PLATFORM_LINUX | ||
| 441 | help | ||
| 442 | All files and filesystems in Unix are arranged into one big directory | ||
| 443 | tree. The 'mount' utility is used to graft a filesystem onto a | ||
| 444 | particular part of the tree. A filesystem can either live on a block | ||
| 445 | device, or it can be accessible over the network, as is the case with | ||
| 446 | NFS filesystems. Most people using BusyBox will also want to enable | ||
| 447 | the 'mount' utility. | ||
| 448 | |||
| 449 | config FEATURE_MOUNT_FAKE | ||
| 450 | bool "Support option -f" | ||
| 451 | default y | ||
| 452 | depends on MOUNT | ||
| 453 | help | ||
| 454 | Enable support for faking a file system mount. | ||
| 455 | |||
| 456 | config FEATURE_MOUNT_VERBOSE | ||
| 457 | bool "Support option -v" | ||
| 458 | default y | ||
| 459 | depends on MOUNT | ||
| 460 | help | ||
| 461 | Enable multi-level -v[vv...] verbose messages. Useful if you | ||
| 462 | debug mount problems and want to see what is exactly passed | ||
| 463 | to the kernel. | ||
| 464 | |||
| 465 | config FEATURE_MOUNT_HELPERS | ||
| 466 | bool "Support mount helpers" | ||
| 467 | default n | ||
| 468 | depends on MOUNT | ||
| 469 | help | ||
| 470 | Enable mounting of virtual file systems via external helpers. | ||
| 471 | E.g. "mount obexfs#-b00.11.22.33.44.55 /mnt" will in effect call | ||
| 472 | "obexfs -b00.11.22.33.44.55 /mnt" | ||
| 473 | Also "mount -t sometype [-o opts] fs /mnt" will try | ||
| 474 | "sometype [-o opts] fs /mnt" if simple mount syscall fails. | ||
| 475 | The idea is to use such virtual filesystems in /etc/fstab. | ||
| 476 | |||
| 477 | config FEATURE_MOUNT_LABEL | ||
| 478 | bool "Support specifying devices by label or UUID" | ||
| 479 | default y | ||
| 480 | depends on MOUNT | ||
| 481 | select VOLUMEID | ||
| 482 | help | ||
| 483 | This allows for specifying a device by label or uuid, rather than by | ||
| 484 | name. This feature utilizes the same functionality as blkid/findfs. | ||
| 485 | This also enables label or uuid support for swapon. | ||
| 486 | |||
| 487 | config FEATURE_MOUNT_NFS | ||
| 488 | bool "Support mounting NFS file systems on Linux < 2.6.23" | ||
| 489 | default n | ||
| 490 | depends on MOUNT | ||
| 491 | select FEATURE_HAVE_RPC | ||
| 492 | select FEATURE_SYSLOG | ||
| 493 | help | ||
| 494 | Enable mounting of NFS file systems on Linux kernels prior | ||
| 495 | to version 2.6.23. Note that in this case mounting of NFS | ||
| 496 | over IPv6 will not be possible. | ||
| 497 | |||
| 498 | Note that this option links in RPC support from libc, | ||
| 499 | which is rather large (~10 kbytes on uclibc). | ||
| 500 | |||
| 501 | config FEATURE_MOUNT_CIFS | ||
| 502 | bool "Support mounting CIFS/SMB file systems" | ||
| 503 | default y | ||
| 504 | depends on MOUNT | ||
| 505 | help | ||
| 506 | Enable support for samba mounts. | ||
| 507 | |||
| 508 | config FEATURE_MOUNT_FLAGS | ||
| 509 | depends on MOUNT | ||
| 510 | bool "Support lots of -o flags in mount" | ||
| 511 | default y | ||
| 512 | help | ||
| 513 | Without this, mount only supports ro/rw/remount. With this, it | ||
| 514 | supports nosuid, suid, dev, nodev, exec, noexec, sync, async, atime, | ||
| 515 | noatime, diratime, nodiratime, loud, bind, move, shared, slave, | ||
| 516 | private, unbindable, rshared, rslave, rprivate, and runbindable. | ||
| 517 | |||
| 518 | config FEATURE_MOUNT_FSTAB | ||
| 519 | depends on MOUNT | ||
| 520 | bool "Support /etc/fstab and -a" | ||
| 521 | default y | ||
| 522 | help | ||
| 523 | Support mount all and looking for files in /etc/fstab. | ||
| 524 | |||
| 525 | config PIVOT_ROOT | 437 | config PIVOT_ROOT |
| 526 | bool "pivot_root" | 438 | bool "pivot_root" |
| 527 | default y | 439 | default y |
