DINO refers to the GSC-PCI bridge device which will soon be handled separately, so instead use HPPA_GENERIC in reference to "HPPA generic machine" used in the machine description.
Signed-off-by: Mark Cave-Ayland <mark.cave-ayl...@ilande.co.uk> --- configs/devices/hppa-softmmu/default.mak | 2 +- hw/hppa/Kconfig | 2 +- hw/hppa/meson.build | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configs/devices/hppa-softmmu/default.mak b/configs/devices/hppa-softmmu/default.mak index b64c5eb3ff..03b07c29d4 100644 --- a/configs/devices/hppa-softmmu/default.mak +++ b/configs/devices/hppa-softmmu/default.mak @@ -6,4 +6,4 @@ # Boards: # -CONFIG_DINO=y +CONFIG_HPPA_GENERIC=y diff --git a/hw/hppa/Kconfig b/hw/hppa/Kconfig index 22948db025..02e101f139 100644 --- a/hw/hppa/Kconfig +++ b/hw/hppa/Kconfig @@ -1,4 +1,4 @@ -config DINO +config HPPA_GENERIC bool imply PCI_DEVICES imply E1000_PCI diff --git a/hw/hppa/meson.build b/hw/hppa/meson.build index 1deae83aee..af37b4469e 100644 --- a/hw/hppa/meson.build +++ b/hw/hppa/meson.build @@ -1,4 +1,4 @@ hppa_ss = ss.source_set() -hppa_ss.add(when: 'CONFIG_DINO', if_true: files('pci.c', 'machine.c', 'dino.c', 'lasi.c')) +hppa_ss.add(when: 'CONFIG_HPPA_GENERIC', if_true: files('pci.c', 'machine.c', 'dino.c', 'lasi.c')) hw_arch += {'hppa': hppa_ss} -- 2.20.1