diff options
author | Thomas Huth <thuth@redhat.com> | 2019-02-08 06:39:48 +0100 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2019-05-13 09:36:31 +0200 |
commit | 839507addb677a8b3489eb7cd4c45ce1a59691a5 (patch) | |
tree | 96e8625d88071cc3a3b3a353aeff5765d3a251fc /hw/arm | |
parent | 31576a91559da1f29b072136196cc571b51658df (diff) | |
download | qemu-839507addb677a8b3489eb7cd4c45ce1a59691a5.zip qemu-839507addb677a8b3489eb7cd4c45ce1a59691a5.tar.gz qemu-839507addb677a8b3489eb7cd4c45ce1a59691a5.tar.bz2 |
hw/arm: Express dependencies of collie with Kconfig
Add Kconfig dependencies for the Strongarm collie machine.
This patch is based on earlier work by Ákos Kovács (i.e.
his "hw/arm/Kconfig: Add ARM Kconfig" patch).
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'hw/arm')
-rw-r--r-- | hw/arm/Kconfig | 7 | ||||
-rw-r--r-- | hw/arm/Makefile.objs | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig index dfdc1b1..a507144 100644 --- a/hw/arm/Kconfig +++ b/hw/arm/Kconfig @@ -169,6 +169,13 @@ config STELLARIS config STRONGARM bool + select PXA2XX + +config COLLIE + bool + select PFLASH_CFI01 + select ZAURUS # scoop + select STRONGARM config SX1 bool diff --git a/hw/arm/Makefile.objs b/hw/arm/Makefile.objs index 00328d1..729e711 100644 --- a/hw/arm/Makefile.objs +++ b/hw/arm/Makefile.objs @@ -17,7 +17,7 @@ obj-$(CONFIG_TOSA) += tosa.o obj-$(CONFIG_Z2) += z2.o obj-$(CONFIG_REALVIEW) += realview.o obj-$(CONFIG_STELLARIS) += stellaris.o -obj-$(CONFIG_STRONGARM) += collie.o +obj-$(CONFIG_COLLIE) += collie.o obj-$(CONFIG_VERSATILE) += versatilepb.o obj-$(CONFIG_VEXPRESS) += vexpress.o obj-$(CONFIG_ZYNQ) += xilinx_zynq.o |