Config.in.block 8.9 KB

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