1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-08-20 05:21:43 +02:00

flashrom_tester: Call crossystem with write protect argument

crossystem uses flashrom to gather data on some platforms. To avoid
firmware lock deadlock, call crossystem before initialising libflashrom.
When querying hardware write protect status, provide an argument to
crossystem so that only that field is queried. This also avoids the
deadlock, and improves performance.

BUG=b:239496316
BRANCH=None
TEST=on trogdor(arm), grunt(amd), hatch(intel):
TEST=flashrom_tester --libflashrom /usr/sbin/flashrom host Coreboot_ELOG_sanity
TEST=flashrom_tester /usr/sbin/flashrom host Coreboot_ELOG_sanity

Change-Id: I7d94cfc6ccbfbec91f12151eb0004724ccfc4e00
Signed-off-by: Evan Benn <evanbenn@chromium.org>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/65962
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
This commit is contained in:
Evan Benn
2022-07-19 14:20:30 +10:00
committed by Edward O'Callaghan
parent 1d38651865
commit 7346cda9e9
3 changed files with 22 additions and 92 deletions

View File

@@ -113,6 +113,10 @@ fn main() {
);
debug!("Args parsed and logging initialized OK");
debug!("Collecting crossystem info");
let crossystem =
flashrom_tester::utils::collect_crosssystem(&[]).expect("could not run crossystem");
let flashrom_path = matches
.value_of("flashrom_binary")
.expect("flashrom_binary should be required");
@@ -143,6 +147,7 @@ fn main() {
output_format,
test_names,
Some(handle_sigint()),
crossystem,
) {
eprintln!("Failed to run tests: {:?}", e);
std::process::exit(1);