3
0

Config.src 26 KB

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