summaryrefslogtreecommitdiffstats
path: root/drivers/ata/Kconfig
blob: fe6f5e6f5ddb7dfb2178a57a86ba4e9232afc71e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
menuconfig DISK
	select BLOCK
	select PARTITION
	select PARTITION_DISK
	bool "Disk support                  "
	help
	  Add support for disk like drives like harddisks, CDROMs, SD cards and
	  CF cards.

if DISK

config DISK_WRITE
	select BLOCK_WRITE
	bool "support writing to disk drives"

comment "drive types"

config DISK_BIOS
	bool "BIOS based"
	depends on X86_BIOS_BRINGUP
	help
	  Gain disk drive access via int13 calls to the standard PC-BIOS.
	  The advantage of this driver is, it still uses user's defined boot
	  media to work on. Disadvantage is: Due to its 16 bit nature it is
	  slow.

config DISK_ATA
	bool "ATA type drives"
	select DISK_DRIVE
	help
	  Support for native ATA/IDE drives

comment "interface types"

config DISK_INTF_PLATFORM_IDE
	bool "Platform IDE"
	select DISK_ATA
	help
	  Generic platform driver for simple IDE like interfaces to a connected
	  ATA device.

endif