Config.in 26 KB

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