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:42:31 +0800 |
commit | cf270b2bff546f322d30d1a283966e5ec83229d8 (patch) | |
tree | 906808e5d5a222a59b5da3d1493afd404b0f817a | |
parent | 3d9f60d512bffece36f61d82b91bee8b6bf29c02 (diff) | |
download | u-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.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=" \ |