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-10-13 08:16:41 +00:00
|
|
|
# SPDX-FileCopyrightText: 2022-2023 Alper Nebi Yasak <alpernebiyasak@gmail.com>
|
2023-09-25 01:19:30 +00:00
|
|
|
# SPDX-FileCopyrightText: 2022 Ferass El Hafidi <vitali64pmemail@protonmail.com>
|
2023-10-07 05:55:10 +00:00
|
|
|
# SPDX-FileCopyrightText: 2023 Leah Rowe <leah@libreboot.org>
|
2023-08-16 20:34:21 +00:00
|
|
|
|
|
|
|
set -u -e
|
|
|
|
|
2023-08-23 17:56:31 +00:00
|
|
|
. "include/err.sh"
|
2023-09-27 20:46:20 +00:00
|
|
|
. "include/option.sh"
|
2023-10-07 05:55:10 +00:00
|
|
|
. "include/git.sh"
|
|
|
|
|
|
|
|
eval "$(setvars "" arch cfgsdir codedir config config_name crossgcc_ada mode \
|
build/roms: remove modify_coreboot_rom()
don't handle "romtype" at all, in board target.cfg files
add /dev/null as pike2008 rom on amd boards. this serves
the same purpose, adding them as empty vga roms, to add
an empty rom in cbfs. pike2008 cards cause seabios to hang,
when their oproms are executed, so we insert a fake rom
on i945 thinkpads, use the coreboot config option:
CONFIG_INTEL_ADD_TOP_SWAP_BOOTBLOCK
when set, this enables the same bootblock copy, for use
with bucts. these two cases, namely pike2008 roms and
i945 bootblock copies, no longer need to be handled in code
Signed-off-by: Leah Rowe <leah@libreboot.org>
2023-12-21 19:03:49 +00:00
|
|
|
elfdir listfile project target target_dir targets tree _f target1)"
|
2023-10-07 05:55:10 +00:00
|
|
|
|
2023-08-16 20:34:21 +00:00
|
|
|
main()
|
|
|
|
{
|
2023-10-20 03:10:50 +00:00
|
|
|
while getopts f:b:m:u:c:x:s:l:n: option; do
|
2023-10-07 05:55:10 +00:00
|
|
|
_f="${1}"
|
|
|
|
case "${1}" in
|
|
|
|
-b) : ;;
|
|
|
|
-u) mode="oldconfig" ;;
|
|
|
|
-m) mode="menuconfig" ;;
|
|
|
|
-c) mode="distclean" ;;
|
|
|
|
-x) mode="crossgcc-clean" ;;
|
|
|
|
-f) mode="fetch" ;;
|
2023-10-13 08:16:41 +00:00
|
|
|
-s) mode="savedefconfig" ;;
|
|
|
|
-l) mode="olddefconfig" ;;
|
|
|
|
-n) mode="nconfig" ;;
|
2023-10-07 05:55:10 +00:00
|
|
|
*) err "Invalid option" ;;
|
|
|
|
esac
|
|
|
|
shift; project="${OPTARG#src/}"; shift
|
|
|
|
done
|
2023-12-24 09:04:36 +00:00
|
|
|
[ -z "$_f" ] && err "missing flag (-m/-u/-b/-c/-x/-f/-s/-l/-n)"
|
|
|
|
[ -z "$project" ] && err "project name not specified"
|
2023-10-07 05:55:10 +00:00
|
|
|
|
2023-12-23 08:43:42 +00:00
|
|
|
check_project
|
|
|
|
|
2023-12-22 13:05:32 +00:00
|
|
|
_cmd="build_projects"
|
|
|
|
[ -f "config/${project}/build.list" ] && _cmd="build_targets"
|
|
|
|
$_cmd $@
|
2023-10-07 05:55:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build_projects()
|
|
|
|
{
|
2023-12-24 09:04:36 +00:00
|
|
|
[ $# -gt 0 ] && x_ ./update trees $_f $@
|
2023-08-16 20:34:21 +00:00
|
|
|
|
2023-10-20 07:03:45 +00:00
|
|
|
if [ "${mode}" = "fetch" ]; then
|
|
|
|
fetch_project_repo
|
|
|
|
return 0
|
|
|
|
fi
|
2023-08-27 13:14:49 +00:00
|
|
|
|
2023-10-07 05:55:10 +00:00
|
|
|
codedir="src/${project}"
|
2023-12-24 09:04:36 +00:00
|
|
|
[ -d "$codedir" ] || x_ ./update trees -f "$project"
|
2023-10-06 21:59:36 +00:00
|
|
|
|
2023-12-24 09:04:36 +00:00
|
|
|
if [ "$project" = "uefitool" ]; then
|
2023-10-07 05:55:10 +00:00
|
|
|
(
|
|
|
|
x_ cd src/uefitool
|
|
|
|
cmake UEFIExtract/ || [ -f Makefile ] || \
|
|
|
|
err "build_projects: !cmake UEFIExtract/"
|
2023-12-11 05:21:27 +00:00
|
|
|
) || err "can't build cmake on uefiextract"
|
2023-10-07 05:55:10 +00:00
|
|
|
fi
|
|
|
|
|
2023-12-24 09:04:36 +00:00
|
|
|
[ "$mode" = "distclean" ] && mode="clean"
|
2023-10-07 05:55:10 +00:00
|
|
|
run_make_command || return 0
|
2023-08-16 20:34:21 +00:00
|
|
|
}
|
|
|
|
|
2023-10-07 05:55:10 +00:00
|
|
|
build_targets()
|
2023-10-03 12:21:30 +00:00
|
|
|
{
|
2023-10-07 05:55:10 +00:00
|
|
|
elfdir="elf/${project}"
|
2023-12-24 09:04:36 +00:00
|
|
|
[ "$elfdir" = "elf/coreboot" ] && \
|
2023-10-10 05:04:47 +00:00
|
|
|
elfdir="elf/coreboot_nopayload_DO_NOT_FLASH"
|
2023-10-07 05:55:10 +00:00
|
|
|
|
2023-10-03 12:21:30 +00:00
|
|
|
cfgsdir="config/${project}"
|
2023-12-24 09:04:36 +00:00
|
|
|
[ -d "$cfgsdir" ] || err "directory, $cfgsdir, does not exist"
|
2023-10-03 12:21:30 +00:00
|
|
|
|
2023-10-07 05:55:10 +00:00
|
|
|
listfile="${cfgsdir}/build.list"
|
2023-12-24 09:04:36 +00:00
|
|
|
[ -f "$listfile" ] || err "list file, $listfile, does not exist"
|
2023-10-07 05:55:10 +00:00
|
|
|
|
|
|
|
# Build for all targets if no argument is given
|
2023-12-24 09:04:36 +00:00
|
|
|
[ $# -gt 0 ] && target1="$1"
|
|
|
|
[ "$target1" = "utils" ] && [ "$project" = "coreboot" ] && \
|
2023-10-07 05:55:10 +00:00
|
|
|
shift 1
|
2023-12-24 09:04:36 +00:00
|
|
|
targets=$(items "$cfgsdir") || \
|
|
|
|
err "Cannot get options for $cfgsdir"
|
2023-10-03 12:21:30 +00:00
|
|
|
[ $# -gt 0 ] && targets=$@
|
|
|
|
|
2023-12-24 09:04:36 +00:00
|
|
|
[ -z "$mode" ] && x_ mkdir -p "$elfdir"
|
2023-10-07 05:55:10 +00:00
|
|
|
|
|
|
|
handle_targets
|
|
|
|
}
|
|
|
|
|
|
|
|
handle_targets()
|
|
|
|
{
|
2023-12-24 09:04:36 +00:00
|
|
|
for x in $targets; do
|
2023-10-07 05:55:10 +00:00
|
|
|
target="${x}"
|
|
|
|
printf "Running 'make %s' for project '%s, target '%s''\n" \
|
2023-12-24 09:04:36 +00:00
|
|
|
"$mode" "$project" "$target"
|
|
|
|
[ "$project" != "coreboot" ] || [ -n "$mode" ] || \
|
|
|
|
[ "$target1" = "utils" ] || \
|
|
|
|
x_ ./vendor download $target
|
2023-10-07 05:55:10 +00:00
|
|
|
x_ handle_defconfig
|
|
|
|
done
|
|
|
|
|
2023-12-22 13:05:32 +00:00
|
|
|
[ "$target1" = "utils" ] && [ "$project" = "coreboot" ] && return 0
|
2023-10-07 05:55:10 +00:00
|
|
|
[ -z "${mode}" ] || return 0
|
2023-12-24 09:04:36 +00:00
|
|
|
printf "Done! The files are stored under %s/\n\n" "$elfdir"
|
2023-10-03 12:21:30 +00:00
|
|
|
}
|
|
|
|
|
2023-10-07 05:55:10 +00:00
|
|
|
handle_defconfig()
|
2023-08-16 20:34:21 +00:00
|
|
|
{
|
2023-12-24 09:04:36 +00:00
|
|
|
handle_src_tree "$target" || return 0
|
2023-08-16 20:34:21 +00:00
|
|
|
|
2023-12-24 09:04:36 +00:00
|
|
|
if [ "$target1" = "utils" ] && [ "$project" = "coreboot" ]; then
|
|
|
|
handle_coreboot_utils "$tree"
|
2023-10-07 05:55:10 +00:00
|
|
|
return 0
|
|
|
|
fi
|
2023-08-16 20:34:21 +00:00
|
|
|
|
2023-10-07 05:55:10 +00:00
|
|
|
for y in "${target_dir}/config"/*; do
|
2023-12-24 09:04:36 +00:00
|
|
|
[ -f "$y" ] || continue
|
|
|
|
config="$y"
|
2023-12-16 07:56:26 +00:00
|
|
|
config_name="${config#"${target_dir}/config/"}"
|
2023-10-07 05:55:10 +00:00
|
|
|
|
|
|
|
printf "handle/make/config %s %s: handling config %s\n" \
|
2023-12-24 09:04:36 +00:00
|
|
|
"$project" "$target" "$config_name"
|
2023-10-07 05:55:10 +00:00
|
|
|
|
2023-12-24 09:04:36 +00:00
|
|
|
[ -n "$mode" ] || check_config || continue
|
2023-10-07 05:55:10 +00:00
|
|
|
handle_makefile
|
2023-12-24 09:04:36 +00:00
|
|
|
[ -n "$mode" ] || copy_elf
|
2023-10-07 05:55:10 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
handle_src_tree()
|
|
|
|
{
|
|
|
|
target_dir="${cfgsdir}/${target}"
|
|
|
|
|
2023-12-24 09:04:36 +00:00
|
|
|
if [ "$mode" = "fetch" ]; then
|
2023-10-20 07:03:45 +00:00
|
|
|
fetch_project_trees
|
|
|
|
return 1
|
|
|
|
fi
|
2023-10-07 05:55:10 +00:00
|
|
|
|
|
|
|
x_ mkdir -p "${elfdir}/${target}"
|
|
|
|
eval "$(setvars "" arch tree)"
|
|
|
|
|
|
|
|
. "${target_dir}/target.cfg" || \
|
|
|
|
err "handle_src_tree ${target_dir}: cannot load target.cfg"
|
|
|
|
|
2023-12-24 09:04:36 +00:00
|
|
|
[ -z "$arch" ] && err "handle_src_tree $project/$tree: arch unset"
|
|
|
|
[ -z "$tree" ] && err "handle_src_tree $project/$tree: tree unset"
|
2023-10-07 05:55:10 +00:00
|
|
|
|
|
|
|
codedir="src/${project}/${tree}"
|
|
|
|
|
2023-12-24 09:04:36 +00:00
|
|
|
if [ ! -d "$codedir" ]; then
|
|
|
|
if [ "$mode" = "distclean" ] || \
|
|
|
|
[ "$mode" = "crossgcc-clean" ]; then
|
2023-12-24 06:32:19 +00:00
|
|
|
printf "Directory %s missing; skipping clean\n" \
|
2023-12-24 09:04:36 +00:00
|
|
|
"$codedir" 1>&2
|
2023-10-07 05:55:10 +00:00
|
|
|
return 1
|
|
|
|
fi
|
2023-12-24 09:04:36 +00:00
|
|
|
x_ ./update trees -f "$project" "$target"
|
2023-10-07 05:55:10 +00:00
|
|
|
fi
|
|
|
|
|
2023-12-22 13:05:32 +00:00
|
|
|
[ "$target1" = "utils" ] && [ "$project" = "coreboot" ] && return 0
|
2023-12-24 09:04:36 +00:00
|
|
|
[ -z "$mode" ] || return 0
|
2023-10-20 02:29:55 +00:00
|
|
|
check_cross_compiler
|
2023-08-16 20:34:21 +00:00
|
|
|
}
|
|
|
|
|
2023-10-07 05:55:10 +00:00
|
|
|
# set up cross-compiler (coreboot crossgcc) for u-boot and coreboot
|
|
|
|
# (seabios and grub currently use hostcc, not crossgcc)
|
|
|
|
check_cross_compiler()
|
2023-08-16 20:34:21 +00:00
|
|
|
{
|
2023-12-21 10:48:07 +00:00
|
|
|
[ "$project" = "u-boot" ] || [ "$project" = "coreboot" ] || return 0
|
2023-12-24 09:04:36 +00:00
|
|
|
[ -z "$arch" ] && err "${project}/${tree}: arch isn't set"
|
2023-12-21 10:48:07 +00:00
|
|
|
|
2023-12-24 09:04:36 +00:00
|
|
|
_arch="$arch"
|
|
|
|
[ "$arch" = "aarch64-elf" ] && _arch="aarch64-elf arm-eabi"
|
2023-12-21 10:48:07 +00:00
|
|
|
|
2023-12-24 09:04:36 +00:00
|
|
|
[ "$crossgcc_ada" = "y" ] || [ "$crossgcc_ada" = "n" ] || crossgcc_ada=y
|
|
|
|
[ "$crossgcc_ada" = "y" ] || export BUILD_LANGUAGES=c
|
2023-08-16 20:34:21 +00:00
|
|
|
|
2023-10-07 05:55:10 +00:00
|
|
|
cbdir="src/coreboot/${tree}"
|
2023-12-24 09:04:36 +00:00
|
|
|
[ "$project" != "coreboot" ] && cbdir="src/coreboot/default"
|
2023-12-21 10:48:07 +00:00
|
|
|
x_ ./update trees -f coreboot ${cbdir#src/coreboot/}
|
2023-08-16 20:34:21 +00:00
|
|
|
|
2023-12-24 09:04:36 +00:00
|
|
|
for xarch in $_arch; do
|
2023-12-21 10:48:07 +00:00
|
|
|
[ -d "${cbdir}/util/crossgcc/xgcc/${xarch}/" ] && continue
|
2023-12-24 09:04:36 +00:00
|
|
|
x_ make -C "$cbdir" crossgcc-${xarch%-*} CPUS=$(nproc)
|
2023-12-21 10:48:07 +00:00
|
|
|
done
|
2023-10-07 05:55:10 +00:00
|
|
|
|
|
|
|
# we *must* ensure that u-boot's build system uses crossgcc first
|
2023-10-20 03:10:50 +00:00
|
|
|
export PATH="${PWD}/${cbdir}/util/crossgcc/xgcc/bin:$PATH"
|
2023-12-21 10:48:07 +00:00
|
|
|
export CROSS_COMPILE="${_arch% *}-"
|
2023-10-07 05:55:10 +00:00
|
|
|
}
|
2023-08-16 20:34:21 +00:00
|
|
|
|
2023-10-07 05:55:10 +00:00
|
|
|
check_config()
|
|
|
|
{
|
2023-12-24 09:04:36 +00:00
|
|
|
[ -f "$config" ] || \
|
2023-10-07 05:55:10 +00:00
|
|
|
err "check_config: ${project}/${target}: configs missing"
|
|
|
|
|
|
|
|
dest_dir="${elfdir}/${target}/${config_name}"
|
|
|
|
# TODO: very hacky check. do it properly (based on build.list)
|
|
|
|
for elftest in "${dest_dir}"/*; do
|
2023-12-24 09:04:36 +00:00
|
|
|
[ -f "$elftest" ] || continue
|
2023-10-07 05:55:10 +00:00
|
|
|
printf "Build already exists, so skipping build\n" 1>&2
|
|
|
|
return 1
|
2023-08-16 20:34:21 +00:00
|
|
|
done
|
2023-12-24 09:04:36 +00:00
|
|
|
x_ mkdir -p "$dest_dir"
|
2023-08-16 20:34:21 +00:00
|
|
|
}
|
|
|
|
|
2023-10-07 05:55:10 +00:00
|
|
|
handle_makefile()
|
2023-08-16 20:34:21 +00:00
|
|
|
{
|
2023-12-24 09:04:36 +00:00
|
|
|
x_ make clean -C "$codedir"
|
|
|
|
x_ cp "$config" "${codedir}/.config"
|
|
|
|
[ -n "$mode" ] || make -C "$codedir" silentoldconfig || \
|
|
|
|
make -C "$codedir" oldconfig || :
|
2023-10-07 05:55:10 +00:00
|
|
|
|
2023-12-24 09:04:36 +00:00
|
|
|
run_make_command || err "handle_makefile $codedir: no makefile!"
|
2023-10-02 04:21:20 +00:00
|
|
|
|
2023-12-24 09:04:36 +00:00
|
|
|
if [ -e "${codedir}/.git" ] && [ "$project" = "u-boot" ] && \
|
|
|
|
[ "$mode" = "distclean" ]; then
|
|
|
|
x_ git -C "$codedir" clean -fdx
|
2023-12-22 13:05:32 +00:00
|
|
|
elif [ "$mode" = "oldconfig" ] || [ "$mode" = "olddefconfig" ] || \
|
|
|
|
[ "$mode" = "menuconfig" ] || [ "$mode" = "nconfig" ]; then
|
2023-12-24 09:04:36 +00:00
|
|
|
x_ cp "${codedir}/.config" "$config"
|
|
|
|
elif [ "$mode" = "savedefconfig" ]; then
|
|
|
|
x_ cp "${codedir}/defconfig" "$config"
|
2023-10-07 05:55:10 +00:00
|
|
|
fi
|
2023-08-16 20:34:21 +00:00
|
|
|
}
|
|
|
|
|
2023-10-07 05:55:10 +00:00
|
|
|
run_make_command()
|
2023-08-16 20:34:21 +00:00
|
|
|
{
|
2023-10-07 05:55:10 +00:00
|
|
|
[ -f "${codedir}/Makefile" ] || [ -f "${codedir}/makefile" ] || \
|
|
|
|
[ -f "${codedir}/GNUmakefile" ] || return 1
|
2023-12-24 09:04:36 +00:00
|
|
|
[ "$project" = "coreboot" ] && [ -z "$mode" ] && \
|
2023-12-24 06:32:19 +00:00
|
|
|
x_ printf "%s\n" "${version%%-*}" \
|
|
|
|
> "${codedir}/.coreboot-version"
|
2023-08-21 23:34:15 +00:00
|
|
|
|
2023-12-24 09:04:36 +00:00
|
|
|
x_ make $mode -j$(nproc) -C "$codedir"
|
2023-10-19 22:36:56 +00:00
|
|
|
|
2023-12-24 09:04:36 +00:00
|
|
|
[ "$mode" != "clean" ] && return 0
|
|
|
|
make -C "$codedir" distclean 2>/dev/null || :
|
2023-08-16 20:34:21 +00:00
|
|
|
}
|
|
|
|
|
2023-10-07 05:55:10 +00:00
|
|
|
copy_elf()
|
2023-08-16 20:34:21 +00:00
|
|
|
{
|
2023-12-16 07:56:26 +00:00
|
|
|
while read -r f; do
|
2023-10-07 05:55:10 +00:00
|
|
|
[ ! -f "${codedir}/$f" ] || \
|
2023-12-24 09:04:36 +00:00
|
|
|
x_ cp "${codedir}/${f}" "$dest_dir"
|
|
|
|
done < "$listfile"
|
2023-08-16 20:34:21 +00:00
|
|
|
|
2023-12-24 09:04:36 +00:00
|
|
|
x_ make clean -C "$codedir"
|
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 $@
|