environment: ti: rproc: fix remoteproc environment variables

During refactor this seemed to have been missed.

Fixes: 65dbb128fb ("include: environment: ti: Use .env for environment variables")

Signed-off-by: Manorit Chawdhry <m-chawdhry@ti.com>
This commit is contained in:
Manorit Chawdhry 2023-05-15 12:22:42 +05:30 committed by Tom Rini
parent 58f4bb833b
commit 6d677ea8ec

View file

@ -7,14 +7,14 @@ boot_rprocs=
rproc_load_and_boot_one= rproc_load_and_boot_one=
if load mmc ${bootpart} $loadaddr ${rproc_fw}; then if load mmc ${bootpart} $loadaddr ${rproc_fw}; then
if rproc load ${rproc_id} ${loadaddr} ${filesize}; then if rproc load ${rproc_id} ${loadaddr} ${filesize}; then
rproc start ${rproc_id} rproc start ${rproc_id};
fi; fi;
fi fi
boot_rprocs_mmc= boot_rprocs_mmc=
env set rproc_id; env set rproc_id;
env set rproc_fw; env set rproc_fw;
for i in ${rproc_fw_binaries} ; do for i in ${rproc_fw_binaries} ; do
if test -z ${rproc_id} ; then if test -z "${rproc_id}" ; then
env set rproc_id $i; env set rproc_id $i;
else else
env set rproc_fw $i; env set rproc_fw $i;