Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Use menuconfig objects II - MD

Change Kconfig objects from "menu, config" into "menuconfig" so
that the user can disable the whole feature without having to
enter the menu first.

Signed-off-by: Jan Engelhardt <jengelh@gmx.de>
Acked-by: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Jan Engelhardt and committed by
Linus Torvalds
afd44034 0c4a59fe

+5 -10
+5 -10
drivers/md/Kconfig
··· 2 2 # Block device driver configuration 3 3 # 4 4 5 - if BLOCK 6 - 7 - menu "Multi-device support (RAID and LVM)" 8 - 9 - config MD 5 + menuconfig MD 10 6 bool "Multiple devices driver support (RAID and LVM)" 7 + depends on BLOCK 11 8 help 12 9 Support multiple physical spindles through a single logical device. 13 10 Required for RAID and logical volume management. 14 11 12 + if MD 13 + 15 14 config BLK_DEV_MD 16 15 tristate "RAID support" 17 - depends on MD 18 16 ---help--- 19 17 This driver lets you combine several hard disk partitions into one 20 18 logical block device. This can be used to simply append one ··· 189 191 190 192 config BLK_DEV_DM 191 193 tristate "Device mapper support" 192 - depends on MD 193 194 ---help--- 194 195 Device-mapper is a low level volume manager. It works by allowing 195 196 people to specify mappings for ranges of logical sectors. Various ··· 276 279 277 280 If unsure, say N. 278 281 279 - endmenu 280 - 281 - endif 282 + endif # MD