
From: Fabio Estevam fabio.estevam@freescale.com
Currently mmcrootfstype is set to ext3 type.
It is better not to force it in the env vars, because users may prefer a different file system type, so let's get rid of 'mmcrootfstype'.
Signed-off-by: Fabio Estevam fabio.estevam@freescale.com --- Changes since v3: - Newly introduced
include/configs/mx51evk.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/include/configs/mx51evk.h b/include/configs/mx51evk.h index 4545a80..0973a74 100644 --- a/include/configs/mx51evk.h +++ b/include/configs/mx51evk.h @@ -160,8 +160,7 @@ "ip_dyn=yes\0" \ "mmcdev=0\0" \ "mmcpart=2\0" \ - "mmcroot=/dev/mmcblk0p3 rw\0" \ - "mmcrootfstype=ext3 rootwait\0" \ + "mmcroot=/dev/mmcblk0p3 rootwait rw\0" \ "mmcargs=setenv bootargs console=ttymxc0,${baudrate} " \ "root=${mmcroot} " \ "rootfstype=${mmcrootfstype}\0" \