diff options
author | Paolo Bonzini | 2019-01-29 12:16:25 +0100 |
---|---|---|
committer | Paolo Bonzini | 2019-03-07 21:45:53 +0100 |
commit | dd2356e5316eae78876602a57608e33e2de85e11 (patch) | |
tree | f036dd585986da36d96166a98957061f0557cef8 /hw/ipmi | |
parent | sd: express dependencies with kconfig (diff) | |
download | qemu-dd2356e5316eae78876602a57608e33e2de85e11.tar.gz qemu-dd2356e5316eae78876602a57608e33e2de85e11.tar.xz qemu-dd2356e5316eae78876602a57608e33e2de85e11.zip |
ipmi: express dependencies with kconfig
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Yang Zhong <yang.zhong@intel.com>
Message-Id: <20190123065618.3520-36-yang.zhong@intel.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/ipmi')
-rw-r--r-- | hw/ipmi/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/hw/ipmi/Kconfig b/hw/ipmi/Kconfig index 6a4f08f2fa..b944fae100 100644 --- a/hw/ipmi/Kconfig +++ b/hw/ipmi/Kconfig @@ -3,14 +3,20 @@ config IPMI config IPMI_LOCAL bool + default y + depends on IPMI config IPMI_EXTERN bool + default y + depends on IPMI config ISA_IPMI_KCS bool depends on ISA_BUS + select IPMI config ISA_IPMI_BT bool depends on ISA_BUS + select IPMI |