mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
ti_armv7_keystone2: env: Add NFS loading support for PMMC and MON
NFS loading support has been added to the default environment for most boot components, as PMMC and MON loading were added later they did not originally get the NFS commands added, add these now. Signed-off-by: Andrew F. Davis <afd@ti.com> Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com>
This commit is contained in:
parent
ac34286647
commit
979a1f8b21
1 changed files with 3 additions and 0 deletions
|
@ -220,6 +220,8 @@
|
|||
"set_rd_spec=setenv rd_spec ${rdaddr}:${filesize}\0" \
|
||||
"init_fw_rd_net=dhcp ${rdaddr} ${tftp_root}/${name_fw_rd}; " \
|
||||
"run set_rd_spec\0" \
|
||||
"init_fw_rd_nfs=nfs ${rdaddr} ${nfs_root}/boot/${name_fw_rd}; " \
|
||||
"run set_rd_spec\0" \
|
||||
"init_fw_rd_ramfs=setenv rd_spec -\0" \
|
||||
"init_fw_rd_ubi=ubifsload ${rdaddr} ${bootdir}/${name_fw_rd}; " \
|
||||
"run set_rd_spec\0" \
|
||||
|
@ -228,6 +230,7 @@
|
|||
"set_name_pmmc=setenv name_pmmc ti-sci-firmware-${soc_variant}.bin\0" \
|
||||
"dev_pmmc=0\0" \
|
||||
"get_pmmc_net=dhcp ${loadaddr} ${tftp_root}/${name_pmmc}\0" \
|
||||
"get_pmmc_nfs=nfs ${loadaddr} ${nfs_root}/boot/${name_pmmc}\0" \
|
||||
"get_pmmc_ramfs=run get_pmmc_net\0" \
|
||||
"get_pmmc_mmc=load mmc ${bootpart} ${loadaddr} " \
|
||||
"${bootdir}/${name_pmmc}\0" \
|
||||
|
|
Loading…
Reference in a new issue