diff options
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/config/Config.in.virtio | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/target/linux/config/Config.in.virtio b/target/linux/config/Config.in.virtio index 58ff339a9..1012a69b4 100644 --- a/target/linux/config/Config.in.virtio +++ b/target/linux/config/Config.in.virtio @@ -1,32 +1,35 @@ menu "Virtio driver support" config ADK_KERNEL_VIRTIO - boolean + bool config ADK_KERNEL_VIRTIO_CONSOLE - boolean + bool + +config ADK_KERNEL_VIRTIO_PCI_LEGACY + bool config ADK_KERNEL_VIRTIO_PCI - boolean + bool config ADK_KERNEL_VIRTIO_MMIO - boolean + bool config ADK_KERNEL_VIRTIO_NET - prompt "Virtio net driver" - tristate + tristate "Virtio net driver" select ADK_KERNEL_VIRTIO select ADK_KERNEL_VIRTIO_MMIO select ADK_KERNEL_VIRTIO_PCI + select ADK_KERNEL_VIRTIO_PCI_LEGACY default n help Enables support for Virtio Net driver. config ADK_KERNEL_VIRTIO_BLK - prompt "Virtio block driver" - tristate + tristate "Virtio block driver" select ADK_KERNEL_VIRTIO select ADK_KERNEL_VIRTIO_PCI + select ADK_KERNEL_VIRTIO_PCI_LEGACY select ADK_KERNEL_VIRTIO_MMIO select ADK_KERNEL_BLK_DEV default n |