Signed-off-by: Ákos Kovács <akoskov...@gmx.com> --- hw/ide/Kconfig | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 hw/ide/Kconfig
diff --git a/hw/ide/Kconfig b/hw/ide/Kconfig new file mode 100644 index 0000000..c73af88 --- /dev/null +++ b/hw/ide/Kconfig @@ -0,0 +1,49 @@ +config IDE_CORE + bool + #select ISA + +config IDE_QDEV + bool + select IDE_CORE + +config IDE_PCI + bool "IDE PCI" + select IDE_QDEV + select USB_XHCI + +config IDE_ISA + bool + #select ISA + select IDE_QDEV + +config IDE_PIIX + bool + select IDE_QDEV + depends on PCI + +config IDE_CMD646 + bool + #select ISA + depends on PCI + select IDE_QDEV + +config IDE_MACIO + bool + select IDE_QDEV + +config IDE_MMIO + bool + select IDE_QDEV + +config IDE_VIA + bool + select IDE_QDEV + depends on PCI + +config MICRODRIVE + bool + select IDE_CORE + +config AHCI + bool + select IDE_QDEV -- 1.7.10.4