From: Khoronzhuk, Ivan Date: Mon, 3 Nov 2014 16:09:51 +0000 (+0200) Subject: ks2_evm: configs: fix UBI volume name X-Git-Tag: KARO-TXA5-2015-06-26~350^2~18 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ff52e3b4306dc1f7f1c3e60802fba84acad66ce8;p=karo-tx-uboot.git ks2_evm: configs: fix UBI volume name The UBI volume name has to be prefixed with "ubi:". Signed-off-by: Ivan Khoronzhuk Reviewed-by: Tom Rini --- diff --git a/include/configs/ks2_evm.h b/include/configs/ks2_evm.h index e734ebbae5..7157b7819b 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" \