build/boot/roms: say board name on stderr

That way, I can more easily debug build issues with
specific boards, e.g.

./build boot roms all 2>lbmk.err.log

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe 2023-06-25 03:04:25 +01:00
parent 2099545078
commit f256ce9870
1 changed files with 2 additions and 2 deletions

View File

@ -85,9 +85,9 @@ main()
shift
done
printf "board %s , kb %s , displaymode %s , payloads %s\n" \
printf "\n\nboard %s , kb %s , displaymode %s , payloads %s\n" \
${board} ${keyboard_layouts} ${displaymodes} \
${payloads}
${payloads} 1>&2
if [ "${board}" = "" ]; then
printf "build/roms: undefined board. Exiting\n"