Signed-off-by: Ákos Kovács <akoskov...@gmx.com>
---
 hw/ide/Kconfig | 50 +++++++++++++++++++++++++++++++++++++++
 hw/net/Kconfig | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 124 insertions(+)
 create mode 100644 hw/ide/Kconfig
 create mode 100644 hw/net/Kconfig

diff --git a/hw/ide/Kconfig b/hw/ide/Kconfig
new file mode 100644
index 0000000..a3217b8
--- /dev/null
+++ b/hw/ide/Kconfig
@@ -0,0 +1,50 @@
+config IDE_CORE
+    bool
+    #depends on ISA
+
+config IDE_QDEV
+    bool
+    select IDE_CORE
+
+config IDE_PCI
+    bool
+    select IDE_QDEV
+    select USB_XHCI
+
+config IDE_ISA
+    bool
+    #depends on ISA
+    select IDE_QDEV
+
+config IDE_PIIX
+    bool
+    select IDE_PCI
+    depends on PCI
+
+config IDE_CMD646
+    bool
+    #depends on 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
+    select IDE_PIIX
+
+config MICRODRIVE
+    bool
+    select IDE_CORE
+
+config AHCI
+    bool
+    select IDE_QDEV
+    depends on PCI
diff --git a/hw/net/Kconfig b/hw/net/Kconfig
new file mode 100644
index 0000000..19ca549
--- /dev/null
+++ b/hw/net/Kconfig
@@ -0,0 +1,74 @@
+menu "Network devices"
+    config DP8393X
+        bool
+
+    config XEN_BACKEND
+        bool
+
+    config NE2000_PCI
+        bool "NE2000 ethernet card"
+        depends on PCI
+
+    config EEPRO100_PCI
+        bool "Intel EEPRO100"
+        depends on PCI
+
+    config PCNET_COMMON
+        bool
+
+    config PCNET_PCI
+        bool
+        depends on PCI
+        select PCNET_COMMON
+
+    config E1000_PCI
+        bool "Intel Gigabit E1000 ethernet"
+        depends on PCI
+
+    config RTL8139_PCI
+        bool "Realtek RTL8139 ethernet"
+        depends on PCI
+
+    config VMXNET3_PCI
+        bool "VmWare paravirtual Ethernet v3"
+        depends on PCI
+
+    config SMC91C111
+        bool
+
+    config LAN9118
+        bool
+        select PTIMER
+
+    config NE2000_ISA
+        bool
+        select NE2000_PCI
+
+    config OPENCORES_ETH
+        bool
+
+    config XGMAC
+        bool
+
+    config MIPSNET
+        bool 
+
+    config XILINX_AXI
+        bool
+
+    config STELLARIS_ENET
+        bool
+
+    config LANCE
+        bool
+        select PCNET_COMMON
+
+    config COLDFIRE
+        bool
+
+    config XILINX_ETHLITE
+        bool
+
+    config VIRTIO
+        bool
+endmenu
-- 
1.8.1.2


Reply via email to