diff options
author | Thomas Huth <thuth@redhat.com> | 2019-02-08 12:00:29 +0100 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2019-05-13 09:36:32 +0200 |
commit | b6e2b2200c5e9404074443ec721a280c2c5e7335 (patch) | |
tree | 89e811c26a3920c8c48d2cb7feef2bfc11d1b314 /hw/arm/Kconfig | |
parent | 5c6e99a729b06491c0d944676db62718e8b9d676 (diff) | |
download | qemu-b6e2b2200c5e9404074443ec721a280c2c5e7335.zip qemu-b6e2b2200c5e9404074443ec721a280c2c5e7335.tar.gz qemu-b6e2b2200c5e9404074443ec721a280c2c5e7335.tar.bz2 |
hw/arm: Express dependencies of the MSF2 / EMCRAFT_SF2 machine with Kconfig
Add Kconfig dependencies for the emcraft-sf2 machine - we also
distinguish between the machine (CONFIG_EMCRAFT_SF2) and the SoC
(CONFIG_MSF2) now.
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/Kconfig')
-rw-r--r-- | hw/arm/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig index 0a1eab5..7af94a8 100644 --- a/hw/arm/Kconfig +++ b/hw/arm/Kconfig @@ -334,9 +334,17 @@ config FSL_IMX6UL config NRF51_SOC bool +config EMCRAFT_SF2 + bool + select MSF2 + select SSI_M25P80 + config MSF2 bool + select ARM_V7M select PTIMER + select SERIAL + select SSI config ZAURUS bool |