diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2019-01-29 15:04:49 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-03-07 21:46:19 +0100 |
commit | 9483cf27dd363926b59ee3a9c117538c834beb4e (patch) | |
tree | cd54e79df13660f6d44ea2e5f9202adc342efd28 /default-configs | |
parent | 23c95f06feef52b0cec75af20828c36b4c98cb4d (diff) |
hppa-softmmu.mak: express dependencies with Kconfig
%-softmmu.mak only keep boards and optional device
definitions in Kconfig mode.
Note that the Dino board uses a memory mapped 16550 UART and
therefore only CONFIG_SERIAL is needed, not CONFIG_SERIAL_ISA.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'default-configs')
-rw-r--r-- | default-configs/hppa-softmmu.mak | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/default-configs/hppa-softmmu.mak b/default-configs/hppa-softmmu.mak index b7f2b43c24..b64c5eb3ff 100644 --- a/default-configs/hppa-softmmu.mak +++ b/default-configs/hppa-softmmu.mak @@ -1,13 +1,9 @@ -CONFIG_PCI=y -CONFIG_PCI_DEVICES=y -CONFIG_SERIAL=y -CONFIG_SERIAL_ISA=y -CONFIG_ISA_BUS=y -CONFIG_I8259=y -CONFIG_E1000_PCI=y -CONFIG_IDE_CMD646=y -# CONFIG_IDE_MMIO=y -CONFIG_LSI_SCSI_PCI=y -CONFIG_VIRTIO_VGA=y -CONFIG_MC146818RTC=y +# Default configuration for hppa-softmmu + +# Uncomment the following lines to disable these optional devices: +# +#CONFIG_PCI_DEVICES=n + +# Boards: +# CONFIG_DINO=y |