diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2019-01-29 12:16:27 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-03-07 21:46:19 +0100 |
commit | 0d345404222675c588a21b6c5a776ea2c37dbc8a (patch) | |
tree | 31fe88c9b5398e8f4711f2f22906d37e3e8c6ca5 | |
parent | bacef57d8369576637819c408f07a77b206bc478 (diff) |
nios2-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/nios2-softmmu.mak | 5 | ||||
-rw-r--r-- | hw/nios2/Kconfig | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/default-configs/nios2-softmmu.mak b/default-configs/nios2-softmmu.mak index b3c507e37b..e11dc54960 100644 --- a/default-configs/nios2-softmmu.mak +++ b/default-configs/nios2-softmmu.mak @@ -1,6 +1,5 @@ # Default configuration for nios2-softmmu -CONFIG_NIOS2=y -CONFIG_SERIAL=y -CONFIG_ALTERA_TIMER=y +# Boards: +# CONFIG_NIOS2_10M50=y diff --git a/hw/nios2/Kconfig b/hw/nios2/Kconfig index 22817e45fe..ab953e0077 100644 --- a/hw/nios2/Kconfig +++ b/hw/nios2/Kconfig @@ -1,5 +1,8 @@ config NIOS2_10M50 bool + select NIOS2 + select SERIAL + select ALTERA_TIMER config NIOS2 bool |