Skip to content

Commit

Permalink
Add FwId for non-logging app firmware.
Browse files Browse the repository at this point in the history
This will be the firmware image typically used in production.
  • Loading branch information
korran committed Dec 6, 2023
1 parent 66532a9 commit 6e1c520
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions builder/src/firmware.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ pub const FMC_FAKE_WITH_UART: FwId = FwId {
features: &["emu", "fake-fmc"],
};

pub const APP: FwId = FwId {
crate_name: "caliptra-runtime",
bin_name: "caliptra-runtime",
features: &["fips_self_test"],
};

pub const APP_WITH_UART: FwId = FwId {
crate_name: "caliptra-runtime",
bin_name: "caliptra-runtime",
Expand Down Expand Up @@ -358,6 +364,7 @@ pub const REGISTERED_FW: &[&FwId] = &[
&ROM_FAKE_WITH_UART,
&FMC_WITH_UART,
&FMC_FAKE_WITH_UART,
&APP,
&APP_WITH_UART,
&caliptra_builder_tests::FWID,
&hw_model_tests::MAILBOX_RESPONDER,
Expand Down

0 comments on commit 6e1c520

Please sign in to comment.