Config.in.block 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. menu "Block devices support"
  2. config ADK_KERNEL_MD
  3. boolean
  4. default n
  5. config ADK_KERNEL_SWAP
  6. boolean
  7. default n
  8. config ADK_KERNEL_LBD
  9. boolean
  10. default n
  11. config ADK_KERNEL_BLK_DEV_IO_TRACE
  12. boolean
  13. default n
  14. config ADK_KERNEL_LSF
  15. boolean
  16. default n
  17. config ADK_KERNEL_IOSCHED_AS
  18. boolean
  19. default n
  20. config ADK_KERNEL_IOSCHED_DEADLINE
  21. boolean
  22. default n
  23. config ADK_KERNEL_IOSCHED_CFQ
  24. boolean
  25. default n
  26. config ADK_KERNEL_SCSI
  27. boolean
  28. default n
  29. config ADK_KERNEL_BLK_DEV_SD
  30. boolean
  31. default n
  32. config ADK_KERNEL_DM_CRYPT
  33. boolean
  34. default n
  35. config ADK_KERNEL_BLK_DEV_DM
  36. select ADK_KERNEL_MD
  37. depends on !ADK_LINUX_CRIS_FOXBOARD
  38. boolean
  39. default n
  40. config ADK_KERNEL_ATA
  41. boolean
  42. default n
  43. config ADK_KERNEL_SATA_AHCI
  44. tristate
  45. select ADK_KERNEL_BLOCK
  46. select ADK_KERNEL_ATA
  47. select ADK_KERNEL_BLK_DEV_SD
  48. depends on ADK_LINUX_X86_64_SHUTTLE
  49. default n
  50. config ADK_KPACKAGE_KMOD_SATA_AHCI
  51. prompt "kmod-sata-ahci.................... AHCI SATA driver"
  52. tristate
  53. select ADK_KERNEL_BLOCK
  54. select ADK_KERNEL_ATA
  55. select ADK_KERNEL_BLK_DEV_SD
  56. depends on !ADK_KERNEL_SATA_AHCI
  57. depends on ADK_LINUX_X86_64_SHUTTLE
  58. default n
  59. help
  60. Enables support for AHCI Serial ATA.
  61. #config ADK_KERNEL_IDE
  62. # boolean
  63. # default n
  64. #
  65. #config ADK_KPACKAGE_KMOD_BLK_DEV_IDE
  66. # prompt "kmod-ide.......................... IDE support"
  67. # tristate
  68. # select ADK_KERNEL_BLOCK
  69. # select ADK_KERNEL_IDE
  70. # default n
  71. # help
  72. # If you say Y here, you will use the full-featured IDE driver to
  73. # control up to ten ATA/IDE interfaces, each being able to serve a
  74. # "master" and a "slave" device, for a total of up to twenty ATA/IDE
  75. # disk/cdrom/tape/floppy drives.
  76. #
  77. # Useful information about large (>540 MB) IDE disks, multiple
  78. # interfaces, what to do if ATA/IDE devices are not automatically
  79. # detected, sound card ATA/IDE ports, module support, and other
  80. # topics, is contained in <file:Documentation/ide.txt>. For detailed
  81. # information about hard drives, consult the Disk-HOWTO and the
  82. # Multi-Disk-HOWTO, available from
  83. # <http://www.tldp.org/docs.html#howto>.
  84. #
  85. # To fine-tune ATA/IDE drive/interface parameters for improved
  86. # performance, look for the hdparm package at
  87. # <ftp://ibiblio.org/pub/Linux/system/hardware/>.
  88. #
  89. # To compile this driver as a module, choose M here and read
  90. # <file:Documentation/ide.txt>. The module will be called ide-mod.
  91. # Do not compile this driver as a module if your root file system (the
  92. # one containing the directory /) is located on an IDE device.
  93. config ADK_KPACKAGE_KMOD_BLK_DEV_LOOP
  94. prompt "kmod-loop......................... Loop mount support"
  95. tristate
  96. default n
  97. help
  98. Saying Y here will allow you to use a regular file as a block
  99. device; you can then create a file system on that block device and
  100. mount it just as you would mount other block devices such as hard
  101. drive partitions, CD-ROM drives or floppy drives. The loop devices
  102. are block special device files with major number 7 and typically
  103. called /dev/loop0, /dev/loop1 etc.
  104. This is useful if you want to check an ISO 9660 file system before
  105. burning the CD, or if you want to use floppy images without first
  106. writing them to floppy. Furthermore, some Linux distributions avoid
  107. the need for a dedicated Linux partition by keeping their complete
  108. root file system inside a DOS FAT file using this loop device
  109. driver.
  110. To use the loop device, you need the losetup utility, found in the
  111. util-linux package, see
  112. <ftp://ftp.kernel.org/pub/linux/utils/util-linux/>.
  113. The loop device driver can also be used to "hide" a file system in
  114. a disk partition, floppy, or regular file, either using encryption
  115. (scrambling the data) or steganography (hiding the data in the low
  116. bits of, say, a sound file). This is also safe if the file resides
  117. on a remote file server.
  118. There are several ways of encrypting disks. Some of these require
  119. kernel patches. The vanilla kernel offers the cryptoloop option
  120. and a Device Mapper target (which is superior, as it supports all
  121. file systems). If you want to use the cryptoloop, say Y to both
  122. LOOP and CRYPTOLOOP, and make sure you have a recent (version 2.12
  123. or later) version of util-linux. Additionally, be aware that
  124. the cryptoloop is not safe for storing journaled filesystems.
  125. Note that this loop device has nothing to do with the loopback
  126. device used for network connections from the machine to itself.
  127. config ADK_KPACKAGE_KMOD_BLK_DEV_NBD
  128. prompt "kmod-nbd.......................... Network Block Device"
  129. tristate
  130. default n
  131. help
  132. Saying Y here will allow your computer to be a client for network
  133. block devices, i.e. it will be able to use block devices exported by
  134. servers (mount file systems on them etc.). Communication between
  135. client and server works over TCP/IP networking, but to the client
  136. program this is hidden: it looks like a regular local file access to
  137. a block device special file such as /dev/nd0.
  138. Network block devices also allows you to run a block-device in
  139. userland (making server and client physically the same computer,
  140. communicating using the loopback network device).
  141. Read <file:Documentation/nbd.txt> for more information, especially
  142. about where to find the server code, which runs in user space and
  143. does not need special kernel support.
  144. Note that this has nothing to do with the network file systems NFS
  145. or Coda; you can say N here even if you intend to use NFS or Coda.
  146. config ADK_KPACKAGE_KMOD_SCSI
  147. prompt "kmod-scsi......................... SCSI support"
  148. select ADK_KERNEL_LBD
  149. select ADK_KERNEL_LSF
  150. select ADK_KERNEL_IOSCHED_AS
  151. depends on !ADK_KERNEL_SCSI
  152. depends on !ADK_KERNEL_SATA_AHCI
  153. tristate
  154. help
  155. If you want to use a SCSI hard disk, SCSI tape drive, SCSI CD-ROM or
  156. any other SCSI device under Linux, say Y and make sure that you know
  157. the name of your SCSI host adapter (the card inside your computer
  158. that "speaks" the SCSI protocol, also called SCSI controller),
  159. because you will be asked for it.
  160. You also need to say Y here if you have a device which speaks
  161. the SCSI protocol. Examples of this include the parallel port
  162. version of the IOMEGA ZIP drive, USB storage devices, Fibre
  163. Channel, FireWire storage and the IDE-SCSI emulation driver.
  164. config ADK_KPACKAGE_KMOD_BLK_DEV_SD
  165. prompt "kmod-scsi-disk.................... SCSI disk support"
  166. select ADK_KPACKAGE_KMOD_SCSI
  167. depends on !ADK_KERNEL_BLK_DEV_SD
  168. tristate
  169. help
  170. If you want to use SCSI hard disks, Fibre Channel disks,
  171. USB storage or the SCSI or parallel port version of
  172. the IOMEGA ZIP drive, say Y and read the SCSI-HOWTO,
  173. the Disk-HOWTO and the Multi-Disk-HOWTO, available from
  174. <http://www.tldp.org/docs.html#howto>. This is NOT for SCSI
  175. CD-ROMs.
  176. config ADK_KPACKAGE_KMOD_BLK_DEV_SR
  177. prompt "kmod-scsi-cdrom................... SCSI CDROM support"
  178. depends on !ADK_KERNEL_SCSI
  179. depends on ADK_KPACKAGE_KMOD_SCSI
  180. tristate
  181. help
  182. If you want to use a SCSI or FireWire CD-ROM under Linux,
  183. say Y and read the SCSI-HOWTO and the CDROM-HOWTO at
  184. <http://www.tldp.org/docs.html#howto>. Also make sure to say
  185. Y or M to "ISO 9660 CD-ROM file system support" later.
  186. config ADK_KERNEL_BLK_DEV_MD
  187. tristate
  188. select ADK_KERNEL_MD
  189. depends on !ADK_LINUX_CRIS_FOXBOARD
  190. default n
  191. config ADK_KPACKAGE_KMOD_BLK_DEV_MD
  192. prompt "kmod-md........................... RAID support"
  193. tristate
  194. depends on !ADK_KERNEL_BLK_DEV_MD
  195. depends on !ADK_LINUX_CRIS_FOXBOARD
  196. select ADK_KERNEL_MD
  197. help
  198. config ADK_KERNEL_MD_RAID0
  199. tristate
  200. depends on ADK_KERNEL_BLK_DEV_MD
  201. help
  202. config ADK_KPACKAGE_KMOD_MD_RAID0
  203. prompt "kmod-md-raid0..................... RAID0 support"
  204. tristate
  205. depends on ADK_KPACKAGE_KMOD_BLK_DEV_MD
  206. help
  207. config ADK_KERNEL_MD_RAID1
  208. tristate
  209. depends on ADK_KERNEL_BLK_DEV_MD
  210. help
  211. config ADK_KPACKAGE_KMOD_MD_RAID1
  212. prompt "kmod-md-raid1..................... RAID1 support"
  213. tristate
  214. depends on ADK_KPACKAGE_KMOD_BLK_DEV_MD
  215. help
  216. config ADK_KPACKAGE_KMOD_MD_RAID456
  217. prompt "kmod-md-raid456................... RAID456 support"
  218. tristate
  219. depends on ADK_KPACKAGE_KMOD_BLK_DEV_MD
  220. help
  221. config ADK_KPACKAGE_KMOD_BLK_DEV_DM
  222. prompt "kmod-dm........................... Device Mapper support"
  223. select ADK_KERNEL_MD
  224. depends on !(ADK_KERNEL_BLK_DEV_DM || ADK_LINUX_CRIS_FOXBOARD)
  225. tristate
  226. help
  227. Device-mapper is a low level volume manager. It works by allowing
  228. people to specify mappings for ranges of logical sectors. Various
  229. mapping types are available, in addition people may write their own
  230. modules containing custom mappings if they wish.
  231. Higher level volume managers such as LVM2 use this driver.
  232. config ADK_KPACKAGE_KMOD_DM_CRYPT
  233. prompt "kmod-dm-crypt................... Crypt target support"
  234. depends on !(ADK_KERNEL_DM_CRYPT || ADK_LINUX_CRIS_FOXBOARD)
  235. select ADK_KPACKAGE_KMOD_BLK_DEV_DM
  236. select ADK_KERNEL_MD
  237. select ADK_KERNEL_CRYPTO
  238. select ADK_KPACKAGE_KMOD_CRYPTO_CBC
  239. select ADK_KPACKAGE_KMOD_CRYPTO_BLKCIPHER
  240. tristate
  241. help
  242. This device-mapper target allows you to create a device that
  243. transparently encrypts the data on it. You'll need to activate
  244. the ciphers you're going to use in the cryptoapi configuration.
  245. Information on how to use dm-crypt can be found on
  246. <http://www.saout.de/misc/dm-crypt/>
  247. config ADK_KPACKAGE_KMOD_DM_SNAPSHOT
  248. prompt "kmod-dm-snapshot................ Snapshot target"
  249. select ADK_KPACKAGE_KMOD_BLK_DEV_DM
  250. depends on !ADK_LINUX_CRIS_FOXBOARD
  251. tristate
  252. help
  253. Allow volume managers to take writable snapshots of a device.
  254. config ADK_KPACKAGE_KMOD_DM_MIRROR
  255. prompt "kmod-dm-mirror.................. Mirror target"
  256. select ADK_KPACKAGE_KMOD_BLK_DEV_DM
  257. depends on !ADK_LINUX_CRIS_FOXBOARD
  258. tristate
  259. help
  260. Allow volume managers to mirror logical volumes, also
  261. needed for live data migration tools such as 'pvmove'.
  262. endmenu