unify handle/make/* into build/project/trees
Just one script. Just one. Signed-off-by: Leah Rowe <leah@libreboot.org>btrfsvols
parent
9d419e77a0
commit
176722a841
|
@ -1,30 +0,0 @@
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
||||||
# SPDX-FileCopyrightText: 2023 Leah Rowe <leah@libreboot.org>
|
|
||||||
|
|
||||||
main()
|
|
||||||
{
|
|
||||||
while getopts b:m:u:c:x: option
|
|
||||||
do
|
|
||||||
_flag="${1}"
|
|
||||||
case "${1}" in
|
|
||||||
-b) mode="all" ;;
|
|
||||||
-u) mode="oldconfig" ;;
|
|
||||||
-m) mode="menuconfig" ;;
|
|
||||||
-c) mode="distclean" ;;
|
|
||||||
-x) mode="crossgcc-clean" ;;
|
|
||||||
*) fail "Invalid option" ;;
|
|
||||||
esac
|
|
||||||
shift; project="${OPTARG}"; shift
|
|
||||||
done
|
|
||||||
[ -z "${mode}" ] && fail "mode not given (-m, -u, -b, -c or -x)"
|
|
||||||
[ -z "${project}" ] && fail "project name not specified"
|
|
||||||
|
|
||||||
handle_dependencies $@
|
|
||||||
handle_targets
|
|
||||||
}
|
|
||||||
|
|
||||||
fail()
|
|
||||||
{
|
|
||||||
[ -z "${codedir}" ] || ./handle make file -c "${codedir}" || :
|
|
||||||
err "${1}"
|
|
||||||
}
|
|
|
@ -128,7 +128,7 @@ prepare_target()
|
||||||
|
|
||||||
memtest_bin="memtest86plus/build${arch#*_}/memtest.bin"
|
memtest_bin="memtest86plus/build${arch#*_}/memtest.bin"
|
||||||
[ "${payload_memtest}" != "y" ] || [ -f "${memtest_bin}" ] || \
|
[ "${payload_memtest}" != "y" ] || [ -f "${memtest_bin}" ] || \
|
||||||
x_ ./handle make file -b ${memtest_bin%/*}
|
x_ ./build project trees -b ${memtest_bin%/*}
|
||||||
|
|
||||||
x_ rm -f "${romdir}/"*
|
x_ rm -f "${romdir}/"*
|
||||||
|
|
||||||
|
@ -145,7 +145,7 @@ build_dependency_seabios()
|
||||||
|| [ ! -f elf/seabios/default/libgfxinit/bios.bin.elf ] \
|
|| [ ! -f elf/seabios/default/libgfxinit/bios.bin.elf ] \
|
||||||
|| [ ! -f elf/seabios/default/vgarom/bios.bin.elf ] \
|
|| [ ! -f elf/seabios/default/vgarom/bios.bin.elf ] \
|
||||||
|| [ ! -f elf/seabios/default/normal/bios.bin.elf ]; then
|
|| [ ! -f elf/seabios/default/normal/bios.bin.elf ]; then
|
||||||
x_ ./handle make config -b seabios
|
x_ ./build project trees -b seabios
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -173,7 +173,7 @@ build_dependency_uboot()
|
||||||
{
|
{
|
||||||
[ "${payload_uboot}" = "y" ] || return 0
|
[ "${payload_uboot}" = "y" ] || return 0
|
||||||
|
|
||||||
x_ ./handle make config -b u-boot ${board}
|
x_ ./build project trees -b u-boot ${board}
|
||||||
ubdir="elf/u-boot/${board}/${uboot_config}"
|
ubdir="elf/u-boot/${board}/${uboot_config}"
|
||||||
ubootelf="${ubdir}/u-boot.elf"
|
ubootelf="${ubdir}/u-boot.elf"
|
||||||
[ ! -f "${ubootelf}" ] && [ -f "${ubdir}/u-boot.bin" ] && \
|
[ ! -f "${ubootelf}" ] && [ -f "${ubdir}/u-boot.bin" ] && \
|
||||||
|
@ -210,7 +210,7 @@ build_roms()
|
||||||
"${cbcfg}" "${board}" "${displaymode}" "${initmode}" \
|
"${cbcfg}" "${board}" "${displaymode}" "${initmode}" \
|
||||||
1>&2 && return 0
|
1>&2 && return 0
|
||||||
|
|
||||||
x_ ./handle make config -b coreboot ${board}
|
x_ ./build project trees -b coreboot ${board}
|
||||||
|
|
||||||
_cbrom="elf/coreboot/${board}/${initmode}_${displaymode}"
|
_cbrom="elf/coreboot/${board}/${initmode}_${displaymode}"
|
||||||
[ "${initmode}" = "normal" ] && \
|
[ "${initmode}" = "normal" ] && \
|
||||||
|
|
|
@ -9,36 +9,81 @@ set -u -e
|
||||||
|
|
||||||
. "include/err.sh"
|
. "include/err.sh"
|
||||||
. "include/option.sh"
|
. "include/option.sh"
|
||||||
. "include/make.sh"
|
|
||||||
|
|
||||||
read projectname < projectname
|
read projectname < projectname
|
||||||
read our_version < version
|
read version < version
|
||||||
|
|
||||||
export LOCALVERSION="-${projectname}-${our_version}"
|
export LOCALVERSION="-${projectname}-${version}"
|
||||||
|
|
||||||
eval "$(setvars "" arch cfgsdir codedir config config_name crossgcc_ada mode \
|
eval "$(setvars "" arch cfgsdir codedir config config_name crossgcc_ada mode \
|
||||||
elfdir listfile project romtype target target_dir targets tree cbfstool)"
|
elfdir listfile project romtype target target_dir targets tree cbfstool _f)"
|
||||||
|
|
||||||
tmpclean="$(mktemp -d -t makeclean.XXXXXXXXXX)"
|
tmpclean="$(mktemp -d -t makeclean.XXXXXXXXXX)"
|
||||||
|
|
||||||
# main() is in include/make.sh
|
main()
|
||||||
|
{
|
||||||
|
while getopts b:m:u:c:x: option
|
||||||
|
do
|
||||||
|
_f="${1}"
|
||||||
|
case "${1}" in
|
||||||
|
-b) : ;;
|
||||||
|
-u) mode="oldconfig" ;;
|
||||||
|
-m) mode="menuconfig" ;;
|
||||||
|
-c) mode="distclean" ;;
|
||||||
|
-x) mode="crossgcc-clean" ;;
|
||||||
|
*) err "Invalid option" ;;
|
||||||
|
esac
|
||||||
|
shift; project="${OPTARG}"; shift
|
||||||
|
done
|
||||||
|
[ -z ${_f} ] && err "flag not specified (-m, -u, -b, -c or -x)"
|
||||||
|
[ -z ${project} ] && err "project name not specified"
|
||||||
|
|
||||||
handle_dependencies()
|
if [ ! -f "config/${project}/build.list" ]; then
|
||||||
|
build_projects $@
|
||||||
|
else
|
||||||
|
build_targets $@
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
build_projects()
|
||||||
|
{
|
||||||
|
[ $# -gt 0 ] && x_ ./build project trees ${_f} ${@}
|
||||||
|
codedir="${project}"
|
||||||
|
|
||||||
|
[ -d "${codedir}" ] || x_ ./update project repo "${codedir%/*}"
|
||||||
|
[ -d "${codedir}" ] || \
|
||||||
|
err "build_targets: ${codedir%/*} not downloaded"
|
||||||
|
|
||||||
|
if [ "${project}" = "uefitool" ]; then
|
||||||
|
(
|
||||||
|
x_ cd uefitool
|
||||||
|
cmake UEFIExtract/ || [ -f Makefile ] || \
|
||||||
|
err "build_targets: !cmake UEFIExtract/"
|
||||||
|
)
|
||||||
|
fi
|
||||||
|
|
||||||
|
[ "${mode}" = "distclean" ] && mode="clean"
|
||||||
|
run_make_command || return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
build_targets()
|
||||||
{
|
{
|
||||||
elfdir="elf/${project}"
|
elfdir="elf/${project}"
|
||||||
|
|
||||||
cfgsdir="config/${project}"
|
cfgsdir="config/${project}"
|
||||||
[ -d "${cfgsdir}" ] || fail "directory, ${cfgsdir}, does not exist"
|
[ -d "${cfgsdir}" ] || err "directory, ${cfgsdir}, does not exist"
|
||||||
|
|
||||||
listfile="${cfgsdir}/build.list"
|
listfile="${cfgsdir}/build.list"
|
||||||
[ -f "${listfile}" ] || fail "list file, ${listfile}, does not exist"
|
[ -f "${listfile}" ] || err "list file, ${listfile}, does not exist"
|
||||||
|
|
||||||
# Build for all targets if no argument is given
|
# Build for all targets if no argument is given
|
||||||
targets=$(listitems "${cfgsdir}") || \
|
targets=$(listitems "${cfgsdir}") || \
|
||||||
fail "Cannot get options for ${cfgsdir}"
|
err "Cannot get options for ${cfgsdir}"
|
||||||
[ $# -gt 0 ] && targets=$@
|
[ $# -gt 0 ] && targets=$@
|
||||||
|
|
||||||
[ "${mode}" = "all" ] && xx_ mkdir -p "${elfdir}/"
|
[ -z ${mode} ] && x_ mkdir -p "${elfdir}/"
|
||||||
|
|
||||||
|
handle_targets
|
||||||
}
|
}
|
||||||
|
|
||||||
handle_targets()
|
handle_targets()
|
||||||
|
@ -47,12 +92,12 @@ handle_targets()
|
||||||
target="${x}"
|
target="${x}"
|
||||||
printf "Running 'make %s' for project '%s, target '%s''\n" \
|
printf "Running 'make %s' for project '%s, target '%s''\n" \
|
||||||
"${mode}" "${project}" "${target}"
|
"${mode}" "${project}" "${target}"
|
||||||
[ "${project}" != "coreboot" ] || [ "${mode}" != "all" ] || \
|
[ "${project}" != "coreboot" ] || [ ! -z ${mode} ] || \
|
||||||
xx_ ./update blobs download ${target}
|
x_ ./update blobs download ${target}
|
||||||
xx_ handle_defconfig
|
x_ handle_defconfig
|
||||||
done
|
done
|
||||||
|
|
||||||
[ "${mode}" = "all" ] || return 0
|
[ -z ${mode} ] || return 0
|
||||||
printf "Done! The files are stored under %s/\n\n" "${elfdir}"
|
printf "Done! The files are stored under %s/\n\n" "${elfdir}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -68,30 +113,30 @@ handle_defconfig()
|
||||||
printf "handle/make/config %s %s: handling config %s\n" \
|
printf "handle/make/config %s %s: handling config %s\n" \
|
||||||
"${project}" "${target}" "${config_name}"
|
"${project}" "${target}" "${config_name}"
|
||||||
|
|
||||||
[ "${mode}" != "all" ] || check_config || continue
|
[ ! -z ${mode} ] || check_config || continue
|
||||||
run_make_command
|
handle_makefile
|
||||||
[ "${mode}" != "all" ] || copy_elf
|
[ ! -z ${mode} ] || copy_elf
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
handle_src_tree()
|
handle_src_tree()
|
||||||
{
|
{
|
||||||
target_dir="${cfgsdir}/${target}"
|
target_dir="${cfgsdir}/${target}"
|
||||||
xx_ mkdir -p "${elfdir}/${target}"
|
x_ mkdir -p "${elfdir}/${target}"
|
||||||
|
|
||||||
eval "$(setvars "" arch tree)"
|
eval "$(setvars "" arch tree)"
|
||||||
romtype="normal"
|
romtype="normal"
|
||||||
|
|
||||||
[ -f "${target_dir}/target.cfg" ] || \
|
[ -f "${target_dir}/target.cfg" ] || \
|
||||||
fail "handle_src_tree: ${target_dir}: missing target.cfg"
|
err "handle_src_tree: ${target_dir}: missing target.cfg"
|
||||||
|
|
||||||
# Override the above defaults using target.cfg
|
# Override the above defaults using target.cfg
|
||||||
. "${target_dir}/target.cfg" # source
|
. "${target_dir}/target.cfg" # source
|
||||||
|
|
||||||
[ -z ${tree} ] && \
|
[ -z ${tree} ] && \
|
||||||
fail "handle_src_tree: ${target_dir}: tree undefined"
|
err "handle_src_tree: ${target_dir}: tree undefined"
|
||||||
[ -z ${arch} ] && \
|
[ -z ${arch} ] && \
|
||||||
fail "handle_src_tree: ${target_dir}: undefined cpu type"
|
err "handle_src_tree: ${target_dir}: undefined cpu type"
|
||||||
|
|
||||||
codedir="${project}/${tree}"
|
codedir="${project}/${tree}"
|
||||||
if [ ! -d "${codedir}" ]; then
|
if [ ! -d "${codedir}" ]; then
|
||||||
|
@ -101,7 +146,7 @@ handle_src_tree()
|
||||||
"${codedir}" 1>&2
|
"${codedir}" 1>&2
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
xx_ ./update project trees "${project}" "${target}"
|
x_ ./update project trees "${project}" "${target}"
|
||||||
elif [ "${mode}" = "distclean" ] || \
|
elif [ "${mode}" = "distclean" ] || \
|
||||||
[ "${mode}" = "crossgcc-clean" ]; then
|
[ "${mode}" = "crossgcc-clean" ]; then
|
||||||
[ -f "${tmpclean}/${tree}" ] && return 1
|
[ -f "${tmpclean}/${tree}" ] && return 1
|
||||||
|
@ -110,10 +155,10 @@ handle_src_tree()
|
||||||
|
|
||||||
# u-boot and coreboot are both compiled with coreboot's crossgcc
|
# u-boot and coreboot are both compiled with coreboot's crossgcc
|
||||||
if [ "${project}" = "coreboot" ] || [ "${project}" = "u-boot" ]; then
|
if [ "${project}" = "coreboot" ] || [ "${project}" = "u-boot" ]; then
|
||||||
[ "${mode}" != "all" ] || check_cross_compiler || \
|
[ ! -z ${mode} ] || check_cross_compiler || \
|
||||||
fail "handle_src_tree ${project}/${target}: crossgcc"
|
err "handle_src_tree ${project}/${target}: crossgcc"
|
||||||
cbfstool="cbutils/${tree}/cbfstool"
|
cbfstool="cbutils/${tree}/cbfstool"
|
||||||
[ -f "${cbfstool}" ] || xx_ ./build coreboot utils "${tree}"
|
[ -f "${cbfstool}" ] || x_ ./build coreboot utils "${tree}"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -134,7 +179,7 @@ check_cross_compiler()
|
||||||
# only true if not building coreboot:
|
# only true if not building coreboot:
|
||||||
ctarget="${cbdir#coreboot/}"
|
ctarget="${cbdir#coreboot/}"
|
||||||
[ -d "${cbdir}" ] || \
|
[ -d "${cbdir}" ] || \
|
||||||
xx_ ./update project trees coreboot ${ctarget}
|
x_ ./update project trees coreboot ${ctarget}
|
||||||
|
|
||||||
if [ "${arch}" = "x86_32" ] || [ "${arch}" = "x86_64" ]; then
|
if [ "${arch}" = "x86_32" ] || [ "${arch}" = "x86_64" ]; then
|
||||||
[ -d "${cbdir}/util/crossgcc/xgcc/i386-elf/" ] || \
|
[ -d "${cbdir}/util/crossgcc/xgcc/i386-elf/" ] || \
|
||||||
|
@ -173,7 +218,7 @@ check_cross_compiler()
|
||||||
check_config()
|
check_config()
|
||||||
{
|
{
|
||||||
[ ! -f "${config}" ] && \
|
[ ! -f "${config}" ] && \
|
||||||
fail "check_config: ${project}/${target}: configs missing"
|
err "check_config: ${project}/${target}: configs missing"
|
||||||
|
|
||||||
dest_dir="${elfdir}/${target}/${config_name}"
|
dest_dir="${elfdir}/${target}/${config_name}"
|
||||||
# TODO: very hacky check. do it properly (based on build.list)
|
# TODO: very hacky check. do it properly (based on build.list)
|
||||||
|
@ -182,73 +227,75 @@ check_config()
|
||||||
printf "Build already exists, so skipping build\n" 1>&2
|
printf "Build already exists, so skipping build\n" 1>&2
|
||||||
return 1
|
return 1
|
||||||
done
|
done
|
||||||
xx_ mkdir -p "${dest_dir}"
|
x_ mkdir -p "${dest_dir}"
|
||||||
|
}
|
||||||
|
|
||||||
|
handle_makefile()
|
||||||
|
{
|
||||||
|
x_ make clean -C "${codedir}"
|
||||||
|
x_ cp "${config}" "${codedir}/.config"
|
||||||
|
[ ! -z ${mode} ] || make -C "${codedir}" silentoldconfig || \
|
||||||
|
make -C "${codedir}" oldconfig || :
|
||||||
|
|
||||||
|
run_make_command || err "handle_makefile ${codedir}: no makefile!"
|
||||||
|
|
||||||
|
if [ -e "${codedir}/.git" ] && [ "${project}" = "u-boot" ] && \
|
||||||
|
[ "${mode}" = "distclean" ]; then
|
||||||
|
x_ git -C "${codedir}" clean -fdx
|
||||||
|
elif [ "${mode}" = "oldconfig" ] || [ "${mode}" = "menuconfig" ]; then
|
||||||
|
x_ cp "${codedir}/.config" "${config}"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
run_make_command()
|
run_make_command()
|
||||||
{
|
{
|
||||||
xx_ ./handle make file -c "${codedir}"
|
[ -f "${codedir}/Makefile" ] || [ -f "${codedir}/makefile" ] || \
|
||||||
xx_ cp "${config}" "${codedir}/.config"
|
[ -f "${codedir}/GNUmakefile" ] || return 1
|
||||||
[ "${mode}" != "all" ] || make -C "${codedir}" silentoldconfig || \
|
[ "${project}" = "coreboot" ] && [ -z ${mode} ] && \
|
||||||
make -C "${codedir}" oldconfig || : # don't error on oldconfig
|
x_ printf "%s\n" "${version}" >"${codedir}/.coreboot-version"
|
||||||
|
|
||||||
if [ "${project}" = "coreboot" ] && [ "${mode}" = "all" ]; then
|
x_ make -C "${codedir}" -j$(nproc) ${mode}
|
||||||
printf "%s\n" "${our_version}" >"${codedir}/.coreboot-version" \
|
[ "${mode}" != "clean" ] && return 0
|
||||||
|| fail "run_make_command: ${codedir}: can't set version"
|
make -C "${codedir}" distclean 2>/dev/null || :
|
||||||
fi
|
|
||||||
xx_ make -C "${codedir}" -j$(nproc) ${mode}
|
|
||||||
|
|
||||||
if [ -e "${codedir}/.git" ] && [ "${project}" = "u-boot" ] && \
|
|
||||||
[ "${mode}" = "distclean" ]; then
|
|
||||||
xx_ git -C "${codedir}" clean -fdx
|
|
||||||
elif [ "${mode}" = "oldconfig" ] || [ "${mode}" = "menuconfig" ]; then
|
|
||||||
xx_ cp "${codedir}/.config" "${config}"
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
copy_elf()
|
copy_elf()
|
||||||
{
|
{
|
||||||
[ "${project}" != "coreboot" ] || xx_ modify_coreboot_rom
|
[ "${project}" != "coreboot" ] || x_ modify_coreboot_rom
|
||||||
while read f; do
|
while read f; do
|
||||||
[ ! -f "${codedir}/$f" ] || \
|
[ ! -f "${codedir}/$f" ] || \
|
||||||
xx_ cp "${codedir}/${f}" "${dest_dir}/"
|
x_ cp "${codedir}/${f}" "${dest_dir}/"
|
||||||
done < ${listfile}
|
done < ${listfile}
|
||||||
|
|
||||||
xx_ ./handle make file -c "${codedir}"
|
x_ make clean -C "${codedir}"
|
||||||
}
|
}
|
||||||
|
|
||||||
modify_coreboot_rom()
|
modify_coreboot_rom()
|
||||||
{
|
{
|
||||||
rompath="${codedir}/build/coreboot.rom"
|
rompath="${codedir}/build/coreboot.rom"
|
||||||
[ -f "${rompath}" ] || \
|
[ -f "${rompath}" ] || \
|
||||||
fail "modify_coreboot_rom: does not exist: ${rompath}"
|
err "modify_coreboot_rom: does not exist: ${rompath}"
|
||||||
tmprom="$(mktemp -t rom.XXXXXXXXXX)"
|
tmprom="$(mktemp -t rom.XXXXXXXXXX)"
|
||||||
xx_ rm -f "${tmprom}"
|
x_ rm -f "${tmprom}"
|
||||||
|
|
||||||
if [ "${romtype}" = "d8d16sas" ]; then
|
if [ "${romtype}" = "d8d16sas" ]; then
|
||||||
# pike2008 roms hang seabios. an empty rom will override
|
# pike2008 roms hang seabios. an empty rom will override
|
||||||
# the built-in one, thus disabling all execution of it
|
# the built-in one, thus disabling all execution of it
|
||||||
xx_ touch "${tmprom}"
|
x_ touch "${tmprom}"
|
||||||
for deviceID in "0072" "3050"; do
|
for deviceID in "0072" "3050"; do
|
||||||
xx_ "${cbfstool}" "${rompath}" add -f "${tmprom}" \
|
x_ "${cbfstool}" "${rompath}" add -f "${tmprom}" \
|
||||||
-n "pci1000,${deviceID}.rom" -t raw
|
-n "pci1000,${deviceID}.rom" -t raw
|
||||||
done
|
done
|
||||||
elif [ "${romtype}" = "i945 laptop" ]; then
|
elif [ "${romtype}" = "i945 laptop" ]; then
|
||||||
# for bucts-based installation method from factory bios
|
# for bucts-based installation method from factory bios
|
||||||
xx_ dd if="${rompath}" of="${tmprom}" bs=1 \
|
x_ dd if="${rompath}" of="${tmprom}" bs=1 \
|
||||||
skip=$(($(stat -c %s "${rompath}") - 0x10000)) \
|
skip=$(($(stat -c %s "${rompath}") - 0x10000)) \
|
||||||
count=64k
|
count=64k
|
||||||
xx_ dd if="${tmprom}" of="${rompath}" bs=1 \
|
x_ dd if="${tmprom}" of="${rompath}" bs=1 \
|
||||||
seek=$(($(stat -c %s "${rompath}") - 0x20000)) \
|
seek=$(($(stat -c %s "${rompath}") - 0x20000)) \
|
||||||
count=64k conv=notrunc
|
count=64k conv=notrunc
|
||||||
fi
|
fi
|
||||||
xx_ rm -f "${tmprom}"
|
x_ rm -f "${tmprom}"
|
||||||
}
|
|
||||||
|
|
||||||
fail()
|
|
||||||
{
|
|
||||||
[ -z "${codedir}" ] || ./handle make file -c "${codedir}" || :
|
|
||||||
err "${1}"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
main $@
|
main $@
|
|
@ -101,12 +101,12 @@ purge_files()
|
||||||
(
|
(
|
||||||
x_ cd "${srcdir}/"
|
x_ cd "${srcdir}/"
|
||||||
[ ! -d "coreboot/default/util/kbc1126" ] || \
|
[ ! -d "coreboot/default/util/kbc1126" ] || \
|
||||||
x_ ./handle make file -c "coreboot/default/util/kbc1126"
|
x_ ./build project trees -c "coreboot/default/util/kbc1126"
|
||||||
x_ ./handle make config -x coreboot
|
x_ ./build project trees -x coreboot
|
||||||
for p in u-boot seabios coreboot; do
|
for p in u-boot seabios coreboot; do
|
||||||
x_ ./handle make config -c "${p}"
|
x_ ./build project trees -c "${p}"
|
||||||
done
|
done
|
||||||
x_ ./handle make file -c bios_extract flashrom grub uefitool \
|
x_ ./build project trees -c bios_extract flashrom grub uefitool \
|
||||||
util-fw/stm32-vserprog util-fw/stm32-vserprog/libopencm3 \
|
util-fw/stm32-vserprog util-fw/stm32-vserprog/libopencm3 \
|
||||||
memtest86plus/build32 memtest86plus/build64 util/*
|
memtest86plus/build32 memtest86plus/build64 util/*
|
||||||
|
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
#!/usr/bin/env sh
|
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
||||||
# SPDX-FileCopyrightText: 2023 Leah Rowe <leah@libreboot.org>
|
|
||||||
|
|
||||||
[ "x${DEBUG+set}" = 'xset' ] && set -v
|
|
||||||
set -u -e
|
|
||||||
|
|
||||||
. "include/err.sh"
|
|
||||||
. "include/make.sh"
|
|
||||||
|
|
||||||
eval "$(setvars "" mode project _flag codedir)"
|
|
||||||
|
|
||||||
# main() is in include/make.sh
|
|
||||||
|
|
||||||
handle_dependencies()
|
|
||||||
{
|
|
||||||
[ $# -gt 0 ] && x_ ./handle make file ${_flag} ${@}
|
|
||||||
|
|
||||||
[ -d "${project}" ] || x_ ./update project repo "${project%/*}"
|
|
||||||
[ -d "${project}" ] || \
|
|
||||||
err "handle_dependencies: ${project%/*} not downloaded"
|
|
||||||
|
|
||||||
[ "${project}" = "uefitool" ] || return 0 # TODO: remove hardcoding
|
|
||||||
(
|
|
||||||
x_ cd uefitool
|
|
||||||
cmake UEFIExtract/ || [ -f Makefile ] || \
|
|
||||||
err "handle_dependencies: !cmake UEFIExtract/"
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
handle_targets()
|
|
||||||
{
|
|
||||||
[ -f "${project}/Makefile" ] || [ -f "${project}/makefile" ] || \
|
|
||||||
[ -f "${project}/GNUmakefile" ] || return 0
|
|
||||||
[ "${mode}" = "all" ] && x_ make -C "${project}" -j$(nproc) && return 0
|
|
||||||
x_ make -C "${project}" clean
|
|
||||||
make -C "${project}" distclean 2>/dev/null || :
|
|
||||||
}
|
|
||||||
|
|
||||||
main $@
|
|
|
@ -47,7 +47,7 @@ build_dependencies()
|
||||||
x_ ./update project repo "${d}"
|
x_ ./update project repo "${d}"
|
||||||
done
|
done
|
||||||
[ -f uefitool/uefiextract ] || \
|
[ -f uefitool/uefiextract ] || \
|
||||||
x_ ./handle make file -b uefitool
|
x_ ./build project trees -b uefitool
|
||||||
[ -f "${cbdir}/util/kbc1126/kbc1126_ec_dump" ] || \
|
[ -f "${cbdir}/util/kbc1126/kbc1126_ec_dump" ] || \
|
||||||
x_ make -C "${cbdir}/util/kbc1126"
|
x_ make -C "${cbdir}/util/kbc1126"
|
||||||
x_ ./build coreboot utils default
|
x_ ./build coreboot utils default
|
||||||
|
|
Loading…
Reference in New Issue