diff options
author | Yang Zhong <yang.zhong@intel.com> | 2019-01-23 14:56:13 +0800 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-03-07 21:45:53 +0100 |
commit | 32690c8bed5762518272876dcb6dd39a54f54fd1 (patch) | |
tree | 7bbcf4542b62ac4fb2c9483db560d352068f60d5 /hw/display/Kconfig | |
parent | 9533dcdd416530a0d72140c122bf90517b6c81eb (diff) | |
download | qemu-32690c8bed5762518272876dcb6dd39a54f54fd1.zip qemu-32690c8bed5762518272876dcb6dd39a54f54fd1.tar.gz qemu-32690c8bed5762518272876dcb6dd39a54f54fd1.tar.bz2 |
display: express dependencies with kconfig
Signed-off-by: Yang Zhong <yang.zhong@intel.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20190123065618.3520-40-yang.zhong@intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/display/Kconfig')
-rw-r--r-- | hw/display/Kconfig | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/hw/display/Kconfig b/hw/display/Kconfig index 5393116..999bc7e 100644 --- a/hw/display/Kconfig +++ b/hw/display/Kconfig @@ -38,6 +38,7 @@ config VGA_PCI default y if PCI_DEVICES depends on PCI select VGA + select EDID config VGA_ISA bool @@ -59,6 +60,7 @@ config BOCHS_DISPLAY default y if PCI_DEVICES depends on PCI select VGA + select EDID config BLIZZARD bool @@ -69,11 +71,13 @@ config FRAMEBUFFER config MILKYMIST_TMU2 bool default y - depends on OPENGL && X11 + depends on OPENGL && X11 && MILKYMIST config SM501 bool select I2C + select DDC + select SERIAL config TCX bool @@ -91,6 +95,7 @@ config QXL config VIRTIO_GPU bool + select EDID config VIRTIO_VGA bool |