diff options
| author | Samuel Holland <[email protected]> | 2021-02-08 00:03:17 -0600 |
|---|---|---|
| committer | Andre Przywara <[email protected]> | 2021-04-16 01:12:59 +0100 |
| commit | 925cd8d77eedfc5a05d7a9559da4e30b9277920a (patch) | |
| tree | 3c79d927d833dd9efbdb4ca9a5fd7991f825b0ee | |
| parent | ed4bc13f3d3e1450a9c0bb31cbd4df658685b516 (diff) | |
sunxi: binman: Do not hardcode U-Boot load address
The FIT description has access to the configuration variables. Use the
appropriate variable instead of hardcoding the address.
Signed-off-by: Samuel Holland <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Signed-off-by: Andre Przywara <[email protected]>
| -rw-r--r-- | arch/arm/dts/sunxi-u-boot.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/dts/sunxi-u-boot.dtsi b/arch/arm/dts/sunxi-u-boot.dtsi index f8225888987..a4227a3c22d 100644 --- a/arch/arm/dts/sunxi-u-boot.dtsi +++ b/arch/arm/dts/sunxi-u-boot.dtsi @@ -42,7 +42,7 @@ os = "u-boot"; arch = "arm64"; compression = "none"; - load = <0x4a000000>; + load = <CONFIG_SYS_TEXT_BASE>; u-boot-nodtb { }; |
