mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-09-20 21:50:21 +02:00
86781a5881
Signed-off-by: Leah Rowe <leah@libreboot.org>
56 lines
763 B
Bash
Executable File
56 lines
763 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
# Copyright (c) 2020-2026 Leah Rowe <leah@libreboot.org>
|
|
# Copyright (c) 2022 Caleb La Grange <thonkpeasant@protonmail.com>
|
|
|
|
set -u -e
|
|
|
|
xrval=0
|
|
|
|
(
|
|
xbarg0="$0"
|
|
if [ "${xbarg0##*/}" = "$xbarg0" ]; then
|
|
xbarg0="`command -v "$xbarg0"`"
|
|
fi
|
|
|
|
xbcddir="`readlink -f "$xbarg0" 2>/dev/null`"
|
|
if [ -z "$xbcddir" ]; then
|
|
xbcddir="`realpath "$xbarg0" 2>/dev/null`"
|
|
fi
|
|
xbcddir="${xbcddir%/*}"
|
|
|
|
cd "$xbcddir" || exit 1
|
|
|
|
. "include/common.sh"
|
|
|
|
main()
|
|
{
|
|
cmd="${1-}"
|
|
[ $# -gt 0 ] && shift 1
|
|
|
|
if ! xeq main "$cmd" $xbcommands; then
|
|
return 0
|
|
fi
|
|
|
|
$cmd "$@"
|
|
set -u -e
|
|
|
|
return 1
|
|
}
|
|
|
|
main "$@" || exit 0
|
|
|
|
. "include/tree.sh"
|
|
|
|
trees "$@" || exit 0
|
|
|
|
x_ touch "$mkhelpercfg"
|
|
|
|
. "$mkhelpercfg"
|
|
$cmd
|
|
) || xrval=1
|
|
|
|
exit $xrval
|