d09ecd8c14
In our downstream distribution of QEMU, we'd like to ship the binary without the multi-serial PCI devices. To make this disablement easier, let's move the devices into a separate file and add a proper Kconfig- switch for these devices. Signed-off-by: Thomas Huth <thuth@redhat.com> Message-Id: <1554036028-31410-1-git-send-email-thuth@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
49 lines
599 B
Plaintext
49 lines
599 B
Plaintext
config ESCC
|
|
bool
|
|
|
|
config PARALLEL
|
|
bool
|
|
default y
|
|
depends on ISA_BUS
|
|
|
|
config PL011
|
|
bool
|
|
|
|
config SERIAL
|
|
bool
|
|
|
|
config SERIAL_ISA
|
|
bool
|
|
default y
|
|
depends on ISA_BUS
|
|
select SERIAL
|
|
|
|
config SERIAL_PCI
|
|
bool
|
|
default y if PCI_DEVICES
|
|
depends on PCI
|
|
select SERIAL
|
|
|
|
config SERIAL_PCI_MULTI
|
|
bool
|
|
default y if PCI_DEVICES
|
|
depends on PCI
|
|
select SERIAL
|
|
|
|
config VIRTIO_SERIAL
|
|
bool
|
|
default y
|
|
depends on VIRTIO
|
|
|
|
config STM32F2XX_USART
|
|
bool
|
|
|
|
config CMSDK_APB_UART
|
|
bool
|
|
|
|
config SCLPCONSOLE
|
|
bool
|
|
|
|
config TERMINAL3270
|
|
bool
|