From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:46261) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h0sD4-0002R7-Kz for qemu-devel@nongnu.org; Mon, 04 Mar 2019 13:21:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h0sD3-000545-Jk for qemu-devel@nongnu.org; Mon, 04 Mar 2019 13:21:06 -0500 Received: from mail-wm1-x341.google.com ([2a00:1450:4864:20::341]:37049) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1h0sD1-0004mR-EE for qemu-devel@nongnu.org; Mon, 04 Mar 2019 13:21:03 -0500 Received: by mail-wm1-x341.google.com with SMTP id x10so127913wmg.2 for ; Mon, 04 Mar 2019 10:20:59 -0800 (PST) Sender: Paolo Bonzini From: Paolo Bonzini Date: Mon, 4 Mar 2019 19:20:04 +0100 Message-Id: <1551723614-1823-45-git-send-email-pbonzini@redhat.com> In-Reply-To: <1551723614-1823-1-git-send-email-pbonzini@redhat.com> References: <1551723614-1823-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PULL 44/54] nios2-softmmu.mak: express dependencies with Kconfig List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: thuth@redhat.com, Yang Zhong %-softmmu.mak only keep boards and optional device definitions in Kconfig mode. Signed-off-by: Paolo Bonzini --- default-configs/nios2-softmmu.mak | 5 ++--- 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 b3c507e..e11dc54 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 22817e4..ab953e0 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 -- 1.8.3.1