diff options
| author | Simon Glass <[email protected]> | 2020-09-06 10:39:09 -0600 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2020-09-22 12:54:13 -0600 |
| commit | b238143db92e6f3b1749ffdb346e90aa1a95454a (patch) | |
| tree | 5fbadc1fdefbfab0925782d0b6b2dbcb9aa2aa1c /tools/binman/test | |
| parent | c0f1ebe9c1b9745e1cbdc742a11093da2c99a174 (diff) | |
binman: Support help messages for missing blobs
When an external blob is missing it can be quite confusing for the user.
Add a way to provide a help message that is shown.
Signed-off-by: Simon Glass <[email protected]>
Signed-off-by: Alper Nebi Yasak <[email protected]>
Diffstat (limited to 'tools/binman/test')
| -rw-r--r-- | tools/binman/test/168_fit_missing_blob.dts | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tools/binman/test/168_fit_missing_blob.dts b/tools/binman/test/168_fit_missing_blob.dts index e007aa41d8a..15f6cc07e5d 100644 --- a/tools/binman/test/168_fit_missing_blob.dts +++ b/tools/binman/test/168_fit_missing_blob.dts @@ -29,9 +29,16 @@ hash-2 { algo = "sha1"; }; - blob-ext { + atf-bl31 { filename = "missing"; }; + cros-ec-rw { + type = "atf-bl31"; + missing-msg = "wibble"; + }; + another { + type = "atf-bl31"; + }; }; }; }; |
