123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289 |
- menu "Block devices support"
- config ADK_KERNEL_MD
- boolean
- config ADK_KERNEL_SWAP
- boolean
- config ADK_KERNEL_LBD
- boolean
- config ADK_KERNEL_BLK_DEV_IO_TRACE
- boolean
- config ADK_KERNEL_LSF
- boolean
- config ADK_KERNEL_IOSCHED_AS
- boolean
- config ADK_KERNEL_IOSCHED_DEADLINE
- boolean
- config ADK_KERNEL_IOSCHED_CFQ
- boolean
- config ADK_KERNEL_SCSI
- boolean
- config ADK_KERNEL_BLK_DEV_SD
- boolean
- config ADK_KERNEL_ISCSI_TCP
- boolean
- config ADK_KERNEL_DM_CRYPT
- boolean
- config ADK_KERNEL_BLK_DEV_DM
- boolean
- select ADK_KERNEL_MD
- depends on !ADK_LINUX_CRIS_FOXBOARD
- config ADK_KERNEL_ATA
- boolean
- config ADK_KERNEL_ATA_SFF
- boolean
- config ADK_KERNEL_CONNECTOR
- boolean
- config ADK_KERNEL_ATA_PIIX
- boolean
- select ADK_KERNEL_BLOCK
- select ADK_KERNEL_SCSI
- select ADK_KERNEL_ATA
- select ADK_KERNEL_ATA_SFF
- select ADK_KERNEL_BLK_DEV_SD
- default y if ADK_HARDWARE_IBM_X40
- default y if ADK_HARDWARE_QEMU_X86
- default y if ADK_HARDWARE_QEMU_X86_64
- default n
- config ADK_KERNEL_SATA_AHCI
- tristate
- select ADK_KERNEL_BLOCK
- select ADK_KERNEL_ATA
- select ADK_KERNEL_BLK_DEV_SD
- default y if ADK_HARDWARE_SHUTTLE
- default n
- config ADK_KPACKAGE_KMOD_SATA_AHCI
- prompt "kmod-sata-ahci.................... AHCI SATA driver"
- tristate
- select ADK_KERNEL_BLOCK
- select ADK_KERNEL_ATA
- select ADK_KERNEL_BLK_DEV_SD
- depends on !ADK_KERNEL_SATA_AHCI
- default n
- help
- Enables support for AHCI Serial ATA.
- config ADK_KPACKAGE_KMOD_BLK_DEV_LOOP
- prompt "kmod-blk-dev-loop................. Loop mount support"
- tristate
- default n
- help
- Saying Y here will allow you to use a regular file as a block
- device; you can then create a file system on that block device and
- mount it just as you would mount other block devices such as hard
- drive partitions, CD-ROM drives or floppy drives. The loop devices
- are block special device files with major number 7 and typically
- called /dev/loop0, /dev/loop1 etc.
- This is useful if you want to check an ISO 9660 file system before
- burning the CD, or if you want to use floppy images without first
- writing them to floppy. Furthermore, some Linux distributions avoid
- the need for a dedicated Linux partition by keeping their complete
- root file system inside a DOS FAT file using this loop device
- driver.
- To use the loop device, you need the losetup utility, found in the
- util-linux package, see
- <ftp://ftp.kernel.org/pub/linux/utils/util-linux/>.
- The loop device driver can also be used to "hide" a file system in
- a disk partition, floppy, or regular file, either using encryption
- (scrambling the data) or steganography (hiding the data in the low
- bits of, say, a sound file). This is also safe if the file resides
- on a remote file server.
- There are several ways of encrypting disks. Some of these require
- kernel patches. The vanilla kernel offers the cryptoloop option
- and a Device Mapper target (which is superior, as it supports all
- file systems). If you want to use the cryptoloop, say Y to both
- LOOP and CRYPTOLOOP, and make sure you have a recent (version 2.12
- or later) version of util-linux. Additionally, be aware that
- the cryptoloop is not safe for storing journaled filesystems.
- Note that this loop device has nothing to do with the loopback
- device used for network connections from the machine to itself.
- config ADK_KPACKAGE_KMOD_BLK_DEV_NBD
- prompt "kmod-blk-dev-nbd.................. Network Block Device"
- tristate
- default n
- help
- Saying Y here will allow your computer to be a client for network
- block devices, i.e. it will be able to use block devices exported by
- servers (mount file systems on them etc.). Communication between
- client and server works over TCP/IP networking, but to the client
- program this is hidden: it looks like a regular local file access to
- a block device special file such as /dev/nd0.
- Network block devices also allows you to run a block-device in
- userland (making server and client physically the same computer,
- communicating using the loopback network device).
- Read <file:Documentation/nbd.txt> for more information, especially
- about where to find the server code, which runs in user space and
- does not need special kernel support.
- Note that this has nothing to do with the network file systems NFS
- or Coda; you can say N here even if you intend to use NFS or Coda.
- config ADK_KPACKAGE_KMOD_SCSI
- prompt "kmod-scsi......................... SCSI support"
- select ADK_KERNEL_LBD
- select ADK_KERNEL_LSF
- select ADK_KERNEL_IOSCHED_AS
- depends on !ADK_KERNEL_SCSI
- depends on !ADK_KERNEL_SATA_AHCI
- depends on !ADK_KERNEL_ATA_PIIX
- tristate
- help
- If you want to use a SCSI hard disk, SCSI tape drive, SCSI CD-ROM or
- any other SCSI device under Linux, say Y and make sure that you know
- the name of your SCSI host adapter (the card inside your computer
- that "speaks" the SCSI protocol, also called SCSI controller),
- because you will be asked for it.
- You also need to say Y here if you have a device which speaks
- the SCSI protocol. Examples of this include the parallel port
- version of the IOMEGA ZIP drive, USB storage devices, Fibre
- Channel, FireWire storage and the IDE-SCSI emulation driver.
- config ADK_KPACKAGE_KMOD_BLK_DEV_SD
- prompt "kmod-scsi-disk.................... SCSI disk support"
- select ADK_KPACKAGE_KMOD_SCSI
- depends on !ADK_KERNEL_BLK_DEV_SD
- tristate
- help
- If you want to use SCSI hard disks, Fibre Channel disks,
- USB storage or the SCSI or parallel port version of
- the IOMEGA ZIP drive, say Y and read the SCSI-HOWTO,
- the Disk-HOWTO and the Multi-Disk-HOWTO, available from
- <http://www.tldp.org/docs.html#howto>. This is NOT for SCSI
- CD-ROMs.
- config ADK_KPACKAGE_KMOD_BLK_DEV_SR
- prompt "kmod-scsi-cdrom................... SCSI CDROM support"
- depends on !ADK_KERNEL_SCSI
- depends on ADK_KPACKAGE_KMOD_SCSI
- tristate
- help
- If you want to use a SCSI or FireWire CD-ROM under Linux,
- say Y and read the SCSI-HOWTO and the CDROM-HOWTO at
- <http://www.tldp.org/docs.html#howto>. Also make sure to say
- Y or M to "ISO 9660 CD-ROM file system support" later.
- config ADK_KERNEL_BLK_DEV_MD
- tristate
- select ADK_KERNEL_MD
- depends on !ADK_LINUX_CRIS_FOXBOARD
- default n
- config ADK_KPACKAGE_KMOD_BLK_DEV_MD
- prompt "kmod-md........................... RAID support"
- tristate
- depends on !ADK_KERNEL_BLK_DEV_MD
- depends on !ADK_LINUX_CRIS_FOXBOARD
- select ADK_KERNEL_MD
- help
- config ADK_KERNEL_MD_RAID0
- tristate
- depends on ADK_KERNEL_BLK_DEV_MD
- help
- config ADK_KPACKAGE_KMOD_MD_RAID0
- prompt "kmod-md-raid0..................... RAID0 support"
- tristate
- depends on ADK_KPACKAGE_KMOD_BLK_DEV_MD
- help
- config ADK_KERNEL_MD_RAID1
- tristate
- depends on ADK_KERNEL_BLK_DEV_MD
- help
- config ADK_KPACKAGE_KMOD_MD_RAID1
- prompt "kmod-md-raid1..................... RAID1 support"
- tristate
- depends on ADK_KPACKAGE_KMOD_BLK_DEV_MD
- help
- config ADK_KPACKAGE_KMOD_MD_RAID456
- prompt "kmod-md-raid456................... RAID456 support"
- tristate
- depends on ADK_KPACKAGE_KMOD_BLK_DEV_MD
- help
- config ADK_KPACKAGE_KMOD_BLK_DEV_DM
- prompt "kmod-dm........................... Device Mapper support"
- select ADK_KERNEL_MD
- depends on !(ADK_KERNEL_BLK_DEV_DM || ADK_LINUX_CRIS_FOXBOARD)
- tristate
- help
- Device-mapper is a low level volume manager. It works by allowing
- people to specify mappings for ranges of logical sectors. Various
- mapping types are available, in addition people may write their own
- modules containing custom mappings if they wish.
- Higher level volume managers such as LVM2 use this driver.
- config ADK_KPACKAGE_KMOD_DM_CRYPT
- prompt "kmod-dm-crypt..................... Crypt target support"
- depends on !(ADK_KERNEL_DM_CRYPT || ADK_LINUX_CRIS_FOXBOARD)
- select ADK_KPACKAGE_KMOD_BLK_DEV_DM
- select ADK_KERNEL_MD
- select ADK_KERNEL_CRYPTO
- select ADK_KPACKAGE_KMOD_CRYPTO_CBC
- select ADK_KPACKAGE_KMOD_CRYPTO_BLKCIPHER
- tristate
- help
- This device-mapper target allows you to create a device that
- transparently encrypts the data on it. You'll need to activate
- the ciphers you're going to use in the cryptoapi configuration.
- Information on how to use dm-crypt can be found on
- <http://www.saout.de/misc/dm-crypt/>
- config ADK_KPACKAGE_KMOD_DM_SNAPSHOT
- prompt "kmod-dm-snapshot.................. Snapshot target"
- select ADK_KPACKAGE_KMOD_BLK_DEV_DM
- depends on !ADK_LINUX_CRIS_FOXBOARD
- tristate
- help
- Allow volume managers to take writable snapshots of a device.
- config ADK_KPACKAGE_KMOD_DM_MIRROR
- prompt "kmod-dm-mirror.................... Mirror target"
- select ADK_KPACKAGE_KMOD_BLK_DEV_DM
- depends on !ADK_LINUX_CRIS_FOXBOARD
- tristate
- help
- Allow volume managers to mirror logical volumes, also
- needed for live data migration tools such as 'pvmove'.
- config ADK_KPACKAGE_KMOD_BLK_DEV_DRBD
- prompt "kmod-blk-dev-drbd................. DRBD support (Network RAID 1)"
- tristate
- select ADK_KERNEL_CONNECTOR
- help
- DRBD - http://www.drbd.org
- endmenu
|