summaryrefslogtreecommitdiffstats
path: root/util/abuild
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@chromium.org>2017-06-27 14:02:18 +0200
committerNico Huber <nico.h@gmx.de>2017-07-11 11:37:14 +0000
commit55ea013842b50177bc48fae8159a77596bd3a6d9 (patch)
tree0071f794133846243f3d7793b079902f6ab20e25 /util/abuild
parent9413cb5f95567abc7d2846f2853504304eed1483 (diff)
downloadcoreboot-55ea013842b50177bc48fae8159a77596bd3a6d9.tar.gz
coreboot-55ea013842b50177bc48fae8159a77596bd3a6d9.tar.bz2
coreboot-55ea013842b50177bc48fae8159a77596bd3a6d9.zip
abuild: give --silent the silent treatment
It's obsolete and without effect. Change-Id: I17c1f8bffc2048a79de58cdc2a70651796db6ba6 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: https://review.coreboot.org/20390 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'util/abuild')
-rwxr-xr-xutil/abuild/abuild23
1 files changed, 8 insertions, 15 deletions
diff --git a/util/abuild/abuild b/util/abuild/abuild
index 6591edf443db..9d775142cae8 100755
--- a/util/abuild/abuild
+++ b/util/abuild/abuild
@@ -75,10 +75,6 @@ MAKE=$i
# this can be changed to junit by -J
mode=text
-# silent mode.. no compiler calls, only warnings in the log files.
-# this is disabled per default but can be enabled with -s
-silent=
-
# quiet mode: only print pass, failure, and 'skipped' messages
quiet=false
@@ -274,14 +270,10 @@ function update_config
# shellcheck disable=SC2059
printf "$configoptions" >> "${config_file}"
- # shellcheck disable=SC2086
- # Disabling SC2086 for "$silent" only
- yes "" 2>/dev/null | $MAKE oldconfig $silent "DOTCONFIG=${config_file}" "obj=${build_dir}" "objutil=$TARGET/sharedutils" &> "${build_dir}/config.log" ; \
+ yes "" 2>/dev/null | $MAKE oldconfig "$verboseopt" "DOTCONFIG=${config_file}" "obj=${build_dir}" "objutil=$TARGET/sharedutils" &> "${build_dir}/config.log" ; \
CONFIG_OK=$?
if [ $CONFIG_OK -eq 0 ]; then
- # shellcheck disable=SC2086
- # Disabling SC2086 for "$silent" only
- $MAKE savedefconfig $silent DEFCONFIG="${defconfig_file}" DOTCONFIG="${config_file}" obj="${build_dir}" objutil="$TARGET/sharedutils" &>> "${build_dir}/config.log"
+ $MAKE savedefconfig "$verboseopt" DEFCONFIG="${defconfig_file}" DOTCONFIG="${config_file}" obj="${build_dir}" objutil="$TARGET/sharedutils" &>> "${build_dir}/config.log"
return $?
else
return 1
@@ -348,8 +340,7 @@ function compile_target
CURR=$( pwd )
#stime=`perl -e 'print time();' 2>/dev/null || date +%s`
- # shellcheck disable=SC2086
- eval $BUILDPREFIX $MAKE $silent DOTCONFIG="${build_dir}/config.build" obj="${build_dir}" objutil="$TARGET/sharedutils" BUILD_TIMELESS=$TIMELESS \
+ eval $BUILDPREFIX $MAKE "$verboseopt" DOTCONFIG="${build_dir}/config.build" obj="${build_dir}" objutil="$TARGET/sharedutils" BUILD_TIMELESS=$TIMELESS \
&> "${build_dir}/make.log" ; \
MAKE_FAILED=$?
cp .xcompile "${build_dir}/xcompile.build"
@@ -551,7 +542,6 @@ Options:\n"
[-R|--root <path>] Absolute path to coreboot sources
(defaults to $ROOT)
[--scan-build] Use clang's static analyzer
- [-s|--silent] Omit compiler calls in logs
[--timeless] Generate timeless builds
[-t|--target <vendor/board>] Attempt to build target vendor/board only
[-T|--test] Submit image(s) to automated test system
@@ -567,6 +557,7 @@ Options:\n"
[-V|--version] Print version number and exit
[-h|--help] Print this help and exit
+ [-s|--silent] obsolete
__END_OF_HELP
}
@@ -625,6 +616,7 @@ fi
chromeos=false
clean_work=false
+verboseopt='V=0'
customizing=""
configoptions=""
# testclass needs to be undefined if not used for variable expansion to work
@@ -636,7 +628,7 @@ while true ; do
-a|--all) shift; buildall=true;;
-d|--dir) shift; configdir="$1"; shift;;
-r|--remove) shift; remove=true;;
- -v|--verbose) shift; verbose=true; silent='V=1';;
+ -v|--verbose) shift; verbose=true; verboseopt='V=1';;
-q|--quiet) shift; quiet=true;;
-V|--version) shift; myversion; exit 0;;
-h|--help) shift; myversion; myhelp; exit 0;;
@@ -649,7 +641,8 @@ while true ; do
test "$1" == "1" && cpuconfig=" on 1 cpu"
expr "$1" : '-\?[0-9]\+$' > /dev/null && test "0$1" -gt 1 && cpuconfig=" on $1 cpus in parallel"
shift;;
- -s|--silent) shift; silent="-s";;
+ # obsolete option
+ -s|--silent) shift;;
--scan-build) shift
scanbuild=true
customizing="${customizing}, scan-build"