diff options
author | Rob Landley <rob@landley.net> | 2006-08-08 01:39:49 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-08-08 01:39:49 +0000 |
commit | e3781b731215d826585fe37720eebe147705f340 (patch) | |
tree | b146c666feca3c4908bc5bb90842a2c0d707385b /util-linux/Config.in | |
parent | 47b16a6fe98e1b18f269a2bd34471231553ebb94 (diff) | |
download | busybox-w32-e3781b731215d826585fe37720eebe147705f340.tar.gz busybox-w32-e3781b731215d826585fe37720eebe147705f340.tar.bz2 busybox-w32-e3781b731215d826585fe37720eebe147705f340.zip |
Add shared subtree support, suggested by Vladimir Dronnikov. Also break out a
few new (unfinished) config options, which I intend to make hidden (but
enabled) when CONFIG_NITPICK is disabled. Getting the .config infrastructure
to do that is non-obvious, it seems...
Diffstat (limited to 'util-linux/Config.in')
-rw-r--r-- | util-linux/Config.in | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/util-linux/Config.in b/util-linux/Config.in index 65d670824..2222e5c38 100644 --- a/util-linux/Config.in +++ b/util-linux/Config.in | |||
@@ -370,7 +370,24 @@ config CONFIG_FEATURE_MOUNT_NFS | |||
370 | default n | 370 | default n |
371 | depends on CONFIG_MOUNT | 371 | depends on CONFIG_MOUNT |
372 | help | 372 | help |
373 | Enable mounting of NFS file systems. | 373 | Enable mounting of NFS file systems. |
374 | |||
375 | config CONFIG_FEATURE_MOUNT_FLAGS | ||
376 | depends on CONFIG_MOUNT | ||
377 | bool "Support lots of -o flags in mount." | ||
378 | default y | ||
379 | help | ||
380 | Without this, mount only supports ro/rw/remount. With this, it | ||
381 | supports nosuid, suid, dev, nodev, exec, noexec, sync, async, atime, | ||
382 | noatime, diratime, nodiratime, loud, bind, move, shared, slave, | ||
383 | private, unbindable, rshared, rslave, rprivate, and runbindable. | ||
384 | |||
385 | config CONFIG_FEATURE_MOUNT_FSTAB | ||
386 | depends on CONFIG_MOUNT | ||
387 | bool "Support /etc/fstab and -a" | ||
388 | default y | ||
389 | help | ||
390 | Support mount all and looking for files in /etc/fstab. | ||
374 | 391 | ||
375 | config CONFIG_PIVOT_ROOT | 392 | config CONFIG_PIVOT_ROOT |
376 | bool "pivot_root" | 393 | bool "pivot_root" |