diff options
author | Samuel Holland <samuel@sholland.org> | 2020-10-21 21:12:11 -0500 |
---|---|---|
committer | Jagan Teki <jagan@amarulasolutions.com> | 2020-10-22 11:43:43 +0530 |
commit | 6b7c7ed80a5a02325adcaef1eaaeb2d9ffedc314 (patch) | |
tree | ea04ab1106d64ad670e65915dc5b75bf9ee084fd /arch/arm | |
parent | eafbdbb8ebd8a8ca0da0a6571f8510784ed037bc (diff) | |
download | u-boot-6b7c7ed80a5a02325adcaef1eaaeb2d9ffedc314.tar.gz |
sunxi: binman: Provide a default BL31 filename
Prior to commit 7f7f8aca8257 ("sunxi: Convert 64-bit boards to use
binman"), if the BL31 environment variable was not defined, the firmware
would be loaded from a file "bl31.bin" in the current directory. Restore
that behavior by providing that as the default filename in case no entry
arg is provided, which will be the case if the environment variable is
unset.
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Samuel Holland <samuel@sholland.org>
Reviewed-by: Jagan Teki <jagan@amarulasolutions.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/dts/sunxi-u-boot.dtsi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/dts/sunxi-u-boot.dtsi b/arch/arm/dts/sunxi-u-boot.dtsi index 92a6447231..b7195c5671 100644 --- a/arch/arm/dts/sunxi-u-boot.dtsi +++ b/arch/arm/dts/sunxi-u-boot.dtsi @@ -52,6 +52,7 @@ #endif atf-bl31 { + filename = "bl31.bin"; missing-msg = "atf-bl31-sunxi"; }; }; |