diff options
author | Leah Rowe <leah@libreboot.org> | 2024-07-10 13:06:32 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-07-10 13:41:15 +0100 |
commit | 459db1cc2eaa1d40543f7f63345ea4ca27daad9a (patch) | |
tree | 578f1450e2e764c262e77294d88e5582f39e5846 /script/trees | |
parent | e9f66ec4a80a2904840b005cd41fbf9b10d1871c (diff) |
trees: remove project-specific hacks
move the coreboot-specific includes into mkhelper.cfg
for that project.
on some projects, we need variables from mkhelper.cfg
to be global, so I was including serprog and coreboot
mkhelper.cfg files in this script.
instead, set a new variable "mkhelpercfg" pointing to
the config file. if it doesn't exist, create and then
point to a temporary (empty) mkhelper.cfg file.
the rom.sh include has been moved to coreboot mkhelper.cfg
The only remaining project-specific logic, in this trees
script, is now the coreboot crossgcc handling, but this
needs to be there as it's also used to build U-Boot.
The way this now works, certain includes are done twice.
For example, include/rom.sh will be included once globally,
outside of main(), and then again in configure_project().
This means that certain functions will be defined twice.
I'm uncertain if shell has anything equivalent to an ifdef
guard as in C, but we actually want this here anyway, and
it shouldn't cause any problems. It's a bit of a hack, but
otherwise results in much cleaner code.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/trees')
-rwxr-xr-x | script/trees | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/script/trees b/script/trees index 1d8c755f..e8f8756f 100755 --- a/script/trees +++ b/script/trees @@ -8,15 +8,11 @@ set -u -e . "include/lib.sh" . "include/git.sh" -. "include/rom.sh" - -. "config/data/pico-serprog/mkhelper.cfg" -. "config/data/coreboot/mkhelper.cfg" eval `setvars "" xarch cdir defconfig cmakedir xlang mode makeargs elfdir cmd \ project target target_dir targets xtree _f release bootstrapargs mkhelper \ autoconfargs listfile autogenargs btype tree rev tree_depend build_depend \ - premake postmake` + premake postmake mkhelpercfg` main() { @@ -54,10 +50,16 @@ main() listfile="$datadir/build.list" # needed on multi, optional on single [ -f "$listfile" ] || listfile="" # optional on all projects + mkhelpercfg="$datadir/mkhelper.cfg" + + targets="$@" remkdir "${tmpgit%/*}" +} - cmd="build_targets" && singletree "$project" && cmd="build_project" - $cmd $@ +handle_project() +{ + cmd="build_targets $targets" && singletree "$project" && \ + cmd="build_project"; $cmd [ -f "$listfile" ] || return 0 [ -z "$mode" ] && [ "$_f" = "-b" ] && \ @@ -84,9 +86,8 @@ build_targets() { [ -d "$cfgsdir" ] || $err "directory, $cfgsdir, does not exist" - # Build for all targets if no argument is given - targets="$(ls -1 "$cfgsdir")" || $err "Can't get options for $cfgsdir" - [ $# -gt 0 ] && targets=$@ + [ $# -gt 0 ] || \ + targets="$(ls -1 "$cfgsdir")" || $err "$cfgsdir: Canot get options" handle_targets } @@ -288,3 +289,7 @@ copy_elf() } main $@ +e "$mkhelpercfg" f missing && mkhelpercfg="$TMPDIR/mkhelper.cfg" && x_ \ + touch "$mkhelpercfg" +. "$mkhelpercfg" +handle_project |