summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobby Cai <R63905@freescale.com>2013-09-09 14:26:25 +0800
committerRobby Cai <R63905@freescale.com>2013-09-09 14:42:31 +0800
commitcf270b2bff546f322d30d1a283966e5ec83229d8 (patch)
tree906808e5d5a222a59b5da3d1493afd404b0f817a
parent3d9f60d512bffece36f61d82b91bee8b6bf29c02 (diff)
downloadu-boot-imx-cf270b2bff546f322d30d1a283966e5ec83229d8.zip
u-boot-imx-cf270b2bff546f322d30d1a283966e5ec83229d8.tar.gz
u-boot-imx-cf270b2bff546f322d30d1a283966e5ec83229d8.tar.bz2
ENGR00278716 imx6sl: correct mmc/sd partition number to load uImage and rootfs
The uImage and rootfs has been stored on partition #1 and #2 respectively. This patch fixes the partition index thus the boot script can boot from mmc/sd automatically. Signed-off-by: Robby Cai <R63905@freescale.com>
-rw-r--r--include/configs/mx6slevk.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/mx6slevk.h b/include/configs/mx6slevk.h
index d5f97cc..b1ab6b8 100644
--- a/include/configs/mx6slevk.h
+++ b/include/configs/mx6slevk.h
@@ -109,8 +109,8 @@
"boot_fdt=try\0" \
"ip_dyn=yes\0" \
"mmcdev=0\0" \
- "mmcpart=2\0" \
- "mmcroot=/dev/mmcblk0p3 rootwait rw\0" \
+ "mmcpart=1\0" \
+ "mmcroot=/dev/mmcblk0p2 rootwait rw\0" \
"mmcargs=setenv bootargs console=${console},${baudrate} " \
"root=${mmcroot}\0" \
"loadbootscript=" \