summaryrefslogtreecommitdiff
path: root/utility/dev_debug_vboot
diff options
context:
space:
mode:
authorBill Richardson <wfrichar@chromium.org>2014-12-04 11:29:57 -0800
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2014-12-06 01:11:42 +0000
commitcfe83a827d40b310003fc6996b9978d8cf301444 (patch)
treecb5f1b9d35c5873d4976c6cd22bb93bc61011f76 /utility/dev_debug_vboot
parent308d2540929cd95e2a565be95ce0b1d45d2fbed2 (diff)
downloadvboot-cfe83a827d40b310003fc6996b9978d8cf301444.tar.gz
Allow /etc/defaults/vboot_reference to customise some utilities
The dev_debug_vboot program can sometimes interfere with automated firmware testing because it takes too long to read the BIOS flash. Limiting the sections of flash that are read may help, but in some cases skipping this program entirely may be better. This CL does three things: 1. dev_debug_vboot will read only some sections of the BIOS flash, falling back to reading the whole thing only if it fails at that. 2. dev_debug_vboot will source /etc/default/vboot_reference if it exists. Putting DEV_DEBUG_FORCE=1 in that file will prevent dev_debug_vboot from reading the flash at all unless it's invoked with --force option. 3. The Makefile will create the /etc/default/vboot_reference file in the install directory, setting DEV_DEBUG_FORCE to the value in effect at build time. This will let a future CL change the default behavior for each target. BUG=chromium:438854 BRANCH=none TEST=manual Built and tested on Samus. /etc/default/vboot_reference was present, containing "DEV_DEBUG_FORCE=". The dev_debug_vboot script ran normally. Manually changing /etc/default/vboot_reference to contain "DEV_DEBUG_FORCE=1" and rebooting caused dev_debug_vboot to stop before reading the BIOS flash. I also manually forced various flashrom invocations to fail to test each part of the new flow. Change-Id: Ib319dd16b9026162d01f435f15570ec8ba99c512 Signed-off-by: Bill Richardson <wfrichar@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/233228 Reviewed-by: David Hendricks <dhendrix@chromium.org> Reviewed-by: Stefan Reinauer <reinauer@chromium.org>
Diffstat (limited to 'utility/dev_debug_vboot')
-rwxr-xr-xutility/dev_debug_vboot53
1 files changed, 37 insertions, 16 deletions
diff --git a/utility/dev_debug_vboot b/utility/dev_debug_vboot
index 6e2724f5..890bfe1f 100755
--- a/utility/dev_debug_vboot
+++ b/utility/dev_debug_vboot
@@ -18,6 +18,7 @@ PUBLOGFILE="/var/log/debug_vboot_noisy.log"
OPT_CLEANUP=
OPT_BIOS=
+OPT_FORCE=
OPT_IMAGE=
OPT_KERNEL=
OPT_VERBOSE=
@@ -170,14 +171,19 @@ fix_old_names() {
true
}
-
##############################################################################
# Here we go...
umask 022
+# defaults
+DEV_DEBUG_FORCE=
+
+# override them?
+[ -f /etc/default/vboot_reference ] && . /etc/default/vboot_reference
+
# Pre-parse args to replace actual args with a sanitized version.
-TEMP=$(getopt -o hvb:i:k:c --long help,bios:,image:,kernel:,cleanup \
+TEMP=$(getopt -o hvb:i:k:cf --long help,bios:,image:,kernel:,cleanup,force \
-n $0 -- "$@")
eval set -- "$TEMP"
@@ -203,6 +209,10 @@ while true ; do
OPT_CLEANUP=yes
shift
;;
+ -f|--force)
+ OPT_FORCE=yes
+ shift
+ ;;
-v)
OPT_VERBOSE=yes
shift
@@ -221,6 +231,7 @@ while true ; do
;;
esac
done
+
if [ -z "${1:-}" ]; then
TMPDIR=$(mktemp -d /tmp/debug_vboot_XXXXXXXXX)
else
@@ -234,14 +245,21 @@ fi
cd ${TMPDIR} || exit 1
echo "Running $0 $*" > "$LOGFILE"
log date
+debug "DEV_DEBUG_FORCE=($DEV_DEBUG_FORCE)"
debug "OPT_CLEANUP=($OPT_CLEANUP)"
debug "OPT_BIOS=($OPT_BIOS)"
+debug "OPT_FORCE=($OPT_FORCE)"
debug "OPT_IMAGE=($OPT_IMAGE)"
debug "OPT_KERNEL=($OPT_KERNEL)"
debug "FLAG_SAVE_LOG_FILE=($FLAG_SAVE_LOG_FILE)"
echo "Saving verbose log as $LOGFILE"
trap cleanup EXIT
+if [ -n "${DEV_DEBUG_FORCE}" ] && [ -z "${OPT_FORCE}" ]; then
+ info "Not gonna do anything without the --force option."
+ exit 0
+fi
+
# Make sure we have the programs we need
need="futility"
@@ -272,20 +290,23 @@ if [ -n "${OPT_BIOS}" ]; then
log futility dump_fmap -x "${OPT_BIOS}"
fix_old_names
else
- # Read it from the flash
- if log flashrom -p host -r bios.rom ; then
- # If we can read the whole BIOS at once, great.
- log futility dump_fmap -x bios.rom
- fix_old_names
- else
- # Otherwise pull just the components we want (implying new-style names)
- info " ...individually..."
- log flashrom -p host -r /dev/null \
- -i"GBB":GBB \
- -i"VBLOCK_A":VBLOCK_A \
- -i"VBLOCK_B":VBLOCK_B \
- -i"FW_MAIN_A":FW_MAIN_A \
- -i"FW_MAIN_B":FW_MAIN_B
+ # First try pulling just the components we want (using new-style names)
+ if log flashrom -p host -r /dev/null \
+ -i"GBB":GBB \
+ -i"FMAP":FMAP \
+ -i"VBLOCK_A":VBLOCK_A \
+ -i"VBLOCK_B":VBLOCK_B \
+ -i"FW_MAIN_A":FW_MAIN_A \
+ -i"FW_MAIN_B":FW_MAIN_B ; then
+ log futility dump_fmap FMAP
+ else
+ info "Couldn't read individual components. Read the whole thing..."
+ if log flashrom -p host -r bios.rom ; then
+ log futility dump_fmap -x bios.rom
+ fix_old_names
+ else
+ logdie "Can't read BIOS at all. Giving up."
+ fi
fi
fi