9
0
Fork 0

defaultenv: fix mtdparts

We had some \" in mtdparts to allow for spaces in the mtdparts
kernel option. Barebox does not handle these correctly, so remove
them and disallow spaces in mtdparts

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2010-10-22 14:49:26 +02:00
parent e722ea0201
commit 508fd118f2
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ if [ -n $nand_parts ]; then
fi
if [ -n $mtdparts ]; then
bootargs="${bootargs} mtdparts=\"${mtdparts}\""
bootargs="${bootargs} mtdparts=${mtdparts}"
fi
if [ ! -e /dev/ram0.kernelraw ]; then