diff options
author | Alexander Graf <agraf@suse.de> | 2016-03-04 01:10:11 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-03-15 21:30:13 -0400 |
commit | da3e620d68ba06d7cb501f4756db7a3caf90e215 (patch) | |
tree | d1a1ce1df2384fa016052b2f8bca4831a5b53c11 /include/config_distro_bootcmd.h | |
parent | e4a7394ad2ea7511811370a53deeaa168bb273fc (diff) | |
download | u-boot-da3e620d68ba06d7cb501f4756db7a3caf90e215.tar.gz |
arm64: Replace fdt_name env variables with fdtfile
The commonly defined environment variable to determine the device tree
file name is called fdtfile rather than fdt_name. Replace all occurences
of fdt_name with fdtfile.
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'include/config_distro_bootcmd.h')
-rw-r--r-- | include/config_distro_bootcmd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h index 5792d2961b..ad9045e4f0 100644 --- a/include/config_distro_bootcmd.h +++ b/include/config_distro_bootcmd.h @@ -107,7 +107,7 @@ \ "load_efi_dtb=" \ "load ${devtype} ${devnum}:${distro_bootpart} " \ - "${fdt_addr_r} ${prefix}${fdt_name}; " \ + "${fdt_addr_r} ${prefix}${fdtfile}; " \ "fdt addr ${fdt_addr_r}\0" \ \ "efi_dtb_prefixes=/ /dtb/ /dtb/current/\0" \ @@ -115,7 +115,7 @@ "for prefix in ${efi_dtb_prefixes}; do " \ "if test -e ${devtype} " \ "${devnum}:${distro_bootpart} " \ - "${prefix}${fdt_name}; then " \ + "${prefix}${fdtfile}; then " \ "run load_efi_dtb; " \ "fi;" \ "done;" \ |