diff options
| author | Simon Glass <[email protected]> | 2025-04-13 19:59:33 +0000 |
|---|---|---|
| committer | Kever Yang <[email protected]> | 2025-05-06 15:58:25 +0800 |
| commit | 876df0a57daafce96d28a3965116e2bb29e9e0e4 (patch) | |
| tree | 2e7fd0fed0dc1afcf4c015746f87ccf4ae8db6e0 /arch | |
| parent | f9b4d051a7357e7da7b2262f8719c555573b0b31 (diff) | |
rockchip: binman: Correct the OS prop for U-Boot
The U-Boot image is currently being identified as an invalid OS in
spl_fit_image_get_os() due to case sensitive compare.
Use the correct lower-case value to fix this.
Fixes: e0c0efff2a02 ("rockchip: Support building the all output files in binman")
Signed-off-by: Simon Glass <[email protected]>
Signed-off-by: Jonas Karlman <[email protected]>
Reviewed-by: Kever Yang <[email protected]>
Reviewed-by: Quentin Schulz <[email protected]>
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/arm/dts/rockchip-u-boot.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/dts/rockchip-u-boot.dtsi b/arch/arm/dts/rockchip-u-boot.dtsi index c8c928c7e50..e9ed1d4b573 100644 --- a/arch/arm/dts/rockchip-u-boot.dtsi +++ b/arch/arm/dts/rockchip-u-boot.dtsi @@ -50,7 +50,7 @@ u-boot { description = "U-Boot"; type = "standalone"; - os = "U-Boot"; + os = "u-boot"; #ifdef CONFIG_ARM64 arch = "arm64"; #else |
