diff options
| author | Jonas Karlman <[email protected]> | 2023-02-25 19:01:33 +0000 |
|---|---|---|
| committer | Kever Yang <[email protected]> | 2023-02-28 18:07:26 +0800 |
| commit | 05b978be5f5c5494044bd749f9b6b38f2bb5e0cc (patch) | |
| tree | f406b93052b41d348eb7a17aac6ea9209be62c89 /tools/binman/test | |
| parent | f0498b2be27b04319229c65a71974986662bcfac (diff) | |
binman: Add support for a rockchip-tpl entry
The rockchip-tpl entry can be used when an external TPL binary should be
used instead of the normal U-Boot TPL.
Signed-off-by: Jonas Karlman <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Reviewed-by: Kever Yang <[email protected]>
Tested-by: Eugen Hristev <[email protected]>
Diffstat (limited to 'tools/binman/test')
| -rw-r--r-- | tools/binman/test/277_rockchip_tpl.dts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/binman/test/277_rockchip_tpl.dts b/tools/binman/test/277_rockchip_tpl.dts new file mode 100644 index 00000000000..269f56e2545 --- /dev/null +++ b/tools/binman/test/277_rockchip_tpl.dts @@ -0,0 +1,16 @@ +// SPDX-License-Identifier: GPL-2.0+ + +/dts-v1/; + +/ { + #address-cells = <1>; + #size-cells = <1>; + + binman { + size = <16>; + + rockchip-tpl { + filename = "rockchip-tpl.bin"; + }; + }; +}; |
