diff options
author | Peng Fan <peng.fan@nxp.com> | 2016-05-23 17:05:19 +0800 |
---|---|---|
committer | Peng Fan <peng.fan@nxp.com> | 2016-05-23 17:57:31 +0800 |
commit | df339c7bdb189aeedfcac2783b5021c623916c6f (patch) | |
tree | 3725d9aef0e89911f6220da5efd52965645acbb6 | |
parent | c1c4fabdc091a918e2217fd95e25c1ff2808742b (diff) | |
download | u-boot-imx-df339c7bdb189aeedfcac2783b5021c623916c6f.zip u-boot-imx-df339c7bdb189aeedfcac2783b5021c623916c6f.tar.gz u-boot-imx-df339c7bdb189aeedfcac2783b5021c623916c6f.tar.bz2 |
MLK-12845 imx: mx6sabre_common: fix mmcargs
A space should be added after ${smp}. If not,
bootargs is wrong, when CONFIG_SYS_NOSMP defined.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
-rw-r--r-- | include/configs/mx6sabre_common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/mx6sabre_common.h b/include/configs/mx6sabre_common.h index d7590d9..839ca96 100644 --- a/include/configs/mx6sabre_common.h +++ b/include/configs/mx6sabre_common.h @@ -167,7 +167,7 @@ "fi\0" \ EMMC_ENV \ "smp=" CONFIG_SYS_NOSMP "\0"\ - "mmcargs=setenv bootargs console=${console},${baudrate} ${smp}" \ + "mmcargs=setenv bootargs console=${console},${baudrate} ${smp} " \ "root=${mmcroot}\0" \ "loadbootscript=" \ "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \ @@ -190,7 +190,7 @@ "else " \ "bootz; " \ "fi;\0" \ - "netargs=setenv bootargs console=${console},${baudrate} ${smp}" \ + "netargs=setenv bootargs console=${console},${baudrate} ${smp} " \ "root=/dev/nfs " \ "ip=dhcp nfsroot=${serverip}:${nfsroot},v3,tcp\0" \ "netboot=echo Booting from net ...; " \ |