diff options
| author | Simon Glass <sjg@chromium.org> | 2020-09-01 05:13:58 -0600 |
|---|---|---|
| committer | Simon Glass <sjg@chromium.org> | 2020-09-22 12:50:43 -0600 |
| commit | dc2f81a2c89468371cf404816ed57481718deb7f (patch) | |
| tree | 616bf002956581de23a55c5f9e4b3857cd68f13b /tools/binman/test | |
| parent | 8795898a53dae112857f06b49e58cfe94a731dfa (diff) | |
| download | u-boot-dc2f81a2c89468371cf404816ed57481718deb7f.tar.gz u-boot-dc2f81a2c89468371cf404816ed57481718deb7f.tar.xz u-boot-dc2f81a2c89468371cf404816ed57481718deb7f.zip | |
binman: Add support for ATF BL31
Add an entry for ARM Trusted Firmware's 'BL31' payload, which is the
device's main firmware. Typically this is U-Boot.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman/test')
| -rw-r--r-- | tools/binman/test/169_atf_bl31.dts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/binman/test/169_atf_bl31.dts b/tools/binman/test/169_atf_bl31.dts new file mode 100644 index 0000000000..2b7547d70f --- /dev/null +++ b/tools/binman/test/169_atf_bl31.dts @@ -0,0 +1,16 @@ +// SPDX-License-Identifier: GPL-2.0+ + +/dts-v1/; + +/ { + #address-cells = <1>; + #size-cells = <1>; + + binman { + size = <16>; + + atf-bl31 { + filename = "bl31.bin"; + }; + }; +}; |
