From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:51267) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gpCHr-0000wM-Ci for qemu-devel@nongnu.org; Thu, 31 Jan 2019 08:21:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gpCHo-0004yG-Qo for qemu-devel@nongnu.org; Thu, 31 Jan 2019 08:21:46 -0500 Received: from mx1.redhat.com ([209.132.183.28]:56606) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gpCHo-0004my-HE for qemu-devel@nongnu.org; Thu, 31 Jan 2019 08:21:44 -0500 References: <1548410831-19553-1-git-send-email-pbonzini@redhat.com> <1548410831-19553-33-git-send-email-pbonzini@redhat.com> From: Thomas Huth Message-ID: Date: Thu, 31 Jan 2019 14:21:31 +0100 MIME-Version: 1.0 In-Reply-To: <1548410831-19553-33-git-send-email-pbonzini@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 32/52] kconfig: introduce kconfig files List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini , qemu-devel@nongnu.org Cc: yang.zhong@intel.com On 2019-01-25 11:06, Paolo Bonzini wrote: [...] > diff --git a/hw/misc/macio/Kconfig b/hw/misc/macio/Kconfig > new file mode 100644 > index 0000000..c6caeb6 > --- /dev/null > +++ b/hw/misc/macio/Kconfig > @@ -0,0 +1,11 @@ > +config CUDA > + bool > + > +config MAC_PMU > + bool > + > +config MAC_DBDMA > + bool > + > +config MACIO_GPIO > + bool [...] > diff --git a/hw/ppc/Kconfig b/hw/ppc/Kconfig > new file mode 100644 > index 0000000..9da9d7d > --- /dev/null > +++ b/hw/ppc/Kconfig [...] > + > +config MAC_DBDMA > + bool > + > +config MAC_PMU > + bool > + > +config XIVE > + bool > + > +config MACIO_GPIO > + bool > + > +config XIVE_SPAPR > + bool > + > +config CUDA > + bool I just noticed that the config switches from hw/misc/macio/Kconfig are duplicated here. Kind of ugly. Would it be possible to define them only in one place? Thomas