mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 10:48:51 +00:00
67a0501708
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>
21 lines
259 B
Text
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;
|
|
};
|
|
};
|
|
};
|