From: Olaf Mandel Date: Wed, 12 Dec 2018 13:43:43 +0000 (+0000) Subject: m53menlo: fix addmtd cmd in default environment X-Git-Tag: v2025.01-rc5-pxa1908~3150^2~47 X-Git-Url: http://git.dujemihanovic.xyz/posts?a=commitdiff_plain;h=88b5002b340ecd3f72d3e7371d01104e827a1f9a;p=u-boot.git m53menlo: fix addmtd cmd in default environment The original definition added the string mtdparts= to the Linux Kernel args twice: mtdparts=mtdparts=. Fix that. Signed-off-by: Olaf Mandel Reviewed-by: Marek Vasut --- diff --git a/include/configs/m53menlo.h b/include/configs/m53menlo.h index 257a4cbc00..51456fbe55 100644 --- a/include/configs/m53menlo.h +++ b/include/configs/m53menlo.h @@ -215,7 +215,7 @@ "setenv bootargs ${bootargs} " \ "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \ ":${hostname}:${netdev}:off\0" \ - "addmtd=setenv bootargs ${bootargs} mtdparts=${mtdparts}\0" \ + "addmtd=setenv bootargs ${bootargs} ${mtdparts}\0" \ "addmisc=" \ "setenv bootargs ${bootargs} ${miscargs}\0" \ "addargs=run addcons addmisc addmtd\0" \