diff options
Diffstat (limited to 'util-linux/config.in')
-rw-r--r-- | util-linux/config.in | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/util-linux/config.in b/util-linux/config.in deleted file mode 100644 index eee050a05..000000000 --- a/util-linux/config.in +++ /dev/null | |||
@@ -1,69 +0,0 @@ | |||
1 | # | ||
2 | # For a description of the syntax of this configuration file, | ||
3 | # see scripts/kbuild/config-language.txt. | ||
4 | # | ||
5 | |||
6 | mainmenu_option next_comment | ||
7 | comment 'Linux System Utilities' | ||
8 | |||
9 | |||
10 | bool 'dmesg' CONFIG_DMESG | ||
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 | ||
16 | bool 'fdflush' CONFIG_FDFLUSH | ||
17 | bool 'fdisk' CONFIG_FDISK | ||
18 | if [ "$CONFIG_FDISK" = "y" ]; then | ||
19 | bool ' Support AIX disklabels' CONFIG_FEATURE_AIX_LABEL | ||
20 | bool ' Support SGI disklabels' CONFIG_FEATURE_SGI_LABEL | ||
21 | bool ' Support SUN disklabels' CONFIG_FEATURE_SUN_LABEL | ||
22 | bool ' Support BSD disklabels' CONFIG_FEATURE_OSF_LABEL | ||
23 | bool ' Support expert mode' CONFIG_FEATURE_FDISK_ADVANCED | ||
24 | fi | ||
25 | bool 'freeramdisk' CONFIG_FREERAMDISK | ||
26 | bool 'fsck_minix' CONFIG_FSCK_MINIX | ||
27 | bool 'mkfs_minix' CONFIG_MKFS_MINIX | ||
28 | if [ "$CONFIG_FSCK_MINIX" = "y" -o "$CONFIG_MKFS_MINIX" = "y" ]; then | ||
29 | comment ' Minix filesystem support' | ||
30 | bool ' Support Minix fs v2 (fsck_minix/mkfs_minix)' CONFIG_FEATURE_MINIX2 | ||
31 | fi | ||
32 | bool 'getopt' CONFIG_GETOPT | ||
33 | bool 'hexdump' CONFIG_HEXDUMP | ||
34 | bool 'hwclock' CONFIG_HWCLOCK | ||
35 | if [ "$CONFIG_HWCLOCK" = "y" ]; then | ||
36 | bool ' Support long options (--hctosys,...)' CONFIG_FEATURE_HWCLOCK_LONGOPTIONS | ||
37 | fi | ||
38 | bool 'losetup' CONFIG_LOSETUP | ||
39 | bool 'mkswap' CONFIG_MKSWAP | ||
40 | bool 'more' CONFIG_MORE | ||
41 | if [ "$CONFIG_MORE" = "y" ]; then | ||
42 | bool ' Use termios to manipulate the screen' CONFIG_FEATURE_USE_TERMIOS | ||
43 | fi | ||
44 | if [ "$CONFIG_LS" = "y" -o "$CONFIG_MORE" = "y" ]; then | ||
45 | comment ' Common options for ls and more' | ||
46 | bool ' Calculate terminal & column widths' CONFIG_FEATURE_AUTOWIDTH | ||
47 | fi | ||
48 | bool 'pivot_root' CONFIG_PIVOT_ROOT | ||
49 | bool 'rdate' CONFIG_RDATE | ||
50 | bool 'swaponoff' CONFIG_SWAPONOFF | ||
51 | bool 'mount' CONFIG_MOUNT | ||
52 | if [ "$CONFIG_MOUNT" = "y" ]; then | ||
53 | bool ' Support mounting nfs file systems' CONFIG_NFSMOUNT | ||
54 | if [ "$CONFIG_FEATURE_USE_DEVPS_PATCH" = "n" ]; then | ||
55 | bool ' Use devmtab instead of /proc (needs a patched kernel)' CONFIG_FEATURE_USE_DEVPS_PATCH | ||
56 | fi | ||
57 | fi | ||
58 | bool 'umount' CONFIG_UMOUNT | ||
59 | if [ "$CONFIG_UMOUNT" = "y" ]; then | ||
60 | bool ' Support forced filesystem unmounting' CONFIG_FEATURE_MOUNT_FORCE | ||
61 | fi | ||
62 | if [ "$CONFIG_MOUNT" = "y" -o "$CONFIG_UMOUNT" = "y" ]; then | ||
63 | comment 'Common options for mount/umount' | ||
64 | bool ' Support for loop devices' CONFIG_FEATURE_MOUNT_LOOP | ||
65 | bool ' Support for a real /etc/mtab (instead of /proc/mounts)' CONFIG_FEATURE_MTAB_SUPPORT | ||
66 | fi | ||
67 | |||
68 | endmenu | ||
69 | |||