From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from metis.ext.pengutronix.de ([2001:6f8:1178:4:290:27ff:fe1d:cc33]) by casper.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1RYEWp-0002xs-93 for barebox@lists.infradead.org; Wed, 07 Dec 2011 10:15:08 +0000 From: Juergen Beisert Date: Wed, 7 Dec 2011 11:14:03 +0100 References: <1323251318-9824-1-git-send-email-s.hauer@pengutronix.de> In-Reply-To: <1323251318-9824-1-git-send-email-s.hauer@pengutronix.de> MIME-Version: 1.0 Content-Disposition: inline Message-Id: <201112071114.03921.jbe@pengutronix.de> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: barebox-bounces@lists.infradead.org Errors-To: barebox-bounces+u.kleine-koenig=pengutronix.de@lists.infradead.org Subject: Re: [PATCH] make dos partition support default yes if we have disk partition support To: barebox@lists.infradead.org Sascha Hauer wrote: > DOS partitions are the only partitions we handle at the moment > and without it most MMC/SD enabled configs are useless, so make > it default yes. Also, use 'depends on' instead of 'if' > > Signed-off-by: Sascha Hauer > Cc: Juergen Beisert Acked-by: Juergen Beisert > --- > common/Kconfig | 10 +++------- > 1 files changed, 3 insertions(+), 7 deletions(-) > > diff --git a/common/Kconfig b/common/Kconfig > index 1318e7d..27464d1 100644 > --- a/common/Kconfig > +++ b/common/Kconfig > @@ -406,24 +406,20 @@ config PARTITION > bool > prompt "Enable Partitions" > > -if PARTITION > - > config PARTITION_DISK > + depends on PARTITION > bool "DISK partition support" > help > Add support for handling common partition tables on all kind of disk > like devices (harddisks, CF cards, SD cards and so on) > > -if PARTITION_DISK > - > config PARTITION_DISK_DOS > + depends on PARTITION_DISK > + default y > bool "DOS partition support" > help > Add support to handle partitions in DOS style. > > -endif > -endif > - > config DEFAULT_ENVIRONMENT > bool > default y The "if PARTITION_DISK" was only for future updates to add more partition table support than the old DOS type. World domination...you know? ;-) jbe -- Pengutronix e.K. | Juergen Beisert | Linux Solutions for Science and Industry | http://www.pengutronix.de/ | _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox