mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
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:
parent
58f4bb833b
commit
6d677ea8ec
1 changed files with 2 additions and 2 deletions
|
@ -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 a new issue