diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2019-01-29 12:16:26 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-03-07 21:46:19 +0100 |
commit | 5617378c1cad27632f9aac7b41fbf02a43ccddd4 (patch) | |
tree | ca2c6ab32a2892061fcd867784402102839d7d68 | |
parent | 0858746b8355df74b32c4e38a2e9755bc67564cc (diff) |
m68k-softmmu.mak: express dependencies with Kconfig
%-softmmu.mak only keep boards and optional device
definitions in Kconfig mode.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r-- | default-configs/m68k-softmmu.mak | 3 | ||||
-rw-r--r-- | hw/m68k/Kconfig | 5 |
2 files changed, 4 insertions, 4 deletions
diff --git a/default-configs/m68k-softmmu.mak b/default-configs/m68k-softmmu.mak index a12eeced49..e17495e2a0 100644 --- a/default-configs/m68k-softmmu.mak +++ b/default-configs/m68k-softmmu.mak @@ -1,5 +1,6 @@ # Default configuration for m68k-softmmu -CONFIG_COLDFIRE=y +# Boards: +# CONFIG_AN5206=y CONFIG_MCF5208=y diff --git a/hw/m68k/Kconfig b/hw/m68k/Kconfig index 8e91edaf03..49ef0b3f6d 100644 --- a/hw/m68k/Kconfig +++ b/hw/m68k/Kconfig @@ -1,10 +1,9 @@ config AN5206 bool - -config MCF5206 - bool + select COLDFIRE select PTIMER config MCF5208 bool + select COLDFIRE select PTIMER |