Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions sp-sim/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ pub use update::HostFlashHashPolicy;

pub const SIM_ROT_BOARD: &str = "SimRot";

/// The staging/devel key signature reported in simulated RoT/stage0 cabooses.
pub const ROT_STAGING_DEVEL_SIGN: &str =
"11594bb5548a757e918e6fe056e2ad9e084297c9555417a025d8788eacf55daf";

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Responsiveness {
Responsive,
Expand Down
4 changes: 1 addition & 3 deletions sp-sim/src/update.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ use std::mem;
use std::time::Duration;
use std::time::Instant;

use crate::ROT_STAGING_DEVEL_SIGN;
use crate::SIM_GIMLET_BOARD;
use crate::SIM_ROT_BOARD;
use crate::SIM_SIDECAR_BOARD;
Expand Down Expand Up @@ -90,9 +91,6 @@ impl SimSpUpdate {
const ROT_GITC1: &str = "edededed";
const ROT_VERS0: &str = "0.0.4";
const ROT_VERS1: &str = "0.0.3";
// staging/devel key signature
const ROT_STAGING_DEVEL_SIGN: &str =
"11594bb5548a757e918e6fe056e2ad9e084297c9555417a025d8788eacf55daf";

const STAGE0_GITC0: &str = "ddddddddd";
const STAGE0_GITC1: &str = "dadadadad";
Expand Down
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.