diff options
author | Simon Glass <sjg@chromium.org> | 2016-11-25 20:15:54 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-12-20 08:09:55 +1300 |
commit | c49deb837cb1ba0a64869fcb4fabac11d3e94ae0 (patch) | |
tree | f479e174f9aeb0af444699812698fd733c951b5b /tools/binman/test/36_u_boot_img.dts | |
parent | e0ff85513858246e5378e4e3676ef6128452c4f6 (diff) |
binman: Add support for u-boot.img as an input binary
Add an entry type for u-boot.img (a legacy U-Boot image) and a simple test.
Signed-off-by: Simon Glass <sjg@chromium.org>
Tested-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'tools/binman/test/36_u_boot_img.dts')
-rw-r--r-- | tools/binman/test/36_u_boot_img.dts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/binman/test/36_u_boot_img.dts b/tools/binman/test/36_u_boot_img.dts new file mode 100644 index 0000000000..aa5a3fe481 --- /dev/null +++ b/tools/binman/test/36_u_boot_img.dts @@ -0,0 +1,11 @@ +/dts-v1/; + +/ { + #address-cells = <1>; + #size-cells = <1>; + + binman { + u-boot-img { + }; + }; +}; |