diff options
author | Nishanth Menon | 2020-10-07 21:47:59 -0500 |
---|---|---|
committer | Lokesh Vutla | 2020-10-12 08:09:53 +0530 |
commit | cb56936ce575ba043eb03e2a437950e7a078be49 (patch) | |
tree | b98018c2a29febc3d449cc99fd055070cf7be7da /include/environment | |
parent | 25364f5ec8e9ee9271c55c5d0b1b51034438fe8b (diff) |
env: ti: ufs: Use dtboaddr instead of overlayaddr
Use dtboaddr to define the overlay address common to all TI platforms
instead of creating a new overlayaddr for the purpose.
Signed-off-by: Nishanth Menon <nm@ti.com>
Diffstat (limited to 'include/environment')
-rw-r--r-- | include/environment/ti/ufs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/environment/ti/ufs.h b/include/environment/ti/ufs.h index d457e203081..6619ec9c88e 100644 --- a/include/environment/ti/ufs.h +++ b/include/environment/ti/ufs.h @@ -26,8 +26,8 @@ "fdt resize 0x100000;" \ "for overlay in $name_overlays;" \ "do;" \ - "load scsi ${bootpart} ${overlayaddr} ${bootdir}/${overlay} && " \ - "fdt apply ${overlayaddr};" \ + "load scsi ${bootpart} ${dtboaddr} ${bootdir}/${overlay} && " \ + "fdt apply ${dtboaddr};" \ "done;\0" #endif |