Skip to content

Commit

Permalink
Staging: hv: adjust Hyper-V Kconfig
Browse files Browse the repository at this point in the history
Hyper-V sub-components' options should all depend on the base option.

The default of these sub-component options is also more reasonably set
to that of the base option (since it makes little sense to enable the
base option without the sub-component ones).

Signed-off-by: Jan Beulich <jbeulich@novell.com>
Cc: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Jan Beulich authored and Greg Kroah-Hartman committed Sep 15, 2009
1 parent 79e5cdb commit e1415db
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions drivers/staging/hv/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,27 @@ config HYPERV
Select this option to run Linux as a Hyper-V client operating
system.

if HYPERV

config HYPERV_STORAGE
tristate "Microsoft Hyper-V virtual storage driver"
depends on SCSI && m
default n
depends on SCSI
default HYPERV
help
Select this option to enable the Hyper-V virtual storage driver.

config HYPERV_BLOCK
tristate "Microsoft Hyper-V virtual block driver"
depends on BLOCK && SCSI && m
default n
depends on BLOCK && SCSI
default HYPERV
help
Select this option to enable the Hyper-V virtual block driver.

config HYPERV_NET
tristate "Microsoft Hyper-V virtual network driver"
depends on NET && m
default n
depends on NET
default HYPERV
help
Select this option to enable the Hyper-V virtual network driver.

endif

0 comments on commit e1415db

Please sign in to comment.