mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-11 05:52:36 +02:00
8c03b886c4
Instead of having detailed error messages, run most commands through a function that calls err() under fault conditions. Where detail is still required, err() is still called manually. Where it isn't, the error message is simply whatever command was executed to cause the error. This results in a massive sloccount reduction for lbmk; specifically, 178 sloc reduction, or a 8.1% reduction. The total sloccount is now 2022, for shell scripts. Signed-off-by: Leah Rowe <leah@libreboot.org>
59 lines
1.4 KiB
Bash
Executable File
59 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env sh
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
# SPDX-FileCopyrightText: 2014,2015,2016,2020,2021,2023 Leah Rowe <leah@libreboot.org>
|
|
# SPDX-FileCopyrightText: 2015 Klemens Nanni <contact@autoboot.org>
|
|
# SPDX-FileCopyrightText: 2022 Caleb La Grange <thonkpeasant@protonmail.com>
|
|
# SPDX-FileCopyrightText: 2022 Ferass El Hafidi <vitali64pmemail@protonmail.com>
|
|
|
|
[ "x${DEBUG+set}" = 'xset' ] && set -v
|
|
set -u -e
|
|
|
|
. "include/err.sh"
|
|
. "include/option.sh"
|
|
. "include/boot.sh"
|
|
|
|
read projectname < projectname
|
|
|
|
# main() is in include/boot.sh
|
|
|
|
handle_targets()
|
|
{
|
|
[ -z "${_displaymode}" ] || _displaymode="-d ${_displaymode}"
|
|
[ -z "${_payload}" ] || _payload="-p ${_payload}"
|
|
[ -z "${_keyboard}" ] || _keyboard="-k ${_keyboard}"
|
|
|
|
printf "Building %s ROM images\n" "${projectname}"
|
|
|
|
check_targets
|
|
build_bootroms
|
|
confirm_targets
|
|
}
|
|
|
|
check_targets()
|
|
{
|
|
for x in ${boards}; do
|
|
[ -d "config/coreboot/${x}/" ] || \
|
|
err "check_targets: target not defined: ${x}"
|
|
done
|
|
}
|
|
|
|
build_bootroms()
|
|
{
|
|
opts="${_displaymode} ${_payload} ${_keyboard}"
|
|
for x in ${boards}; do
|
|
x_ ./build boot roms_helper ${opts} ${x}
|
|
[ -d "bin/${x}" ] && targets="${x} ${targets}"
|
|
done
|
|
}
|
|
|
|
confirm_targets()
|
|
{
|
|
[ -z "${targets}" ] && err "No ROM images were compiled."
|
|
printf "\n\nYour ROM images are available in these directories:\n"
|
|
for x in ${targets}; do
|
|
printf "* bin/%s\n" "${x}"
|
|
done
|
|
}
|
|
|
|
main $@
|