Config.in 32 KB

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