u-boot/tools/binman/test/266_blob_ext_opt.dts
Simon Glass 67a0501708 binman: Support optional external blobs
Some blobs are actually not necessary for the board to work correctly. Add
a property to allow this to be indicated. Missing optional blobs do not
cause a build failure.

Signed-off-by: Simon Glass <sjg@chromium.org>
2023-01-18 11:50:01 -07:00

21 lines
259 B
Text

// SPDX-License-Identifier: GPL-2.0+
/dts-v1/;
/ {
#address-cells = <1>;
#size-cells = <1>;
binman {
ok {
type = "blob-ext";
filename = "refcode.bin";
};
missing {
type = "blob-ext";
filename = "missing.bin";
optional;
};
};
};