diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-05-14 11:50:03 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@redhat.com> | 2021-07-20 20:10:20 +0200 |
commit | 16c67cae843d29ac29cf632b47bc1f961a90b1e5 (patch) | |
tree | 186935162590390783410202a799a7877c70a02b /hw | |
parent | d2c7c18cc7f3ce6c1ac54d02e11d7bb7df9b913b (diff) |
hw/isa/vt82c686: Add missing Kconfig dependencies (build error)
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é <f4bug@amsat.org>
Reviewed-by: BALATON Zoltan <balaton@eik.bme.hu>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Message-Id: <20210515173716.358295-11-philmd@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/isa/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
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 |