environment: ti: rproc: fix remoteproc environment variables

During refactor this seemed to have been missed.

Fixes: 3e85631db7 ("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-12 17:28:28 +05:30 committed by Udit Kumar
parent b1eed42fc6
commit c22f1ee591
1 changed files with 2 additions and 2 deletions

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;