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 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 8 | config CONFIG_DMESG |
| 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 | |
Rob Landley | 446129a | 2006-07-27 16:40:55 +0000 | [diff] [blame] | 20 | config CONFIG_FEATURE_DMESG_PRETTY |
| 21 | bool "pretty dmesg output" |
| 22 | default y |
| 23 | depends on CONFIG_DMESG |
| 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 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 40 | config CONFIG_FBSET |
| 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 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 49 | config 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 |
| 52 | depends on CONFIG_FBSET |
| 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 | |
| 59 | config 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 |
| 62 | depends on CONFIG_FBSET |
| 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 | |
| 68 | config CONFIG_FDFLUSH |
| 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 | |
Eric Andersen | 01c3d40 | 2003-07-05 07:51:31 +0000 | [diff] [blame] | 80 | config CONFIG_FDFORMAT |
| 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 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 86 | config CONFIG_FDISK |
| 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 |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 96 | bool "support over 4GB disks" |
Eric Andersen | 84bdea8 | 2004-05-19 10:49:17 +0000 | [diff] [blame] | 97 | default y |
| 98 | depends on CONFIG_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 | |
Glenn L McGrath | 4dcc2dd | 2003-01-04 11:56:06 +0000 | [diff] [blame] | 102 | config 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 |
| 105 | depends on CONFIG_FDISK |
| 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 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 111 | config 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 |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 114 | depends on CONFIG_FDISK && CONFIG_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 | |
| 119 | config 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 |
Glenn L McGrath | 4dcc2dd | 2003-01-04 11:56:06 +0000 | [diff] [blame] | 122 | depends on CONFIG_FDISK && CONFIG_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 | |
| 127 | config 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 |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 130 | depends on CONFIG_FDISK && CONFIG_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 | |
| 135 | config 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 |
Glenn L McGrath | 4dcc2dd | 2003-01-04 11:56:06 +0000 | [diff] [blame] | 138 | depends on CONFIG_FDISK && CONFIG_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 | |
| 143 | config 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 |
Glenn L McGrath | 4dcc2dd | 2003-01-04 11:56:06 +0000 | [diff] [blame] | 146 | depends on CONFIG_FDISK && CONFIG_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 | |
| 153 | config CONFIG_FREERAMDISK |
| 154 | bool "freeramdisk" |
| 155 | default n |
| 156 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 157 | Linux allows you to create ramdisks. This utility allows you to |
| 158 | delete them and completely free all memory that was used for the |
| 159 | ramdisk. For example, if you boot Linux into a ramdisk and later |
| 160 | pivot_root, you may want to free the memory that is allocated to the |
| 161 | ramdisk. If you have no use for freeing memory from a ramdisk, leave |
| 162 | this disabled. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 163 | |
| 164 | config CONFIG_FSCK_MINIX |
| 165 | bool "fsck_minix" |
| 166 | default n |
| 167 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 168 | The minix filesystem is a nice, small, compact, read-write filesystem |
| 169 | with little overhead. It is not a journaling filesystem however and |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 170 | can experience corruption if it is not properly unmounted or if the |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 171 | power goes off in the middle of a write. This utility allows you to |
| 172 | check for and attempt to repair any corruption that occurs to a minix |
| 173 | filesystem. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 174 | |
| 175 | config CONFIG_MKFS_MINIX |
| 176 | bool "mkfs_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. If you wish to be able to create minix filesystems |
| 181 | this utility will do the job for you. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 182 | |
| 183 | comment "Minix filesystem support" |
| 184 | depends on CONFIG_FSCK_MINIX || CONFIG_MKFS_MINIX |
| 185 | |
| 186 | config CONFIG_FEATURE_MINIX2 |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 187 | bool "Support Minix fs v2 (fsck_minix/mkfs_minix)" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 188 | default y |
| 189 | depends on CONFIG_FSCK_MINIX || CONFIG_MKFS_MINIX |
| 190 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 191 | If you wish to be able to create version 2 minix filesystems, enable this. |
| 192 | If you enabled 'mkfs_minix' then you almost certainly want to be using the |
| 193 | version 2 filesystem support. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 194 | |
| 195 | config CONFIG_GETOPT |
| 196 | bool "getopt" |
| 197 | default n |
| 198 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 199 | The getopt utility is used to break up (parse) options in command |
| 200 | lines to make it easy to write complex shell scripts that also check |
| 201 | for legal (and illegal) options. If you want to write horribly |
| 202 | complex shell scripts, or use some horribly complex shell script |
| 203 | written by others, this utility may be for you. Most people will |
| 204 | wisely leave this disabled. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 205 | |
| 206 | config CONFIG_HEXDUMP |
| 207 | bool "hexdump" |
| 208 | default n |
| 209 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 210 | The hexdump utility is used to display binary data in a readable |
| 211 | way that is comparable to the output from most hex editors. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 212 | |
| 213 | config CONFIG_HWCLOCK |
| 214 | bool "hwclock" |
| 215 | default n |
| 216 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 217 | The hwclock utility is used to read and set the hardware clock |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 218 | on a system. This is primarily used to set the current time on |
| 219 | shutdown in the hardware clock, so the hardware will keep the |
| 220 | correct time when Linux is _not_ running. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 221 | |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 222 | config CONFIG_FEATURE_HWCLOCK_LONG_OPTIONS |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 223 | bool "Support long options (--hctosys,...)" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 224 | default n |
Bernhard Reutner-Fischer | 01d23ad | 2006-05-26 20:19:22 +0000 | [diff] [blame] | 225 | depends on CONFIG_HWCLOCK && CONFIG_GETOPT_LONG |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 226 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 227 | By default, the hwclock utility only uses short options. If you |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 228 | are overly fond of its long options, such as --hctosys, --utc, etc) |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 229 | then enable this option. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 230 | |
Mike Frysinger | 747fc5d | 2005-09-28 03:21:21 +0000 | [diff] [blame] | 231 | config CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 232 | bool "Use FHS /var/lib/hwclock/adjtime" |
Mike Frysinger | 747fc5d | 2005-09-28 03:21:21 +0000 | [diff] [blame] | 233 | default y |
| 234 | depends on CONFIG_HWCLOCK |
| 235 | help |
| 236 | 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] | 237 | at /var/lib/hwclock/adjtime instead of /etc/adjtime. If you wish |
Mike Frysinger | 747fc5d | 2005-09-28 03:21:21 +0000 | [diff] [blame] | 238 | to use the FHS behavior, answer Y here, otherwise answer N for the |
| 239 | classic /etc/adjtime path. |
| 240 | |
| 241 | http://www.pathname.com/fhs/pub/fhs-2.3.html#VARLIBHWCLOCKSTATEDIRECTORYFORHWCLO |
| 242 | |
Rob Landley | 6eb1e41 | 2005-06-20 04:30:36 +0000 | [diff] [blame] | 243 | config CONFIG_IPCRM |
| 244 | bool "ipcrm" |
| 245 | default n |
Eric Andersen | 576db48 | 2005-06-23 18:58:57 +0000 | [diff] [blame] | 246 | select CONFIG_FEATURE_SUID |
Rob Landley | 6eb1e41 | 2005-06-20 04:30:36 +0000 | [diff] [blame] | 247 | help |
| 248 | The ipcrm utility allows the removal of System V interprocess |
| 249 | communication (IPC) objects and the associated data structures |
| 250 | from the system. |
| 251 | |
| 252 | config CONFIG_IPCS |
| 253 | bool "ipcs" |
| 254 | default n |
Eric Andersen | 576db48 | 2005-06-23 18:58:57 +0000 | [diff] [blame] | 255 | select CONFIG_FEATURE_SUID |
Rob Landley | 6eb1e41 | 2005-06-20 04:30:36 +0000 | [diff] [blame] | 256 | help |
| 257 | The ipcs utility is used to provide information on the currently |
| 258 | allocated System V interprocess (IPC) objects in the system. |
| 259 | |
Mike Frysinger | 75aa192 | 2005-09-24 23:12:38 +0000 | [diff] [blame] | 260 | config CONFIG_LOSETUP |
| 261 | bool "losetup" |
| 262 | default n |
| 263 | help |
| 264 | losetup is used to associate or detach a loop device with a regular |
| 265 | file or block device, and to query the status of a loop device. This |
| 266 | version does not currently support enabling data encryption. |
| 267 | |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 268 | config CONFIG_MDEV |
| 269 | bool "mdev" |
| 270 | default n |
| 271 | help |
| 272 | mdev is a mini-udev implementation: call it with -s to populate |
Mike Frysinger | 5509228 | 2006-02-02 23:14:57 +0000 | [diff] [blame] | 273 | /dev from /sys, then "echo /sbin/mdev > /proc/sys/kernel/hotplug" to |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 274 | have it handle hotplug events afterwards. Device names are taken |
| 275 | from sysfs. |
| 276 | |
Rob Landley | b56c285 | 2005-12-17 10:52:30 +0000 | [diff] [blame] | 277 | config CONFIG_FEATURE_MDEV_CONF |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 278 | bool "Support /etc/mdev.conf" |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 279 | default n |
| 280 | depends on CONFIG_MDEV |
| 281 | help |
| 282 | The mdev config file contains lines that look like: |
| 283 | |
| 284 | hd[a-z][0-9]* 0:3 660 |
| 285 | |
| 286 | That's device name (with regex match), uid:gid, and permissions. |
| 287 | |
Rob Landley | 70f7ef7 | 2005-12-13 08:21:33 +0000 | [diff] [blame] | 288 | Config file parsing stops on the first matching line. If no config |
| 289 | entry is matched, devices are created with default 0:0 660. (Make |
| 290 | the last line match .* to override this.) |
| 291 | |
Rob Landley | ef10d52 | 2006-06-26 14:11:33 +0000 | [diff] [blame] | 292 | config CONFIG_FEATURE_MDEV_EXEC |
| 293 | bool "Support command execution at device addition/removal" |
| 294 | default n |
| 295 | depends on CONFIG_FEATURE_MDEV_CONF |
| 296 | help |
| 297 | This adds support for an optional field to /etc/mdev.conf, consisting |
| 298 | of a special character and a command line to run after creating the |
| 299 | corresponding device(s) and before removing, ala: |
| 300 | |
| 301 | hdc root:cdrom 660 *ln -s $MDEV cdrom |
| 302 | |
| 303 | The $MDEV environment variable is set to the name of the device. |
| 304 | |
| 305 | The special characters and their meanings are: |
| 306 | @ Run after creating the device. |
| 307 | $ Run before removing the device. |
| 308 | * Run both after creating and before removing the device. |
| 309 | |
| 310 | Commands are executed via system() so you need /bin/sh, meaning you |
| 311 | probably want to select a default shell in the Shells menu. |
| 312 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 313 | config CONFIG_MKSWAP |
| 314 | bool "mkswap" |
| 315 | default n |
| 316 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 317 | The mkswap utility is used to configure a file or disk partition as |
| 318 | Linux swap space. This allows Linux to use the entire file or |
| 319 | partition as if it were additional RAM, which can greatly increase |
| 320 | the capability of low-memory machines. This additional memory is |
| 321 | 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] | 322 | applications being killed by the Linux out of memory (OOM) killer. |
| 323 | Once you have created swap space using 'mkswap' you need to enable |
| 324 | the swap space using the 'swapon' utility. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 325 | |
Bernhard Reutner-Fischer | 56dd0bf | 2006-03-29 17:32:24 +0000 | [diff] [blame] | 326 | config CONFIG_FEATURE_MKSWAP_V0 |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 327 | bool "version 0 support" |
Bernhard Reutner-Fischer | 56dd0bf | 2006-03-29 17:32:24 +0000 | [diff] [blame] | 328 | default n |
| 329 | depends on CONFIG_MKSWAP |
| 330 | # depends on CONFIG_MKSWAP && CONFIG_DEPRECATED |
| 331 | help |
| 332 | Enable support for the old v0 style. |
| 333 | If your kernel is older than 2.1.117, then v0 support is the |
| 334 | only option. |
| 335 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 336 | config CONFIG_MORE |
| 337 | bool "more" |
| 338 | default n |
| 339 | help |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 340 | 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] | 341 | sized page at a time. If you want to read text that is larger than |
| 342 | the screen, and you are using anything faster than a 300 baud modem, |
| 343 | you will probably find this utility very helpful. If you don't have |
| 344 | any need to reading text files, you can leave this disabled. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 345 | |
| 346 | config CONFIG_FEATURE_USE_TERMIOS |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 347 | bool "Use termios to manipulate the screen" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 348 | default y |
| 349 | depends on CONFIG_MORE |
| 350 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 351 | This option allows utilities such as 'more' and 'top' to determine |
| 352 | the size of the screen. If you leave this disabled, your utilities |
Eric Andersen | 88c916b | 2003-10-22 09:58:56 +0000 | [diff] [blame] | 353 | that display things on the screen will be especially primitive and |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 354 | will be unable to determine the current screen size, and will be |
| 355 | unable to move the cursor. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 356 | |
Mike Frysinger | 5509228 | 2006-02-02 23:14:57 +0000 | [diff] [blame] | 357 | config CONFIG_MOUNT |
| 358 | bool "mount" |
| 359 | default n |
| 360 | help |
| 361 | All files and filesystems in Unix are arranged into one big directory |
| 362 | tree. The 'mount' utility is used to graft a filesystem onto a |
| 363 | particular part of the tree. A filesystem can either live on a block |
| 364 | device, or it can be accessible over the network, as is the case with |
| 365 | NFS filesystems. Most people using BusyBox will also want to enable |
| 366 | the 'mount' utility. |
| 367 | |
| 368 | config CONFIG_FEATURE_MOUNT_NFS |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 369 | bool "Support mounting NFS file systems" |
Mike Frysinger | 5509228 | 2006-02-02 23:14:57 +0000 | [diff] [blame] | 370 | default n |
| 371 | depends on CONFIG_MOUNT |
| 372 | help |
Rob Landley | e3781b7 | 2006-08-08 01:39:49 +0000 | [diff] [blame] | 373 | Enable mounting of NFS file systems. |
| 374 | |
Rob Landley | 89d9d4d | 2006-09-01 08:10:44 +0000 | [diff] [blame] | 375 | config CONFIG_FEATURE_MOUNT_CIFS |
| 376 | bool "Support mounting CIFS/SMB file systems" |
| 377 | default n |
| 378 | depends on CONFIG_MOUNT |
| 379 | help |
| 380 | Enable support for samba mounts. |
Denis Vlasenko | 39e93cc | 2006-09-10 18:38:17 +0000 | [diff] [blame] | 381 | |
Rob Landley | e3781b7 | 2006-08-08 01:39:49 +0000 | [diff] [blame] | 382 | config CONFIG_FEATURE_MOUNT_FLAGS |
| 383 | depends on CONFIG_MOUNT |
Denis Vlasenko | 39e93cc | 2006-09-10 18:38:17 +0000 | [diff] [blame] | 384 | bool "Support lots of -o flags in mount" |
Rob Landley | e3781b7 | 2006-08-08 01:39:49 +0000 | [diff] [blame] | 385 | default y |
| 386 | help |
| 387 | Without this, mount only supports ro/rw/remount. With this, it |
| 388 | supports nosuid, suid, dev, nodev, exec, noexec, sync, async, atime, |
| 389 | noatime, diratime, nodiratime, loud, bind, move, shared, slave, |
| 390 | private, unbindable, rshared, rslave, rprivate, and runbindable. |
| 391 | |
| 392 | config CONFIG_FEATURE_MOUNT_FSTAB |
| 393 | depends on CONFIG_MOUNT |
| 394 | bool "Support /etc/fstab and -a" |
| 395 | default y |
| 396 | help |
| 397 | Support mount all and looking for files in /etc/fstab. |
Mike Frysinger | 5509228 | 2006-02-02 23:14:57 +0000 | [diff] [blame] | 398 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 399 | config CONFIG_PIVOT_ROOT |
| 400 | bool "pivot_root" |
| 401 | default n |
| 402 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 403 | The pivot_root utility swaps the mount points for the root filesystem |
| 404 | with some other mounted filesystem. This allows you to do all sorts |
| 405 | of wild and crazy things with your Linux system and is far more |
| 406 | powerful than 'chroot'. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 407 | |
Rob Landley | 0f34a82 | 2005-10-27 22:55:50 +0000 | [diff] [blame] | 408 | Note: This is for initrd in linux 2.4. Under initramfs (introduced |
| 409 | in linux 2.6) use switch_root instead. |
| 410 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 411 | config CONFIG_RDATE |
| 412 | bool "rdate" |
| 413 | default n |
| 414 | help |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 415 | 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] | 416 | system clock with the date and time of a remote networked system using |
| 417 | the RFC868 protocol, which is built into the inetd daemon on most |
| 418 | systems. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 419 | |
Mike Frysinger | 75aa192 | 2005-09-24 23:12:38 +0000 | [diff] [blame] | 420 | config CONFIG_READPROFILE |
| 421 | bool "readprofile" |
| 422 | default n |
| 423 | help |
| 424 | This allows you to parse /proc/profile for basic profiling. |
| 425 | |
Mike Frysinger | 0a6b0bf | 2006-02-21 04:26:52 +0000 | [diff] [blame] | 426 | config CONFIG_SETARCH |
| 427 | bool "setarch" |
| 428 | default n |
| 429 | help |
| 430 | The linux32 utility is used to create a 32bit environment for the |
| 431 | specified program (usually a shell). It only makes sense to have |
| 432 | this util on a system that supports both 64bit and 32bit userland |
| 433 | (like amd64/x86, ppc64/ppc, sparc64/sparc, etc...). |
| 434 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 435 | config CONFIG_SWAPONOFF |
| 436 | bool "swaponoff" |
| 437 | default n |
| 438 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 439 | This option enables both the 'swapon' and the 'swapoff' utilities. |
| 440 | Once you have created some swap space using 'mkswap', you also need |
| 441 | to enable your swap space with the 'swapon' utility. The 'swapoff' |
| 442 | utility is used, typically at system shutdown, to disable any swap |
| 443 | space. If you are not using any swap space, you can leave this |
| 444 | option disabled. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 445 | |
Mike Frysinger | 5509228 | 2006-02-02 23:14:57 +0000 | [diff] [blame] | 446 | config CONFIG_SWITCH_ROOT |
| 447 | bool "switch_root" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 448 | default n |
| 449 | help |
Mike Frysinger | 5509228 | 2006-02-02 23:14:57 +0000 | [diff] [blame] | 450 | The switch_root utility is used from initramfs to select a new |
| 451 | root device. Under initramfs, you have to use this instead of |
| 452 | pivot_root. (Stop reading here if you don't care why.) |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 453 | |
Mike Frysinger | 5509228 | 2006-02-02 23:14:57 +0000 | [diff] [blame] | 454 | Booting with initramfs extracts a gzipped cpio archive into rootfs |
| 455 | (which is a variant of ramfs/tmpfs). Because rootfs can't be moved |
| 456 | or unmounted*, pivot_root will not work from initramfs. Instead, |
| 457 | switch_root deletes everything out of rootfs (including itself), |
| 458 | does a mount --move that overmounts rootfs with the new root, and |
| 459 | then execs the specified init program. |
| 460 | |
| 461 | * Because the Linux kernel uses rootfs internally as the starting |
| 462 | and ending point for searching through the kernel's doubly linked |
| 463 | list of active mount points. That's why. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 464 | |
| 465 | config CONFIG_UMOUNT |
| 466 | bool "umount" |
| 467 | default n |
| 468 | help |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 469 | When you want to remove a mounted filesystem from its current mount point, |
| 470 | for example when you are shutting down the system, the 'umount' utility is |
| 471 | the tool to use. If you enabled the 'mount' utility, you almost certainly |
| 472 | also want to enable 'umount'. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 473 | |
Rob Landley | cc6d8d3 | 2006-02-08 20:06:57 +0000 | [diff] [blame] | 474 | config CONFIG_FEATURE_UMOUNT_ALL |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 475 | bool "umount -a option" |
Rob Landley | cc6d8d3 | 2006-02-08 20:06:57 +0000 | [diff] [blame] | 476 | default n |
| 477 | depends on CONFIG_UMOUNT |
| 478 | help |
| 479 | Support -a option to unmount all currently mounted filesystems. |
| 480 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 481 | comment "Common options for mount/umount" |
| 482 | depends on CONFIG_MOUNT || CONFIG_UMOUNT |
| 483 | |
| 484 | config CONFIG_FEATURE_MOUNT_LOOP |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 485 | bool "Support loopback mounts" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 486 | default n |
| 487 | depends on CONFIG_MOUNT || CONFIG_UMOUNT |
| 488 | help |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 489 | Enabling this feature allows automatic mounting of files (containing |
| 490 | filesystem images) via the linux kernel's loopback devices. The mount |
| 491 | command will detect you are trying to mount a file instead of a block |
| 492 | device, and transparently associate the file with a loopback device. |
| 493 | The umount command will also free that loopback device. |
Tim Riker | c1ef7bd | 2006-01-25 00:08:53 +0000 | [diff] [blame] | 494 | |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 495 | You can still use the 'losetup' utility (to manually associate files |
| 496 | with loop devices) if you need to do something advanced, such as |
| 497 | specify an offset or cryptographic options to the loopback device. |
| 498 | (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] | 499 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 500 | config CONFIG_FEATURE_MTAB_SUPPORT |
Rob Landley | 2ec922e | 2006-04-13 23:22:16 +0000 | [diff] [blame] | 501 | bool "Support for the old /etc/mtab file" |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 502 | default n |
| 503 | depends on CONFIG_MOUNT || CONFIG_UMOUNT |
| 504 | help |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 505 | Historically, Unix systems kept track of the currently mounted |
| 506 | partitions in the file "/etc/mtab". These days, the kernel exports |
| 507 | the list of currently mounted partitions in "/proc/mounts", rendering |
| 508 | the old mtab file obsolete. (In modern systems, /etc/mtab should be |
| 509 | a symlink to /proc/mounts.) |
Eric Andersen | a0ac452 | 2003-02-27 03:14:04 +0000 | [diff] [blame] | 510 | |
Rob Landley | 6a6798b | 2005-08-10 20:35:54 +0000 | [diff] [blame] | 511 | The only reason to have mount maintain an /etc/mtab file itself is if |
| 512 | your stripped-down embedded system does not have a /proc directory. |
| 513 | If you must use this, keep in mind it's inherently brittle (for |
| 514 | example a mount under chroot won't update it), can't handle modern |
| 515 | features like separate per-process filesystem namespaces, requires |
| 516 | that your /etc directory be writeable, tends to get easily confused |
Rob Landley | 17507fa | 2006-05-08 02:22:24 +0000 | [diff] [blame] | 517 | by --bind or --move mounts, won't update if you rename a directory |
| 518 | that contains a mount point, and so on. (In brief: avoid.) |
| 519 | |
| 520 | About the only reason to use this is if you've removed /proc from |
| 521 | your kernel. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 522 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 523 | endmenu |
| 524 | |