1 |
199 |
simons |
#
|
2 |
|
|
# Block device driver configuration
|
3 |
|
|
#
|
4 |
|
|
mainmenu_option next_comment
|
5 |
|
|
comment 'Floppy, IDE, and other block devices'
|
6 |
|
|
|
7 |
|
|
tristate 'Normal floppy disk support' CONFIG_BLK_DEV_FD
|
8 |
|
|
bool 'Enhanced IDE disk/cdrom/tape support' CONFIG_BLK_DEV_IDE
|
9 |
|
|
comment 'Please see Documentation/ide.txt for help/info on IDE drives'
|
10 |
|
|
if [ "$CONFIG_BLK_DEV_IDE" = "n" ]; then
|
11 |
|
|
bool 'Old harddisk (IDE) driver' CONFIG_BLK_DEV_HD_ONLY
|
12 |
|
|
else
|
13 |
|
|
bool ' Use old disk-only driver on primary interface' CONFIG_BLK_DEV_HD_IDE
|
14 |
|
|
bool ' Include IDE/ATAPI CDROM support' CONFIG_BLK_DEV_IDECD
|
15 |
|
|
bool ' Include IDE/ATAPI TAPE support' CONFIG_BLK_DEV_IDETAPE
|
16 |
|
|
bool ' Include IDE/ATAPI FLOPPY support (new)' CONFIG_BLK_DEV_IDEFLOPPY
|
17 |
|
|
bool ' SCSI emulation support' CONFIG_BLK_DEV_IDESCSI
|
18 |
|
|
bool ' Support removable IDE interfaces (PCMCIA)' CONFIG_BLK_DEV_IDE_PCMCIA
|
19 |
|
|
bool ' Support expansion card IDE interfaces' CONFIG_BLK_DEV_IDE_CARDS
|
20 |
|
|
if [ "$CONFIG_BLK_DEV_IDE_CARDS" = "y" ]; then
|
21 |
|
|
tristate ' ICS IDE interface support' CONFIG_BLK_DEV_IDE_ICSIDE
|
22 |
|
|
tristate ' RapIDE interface support' CONFIG_BLK_DEV_IDE_RAPIDE
|
23 |
|
|
fi
|
24 |
|
|
fi
|
25 |
|
|
|
26 |
|
|
tristate 'MFM harddisk support' CONFIG_BLK_DEV_XD
|
27 |
|
|
|
28 |
|
|
comment 'Additional Block Devices'
|
29 |
|
|
|
30 |
|
|
tristate 'Loopback device support' CONFIG_BLK_DEV_LOOP
|
31 |
|
|
bool 'Multiple devices driver support' CONFIG_BLK_DEV_MD
|
32 |
|
|
if [ "$CONFIG_BLK_DEV_MD" = "y" ]; then
|
33 |
|
|
tristate ' Linear (append) mode' CONFIG_MD_LINEAR
|
34 |
|
|
tristate ' RAID-0 (striping) mode' CONFIG_MD_STRIPED
|
35 |
|
|
tristate ' RAID-1 (mirroring) mode' CONFIG_MD_MIRRORING
|
36 |
|
|
tristate ' RAID-4/RAID-5 mode' CONFIG_MD_RAID5
|
37 |
|
|
fi
|
38 |
|
|
tristate 'RAM disk support' CONFIG_BLK_DEV_RAM
|
39 |
|
|
if [ "$CONFIG_BLK_DEV_RAM" = "y" ]; then
|
40 |
|
|
bool ' Initial RAM disk (initrd) support' CONFIG_BLK_DEV_INITRD
|
41 |
|
|
fi
|
42 |
|
|
bool 'ADFS partition support' CONFIG_BLK_DEV_PART
|
43 |
|
|
#if [ "$CONFIG_BLK_DEV_PART" = "y" -a "$CONFIG_EXPERIMENTAL" = "y" ]; then
|
44 |
|
|
# bool 'ADFS image file support (EXPERIMENTAL)' CONFIG_BLK_DEV_IMG
|
45 |
|
|
#fi
|
46 |
|
|
|
47 |
|
|
if [ "$CONFIG_BLK_DEV_HD_IDE" = "y" -o "$CONFIG_BLK_DEV_HD_ONLY" = "y" ]; then
|
48 |
|
|
define_bool CONFIG_BLK_DEV_HD y
|
49 |
|
|
else
|
50 |
|
|
define_bool CONFIG_BLK_DEV_HD n
|
51 |
|
|
fi
|
52 |
|
|
|
53 |
|
|
endmenu
|