From 16c67cae843d29ac29cf632b47bc1f961a90b1e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Fri, 14 May 2021 11:50:03 +0200 Subject: hw/isa/vt82c686: Add missing Kconfig dependencies (build error) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The VT82C686 device model misses various dependencies: /usr/bin/ld: libcommon.fa.p/hw_isa_vt82c686.c.o: in function `vt82c686b_realize': hw/isa/vt82c686.c:622: undefined reference to `i8259_init' /usr/bin/ld: hw/isa/vt82c686.c:624: undefined reference to `i8257_dma_init' /usr/bin/ld: hw/isa/vt82c686.c:627: undefined reference to `mc146818_rtc_init' Add them. Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: BALATON Zoltan Reviewed-by: Bin Meng Message-Id: <20210515173716.358295-11-philmd@redhat.com> --- hw/isa/Kconfig | 3 +++ 1 file changed, 3 insertions(+) (limited to 'hw/isa') diff --git a/hw/isa/Kconfig b/hw/isa/Kconfig index 96db170eff..f99df0e20b 100644 --- a/hw/isa/Kconfig +++ b/hw/isa/Kconfig @@ -50,6 +50,9 @@ config VT82C686 select FDC_ISA select USB_UHCI select APM + select I8257 + select I8259 + select MC146818RTC config SMC37C669 bool -- cgit v1.2.3