diff options
author | Olaf Mandel <o.mandel@menlosystems.com> | 2018-12-12 13:43:43 +0000 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2019-01-28 12:54:30 +0100 |
commit | 88b5002b340ecd3f72d3e7371d01104e827a1f9a (patch) | |
tree | 63b254afe703c424f96d9130090182c30a6cd0a5 /include/configs/m53menlo.h | |
parent | de5def1cf51579ad0706e9c6d2b77890319a0b45 (diff) |
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 <o.mandel@menlosystems.com>
Reviewed-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'include/configs/m53menlo.h')
-rw-r--r-- | include/configs/m53menlo.h | 2 |
1 files changed, 1 insertions, 1 deletions
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" \ |