diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2012-12-21 06:59:04 (GMT) |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2012-12-26 11:05:54 (GMT) |
commit | aef8af6a3dbd95d77b35a23004b6256dc70fb78f (patch) | |
tree | a61697e35f54efcc496d03d308133019d1cb2dee /include | |
parent | 8dd15b43b016e6b45885313e2ea660bab4e1f683 (diff) | |
download | u-boot-fsl-qoriq-aef8af6a3dbd95d77b35a23004b6256dc70fb78f.tar.xz |
mx53loco: We shouldn't hardcode a rootfs filesystem type
For a generic environment, we shouldn't have a fixed rootfs filesystem
so we drop it from env.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/mx53loco.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/include/configs/mx53loco.h b/include/configs/mx53loco.h index e30502b..5f8f52e 100644 --- a/include/configs/mx53loco.h +++ b/include/configs/mx53loco.h @@ -120,11 +120,8 @@ "uimage=uImage\0" \ "mmcdev=0\0" \ "mmcpart=2\0" \ - "mmcroot=/dev/mmcblk0p3 rw\0" \ - "mmcrootfstype=ext3 rootwait\0" \ - "mmcargs=setenv bootargs console=ttymxc0,${baudrate} " \ - "root=${mmcroot} " \ - "rootfstype=${mmcrootfstype}\0" \ + "mmcroot=/dev/mmcblk0p3 rw rootwait\0" \ + "mmcargs=setenv bootargs console=ttymxc0,${baudrate} root=${mmcroot} " \ "loadbootscript=" \ "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \ "bootscript=echo Running bootscript from mmc ...; " \ |