mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-13 14:59:34 +02:00
unify most module build scripts
Some of them weren't even used at all, such as the flashrom build script. the bios_extract build script existed but was never used, because we only called (from blobutil) a python script from in there, without actually compiling anything! resources/script/build/src/for Usage, e.g.: ./build src for memtest86plus It also handles fetch. This script is intended largely for those codebases that are quite simple, requiring trivial or no intervention besides running "make". 37 sloc reduction. Not a lot, but the audit continues! These optimisations add up. I started at 3300 sloc in resources/scripts and me target is 2k (2000) sloc. Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
@@ -207,7 +207,7 @@ build_dependencies()
|
||||
|| fail "could not download uefitool"
|
||||
fi
|
||||
if [ ! -f uefitool/uefiextract ]; then
|
||||
./build module uefitool \
|
||||
./build src for uefitool \
|
||||
|| fail "could not build uefitool"
|
||||
fi
|
||||
if [ ! -f ${cbdir}/util/kbc1126/kbc1126_ec_dump ]; then
|
||||
|
||||
@@ -149,7 +149,7 @@ build_dependencies()
|
||||
./fetch_trees coreboot default
|
||||
fi
|
||||
|
||||
./build module cbutils default || fail "could not build cbutils"
|
||||
./build coreboot utils default || fail "could not build cbutils"
|
||||
|
||||
./update blobs download ${board} || \
|
||||
fail "Could not download blobs for ${board}"
|
||||
|
||||
@@ -76,7 +76,7 @@ build_dependencies()
|
||||
if [ ! -d "${cbdir}/" ]; then
|
||||
./fetch_trees coreboot default || return 1
|
||||
fi
|
||||
./build module cbutils default || return 1
|
||||
./build coreboot utils default || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user