From df339c7bdb189aeedfcac2783b5021c623916c6f Mon Sep 17 00:00:00 2001 From: Peng Fan Date: Mon, 23 May 2016 17:05:19 +0800 Subject: [PATCH] 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 --- include/configs/mx6sabre_common.h | 4 ++-- 1 file 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 ...; " \ -- 1.9.1