Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions framework_lib/src/chromium_ec/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1102,6 +1102,12 @@ impl CrosEc {
return Err(err);
}
};

// Need to explicitly handle CTRL-C termination on UEFI Shell
#[cfg(feature = "uefi")]
if shell_get_execution_break_flag() {
return Ok(console);
}
}
}

Expand Down