Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 1 | # |
| 2 | # For a description of the syntax of this configuration file, |
| 3 | # see scripts/kbuild/config-language.txt. |
| 4 | # |
| 5 | |
| 6 | menu "Linux System Utilities" |
| 7 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 8 | config DMESG |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 9 | bool "dmesg" |
| 10 | default n |
| 11 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 12 | dmesg is used to examine or control the kernel ring buffer. When the |
| 13 | Linux kernel prints messages to the system log, they are stored in |
| 14 | the kernel ring buffer. You can use dmesg to print the kernel's ring |
| 15 | buffer, clear the kernel ring buffer, change the size of the kernel |
| 16 | ring buffer, and change the priority level at which kernel messages |
| 17 | are also logged to the system console. Enable this option if you |
| 18 | wish to enable the 'dmesg' utility. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 19 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 20 | config FEATURE_DMESG_PRETTY |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 21 | bool "Pretty dmesg output" |
Rob Landley | 446129a | 2006-07-27 16:40:55 +0000 | [diff] [blame] | 22 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 23 | depends on DMESG |
Rob Landley | 446129a | 2006-07-27 16:40:55 +0000 | [diff] [blame] | 24 | help |
| 25 | If you wish to scrub the syslog level from the output, say 'Y' here. |
| 26 | The syslog level is a string prefixed to every line with the form "<#>". |
| 27 | |
| 28 | With this option you will see: |
| 29 | # dmesg |
| 30 | Linux version 2.6.17.4 ..... |
| 31 | BIOS-provided physical RAM map: |
| 32 | BIOS-e820: 0000000000000000 - 000000000009f000 (usable) |
| 33 | |
| 34 | Without this option you will see: |
| 35 | # dmesg |
| 36 | <5>Linux version 2.6.17.4 ..... |
| 37 | <6>BIOS-provided physical RAM map: |
| 38 | <6> BIOS-e820: 0000000000000000 - 000000000009f000 (usable) |
| 39 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 40 | config FBSET |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 41 | bool "fbset" |
| 42 | default n |
| 43 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 44 | fbset is used to show or change the settings of a Linux frame buffer |
| 45 | device. The frame buffer device provides a simple and unique |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 46 | interface to access a graphics display. Enable this option |
| 47 | if you wish to enable the 'fbset' utility. |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 48 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 49 | config FEATURE_FBSET_FANCY |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 50 | bool "Turn on extra fbset options" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 51 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 52 | depends on FBSET |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 53 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 54 | This option enables extended fbset options, allowing one to set the |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 55 | framebuffer size, color depth, etc. interface to access a graphics |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 56 | display. Enable this option if you wish to enable extended fbset |
| 57 | options. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 58 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 59 | config FEATURE_FBSET_READMODE |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 60 | bool "Turn on fbset readmode support" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 61 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 62 | depends on FBSET |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 63 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 64 | This option allows fbset to read the video mode database stored by |
| 65 | default as /etc/fb.modes, which can be used to set frame buffer |
| 66 | device to pre-defined video modes. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 67 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 68 | config FDFLUSH |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 69 | bool "fdflush" |
| 70 | default n |
| 71 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 72 | fdflush is only needed when changing media on slightly-broken |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 73 | removable media drives. It is used to make Linux believe that a |
| 74 | hardware disk-change switch has been actuated, which causes Linux to |
| 75 | forget anything it has cached from the previous media. If you have |
| 76 | such a slightly-broken drive, you will need to run fdflush every time |
| 77 | you change a disk. Most people have working hardware and can safely |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 78 | leave this disabled. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 79 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 80 | config FDFORMAT |
Eric Andersen | 01c3d40 | 2003-07-05 07:51:31 +0000 | [diff] [blame] | 81 | bool "fdformat" |
| 82 | default n |
| 83 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 84 | fdformat is used to low-level format a floppy disk. |
Eric Andersen | 01c3d40 | 2003-07-05 07:51:31 +0000 | [diff] [blame] | 85 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 86 | config FDISK |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 87 | bool "fdisk" |
| 88 | default n |
| 89 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 90 | The fdisk utility is used to divide hard disks into one or more |
| 91 | logical disks, which are generally called partitions. This utility |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 92 | can be used to list and edit the set of partitions or BSD style |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 93 | 'disk slices' that are defined on a hard drive. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 94 | |
Eric Andersen | 84bdea8 | 2004-05-19 10:49:17 +0000 | [diff] [blame] | 95 | config FDISK_SUPPORT_LARGE_DISKS |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 96 | bool "Support over 4GB disks" |
Eric Andersen | 84bdea8 | 2004-05-19 10:49:17 +0000 | [diff] [blame] | 97 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 98 | depends on FDISK |
Eric Andersen | 84bdea8 | 2004-05-19 10:49:17 +0000 | [diff] [blame] | 99 | help |
| 100 | Enable this option to support large disks > 4GB. |
| 101 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 102 | config FEATURE_FDISK_WRITABLE |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 103 | bool "Write support" |
Glenn L McGrath | 4dcc2dd | 2003-01-04 11:56:06 +0000 | [diff] [blame] | 104 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 105 | depends on FDISK |
Glenn L McGrath | 4dcc2dd | 2003-01-04 11:56:06 +0000 | [diff] [blame] | 106 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 107 | Enabling this option allows you to create or change a partition table |
| 108 | and write those changes out to disk. If you leave this option |
| 109 | disabled, you will only be able to view the partition table. |
Glenn L McGrath | 4dcc2dd | 2003-01-04 11:56:06 +0000 | [diff] [blame] | 110 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 111 | config FEATURE_AIX_LABEL |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 112 | bool "Support AIX disklabels" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 113 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 114 | depends on FDISK && FEATURE_FDISK_WRITABLE |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 115 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 116 | Enabling this option allows you to create or change AIX disklabels. |
| 117 | Most people can safely leave this option disabled. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 118 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 119 | config FEATURE_SGI_LABEL |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 120 | bool "Support SGI disklabels" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 121 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 122 | depends on FDISK && FEATURE_FDISK_WRITABLE |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 123 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 124 | Enabling this option allows you to create or change SGI disklabels. |
| 125 | Most people can safely leave this option disabled. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 126 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 127 | config FEATURE_SUN_LABEL |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 128 | bool "Support SUN disklabels" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 129 | default n |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 130 | depends on FDISK && FEATURE_FDISK_WRITABLE |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 131 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 132 | Enabling this option allows you to create or change SUN disklabels. |
| 133 | Most people can safely leave this option disabled. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 134 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 135 | config FEATURE_OSF_LABEL |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 136 | bool "Support BSD disklabels" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 137 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 138 | depends on FDISK && FEATURE_FDISK_WRITABLE |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 139 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 140 | Enabling this option allows you to create or change BSD disklabels |
| 141 | and define and edit BSD disk slices. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 142 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 143 | config FEATURE_FDISK_ADVANCED |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 144 | bool "Support expert mode" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 145 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 146 | depends on FDISK && FEATURE_FDISK_WRITABLE |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 147 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 148 | Enabling this option allows you to do terribly unsafe things like |
| 149 | define arbitrary drive geometry, move the beginning of data in a |
| 150 | partition, and similarly evil things. Unless you have a very good |
| 151 | reason you would be wise to leave this disabled. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 152 | |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 153 | config FINDFS |
| 154 | bool "findfs" |
| 155 | default n |
| 156 | select VOLUMEID |
| 157 | help |
| 158 | This is similar to the findfs program that is part of the e2fsprogs |
| 159 | package. However, the e2fsprogs version only support ext2/3. This |
| 160 | version supports those in addition to FAT, swap, and ReiserFS. |
| 161 | WARNING: |
Denis Vlasenko | d25c33f | 2008-03-17 09:25:05 +0000 | [diff] [blame] | 162 | With all submodules selected, it will add ~8k to busybox. |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 163 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 164 | config FREERAMDISK |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 165 | bool "freeramdisk" |
| 166 | default n |
| 167 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 168 | Linux allows you to create ramdisks. This utility allows you to |
| 169 | delete them and completely free all memory that was used for the |
| 170 | ramdisk. For example, if you boot Linux into a ramdisk and later |
| 171 | pivot_root, you may want to free the memory that is allocated to the |
| 172 | ramdisk. If you have no use for freeing memory from a ramdisk, leave |
| 173 | this disabled. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 174 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 175 | config FSCK_MINIX |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 176 | bool "fsck_minix" |
| 177 | default n |
| 178 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 179 | The minix filesystem is a nice, small, compact, read-write filesystem |
| 180 | with little overhead. It is not a journaling filesystem however and |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 181 | can experience corruption if it is not properly unmounted or if the |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 182 | power goes off in the middle of a write. This utility allows you to |
| 183 | check for and attempt to repair any corruption that occurs to a minix |
| 184 | filesystem. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 185 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 186 | config MKFS_MINIX |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 187 | bool "mkfs_minix" |
| 188 | default n |
| 189 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 190 | The minix filesystem is a nice, small, compact, read-write filesystem |
| 191 | with little overhead. If you wish to be able to create minix filesystems |
| 192 | this utility will do the job for you. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 193 | |
| 194 | comment "Minix filesystem support" |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 195 | depends on FSCK_MINIX || MKFS_MINIX |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 196 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 197 | config FEATURE_MINIX2 |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 198 | bool "Support Minix fs v2 (fsck_minix/mkfs_minix)" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 199 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 200 | depends on FSCK_MINIX || MKFS_MINIX |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 201 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 202 | If you wish to be able to create version 2 minix filesystems, enable this. |
| 203 | If you enabled 'mkfs_minix' then you almost certainly want to be using the |
| 204 | version 2 filesystem support. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 205 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 206 | config GETOPT |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 207 | bool "getopt" |
| 208 | default n |
| 209 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 210 | The getopt utility is used to break up (parse) options in command |
| 211 | lines to make it easy to write complex shell scripts that also check |
| 212 | for legal (and illegal) options. If you want to write horribly |
| 213 | complex shell scripts, or use some horribly complex shell script |
| 214 | written by others, this utility may be for you. Most people will |
| 215 | wisely leave this disabled. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 216 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 217 | config HEXDUMP |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 218 | bool "hexdump" |
| 219 | default n |
| 220 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 221 | The hexdump utility is used to display binary data in a readable |
| 222 | way that is comparable to the output from most hex editors. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 223 | |
Denis Vlasenko | fbe5f39 | 2007-11-18 05:36:50 +0000 | [diff] [blame] | 224 | config FEATURE_HEXDUMP_REVERSE |
| 225 | bool "Support -R, reverse of 'hexdump -Cv'" |
| 226 | default n |
| 227 | depends on HEXDUMP |
| 228 | help |
| 229 | The hexdump utility is used to display binary data in an ascii |
| 230 | readable way. This option creates binary data from an ascii input. |
| 231 | NB: this option is non-standard. It's unwise to use it in scripts |
| 232 | aimed to be portable. |
| 233 | |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 234 | config HD |
| 235 | bool "hd" |
| 236 | default n |
| 237 | select HEXDUMP |
| 238 | help |
| 239 | hd is an alias to hexdump -C. |
| 240 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 241 | config HWCLOCK |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 242 | bool "hwclock" |
| 243 | default n |
| 244 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 245 | The hwclock utility is used to read and set the hardware clock |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 246 | on a system. This is primarily used to set the current time on |
| 247 | shutdown in the hardware clock, so the hardware will keep the |
| 248 | correct time when Linux is _not_ running. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 249 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 250 | config FEATURE_HWCLOCK_LONG_OPTIONS |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 251 | bool "Support long options (--hctosys,...)" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 252 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 253 | depends on HWCLOCK && GETOPT_LONG |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 254 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 255 | By default, the hwclock utility only uses short options. If you |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 256 | are overly fond of its long options, such as --hctosys, --utc, etc) |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 257 | then enable this option. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 258 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 259 | config FEATURE_HWCLOCK_ADJTIME_FHS |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 260 | bool "Use FHS /var/lib/hwclock/adjtime" |
Mike Frysinger | 747fc5d | 2005-09-28 03:21:21 +0000 | [diff] [blame] | 261 | default y |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 262 | depends on HWCLOCK |
Mike Frysinger | 747fc5d | 2005-09-28 03:21:21 +0000 | [diff] [blame] | 263 | help |
| 264 | Starting with FHS 2.3, the adjtime state file is supposed to exist |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 265 | at /var/lib/hwclock/adjtime instead of /etc/adjtime. If you wish |
Mike Frysinger | 747fc5d | 2005-09-28 03:21:21 +0000 | [diff] [blame] | 266 | to use the FHS behavior, answer Y here, otherwise answer N for the |
| 267 | classic /etc/adjtime path. |
| 268 | |
| 269 | http://www.pathname.com/fhs/pub/fhs-2.3.html#VARLIBHWCLOCKSTATEDIRECTORYFORHWCLO |
| 270 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 271 | config IPCRM |
Rob Landley | 6eb1e41 | 2005-06-20 04:30:36 +0000 | [diff] [blame] | 272 | bool "ipcrm" |
| 273 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 274 | select FEATURE_SUID |
Rob Landley | 6eb1e41 | 2005-06-20 04:30:36 +0000 | [diff] [blame] | 275 | help |
| 276 | The ipcrm utility allows the removal of System V interprocess |
| 277 | communication (IPC) objects and the associated data structures |
| 278 | from the system. |
| 279 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 280 | config IPCS |
Rob Landley | 6eb1e41 | 2005-06-20 04:30:36 +0000 | [diff] [blame] | 281 | bool "ipcs" |
| 282 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 283 | select FEATURE_SUID |
Rob Landley | 6eb1e41 | 2005-06-20 04:30:36 +0000 | [diff] [blame] | 284 | help |
| 285 | The ipcs utility is used to provide information on the currently |
| 286 | allocated System V interprocess (IPC) objects in the system. |
| 287 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 288 | config LOSETUP |
Mike Frysinger | 75aa192 | 2005-09-24 23:12:38 +0000 | [diff] [blame] | 289 | bool "losetup" |
| 290 | default n |
| 291 | help |
| 292 | losetup is used to associate or detach a loop device with a regular |
| 293 | file or block device, and to query the status of a loop device. This |
| 294 | version does not currently support enabling data encryption. |
| 295 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 296 | config MDEV |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 297 | bool "mdev" |
| 298 | default n |
| 299 | help |
Mike Frysinger | ae30210 | 2007-02-14 13:20:29 +0000 | [diff] [blame] | 300 | mdev is a mini-udev implementation for dynamically creating device |
| 301 | nodes in the /dev directory. |
| 302 | |
| 303 | For more information, please see docs/mdev.txt |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 304 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 305 | config FEATURE_MDEV_CONF |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 306 | bool "Support /etc/mdev.conf" |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 307 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 308 | depends on MDEV |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 309 | help |
Mike Frysinger | ae30210 | 2007-02-14 13:20:29 +0000 | [diff] [blame] | 310 | Add support for the mdev config file to control ownership and |
| 311 | permissions of the device nodes. |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 312 | |
Mike Frysinger | ae30210 | 2007-02-14 13:20:29 +0000 | [diff] [blame] | 313 | For more information, please see docs/mdev.txt |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 314 | |
Mike Frysinger | f0044c4 | 2008-02-01 06:53:50 +0000 | [diff] [blame] | 315 | config FEATURE_MDEV_RENAME |
| 316 | bool "Support subdirs/symlinks" |
| 317 | default n |
| 318 | depends on FEATURE_MDEV_CONF |
| 319 | help |
| 320 | Add support for renaming devices and creating symlinks. |
| 321 | |
| 322 | For more information, please see docs/mdev.txt |
| 323 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 324 | config FEATURE_MDEV_EXEC |
Rob Landley | ef10d52 | 2006-06-26 14:11:33 +0000 | [diff] [blame] | 325 | bool "Support command execution at device addition/removal" |
| 326 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 327 | depends on FEATURE_MDEV_CONF |
Rob Landley | ef10d52 | 2006-06-26 14:11:33 +0000 | [diff] [blame] | 328 | help |
Mike Frysinger | ae30210 | 2007-02-14 13:20:29 +0000 | [diff] [blame] | 329 | This adds support for an optional field to /etc/mdev.conf for |
| 330 | executing commands when devices are created/removed. |
Rob Landley | ef10d52 | 2006-06-26 14:11:33 +0000 | [diff] [blame] | 331 | |
Mike Frysinger | ae30210 | 2007-02-14 13:20:29 +0000 | [diff] [blame] | 332 | For more information, please see docs/mdev.txt |
Rob Landley | ef10d52 | 2006-06-26 14:11:33 +0000 | [diff] [blame] | 333 | |
Mike Frysinger | a78ef2c | 2007-06-13 07:34:15 +0000 | [diff] [blame] | 334 | config FEATURE_MDEV_LOAD_FIRMWARE |
| 335 | bool "Support loading of firmwares" |
| 336 | default n |
| 337 | depends on MDEV |
| 338 | help |
| 339 | Some devices need to load firmware before they can be usable. |
| 340 | |
| 341 | These devices will request userspace look up the files in |
| 342 | /lib/firmware/ and if it exists, send it to the kernel for |
| 343 | loading into the hardware. |
| 344 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 345 | config MKSWAP |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 346 | bool "mkswap" |
| 347 | default n |
| 348 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 349 | The mkswap utility is used to configure a file or disk partition as |
| 350 | Linux swap space. This allows Linux to use the entire file or |
| 351 | partition as if it were additional RAM, which can greatly increase |
| 352 | the capability of low-memory machines. This additional memory is |
| 353 | much slower than real RAM, but can be very helpful at preventing your |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 354 | applications being killed by the Linux out of memory (OOM) killer. |
| 355 | Once you have created swap space using 'mkswap' you need to enable |
| 356 | the swap space using the 'swapon' utility. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 357 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 358 | config FEATURE_MKSWAP_V0 |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 359 | bool "Version 0 support" |
Bernhard Reutner-Fischer | 56dd0bf | 2006-03-29 17:32:24 +0000 | [diff] [blame] | 360 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 361 | depends on MKSWAP |
| 362 | # depends on MKSWAP && DEPRECATED |
Bernhard Reutner-Fischer | 56dd0bf | 2006-03-29 17:32:24 +0000 | [diff] [blame] | 363 | help |
| 364 | Enable support for the old v0 style. |
| 365 | If your kernel is older than 2.1.117, then v0 support is the |
| 366 | only option. |
| 367 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 368 | config MORE |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 369 | bool "more" |
| 370 | default n |
| 371 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 372 | more is a simple utility which allows you to read text one screen |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 373 | sized page at a time. If you want to read text that is larger than |
| 374 | the screen, and you are using anything faster than a 300 baud modem, |
| 375 | you will probably find this utility very helpful. If you don't have |
| 376 | any need to reading text files, you can leave this disabled. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 377 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 378 | config FEATURE_USE_TERMIOS |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 379 | bool "Use termios to manipulate the screen" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 380 | default y |
Paul Fox | 9e1f92d | 2008-03-20 16:04:36 +0000 | [diff] [blame] | 381 | depends on MORE || TOP |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 382 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 383 | This option allows utilities such as 'more' and 'top' to determine |
| 384 | the size of the screen. If you leave this disabled, your utilities |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 385 | that display things on the screen will be especially primitive and |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 386 | will be unable to determine the current screen size, and will be |
| 387 | unable to move the cursor. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 388 | |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 389 | config VOLUMEID |
| 390 | bool "Routines for detecting label and uuid on common filesystems" |
| 391 | default n |
| 392 | help |
| 393 | TODO |
| 394 | |
| 395 | config FEATURE_VOLUMEID_EXT |
| 396 | bool "Ext filesystem" |
| 397 | default n |
| 398 | depends on VOLUMEID |
| 399 | help |
| 400 | TODO |
| 401 | |
| 402 | config FEATURE_VOLUMEID_REISERFS |
| 403 | bool "Reiser filesystem" |
| 404 | default n |
| 405 | depends on VOLUMEID |
| 406 | help |
| 407 | TODO |
| 408 | |
| 409 | config FEATURE_VOLUMEID_FAT |
| 410 | bool "fat filesystem" |
| 411 | default n |
| 412 | depends on VOLUMEID |
| 413 | help |
| 414 | TODO |
| 415 | |
| 416 | config FEATURE_VOLUMEID_HFS |
| 417 | bool "hfs filesystem" |
| 418 | default n |
| 419 | depends on VOLUMEID |
| 420 | help |
| 421 | TODO |
| 422 | |
| 423 | config FEATURE_VOLUMEID_JFS |
| 424 | bool "jfs filesystem" |
| 425 | default n |
| 426 | depends on VOLUMEID |
| 427 | help |
| 428 | TODO |
| 429 | |
Denis Vlasenko | d25c33f | 2008-03-17 09:25:05 +0000 | [diff] [blame] | 430 | ### config FEATURE_VOLUMEID_UFS |
| 431 | ### bool "ufs filesystem" |
| 432 | ### default n |
| 433 | ### depends on VOLUMEID |
| 434 | ### help |
| 435 | ### TODO |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 436 | |
| 437 | config FEATURE_VOLUMEID_XFS |
| 438 | bool "xfs filesystem" |
| 439 | default n |
| 440 | depends on VOLUMEID |
| 441 | help |
| 442 | TODO |
| 443 | |
| 444 | config FEATURE_VOLUMEID_NTFS |
| 445 | bool "ntfs filesystem" |
| 446 | default n |
| 447 | depends on VOLUMEID |
| 448 | help |
| 449 | TODO |
| 450 | |
| 451 | config FEATURE_VOLUMEID_ISO9660 |
| 452 | bool "iso9660 filesystem" |
| 453 | default n |
| 454 | depends on VOLUMEID |
| 455 | help |
| 456 | TODO |
| 457 | |
| 458 | config FEATURE_VOLUMEID_UDF |
| 459 | bool "udf filesystem" |
| 460 | default n |
| 461 | depends on VOLUMEID |
| 462 | help |
| 463 | TODO |
| 464 | |
| 465 | config FEATURE_VOLUMEID_LUKS |
| 466 | bool "luks filesystem" |
| 467 | default n |
| 468 | depends on VOLUMEID |
| 469 | help |
| 470 | TODO |
| 471 | |
| 472 | config FEATURE_VOLUMEID_LINUXSWAP |
| 473 | bool "linux swap filesystem" |
| 474 | default n |
| 475 | depends on VOLUMEID |
| 476 | help |
| 477 | TODO |
| 478 | |
Denis Vlasenko | d25c33f | 2008-03-17 09:25:05 +0000 | [diff] [blame] | 479 | ### config FEATURE_VOLUMEID_LVM |
| 480 | ### bool "lvm" |
| 481 | ### default n |
| 482 | ### depends on VOLUMEID |
| 483 | ### help |
| 484 | ### TODO |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 485 | |
| 486 | config FEATURE_VOLUMEID_CRAMFS |
| 487 | bool "cramfs filesystem" |
| 488 | default n |
| 489 | depends on VOLUMEID |
| 490 | help |
| 491 | TODO |
| 492 | |
Denis Vlasenko | d25c33f | 2008-03-17 09:25:05 +0000 | [diff] [blame] | 493 | ### config FEATURE_VOLUMEID_HPFS |
| 494 | ### bool "hpfs filesystem" |
| 495 | ### default n |
| 496 | ### depends on VOLUMEID |
| 497 | ### help |
| 498 | ### TODO |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 499 | |
| 500 | config FEATURE_VOLUMEID_ROMFS |
| 501 | bool "romfs filesystem" |
| 502 | default n |
| 503 | depends on VOLUMEID |
| 504 | help |
| 505 | TODO |
| 506 | |
| 507 | config FEATURE_VOLUMEID_SYSV |
| 508 | bool "sysv filesystem" |
| 509 | default n |
| 510 | depends on VOLUMEID |
| 511 | help |
| 512 | TODO |
| 513 | |
Denis Vlasenko | d25c33f | 2008-03-17 09:25:05 +0000 | [diff] [blame] | 514 | ### config FEATURE_VOLUMEID_MINIX |
| 515 | ### bool "minix filesystem" |
| 516 | ### default n |
| 517 | ### depends on VOLUMEID |
| 518 | ### help |
| 519 | ### TODO |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 520 | |
Denis Vlasenko | c5b7372 | 2008-03-17 09:21:26 +0000 | [diff] [blame] | 521 | ### These only detect partition tables - not used (yet?) |
| 522 | ### config FEATURE_VOLUMEID_MAC |
Denis Vlasenko | d25c33f | 2008-03-17 09:25:05 +0000 | [diff] [blame] | 523 | ### bool "mac filesystem" |
| 524 | ### default n |
| 525 | ### depends on VOLUMEID |
| 526 | ### help |
| 527 | ### TODO |
Denis Vlasenko | c5b7372 | 2008-03-17 09:21:26 +0000 | [diff] [blame] | 528 | ### |
| 529 | ### config FEATURE_VOLUMEID_MSDOS |
Denis Vlasenko | d25c33f | 2008-03-17 09:25:05 +0000 | [diff] [blame] | 530 | ### bool "msdos filesystem" |
| 531 | ### default n |
| 532 | ### depends on VOLUMEID |
| 533 | ### help |
| 534 | ### TODO |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 535 | |
| 536 | config FEATURE_VOLUMEID_OCFS2 |
| 537 | bool "ocfs2 filesystem" |
| 538 | default n |
| 539 | depends on VOLUMEID |
| 540 | help |
| 541 | TODO |
| 542 | |
Denis Vlasenko | d25c33f | 2008-03-17 09:25:05 +0000 | [diff] [blame] | 543 | ### config FEATURE_VOLUMEID_HIGHPOINTRAID |
| 544 | ### bool "highpoint raid" |
| 545 | ### default n |
| 546 | ### depends on VOLUMEID |
| 547 | ### help |
| 548 | ### TODO |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 549 | |
Denis Vlasenko | d25c33f | 2008-03-17 09:25:05 +0000 | [diff] [blame] | 550 | ### config FEATURE_VOLUMEID_ISWRAID |
| 551 | ### bool "intel raid" |
| 552 | ### default n |
| 553 | ### depends on VOLUMEID |
| 554 | ### help |
| 555 | ### TODO |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 556 | |
Denis Vlasenko | d25c33f | 2008-03-17 09:25:05 +0000 | [diff] [blame] | 557 | ### config FEATURE_VOLUMEID_LSIRAID |
| 558 | ### bool "lsi raid" |
| 559 | ### default n |
| 560 | ### depends on VOLUMEID |
| 561 | ### help |
| 562 | ### TODO |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 563 | |
Denis Vlasenko | d25c33f | 2008-03-17 09:25:05 +0000 | [diff] [blame] | 564 | ### config FEATURE_VOLUMEID_VIARAID |
| 565 | ### bool "via raid" |
| 566 | ### default n |
| 567 | ### depends on VOLUMEID |
| 568 | ### help |
| 569 | ### TODO |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 570 | |
Denis Vlasenko | d25c33f | 2008-03-17 09:25:05 +0000 | [diff] [blame] | 571 | ### config FEATURE_VOLUMEID_SILICONRAID |
| 572 | ### bool "silicon raid" |
| 573 | ### default n |
| 574 | ### depends on VOLUMEID |
| 575 | ### help |
| 576 | ### TODO |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 577 | |
Denis Vlasenko | d25c33f | 2008-03-17 09:25:05 +0000 | [diff] [blame] | 578 | ### config FEATURE_VOLUMEID_NVIDIARAID |
| 579 | ### bool "nvidia raid" |
| 580 | ### default n |
| 581 | ### depends on VOLUMEID |
| 582 | ### help |
| 583 | ### TODO |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 584 | |
Denis Vlasenko | d25c33f | 2008-03-17 09:25:05 +0000 | [diff] [blame] | 585 | ### config FEATURE_VOLUMEID_PROMISERAID |
| 586 | ### bool "promise raid" |
| 587 | ### default n |
| 588 | ### depends on VOLUMEID |
| 589 | ### help |
| 590 | ### TODO |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 591 | |
| 592 | config FEATURE_VOLUMEID_LINUXRAID |
| 593 | bool "linuxraid" |
| 594 | default n |
| 595 | depends on VOLUMEID |
| 596 | help |
| 597 | TODO |
| 598 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 599 | config MOUNT |
Mike Frysinger | 5509228 | 2006-02-02 23:14:57 +0000 | [diff] [blame] | 600 | bool "mount" |
| 601 | default n |
| 602 | help |
| 603 | All files and filesystems in Unix are arranged into one big directory |
| 604 | tree. The 'mount' utility is used to graft a filesystem onto a |
| 605 | particular part of the tree. A filesystem can either live on a block |
| 606 | device, or it can be accessible over the network, as is the case with |
| 607 | NFS filesystems. Most people using BusyBox will also want to enable |
| 608 | the 'mount' utility. |
| 609 | |
Denis Vlasenko | b1d8e7d | 2008-02-16 23:28:42 +0000 | [diff] [blame] | 610 | config FEATURE_MOUNT_FAKE |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 611 | bool "Support option -f" |
Denis Vlasenko | b1d8e7d | 2008-02-16 23:28:42 +0000 | [diff] [blame] | 612 | default n |
| 613 | depends on MOUNT |
| 614 | help |
| 615 | Enable support for faking a file system mount. |
| 616 | |
Denis Vlasenko | f732e96 | 2008-02-18 12:07:49 +0000 | [diff] [blame] | 617 | config FEATURE_MOUNT_VERBOSE |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 618 | bool "Support option -v" |
Denis Vlasenko | f732e96 | 2008-02-18 12:07:49 +0000 | [diff] [blame] | 619 | default n |
| 620 | depends on MOUNT |
| 621 | help |
| 622 | Enable multi-level -v[vv...] verbose messages. Useful if you |
| 623 | debug mount problems and want to see what is exactly passed |
| 624 | to the kernel. |
| 625 | |
Denis Vlasenko | 2535f12 | 2007-09-15 13:28:30 +0000 | [diff] [blame] | 626 | config FEATURE_MOUNT_HELPERS |
| 627 | bool "Support mount helpers" |
| 628 | default n |
| 629 | depends on MOUNT |
| 630 | help |
| 631 | Enable mounting of virtual file systems via external helpers. |
Denis Vlasenko | 32d49bc | 2008-02-03 23:52:41 +0000 | [diff] [blame] | 632 | E.g. "mount obexfs#-b00.11.22.33.44.55 /mnt" will in effect call |
| 633 | "obexfs -b00.11.22.33.44.55 /mnt" |
| 634 | Also "mount -t sometype [-o opts] fs /mnt" will try |
| 635 | "sometype [-o opts] fs /mnt" if simple mount syscall fails. |
| 636 | The idea is to use such virtual filesystems in /etc/fstab. |
Denis Vlasenko | 2535f12 | 2007-09-15 13:28:30 +0000 | [diff] [blame] | 637 | |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 638 | config FEATURE_MOUNT_LABEL |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 639 | bool "Support specifiying devices by label or UUID" |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 640 | default n |
| 641 | depends on MOUNT |
Denis Vlasenko | 4824cca | 2008-03-21 18:29:01 +0000 | [diff] [blame^] | 642 | select VOLUMEID |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 643 | help |
| 644 | This allows for specifying a device by label or uuid, rather than by |
| 645 | name. This feature utilizes the same functionality as findfs. |
| 646 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 647 | config FEATURE_MOUNT_NFS |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 648 | bool "Support mounting NFS file systems" |
Mike Frysinger | 5509228 | 2006-02-02 23:14:57 +0000 | [diff] [blame] | 649 | default n |
Denis Vlasenko | a7825f2 | 2007-06-16 13:56:51 +0000 | [diff] [blame] | 650 | depends on MOUNT |
| 651 | select FEATURE_HAVE_RPC |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 652 | select FEATURE_SYSLOG |
Mike Frysinger | 5509228 | 2006-02-02 23:14:57 +0000 | [diff] [blame] | 653 | help |
Rob Landley | e3781b7 | 2006-08-08 01:39:49 +0000 | [diff] [blame] | 654 | Enable mounting of NFS file systems. |
| 655 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 656 | config FEATURE_MOUNT_CIFS |
Rob Landley | 89d9d4d | 2006-09-01 08:10:44 +0000 | [diff] [blame] | 657 | bool "Support mounting CIFS/SMB file systems" |
| 658 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 659 | depends on MOUNT |
Rob Landley | 89d9d4d | 2006-09-01 08:10:44 +0000 | [diff] [blame] | 660 | help |
| 661 | Enable support for samba mounts. |
Denis Vlasenko | 39e93cc | 2006-09-10 18:38:17 +0000 | [diff] [blame] | 662 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 663 | config FEATURE_MOUNT_FLAGS |
| 664 | depends on MOUNT |
Denis Vlasenko | 39e93cc | 2006-09-10 18:38:17 +0000 | [diff] [blame] | 665 | bool "Support lots of -o flags in mount" |
Rob Landley | e3781b7 | 2006-08-08 01:39:49 +0000 | [diff] [blame] | 666 | default y |
| 667 | help |
| 668 | Without this, mount only supports ro/rw/remount. With this, it |
| 669 | supports nosuid, suid, dev, nodev, exec, noexec, sync, async, atime, |
| 670 | noatime, diratime, nodiratime, loud, bind, move, shared, slave, |
| 671 | private, unbindable, rshared, rslave, rprivate, and runbindable. |
| 672 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 673 | config FEATURE_MOUNT_FSTAB |
| 674 | depends on MOUNT |
Rob Landley | e3781b7 | 2006-08-08 01:39:49 +0000 | [diff] [blame] | 675 | bool "Support /etc/fstab and -a" |
| 676 | default y |
| 677 | help |
| 678 | Support mount all and looking for files in /etc/fstab. |
Mike Frysinger | 5509228 | 2006-02-02 23:14:57 +0000 | [diff] [blame] | 679 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 680 | config PIVOT_ROOT |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 681 | bool "pivot_root" |
| 682 | default n |
| 683 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 684 | The pivot_root utility swaps the mount points for the root filesystem |
| 685 | with some other mounted filesystem. This allows you to do all sorts |
| 686 | of wild and crazy things with your Linux system and is far more |
| 687 | powerful than 'chroot'. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 688 | |
Rob Landley | 0f34a82 | 2005-10-27 22:55:50 +0000 | [diff] [blame] | 689 | Note: This is for initrd in linux 2.4. Under initramfs (introduced |
| 690 | in linux 2.6) use switch_root instead. |
| 691 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 692 | config RDATE |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 693 | bool "rdate" |
| 694 | default n |
| 695 | help |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 696 | The rdate utility allows you to synchronize the date and time of your |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 697 | system clock with the date and time of a remote networked system using |
| 698 | the RFC868 protocol, which is built into the inetd daemon on most |
| 699 | systems. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 700 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 701 | config READPROFILE |
Mike Frysinger | 75aa192 | 2005-09-24 23:12:38 +0000 | [diff] [blame] | 702 | bool "readprofile" |
| 703 | default n |
| 704 | help |
| 705 | This allows you to parse /proc/profile for basic profiling. |
| 706 | |
Mike Frysinger | 6b160e4 | 2008-02-15 02:27:19 +0000 | [diff] [blame] | 707 | config RTCWAKE |
| 708 | bool "rtcwake" |
| 709 | default n |
| 710 | help |
| 711 | Enter a system sleep state until specified wakeup time. |
| 712 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 713 | config SETARCH |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 714 | bool "setarch" |
| 715 | default n |
| 716 | help |
| 717 | The linux32 utility is used to create a 32bit environment for the |
| 718 | specified program (usually a shell). It only makes sense to have |
| 719 | this util on a system that supports both 64bit and 32bit userland |
| 720 | (like amd64/x86, ppc64/ppc, sparc64/sparc, etc...). |
| 721 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 722 | config SWAPONOFF |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 723 | bool "swaponoff" |
| 724 | default n |
| 725 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 726 | This option enables both the 'swapon' and the 'swapoff' utilities. |
| 727 | Once you have created some swap space using 'mkswap', you also need |
| 728 | to enable your swap space with the 'swapon' utility. The 'swapoff' |
| 729 | utility is used, typically at system shutdown, to disable any swap |
| 730 | space. If you are not using any swap space, you can leave this |
| 731 | option disabled. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 732 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 733 | config SWITCH_ROOT |
Mike Frysinger | 5509228 | 2006-02-02 23:14:57 +0000 | [diff] [blame] | 734 | bool "switch_root" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 735 | default n |
| 736 | help |
Mike Frysinger | 5509228 | 2006-02-02 23:14:57 +0000 | [diff] [blame] | 737 | The switch_root utility is used from initramfs to select a new |
| 738 | root device. Under initramfs, you have to use this instead of |
| 739 | pivot_root. (Stop reading here if you don't care why.) |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 740 | |
Mike Frysinger | 5509228 | 2006-02-02 23:14:57 +0000 | [diff] [blame] | 741 | Booting with initramfs extracts a gzipped cpio archive into rootfs |
| 742 | (which is a variant of ramfs/tmpfs). Because rootfs can't be moved |
| 743 | or unmounted*, pivot_root will not work from initramfs. Instead, |
| 744 | switch_root deletes everything out of rootfs (including itself), |
| 745 | does a mount --move that overmounts rootfs with the new root, and |
| 746 | then execs the specified init program. |
| 747 | |
| 748 | * Because the Linux kernel uses rootfs internally as the starting |
| 749 | and ending point for searching through the kernel's doubly linked |
| 750 | list of active mount points. That's why. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 751 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 752 | config UMOUNT |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 753 | bool "umount" |
| 754 | default n |
| 755 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 756 | When you want to remove a mounted filesystem from its current mount point, |
| 757 | for example when you are shutting down the system, the 'umount' utility is |
| 758 | the tool to use. If you enabled the 'mount' utility, you almost certainly |
| 759 | also want to enable 'umount'. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 760 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 761 | config FEATURE_UMOUNT_ALL |
Denis Vlasenko | 4ee7cd4 | 2008-03-17 09:13:22 +0000 | [diff] [blame] | 762 | bool "Support option -a" |
Rob Landley | cc6d8d3 | 2006-02-08 20:06:57 +0000 | [diff] [blame] | 763 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 764 | depends on UMOUNT |
Rob Landley | cc6d8d3 | 2006-02-08 20:06:57 +0000 | [diff] [blame] | 765 | help |
| 766 | Support -a option to unmount all currently mounted filesystems. |
| 767 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 768 | comment "Common options for mount/umount" |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 769 | depends on MOUNT || UMOUNT |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 770 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 771 | config FEATURE_MOUNT_LOOP |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 772 | bool "Support loopback mounts" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 773 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 774 | depends on MOUNT || UMOUNT |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 775 | help |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 776 | Enabling this feature allows automatic mounting of files (containing |
| 777 | filesystem images) via the linux kernel's loopback devices. The mount |
| 778 | command will detect you are trying to mount a file instead of a block |
| 779 | device, and transparently associate the file with a loopback device. |
| 780 | The umount command will also free that loopback device. |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 781 | |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 782 | You can still use the 'losetup' utility (to manually associate files |
Mike Frysinger | 71a6a4e | 2007-01-24 08:24:43 +0000 | [diff] [blame] | 783 | with loop devices) if you need to do something advanced, such as |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 784 | specify an offset or cryptographic options to the loopback device. |
| 785 | (If you don't want umount to free the loop device, use "umount -D".) |
Paul Fox | 3f6f317 | 2005-07-19 20:55:37 +0000 | [diff] [blame] | 786 | |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 787 | config FEATURE_MTAB_SUPPORT |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 788 | bool "Support for the old /etc/mtab file" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 789 | default n |
Denis Vlasenko | 7d219aa | 2006-10-05 10:17:08 +0000 | [diff] [blame] | 790 | depends on MOUNT || UMOUNT |
Denis Vlasenko | b1d8e7d | 2008-02-16 23:28:42 +0000 | [diff] [blame] | 791 | select FEATURE_MOUNT_FAKE |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 792 | help |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 793 | Historically, Unix systems kept track of the currently mounted |
| 794 | partitions in the file "/etc/mtab". These days, the kernel exports |
| 795 | the list of currently mounted partitions in "/proc/mounts", rendering |
| 796 | the old mtab file obsolete. (In modern systems, /etc/mtab should be |
| 797 | a symlink to /proc/mounts.) |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 798 | |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 799 | The only reason to have mount maintain an /etc/mtab file itself is if |
| 800 | your stripped-down embedded system does not have a /proc directory. |
| 801 | If you must use this, keep in mind it's inherently brittle (for |
| 802 | example a mount under chroot won't update it), can't handle modern |
| 803 | features like separate per-process filesystem namespaces, requires |
| 804 | that your /etc directory be writeable, tends to get easily confused |
Rob Landley | 17507fa | 2006-05-08 02:22:24 +0000 | [diff] [blame] | 805 | by --bind or --move mounts, won't update if you rename a directory |
| 806 | that contains a mount point, and so on. (In brief: avoid.) |
| 807 | |
| 808 | About the only reason to use this is if you've removed /proc from |
| 809 | your kernel. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 810 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 811 | endmenu |