diff options
author | Alexander Holler <holler@ahsoftware.de> | 2014-07-14 17:49:56 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-07-22 07:44:26 -0400 |
commit | 44bd26fa99fb6d7c1d98c9e8d0bc0c5ac51c04bf (patch) | |
tree | 377c50ef3ae0ad67c7a76fe3417eb821b63e12a8 | |
parent | ecd1446fe1df00d7f7b9de286dba309d93b51870 (diff) | |
download | u-boot-imx-44bd26fa99fb6d7c1d98c9e8d0bc0c5ac51c04bf.zip u-boot-imx-44bd26fa99fb6d7c1d98c9e8d0bc0c5ac51c04bf.tar.gz u-boot-imx-44bd26fa99fb6d7c1d98c9e8d0bc0c5ac51c04bf.tar.bz2 |
omap3_beagle: handle import of environments in files with CRLF as line endings
Use the new option -r for env import.
Signed-off-by: Alexander Holler <holler@ahsoftware.de>
-rw-r--r-- | include/configs/omap3_beagle.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 3782049..9ba031d 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -195,7 +195,7 @@ "bootenv=uEnv.txt\0" \ "loadbootenv=fatload mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \ "importbootenv=echo Importing environment from mmc ...; " \ - "env import -t $loadaddr $filesize\0" \ + "env import -t -r $loadaddr $filesize\0" \ "ramargs=setenv bootargs console=${console} " \ "${optargs} " \ "mpurate=${mpurate} " \ |