diff options
author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2021-05-13 15:13:54 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@redhat.com> | 2021-07-20 15:34:12 +0200 |
commit | ed2543a256684df1e6de6706c78c76136f163861 (patch) | |
tree | 27a7cd0757e1c79d13b52144334a7cd7e8258ed3 /configs | |
parent | 6e4dd94f77d769daa5a56d1b02b9c6a697db5270 (diff) | |
download | qemu-ed2543a256684df1e6de6706c78c76136f163861.zip qemu-ed2543a256684df1e6de6706c78c76136f163861.tar.gz qemu-ed2543a256684df1e6de6706c78c76136f163861.tar.bz2 |
hw/ppc/Kconfig: Add missing dependency E500 -> DS1338 RTC
Commit 7abb479c7ab ("PPC: E500: Add FSL I2C controller and integrate
RTC with it") added a global dependency on the DS1338 model, instead
of a machine one (via Kconfig). This gives trouble when building
standalone machines not exposing I2C bus:
The following clauses were found for DS1338
CONFIG_DS1338=y
config DS1338 depends on I2C
Fix by selecting the DS1338 symbol in the single machine requiring
it, the E500.
Fixes: 7abb479c7ab ("PPC: E500: Add FSL I2C controller and integrate RTC with it")
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Acked-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210513163858.3928976-9-philmd@redhat.com>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/devices/ppc-softmmu/default.mak | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/configs/devices/ppc-softmmu/default.mak b/configs/devices/ppc-softmmu/default.mak index 4535993..658a454 100644 --- a/configs/devices/ppc-softmmu/default.mak +++ b/configs/devices/ppc-softmmu/default.mak @@ -1,7 +1,6 @@ # Default configuration for ppc-softmmu # For embedded PPCs: -CONFIG_DS1338=y CONFIG_E500=y CONFIG_PPC405=y CONFIG_PPC440=y |