diff options
author | Leah Rowe <leah@libreboot.org> | 2024-07-09 01:31:25 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2024-07-09 02:55:20 +0100 |
commit | 9646172145e62ab39a050c0536f6d82bf84c844d (patch) | |
tree | 5e15dcf2e86e5cbef0fa8c40315a19241c7f1894 /config/data/coreboot/mkhelper.cfg | |
parent | e850c06bd209e592ec015d52e7202a00e56d7644 (diff) |
trees: support -d (dry run) for custom build logic
-d does the same as -b, except for actually building
anything! in effect, it does the same as -f (fetch)
except that the resulting variable assignments will
not be recursive (as with -f).
if -d is passed, configuration is still loaded, defconfig
files are still cycled through, and more importantly:
helper functions are still processed.
the grub, serprog and coreboot helper functions have
been modified to return early (zero status) if -d is
passed.
this behaviour will be used to integrate vendor.sh
logic in with the trees script, for cases where the
user wants to only handle vendor files. e.g.:
./update trees -b coreboot x230_12mb
this would download the files as usual, build coreboot,
with those files, and then build the payloads. but:
./update trees -d coreboot x230_12mb
this would download the files, NOT build coreboot, and
NOT build the payloads.
this change increases the sloccount a bit, but i'm relying
on the fact that the vendor.sh script already re-implements
config handling wastefully; the plan is to only use trees.
for now, simply stub the same ./vendor download command.
there is one additional benefit to doing it this way:
this method is *per-kconfig* rather than per-target.
this way, one kconfig might specify a given vendor file
that is not specified in the other. although the stub
still simply handles this per target, it's done in premake,
which means that the given .config file has been copied.
this means that when i properly re-integrate the logic
into script/trees, i'll be able to go for it per-kconfig.
the utils command has been removed, e.g.
./update trees -b coreboot utils default
the equivalent is now:
./update trees -d coreboot default
this would technically download vendor files, but here
we are specifying a target for which no kconfigs exist;
a check is also in place, to avoid running the vendor file
download logic if tree==target
the overall effect of this change is that the trees script
no longer contains any project-specific logic, except for
the crossgcc build logic.
it does include some config/data mkhelper files at the top,
for serprog and coreboot, so that those variables defined in
those files can be global, but another solution to mitigate
that will also be implemented in a future commit.
the purpose of this and other revisions (in the final push
to complete lbmk audit 6 / cbmk audit 2) is to generalise as
much logic as possible, removing various ugly hacks.
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'config/data/coreboot/mkhelper.cfg')
-rw-r--r-- | config/data/coreboot/mkhelper.cfg | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/data/coreboot/mkhelper.cfg b/config/data/coreboot/mkhelper.cfg index c23ebdf4..a1c48e63 100644 --- a/config/data/coreboot/mkhelper.cfg +++ b/config/data/coreboot/mkhelper.cfg @@ -9,5 +9,6 @@ v="$v displaymode tmprom" eval `setvars "n" $pv` eval `setvars "" $v` +premake="mkvendorfiles" mkhelper="mkcorebootbin" postmake="mkcoreboottar" |