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