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:
parent
b1eed42fc6
commit
c22f1ee591
|
|
@ -7,14 +7,14 @@ boot_rprocs=
|
|||
rproc_load_and_boot_one=
|
||||
if load mmc ${bootpart} $loadaddr ${rproc_fw}; then
|
||||
if rproc load ${rproc_id} ${loadaddr} ${filesize}; then
|
||||
rproc start ${rproc_id}
|
||||
rproc start ${rproc_id};
|
||||
fi;
|
||||
fi
|
||||
boot_rprocs_mmc=
|
||||
env set rproc_id;
|
||||
env set rproc_fw;
|
||||
for i in ${rproc_fw_binaries} ; do
|
||||
if test -z ${rproc_id} ; then
|
||||
if test -z "${rproc_id}" ; then
|
||||
env set rproc_id $i;
|
||||
else
|
||||
env set rproc_fw $i;
|
||||
|
|
|
|||
Loading…
Reference in New Issue