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@xxxxxxxxxxxxxx> --- defaultenv/bin/boot | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/defaultenv/bin/boot b/defaultenv/bin/boot index 3fdc5c1..42c7ec2 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 -- 1.7.2.3 _______________________________________________ barebox mailing list barebox@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/barebox