diff options
author | Philippe Mathieu-Daudé | 2019-12-31 19:32:09 +0100 |
---|---|---|
committer | Paolo Bonzini | 2020-01-07 12:08:39 +0100 |
commit | def9119efe20cf14204753426c20527efd97eed1 (patch) | |
tree | 8f478f51d2e951ebf395033f43897d0fe206ae89 /hw/ppc/Kconfig | |
parent | hw/ppc/Kconfig: Restrict the MPC I2C controller to e500-based platforms (diff) | |
download | qemu-def9119efe20cf14204753426c20527efd97eed1.tar.gz qemu-def9119efe20cf14204753426c20527efd97eed1.tar.xz qemu-def9119efe20cf14204753426c20527efd97eed1.zip |
hw/ppc/Kconfig: Let the Sam460ex board use the PowerPC 405 devices
When configured with --without-default-devices, the build fails:
LINK ppc-softmmu/qemu-system-ppc
/usr/bin/ld: hw/ppc/sam460ex.o: in function `sam460ex_init':
hw/ppc/sam460ex.c:313: undefined reference to `ppc4xx_plb_init'
/usr/bin/ld: hw/ppc/sam460ex.c:353: undefined reference to `ppc405_ebc_init'
collect2: error: ld returned 1 exit status
make[1]: *** [Makefile:206: qemu-system-ppc] Error 1
Fix by selecting the PPC405 config.
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20191231183216.6781-8-philmd@redhat.com>
Reviewed-by: BALATON Zoltan <balaton@eik.bme.hu>
Acked-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/ppc/Kconfig')
-rw-r--r-- | hw/ppc/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/ppc/Kconfig b/hw/ppc/Kconfig index 0cd8d4053e..004b7d5ad5 100644 --- a/hw/ppc/Kconfig +++ b/hw/ppc/Kconfig @@ -50,6 +50,7 @@ config PPC4XX config SAM460EX bool + select PPC405 select PFLASH_CFI01 select IDE_SII3112 select M41T80 |