trees: rename variable "config" to defconfig

Signed-off-by: Leah Rowe <leah@libreboot.org>
audit6
Leah Rowe 2024-06-30 14:08:22 +01:00
parent 7394960619
commit 030f1afd8e
1 changed files with 8 additions and 8 deletions

View File

@ -10,9 +10,9 @@ set -u -e
. "include/git.sh" . "include/git.sh"
cbmakeargs="UPDATED_SUBMODULES=1 CPUS=$XBMK_THREADS" cbmakeargs="UPDATED_SUBMODULES=1 CPUS=$XBMK_THREADS"
eval `setvars "" xarch cdir config cmakedir xlang mode makeargs elfdir xtree \ eval `setvars "" xarch cdir defconfig cmakedir xlang mode makeargs elfdir cmd \
project target target_dir targets tree _f target1 bootstrapargs mkhelper \ project target target_dir targets xtree _f target1 bootstrapargs mkhelper \
autoconfargs config_name listfile autogenargs btype cmd` autoconfargs config_name listfile autogenargs btype tree`
main() main()
{ {
@ -108,8 +108,8 @@ handle_defconfig()
for y in "$target_dir/config"/*; do for y in "$target_dir/config"/*; do
[ -f "$y" ] || continue [ -f "$y" ] || continue
config="$y" defconfig="$y"
config_name="${config#"$target_dir/config/"}" config_name="${defconfig#"$target_dir/config/"}"
[ -n "$mode" ] || check_config || continue [ -n "$mode" ] || check_config || continue
handle_makefile handle_makefile
@ -205,7 +205,7 @@ check_coreboot_utils()
check_config() check_config()
{ {
[ -f "$config" ] || $err "check_config $project/$target: no config" [ -f "$defconfig" ] || $err "check_config $project/$target: no config"
dest_dir="$elfdir/$target/$config_name" dest_dir="$elfdir/$target/$config_name"
elfcheck || return 1 # skip build if a previous one exists elfcheck || return 1 # skip build if a previous one exists
@ -224,14 +224,14 @@ elfcheck()
handle_makefile() handle_makefile()
{ {
check_makefile "$cdir" && x_ make clean -C "$cdir" check_makefile "$cdir" && x_ make clean -C "$cdir"
x_ cp "$config" "$cdir/.config" x_ cp "$defconfig" "$cdir/.config"
[ -n "$mode" ] || [ -n "$btype" ] || make -C "$cdir" \ [ -n "$mode" ] || [ -n "$btype" ] || make -C "$cdir" \
silentoldconfig || make -C "$cdir" oldconfig || : silentoldconfig || make -C "$cdir" oldconfig || :
run_make_command || $err "handle_makefile $cdir: no makefile!" run_make_command || $err "handle_makefile $cdir: no makefile!"
_copy=".config" && [ "$mode" = "savedefconfig" ] && _copy="defconfig" _copy=".config" && [ "$mode" = "savedefconfig" ] && _copy="defconfig"
[ "${mode%config}" = "$mode" ] || x_ cp "$cdir/$_copy" "$config" [ "${mode%config}" = "$mode" ] || x_ cp "$cdir/$_copy" "$defconfig"
[ -e "$cdir/.git" ] && [ "$project" = "u-boot" ] && \ [ -e "$cdir/.git" ] && [ "$project" = "u-boot" ] && \
[ "$mode" = "distclean" ] && x_ git -C "$cdir" clean -fdx; return 0 [ "$mode" = "distclean" ] && x_ git -C "$cdir" clean -fdx; return 0