diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2013-01-10 09:45:05 +0000 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2013-01-13 11:53:44 +0100 |
commit | 3c41e90118383258db6634916b97eca095735807 (patch) | |
tree | 5d635897ee741ae78563bcab8e291197d3570d39 /include | |
parent | d17087cd010c25f88a9a9d4bb12d5f03c26b7cd5 (diff) | |
download | u-boot-imx-3c41e90118383258db6634916b97eca095735807.zip u-boot-imx-3c41e90118383258db6634916b97eca095735807.tar.gz u-boot-imx-3c41e90118383258db6634916b97eca095735807.tar.bz2 |
mx28evk: 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/mx28evk.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/configs/mx28evk.h b/include/configs/mx28evk.h index cdf3e15..a13478d 100644 --- a/include/configs/mx28evk.h +++ b/include/configs/mx28evk.h @@ -292,11 +292,9 @@ "console_mainline=ttyAMA0\0" \ "mmcdev=0\0" \ "mmcpart=2\0" \ - "mmcroot=/dev/mmcblk0p3 rw\0" \ - "mmcrootfstype=ext3 rootwait\0" \ + "mmcroot=/dev/mmcblk0p3 rw rootwait\0" \ "mmcargs=setenv bootargs console=${console_mainline},${baudrate} " \ - "root=${mmcroot} " \ - "rootfstype=${mmcrootfstype}\0" \ + "root=${mmcroot}\0" \ "loadbootscript=" \ "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \ "bootscript=echo Running bootscript from mmc ...; " \ |