summaryrefslogtreecommitdiffstats
path: root/defaultenv
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2010-10-22 14:49:26 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2010-10-22 19:32:10 +0200
commit508fd118f27fb40a0cae29166d5b60a07b48d4e8 (patch)
treee074778a80c4a1fd8e0b78930519578875cd3dc7 /defaultenv
parente722ea02016b971f9af71b9eb4288df925b427b0 (diff)
downloadbarebox-508fd118f27fb40a0cae29166d5b60a07b48d4e8.tar.gz
barebox-508fd118f27fb40a0cae29166d5b60a07b48d4e8.tar.xz
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>
Diffstat (limited to 'defaultenv')
-rw-r--r--defaultenv/bin/boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/defaultenv/bin/boot b/defaultenv/bin/boot
index 3fdc5c1868..42c7ec2965 100644
--- a/defaultenv/bin/boot
+++ b/defaultenv/bin/boot
@@ -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