diff options
author | Robby Cai <R63905@freescale.com> | 2013-09-09 14:26:25 +0800 |
---|---|---|
committer | Robby Cai <R63905@freescale.com> | 2013-09-09 14:39:32 +0800 |
commit | d20319c25d27c38fd531e0ea97b5661268449de6 (patch) | |
tree | f932d06b0010ba0c4fbc3afde6f2be172fbdf3de | |
parent | ccefb06661500884c17a8730a3ffc4aca24a8e7e (diff) | |
download | u-boot-imx-d20319c25d27c38fd531e0ea97b5661268449de6.zip u-boot-imx-d20319c25d27c38fd531e0ea97b5661268449de6.tar.gz u-boot-imx-d20319c25d27c38fd531e0ea97b5661268449de6.tar.bz2 |
ENGR00278716 imx6sl: correct mmc/sd partition number to load uImage and rootfsrel_imx_3.10.9_1.0.0_alphaimx_v2013.04_3.10.9_1.0.0_alpha
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.h | 4 |
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=" \ |