diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-08-02 21:07:46 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-08-02 21:08:08 +0200 |
commit | 93ab3942cc01b4e42bffcbb6541ec57930f3e354 (patch) | |
tree | 237330db9a61bb8ce72413d2492589cb4f3e43d6 /target/linux/config | |
parent | c907526cfbd39ac57b137f1946de760ebc4f057f (diff) |
virtio-blk for qemu needs pci legacy
Diffstat (limited to 'target/linux/config')
-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 |