Config.in.block 8.5 KB

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