1 #
2 # Block device driver configuration
3 #
4 mainmenu_option next_comment
5 comment 'Multi-device support (RAID and LVM)'
6
7 bool 'Multiple devices driver support (RAID and LVM)' CONFIG_MD
8
9 dep_tristate ' RAID support' CONFIG_BLK_DEV_MD $CONFIG_MD
10 dep_tristate ' Linear (append) mode' CONFIG_MD_LINEAR $CONFIG_BLK_DEV_MD
11 dep_tristate ' RAID-0 (striping) mode' CONFIG_MD_RAID0 $CONFIG_BLK_DEV_MD
12 dep_tristate ' RAID-1 (mirroring) mode' CONFIG_MD_RAID1 $CONFIG_BLK_DEV_MD
13 dep_tristate ' RAID-4/RAID-5 mode' CONFIG_MD_RAID5 $CONFIG_BLK_DEV_MD
14 if [ "$CONFIG_MD_LINEAR" = "y" -o "$CONFIG_MD_RAID0" = "y" -o "$CONFIG_MD_RAID1" = "y" -o "$CONFIG_MD_RAID5" = "y" ]; then
15 bool ' Boot support' CONFIG_MD_BOOT
16 bool ' Auto Detect support' CONFIG_AUTODETECT_RAID
17 fi
18
19 dep_tristate ' Logical volume manager (LVM) support' CONFIG_BLK_DEV_LVM $CONFIG_MD
20 dep_mbool ' LVM information in proc filesystem' CONFIG_LVM_PROC_FS $CONFIG_BLK_DEV_LVM
21
22 endmenu
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.