mbox series

[0/5] Makefile: Deal with missing blobs consistently

Message ID 20221010200032.73483-1-sjg@chromium.org
Headers show
Series Makefile: Deal with missing blobs consistently | expand

Message

Simon Glass Oct. 10, 2022, 8 p.m. UTC
Missing blobs should cause the build (with make) to fail, but at present
success is returned. This is because binman currently produces an exit
code of 0 in this case.

Of course this is not correct, since the images cannot actually be used.

This series fixes that and adjusts buildman to deal sensibly with the
situation.

It also includes a buildman patch to deal with N: entries in the
MAINTAINER files and a few other minor niggles noticed along the way.


Simon Glass (5):
  buildman: Handle the MAINTAINERS 'N' tag
  Makefile: Correct a missing FORCE on the binman rule
  doc: Correct the path to the Makefile documentation
  binman: Use an exit code when blobs are missing
  buildman: Detect binman reporting missing blobs

 Makefile                        |  2 +-
 scripts/Kbuild.include          |  2 +-
 tools/binman/binman.rst         |  4 ++++
 tools/binman/cmdline.py         |  3 +++
 tools/binman/control.py         |  7 ++++++-
 tools/buildman/boards.py        | 11 +++++++++++
 tools/buildman/builderthread.py |  6 +++++-
 7 files changed, 31 insertions(+), 4 deletions(-)