diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2019-01-23 14:56:02 +0800 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-03-07 21:45:53 +0100 |
commit | 8f01b41e1098d8cb9491fa3ea7bd59cf187a5bd7 (patch) | |
tree | 59b00edfb94823ba340341967a11577f6fa05312 /hw/ide/Kconfig | |
parent | c3a98aa54c734dcb7a36d193c6330d8f04d4bf8e (diff) | |
download | qemu-8f01b41e1098d8cb9491fa3ea7bd59cf187a5bd7.zip qemu-8f01b41e1098d8cb9491fa3ea7bd59cf187a5bd7.tar.gz qemu-8f01b41e1098d8cb9491fa3ea7bd59cf187a5bd7.tar.bz2 |
ide: express dependencies with Kconfig
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20190123065618.3520-29-yang.zhong@intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/ide/Kconfig')
-rw-r--r-- | hw/ide/Kconfig | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/hw/ide/Kconfig b/hw/ide/Kconfig index 5ec4495..fe27705 100644 --- a/hw/ide/Kconfig +++ b/hw/ide/Kconfig @@ -3,33 +3,48 @@ config IDE_CORE config IDE_QDEV bool + select IDE_CORE config IDE_PCI bool + select IDE_CORE config IDE_ISA bool + select IDE_QDEV config IDE_PIIX bool + select IDE_PCI + select IDE_QDEV config IDE_CMD646 bool + select IDE_PCI + select IDE_QDEV config IDE_MACIO bool + select IDE_QDEV config IDE_MMIO bool + select IDE_QDEV config IDE_VIA bool + select IDE_PCI + select IDE_QDEV config MICRODRIVE bool + select IDE_QDEV config AHCI bool + select IDE_QDEV config IDE_SII3112 bool + select IDE_PCI + select IDE_QDEV |