mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-03-27 14:51:15 +02:00
also: further reduce the number of arguments passed, to certain functions as and when feasible, in cases where those are global variables that never change. the cbfstool argument in mkUbootRom wasn't even used. that function was only using the global variable, which again is only set once. i also shortened a few messages, removed a few errant line breaks and reduced sloccount by exactly 1 in main() by re-arranging how the shift command is used. it's mainly about shortening variable names, to then reduce the number of line breaks, but it's a surgical code size reduction in build/boot/roms. Signed-off-by: Leah Rowe <leah@libreboot.org>
58 lines
1.3 KiB
Bash
Executable File
58 lines
1.3 KiB
Bash
Executable File
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
# SPDX-FileCopyrightText: 2022 Caleb La Grange <thonkpeasant@protonmail.com>
|
|
# SPDX-FileCopyrightText: 2022 Ferass El Hafidi <vitali64pmemail@protonmail.com>
|
|
# SPDX-FileCopyrightText: 2023 Leah Rowe <leah@libreboot.org>
|
|
|
|
eval "$(setvars "" first board boards _displaymode _payload _keyboard)"
|
|
|
|
main()
|
|
{
|
|
[ $# -lt 1 ] && usage && err "target not specified"
|
|
|
|
first="${1}"
|
|
[ "${first}" = "help" ] && usage && exit 0
|
|
[ "${first}" = "list" ] && \
|
|
listitems config/coreboot && exit 0
|
|
|
|
while [ $# -gt 0 ]; do
|
|
case ${1} in
|
|
-d) _displaymode="${2}" ;;
|
|
-p) _payload="${2}" ;;
|
|
-k) _keyboard="${2}" ;;
|
|
all)
|
|
first="all"
|
|
continue ;;
|
|
*)
|
|
boards="${1} ${boards}"
|
|
continue ;;
|
|
esac
|
|
shift 2
|
|
done
|
|
|
|
handle_targets
|
|
}
|
|
|
|
usage()
|
|
{
|
|
cat <<- EOF
|
|
USAGE: ./build boot roms target
|
|
To build *all* boards, do this: ./build boot roms all
|
|
To list *all* boards, do this: ./build boot roms list
|
|
|
|
Optional Flags:
|
|
-d: displaymode
|
|
-p: payload
|
|
-k: keyboard layout
|
|
|
|
Example commands:
|
|
./build boot roms x60
|
|
./build boot roms x200_8mb x60
|
|
./build boot roms x60 -p grub -d corebootfb -k usqwerty
|
|
|
|
possible values for 'target':
|
|
$(listitems "config/coreboot")
|
|
|
|
Refer to the ${projectname} documentation for more information.
|
|
EOF
|
|
}
|