Config.in 29 KB

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