Skip to content
Snippets Groups Projects
Commit fd11d171 authored by Jan Engelhardt's avatar Jan Engelhardt Committed by Jens Axboe
Browse files

Make a "menuconfig" out of the Kconfig objects "menu, ..., endmenu",


so that the user can disable all the options in that menu at once
instead of having to disable each option separately.

Signed-off-by: default avatarJan Engelhardt <jengelh@gmx.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarJens Axboe <jens.axboe@oracle.com>
parent 5f5c926e
No related branches found
No related tags found
No related merge requests found
......@@ -2,9 +2,12 @@
# Block device driver configuration
#
if BLOCK
menuconfig BLK_DEV
bool "Block devices"
depends on BLOCK
default y
menu "Block devices"
if BLK_DEV
config BLK_DEV_FD
tristate "Normal floppy disk support"
......@@ -422,6 +425,4 @@ config ATA_OVER_ETH
source "drivers/s390/block/Kconfig"
endmenu
endif
endif # BLK_DEV
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment