diff options
author | Khoronzhuk, Ivan <ivan.khoronzhuk@ti.com> | 2014-11-03 18:09:51 +0200 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-11-06 11:04:38 -0500 |
commit | ff52e3b4306dc1f7f1c3e60802fba84acad66ce8 (patch) | |
tree | ac29b6613091d6e3081b3f66cd862b2b0fb8042d /include | |
parent | ac7792687ad8ab68e0b431e57b4cfe72453d48eb (diff) | |
download | u-boot-imx-ff52e3b4306dc1f7f1c3e60802fba84acad66ce8.zip u-boot-imx-ff52e3b4306dc1f7f1c3e60802fba84acad66ce8.tar.gz u-boot-imx-ff52e3b4306dc1f7f1c3e60802fba84acad66ce8.tar.bz2 |
ks2_evm: configs: fix UBI volume name
The UBI volume name has to be prefixed with "ubi:".
Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@ti.com>
Reviewed-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/ks2_evm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/ks2_evm.h b/include/configs/ks2_evm.h index e734ebb..7157b78 100644 --- a/include/configs/ks2_evm.h +++ b/include/configs/ks2_evm.h @@ -268,7 +268,7 @@ "run_kern=bootm ${addr_kern} - ${addr_fdt}\0" \ "init_net=run args_all args_net\0" \ "init_ubi=run args_all args_ubi; " \ - "ubi part ubifs; ubifsmount boot;" \ + "ubi part ubifs; ubifsmount ubi:boot;" \ "ubifsload ${addr_secdb_key} securedb.key.bin;\0" \ "get_fdt_net=dhcp ${addr_fdt} ${tftp_root}/${name_fdt}\0" \ "get_fdt_ubi=ubifsload ${addr_fdt} ${name_fdt}\0" \ |