9
0
Fork 0

make dos partition support default yes if we have disk partition support

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 <s.hauer@pengutronix.de>
Acked-by: Juergen Beisert <jbe@pengutronix.de>
This commit is contained in:
Sascha Hauer 2011-12-07 10:46:23 +01:00
parent 377577f3bf
commit 083b3bd52a
1 changed files with 3 additions and 7 deletions

View File

@ -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