diff options
author | Terry Lv <r65388@freescale.com> | 2011-09-23 10:59:54 +0800 |
---|---|---|
committer | Terry Lv <r65388@freescale.com> | 2011-09-23 10:59:54 +0800 |
commit | 0ff764f10e14df31e80cb4d6cc3766e8e7813384 (patch) | |
tree | 3d424305ac18c997662b7bd6b567eb5da37cd34b /include/configs/mx53_ard.h | |
parent | 3124e7e5d673e25d57750685bb0d75ace414c36e (diff) | |
download | u-boot-imx-0ff764f10e14df31e80cb4d6cc3766e8e7813384.zip u-boot-imx-0ff764f10e14df31e80cb4d6cc3766e8e7813384.tar.gz u-boot-imx-0ff764f10e14df31e80cb4d6cc3766e8e7813384.tar.bz2 |
ENGR00157468: Fix default environment's "mmc dev" type error
Some semicolons are missed after "mmc dev 0".
They need to be added to make default environment work.
Signed-off-by: Terry Lv <r65388@freescale.com>
Diffstat (limited to 'include/configs/mx53_ard.h')
-rw-r--r-- | include/configs/mx53_ard.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/mx53_ard.h b/include/configs/mx53_ard.h index c7d8ddb..c0ced24 100644 --- a/include/configs/mx53_ard.h +++ b/include/configs/mx53_ard.h @@ -135,7 +135,7 @@ "bootargs_mmc=setenv bootargs ${bootargs} ip=dhcp " \ "root=/dev/mmcblk0p1 rootwait rw\0" \ "bootcmd_mmc=run bootargs_base bootargs_mmc; " \ - "mmc dev 0" \ + "mmc dev 0;" \ "mmc read ${loadaddr} 0x800 0x1800; bootm\0" \ "bootcmd=run bootcmd_net\0" \ |