Config.in 29 KB

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