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()
|
|
|
|
{
|
|
|
|
[ -z "${1}" ] && err "project name not specified"
|
2023-10-06 21:59:36 +00:00
|
|
|
project="${1#src/}" && shift 1
|
2023-08-16 20:34:21 +00:00
|
|
|
|
2023-10-03 12:21:30 +00:00
|
|
|
configure_targets $@
|
2023-08-27 13:14:49 +00:00
|
|
|
|
2023-10-06 21:59:36 +00:00
|
|
|
printf "Downloading %s and applying patches\n" ${project}
|
|
|
|
|
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-02 04:47:49 +00:00
|
|
|
download_for_target "${x}"
|
2023-08-16 20:34:21 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2023-10-03 12:21:30 +00:00
|
|
|
configure_targets()
|
|
|
|
{
|
|
|
|
cfgsdir="config/${project}"
|
|
|
|
[ -d "${cfgsdir}" ] || err "unsupported project name"
|
|
|
|
|
|
|
|
targets=$(listitems "${cfgsdir}")
|
|
|
|
[ $# -gt 0 ] && targets=$@
|
|
|
|
[ -z "${targets}" ] || return 0
|
|
|
|
|
|
|
|
err "No targets for project: ${project}"
|
|
|
|
}
|
|
|
|
|
2023-08-16 20:34:21 +00:00
|
|
|
download_for_target()
|
|
|
|
{
|
|
|
|
_target="${1}"
|
|
|
|
|
2023-10-03 11:59:35 +00:00
|
|
|
fetch_config
|
2023-10-06 21:59:36 +00:00
|
|
|
[ -d "src/${project}/${tree}" ] && \
|
|
|
|
printf "download/%s %s (%s): exists\n" \
|
|
|
|
"${project}" "${tree}" "${_target}" 1>&2 && return 0
|
2023-08-16 20:34:21 +00:00
|
|
|
|
2023-10-03 11:59:35 +00:00
|
|
|
fetch_from_upstream
|
|
|
|
prepare_new_tree
|
2023-08-16 20:34:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fetch_config()
|
|
|
|
{
|
|
|
|
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
|
|
|
|
2023-10-03 11:59:35 +00:00
|
|
|
[ "${_target}" != "${tree}" ] && _target="${tree}" && continue
|
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"
|
|
|
|
[ -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-06 21:59:36 +00:00
|
|
|
[ -d "src/${project}/${project}" ] && return 0
|
2023-08-21 23:34:15 +00:00
|
|
|
|
2023-10-06 21:59:36 +00:00
|
|
|
x_ mkdir -p "src/${project}"
|
2023-10-02 04:47:49 +00:00
|
|
|
x_ ./update project repo "${project}"
|
2023-08-16 20:34:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
prepare_new_tree()
|
|
|
|
{
|
2023-10-02 04:47:49 +00:00
|
|
|
printf "Creating %s tree %s (%s)\n" "${project}" "${tree}" "${_target}"
|
2023-08-16 20:34:21 +00:00
|
|
|
|
2023-10-06 21:59:36 +00:00
|
|
|
x_ cp -R "src/${project}/${project}" "src/${project}/${tree}"
|
|
|
|
x_ git_reset_rev "src/${project}/${tree}" "${rev}" "err"
|
2023-09-25 11:46:54 +00:00
|
|
|
(
|
2023-10-06 21:59:36 +00:00
|
|
|
x_ cd "src/${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-06 21:59:36 +00:00
|
|
|
git_am_patches "${PWD}/src/${project}/${tree}" \
|
2023-10-01 05:33:43 +00:00
|
|
|
"${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 $@
|