Config.in 28 KB

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