Martin L Roth has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/72766 )
Change subject: util/scripts/testsoc: Pass arguments to abuild ......................................................................
util/scripts/testsoc: Pass arguments to abuild
This allows the user to pass one or more arguments through the testsoc script to abuild.
Example: testsoc -K SOC_AMD_CEZANNE -a "--skip_unset BOARD_GOOGLE_NIPPERKIN"
Signed-off-by: Martin Roth gaumless@gmail.com Change-Id: Ic2bc8d656022560ed1eebf6eee0512d3633ebe84 --- M util/scripts/testsoc 1 file changed, 27 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/66/72766/1
diff --git a/util/scripts/testsoc b/util/scripts/testsoc index 81ce2f0..c093042 100755 --- a/util/scripts/testsoc +++ b/util/scripts/testsoc @@ -11,6 +11,9 @@ CPUS=$(nproc || echo "4") NO_CROS=0
+# Extra arguments to pass to abuild +ABUILD_ARGS="" + # Text STYLE variables BOLD="\033[1m" RED='\033[38;5;9m' @@ -26,6 +29,7 @@ Usage: ${PROGNAME} [options]
Options: + -a | --abuild "<text>" Specify options to pass to abuild -C | --cpus <num> Specify number of CPUs to use (currently ${CPUS}) -K | --kconfig <CONFIG> Search for Kconfig option -n | --no_cros Don't run chromeos builds @@ -66,7 +70,7 @@ local mblist local mainboards=()
- if ! args="$(getopt -l version,help,debug,nocolor,kconfig:,cpus:,no_cros -o C:K:nDhV -- "$@")"; then + if ! args="$(getopt -l version,help,debug,nocolor,kconfig:,cpus:,no_cros,abuild: -o a:C:K:nDhV -- "$@")"; then usage exit 1 fi @@ -75,6 +79,10 @@
while true; do case "$1" in + -a | --abuild) + shift + ABUILD_ARGS=$1 + ;; -C | --cpus) shift CPUS=$1 @@ -155,7 +163,7 @@ rm -rf "./${OUTPUT}"
# Non-CrOS build - if ! "${ABUILD}" --exitcode --cpus ${CPUS} --target "${board}"; then + if ! "${ABUILD}" --exitcode --cpus ${CPUS} --target "${board}" ${ABUILD_ARGS}; then _echo_error "Error: Non-cros build of ${board} failed." exit 1 fi @@ -163,7 +171,7 @@ # CrOS build if [[ ${NO_CROS} -eq 0 ]]; then rm -rf "./${OUTPUT}" - if ! "${ABUILD}" --exitcode --cpus ${CPUS} --target "${board}" --chromeos; then + if ! "${ABUILD}" --exitcode --cpus ${CPUS} --target "${board}" --chromeos ${ABUILD_ARGS}; then _echo_error "Error: CrOS build of ${board} failed." exit 1 fi