diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-11-10 09:53:23 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-11-10 09:53:23 +0000 |
commit | 4704a8e122b4771223ee9e8477dc035dbd1e23be (patch) | |
tree | 8c4ceeaf57eb9fd07ee8b19173ef7b023ac2de43 /util-linux | |
parent | 3ccb37e7cbe32d097b0df3d3fcb2d9402ea97c5a (diff) | |
download | busybox-w32-4704a8e122b4771223ee9e8477dc035dbd1e23be.tar.gz busybox-w32-4704a8e122b4771223ee9e8477dc035dbd1e23be.tar.bz2 busybox-w32-4704a8e122b4771223ee9e8477dc035dbd1e23be.zip |
config.in features patch from Giulio Orsero <giulioo@pobox.com>
with some minor edits from me
git-svn-id: svn://busybox.net/trunk/busybox@3639 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/config.in | 33 |
1 files changed, 30 insertions, 3 deletions
diff --git a/util-linux/config.in b/util-linux/config.in index 50a874d6c..067ced60d 100644 --- a/util-linux/config.in +++ b/util-linux/config.in | |||
@@ -9,20 +9,47 @@ comment 'Linux System Utilities' | |||
9 | 9 | ||
10 | bool 'dmesg' CONFIG_DMESG | 10 | bool 'dmesg' CONFIG_DMESG |
11 | bool 'fbset' CONFIG_FBSET | 11 | bool 'fbset' CONFIG_FBSET |
12 | if [ "$CONFIG_FBSET" = "y" ]; then | ||
13 | bool ' Turn on extra fbset options' CONFIG_FEATURE_FBSET_FANCY | ||
14 | bool ' Turn on fbset readmode support' CONFIG_FEATURE_FBSET_READMODE | ||
15 | fi | ||
12 | bool 'fdflush' CONFIG_FDFLUSH | 16 | bool 'fdflush' CONFIG_FDFLUSH |
13 | bool 'freeramdisk' CONFIG_FREERAMDISK | 17 | bool 'freeramdisk' CONFIG_FREERAMDISK |
14 | bool 'fsck_minix' CONFIG_FSCK_MINIX | 18 | bool 'fsck_minix' CONFIG_FSCK_MINIX |
19 | bool 'mkfs_minix' CONFIG_MKFS_MINIX | ||
20 | if [ "$CONFIG_FSCK_MINIX" = "y" -o "$CONFIG_MKFS_MINIX" = "y" ]; then | ||
21 | comment ' Minix filesystem support' | ||
22 | bool ' Support Minix fs v2 (fsck_minix/mkfs_minix)' CONFIG_FEATURE_MINIX2 | ||
23 | fi | ||
15 | bool 'getopt' CONFIG_GETOPT | 24 | bool 'getopt' CONFIG_GETOPT |
16 | bool 'hexdump' CONFIG_HEXDUMP | 25 | bool 'hexdump' CONFIG_HEXDUMP |
17 | bool 'mkfs_minix' CONFIG_MKFS_MINIX | ||
18 | bool 'mkswap' CONFIG_MKSWAP | 26 | bool 'mkswap' CONFIG_MKSWAP |
19 | bool 'more' CONFIG_MORE | 27 | bool 'more' CONFIG_MORE |
28 | if [ "$CONFIG_MORE" = "y" ]; then | ||
29 | bool ' Use termios to manipulate the screen' CONFIG_FEATURE_USE_TERMIOS | ||
30 | fi | ||
31 | if [ "$CONFIG_LS" = "y" -o "$CONFIG_MORE" = "y"]; then | ||
32 | comment ' Common options for ls and more' | ||
33 | bool ' Calculate terminal & column widths' CONFIG_FEATURE_AUTOWIDTH | ||
34 | fi | ||
20 | bool 'mount' CONFIG_MOUNT | 35 | bool 'mount' CONFIG_MOUNT |
21 | bool 'nfsmount' CONFIG_NFSMOUNT | 36 | if [ "$CONFIG_MOUNT" = "y" ]; then |
37 | bool ' Support mounting nfs file systems' CONFIG_NFSMOUNT | ||
38 | bool ' Use devmtab instead of /proc (needs a patched kernel)' CONFIG_FEATURE_USE_DEVPS_PATCH | ||
39 | fi | ||
40 | fi | ||
41 | bool 'umount' CONFIG_UMOUNT | ||
42 | if [ "$CONFIG_UMOUNT" = "y" ]; then | ||
43 | bool ' Support forced filesystem unmounting' CONFIG_FEATURE_MOUNT_FORCE | ||
44 | fi | ||
45 | if [ "$CONFIG_MOUNT" = "y" -o "$CONFIG_UMOUNT" = "y" ]; then | ||
46 | comment 'Common options for mount/umount' | ||
47 | bool ' Support for loop devices' CONFIG_FEATURE_MOUNT_LOOP | ||
48 | bool ' Support for a real /etc/mtab (instead of /proc/mounts)' CONFIG_FEATURE_MTAB_SUPPORT | ||
49 | fi | ||
22 | bool 'pivot_root' CONFIG_PIVOT_ROOT | 50 | bool 'pivot_root' CONFIG_PIVOT_ROOT |
23 | bool 'rdate' CONFIG_RDATE | 51 | bool 'rdate' CONFIG_RDATE |
24 | bool 'swaponoff' CONFIG_SWAPONOFF | 52 | bool 'swaponoff' CONFIG_SWAPONOFF |
25 | bool 'umount' CONFIG_UMOUNT | ||
26 | 53 | ||
27 | endmenu | 54 | endmenu |
28 | 55 | ||