From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S267707AbUHJVO6 (ORCPT ); Tue, 10 Aug 2004 17:14:58 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S267727AbUHJVO6 (ORCPT ); Tue, 10 Aug 2004 17:14:58 -0400 Received: from pfepb.post.tele.dk ([195.41.46.236]:39712 "EHLO pfepb.post.tele.dk") by vger.kernel.org with ESMTP id S267707AbUHJVOt (ORCPT ); Tue, 10 Aug 2004 17:14:49 -0400 Date: Tue, 10 Aug 2004 23:16:57 +0200 From: Sam Ravnborg To: Adrian Bunk Cc: Roman Zippel , Sam Ravnborg , linux-kernel@vger.kernel.org Subject: Re: [2.6 patch] select FW_LOADER -> depends HOTPLUG Message-ID: <20040810211656.GA7221@mars.ravnborg.org> Mail-Followup-To: Adrian Bunk , Roman Zippel , Sam Ravnborg , linux-kernel@vger.kernel.org References: <20040809195656.GX26174@fs.tum.de> <20040809203840.GB19748@mars.ravnborg.org> <20040810084411.GI26174@fs.tum.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040810084411.GI26174@fs.tum.de> User-Agent: Mutt/1.5.6i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Aug 10, 2004 at 10:44:11AM +0200, Adrian Bunk wrote: > > I assume Sam thinks in the direction to let a symbol inherit the > dependencies off all symbols it selects. > > E.g. in > > config A > depends on B > > config C > select A depends on Z config Z depends on Y > > > C should be treated as if it would depend on B. Correct. But at the same time I miss some functionality to tell me what a given symbol: 1) depends on 2) selects It would be nice in menuconfig to see what config symbol that has dependencies and/or side effects. [*] PCI support Could look like: [*]d PCI support The space for the 'd' tag could be misused for other purposes later. The pressing 'd' would give me the following output: C "The C prompt" -> depends on CONFIG_Z "Prompt for Z" -> depends on CONFIG_Y "Prompt for Y" -> Selects CONFIG_A "Promtp for A" -> depends on CONFIG_B "Prompt for B" Or something similar. The idea is to give user an idea of dependencies (both ways) - recursive. Using both CONFIG symbol and prompt will give the user an idea where to locate it. Something like this is on my wish list. Sam