2023-08-16 20:34:21 +00:00
|
|
|
#!/usr/bin/env sh
|
2023-09-25 01:19:30 +00:00
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2023-09-25 01:27:26 +00:00
|
|
|
# SPDX-FileCopyrightText: 2014-2016,2020,2021,2023 Leah Rowe <leah@libreboot.org>
|
2023-09-25 01:19:30 +00:00
|
|
|
# SPDX-FileCopyrightText: 2022 Alper Nebi Yasak <alpernebiyasak@gmail.com>
|
|
|
|
# SPDX-FileCopyrightText: 2022 Ferass El Hafidi <vitali64pmemail@protonmail.com>
|
2023-08-16 20:34:21 +00:00
|
|
|
|
|
|
|
[ "x${DEBUG+set}" = 'xset' ] && set -v
|
|
|
|
set -u -e
|
|
|
|
|
2023-08-23 17:56:31 +00:00
|
|
|
. "include/err.sh"
|
2023-09-25 10:37:35 +00:00
|
|
|
. "include/git.sh"
|
2023-09-27 20:46:20 +00:00
|
|
|
. "include/option.sh"
|
2023-08-23 17:56:31 +00:00
|
|
|
|
2023-10-02 04:21:20 +00:00
|
|
|
eval "$(setvars "" _target tree rev project cfgsdir _xm)"
|
2023-08-16 20:34:21 +00:00
|
|
|
|
|
|
|
main()
|
|
|
|
{
|
2023-10-02 03:37:29 +00:00
|
|
|
printf "Downloading %s and applying patches\n" ${project}
|
2023-08-16 20:34:21 +00:00
|
|
|
|
|
|
|
[ -z "${1}" ] && err "project name not specified"
|
|
|
|
project="${1}"
|
2023-09-04 01:36:41 +00:00
|
|
|
cfgsdir="config/${project}"
|
2023-08-16 20:34:21 +00:00
|
|
|
[ -d "${cfgsdir}" ] || err "unsupported project name"
|
|
|
|
shift 1
|
|
|
|
|
2023-09-27 20:46:20 +00:00
|
|
|
targets=$(listitems "${cfgsdir}")
|
2023-08-27 13:14:49 +00:00
|
|
|
[ $# -gt 0 ] && targets=$@
|
2023-10-02 03:38:55 +00:00
|
|
|
[ -z "${targets}" ] && err "No targets for project: ${project}"
|
2023-08-27 13:14:49 +00:00
|
|
|
|
2023-08-16 20:34:21 +00:00
|
|
|
for x in ${targets}; do
|
2023-10-02 03:40:11 +00:00
|
|
|
x_ rm -f "${cfgsdir}/"*/seen
|
2023-10-01 05:33:43 +00:00
|
|
|
x_ download_for_target "${x}"
|
2023-08-16 20:34:21 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
download_for_target()
|
|
|
|
{
|
|
|
|
_target="${1}"
|
|
|
|
tree="undefined"
|
|
|
|
rev="undefined"
|
|
|
|
|
2023-10-01 05:33:43 +00:00
|
|
|
x_ fetch_config "${_target}"
|
2023-08-16 20:34:21 +00:00
|
|
|
|
|
|
|
if [ -d "${project}/${tree}" ]; then
|
2023-10-02 03:53:22 +00:00
|
|
|
printf "REMARK: download/%s %s (%s): exists. Skipping.\n" \
|
|
|
|
"${project}" "${tree}" "${_target}" 1>&2
|
|
|
|
else
|
|
|
|
x_ fetch_from_upstream "${project}"
|
|
|
|
x_ prepare_new_tree "${_target}" "${tree}" "${rev}"
|
2023-08-16 20:34:21 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
fetch_config()
|
|
|
|
{
|
|
|
|
_target=${1}
|
|
|
|
|
|
|
|
while true; do
|
2023-10-02 04:21:20 +00:00
|
|
|
eval "$(setvars "" rev tree)"
|
|
|
|
_xm="fetch_config ${project}/${_target}"
|
2023-08-16 20:34:21 +00:00
|
|
|
|
2023-10-02 04:21:20 +00:00
|
|
|
check_config_for_target "${_target}"
|
2023-08-16 20:34:21 +00:00
|
|
|
|
|
|
|
# This is to override $rev and $tree
|
much, much stricter, more verbose error handling
lbmk is much more likely to crash now, in error conditions,
which is a boon for further auditing.
also: in "fetch", remove the downloaded program
if fail() was called.
this would also be done for gnulib, when downloading
grub, but done in such a way that gnulib goes first.
where calls to err write "ERROR" in the string, they
no longer say "ERROR" because the "err" function itself
now does that automatically.
also: listmodes/listoptions (in "lbmk") now reports an
error if no scripts and/or directories are found.
also: where a warning is given, but not an error, i've
gone through in some places and redirected the output
to stderr, not stdout
as part of error checks: running anything as root, except
for the "./build dependencies *" commands, is no longer
permitted and lbmk will throw an error
mrc downloads: debugfs output no longer redirected to /dev/null,
and stderr no longer redirected to stdout. everything is verbose.
certain non-error states are also more verbose. for example,
patch_rom in blobs/inject will now state when injection succeeds
certain actual errors(bugs) were fixed:
for example, build/release/roms now correctly prepares the blobs
hash files for a given target, containing only the files and
checksums in the list. Previously, a printf message was included.
Now, with this new code: blobutil/inject rightly verifies hashes.
doing all of this in one giant patch is cleaner
than 100 patches changing each file. even this is yet part
of a much larger audit going on in the Libreboot project.
Signed-off-by: Leah Rowe <leah@libreboot.org>
2023-08-24 19:19:41 +00:00
|
|
|
. "${cfgsdir}/${_target}/target.cfg" || \
|
|
|
|
err "fetch_config: no \"${cfgsdir}/${_target}/target.cfg\""
|
2023-08-16 20:34:21 +00:00
|
|
|
|
|
|
|
if [ "${_target}" != "${tree}" ]; then
|
|
|
|
_target="${tree}"
|
|
|
|
continue
|
|
|
|
fi
|
2023-10-02 04:21:20 +00:00
|
|
|
[ -z ${tree} ] && err "${_xm}: tree undefined"
|
|
|
|
[ -z ${rev} ] && err "${_xm}: revision undefined"
|
|
|
|
break
|
2023-08-16 20:34:21 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
check_config_for_target()
|
|
|
|
{
|
2023-10-02 04:21:20 +00:00
|
|
|
[ -f "${cfgsdir}/${1}/target.cfg" ] || \
|
|
|
|
err "${_xm} check: target.cfg does not exist"
|
2023-08-16 20:34:21 +00:00
|
|
|
|
2023-10-02 04:21:20 +00:00
|
|
|
[ -f "${cfgsdir}/${1}/seen" ] && \
|
|
|
|
err "${_xm} check: infinite loop in tree definitions"
|
|
|
|
|
|
|
|
x_ touch "${cfgsdir}/${1}/seen"
|
2023-08-16 20:34:21 +00:00
|
|
|
}
|
|
|
|
|
2023-08-17 10:41:58 +00:00
|
|
|
fetch_from_upstream()
|
2023-08-16 20:34:21 +00:00
|
|
|
{
|
2023-10-02 03:53:22 +00:00
|
|
|
[ -d "${1}" ] || mkdir -p "${1}" || return 1
|
|
|
|
[ -d "${1}" ] || return 1
|
|
|
|
[ -d "${1}/${1}" ] && return 0
|
2023-08-21 23:34:15 +00:00
|
|
|
|
2023-10-02 03:53:22 +00:00
|
|
|
./update project repo ${1} || return 1
|
2023-08-16 20:34:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
prepare_new_tree()
|
|
|
|
{
|
|
|
|
target=${1}
|
|
|
|
tree=${2}
|
|
|
|
rev=${3}
|
|
|
|
|
2023-10-02 03:53:22 +00:00
|
|
|
printf "Preparing %s tree %s (%s)\n" "${project}" "${tree}" "${target}"
|
2023-08-16 20:34:21 +00:00
|
|
|
|
2023-10-01 05:33:43 +00:00
|
|
|
x_ cp -R "${project}/${project}" "${project}/${tree}"
|
|
|
|
x_ git_reset_rev "${project}/${tree}" "${rev}" "err"
|
2023-09-25 11:46:54 +00:00
|
|
|
(
|
2023-10-01 05:33:43 +00:00
|
|
|
x_ cd "${project}/${tree}"
|
2023-09-25 11:46:54 +00:00
|
|
|
git submodule update --init --checkout || \
|
|
|
|
err "prepare_new_tree ${project}/${tree}: can't update git modules"
|
|
|
|
)
|
2023-10-01 05:33:43 +00:00
|
|
|
x_ git_am_patches "${PWD}/${project}/${tree}" \
|
|
|
|
"${PWD}/${cfgsdir}/${tree}/patches" "err"
|
much, much stricter, more verbose error handling
lbmk is much more likely to crash now, in error conditions,
which is a boon for further auditing.
also: in "fetch", remove the downloaded program
if fail() was called.
this would also be done for gnulib, when downloading
grub, but done in such a way that gnulib goes first.
where calls to err write "ERROR" in the string, they
no longer say "ERROR" because the "err" function itself
now does that automatically.
also: listmodes/listoptions (in "lbmk") now reports an
error if no scripts and/or directories are found.
also: where a warning is given, but not an error, i've
gone through in some places and redirected the output
to stderr, not stdout
as part of error checks: running anything as root, except
for the "./build dependencies *" commands, is no longer
permitted and lbmk will throw an error
mrc downloads: debugfs output no longer redirected to /dev/null,
and stderr no longer redirected to stdout. everything is verbose.
certain non-error states are also more verbose. for example,
patch_rom in blobs/inject will now state when injection succeeds
certain actual errors(bugs) were fixed:
for example, build/release/roms now correctly prepares the blobs
hash files for a given target, containing only the files and
checksums in the list. Previously, a printf message was included.
Now, with this new code: blobutil/inject rightly verifies hashes.
doing all of this in one giant patch is cleaner
than 100 patches changing each file. even this is yet part
of a much larger audit going on in the Libreboot project.
Signed-off-by: Leah Rowe <leah@libreboot.org>
2023-08-24 19:19:41 +00:00
|
|
|
}
|
|
|
|
|
2023-08-16 20:34:21 +00:00
|
|
|
main $@
|