From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Jan Beulich" Subject: Re: [PATCHv6] 10/28] build: convert HAS_VIDEO use to Kconfig Date: Mon, 30 Nov 2015 08:03:54 -0700 Message-ID: <565C736A02000078000BA48F@prv-mh.provo.novell.com> References: <1448387538-12208-1-git-send-email-cardoe@cardoe.com> <1448387538-12208-11-git-send-email-cardoe@cardoe.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1448387538-12208-11-git-send-email-cardoe@cardoe.com> Content-Disposition: inline List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Doug Goldstein Cc: Andrew Cooper , Keir Fraser , Stefano Stabellini , Ian Campbell , xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org >>> On 24.11.15 at 18:52, wrote: > --- /dev/null > +++ b/xen/drivers/video/Kconfig > @@ -0,0 +1,13 @@ > + > +# Select HAS_VIDEO if video is supported > +config HAS_VIDEO > + bool > + > +# Select HAS_VGA if VGA is supported > +config HAS_VGA > + bool > + depends on HAS_VIDEO As said in reply to another patch - such dependencies are bogus. You really mean select here, allowing the arch itself to just "select HAS_VGA", implicitly also selecting HAS_VIDEO. Jan