Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756952AbYGDKIp (ORCPT ); Fri, 4 Jul 2008 06:08:45 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752357AbYGDKIf (ORCPT ); Fri, 4 Jul 2008 06:08:35 -0400 Received: from aeryn.fluff.org.uk ([87.194.8.8]:50255 "EHLO kira.home.fluff.org" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752246AbYGDKIf (ORCPT ); Fri, 4 Jul 2008 06:08:35 -0400 Date: Fri, 4 Jul 2008 11:08:29 +0100 From: Ben Dooks To: linux-kernel@vger.kernel.org Subject: Kconfig question - multiple entries touching one integer Message-ID: <20080704100829.GC24620@fluff.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Disclaimer: These are my own opinions, so there! User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1129 Lines: 47 I'm trying to produce a Kconfig to deal with allocating extra resources depending on what is selected. I'd like to have an integer which specifies the ie: config ARCH_EXTRA_RESOURCES int default 0 help Extra resources depending on the board selected ... config BOARD_A set ARCH_EXTRA_RESOURCES 32 config BOARD_B set ARCH_EXTRA_RESOURCES 64 in this example, if board A is selected, then ARCH_EXTRA_RESOURCES would be 32, if BOARD_B is selected then it would be 64. doing config ARCH_EXTRA_RESOURCES int default 0 default 32 if BOARD_A default 64 if BOARD_B doesn't work, and involves changing this part of the Kconfig every time a new board is added. Is there any current way of doing this, would there be any objections to having some form of 'set' clause in a config statememt? -- Ben (ben@fluff.org, http://www.fluff.org/) 'a smiley only costs 4 bytes' -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/