From ea16463bde581412fb7c199827a97727ea9f1177 Mon Sep 17 00:00:00 2001 From: Arthur Heymans Date: Thu, 19 Dec 2024 21:37:25 +0100 Subject: [PATCH] runtime: Increase the size by 1Kb The rust 1.83 generates code that is a bit larger Signed-off-by: Arthur Heymans --- common/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/lib.rs b/common/src/lib.rs index 71c515490f..1d752f8f89 100644 --- a/common/src/lib.rs +++ b/common/src/lib.rs @@ -40,7 +40,7 @@ pub use pcr::{PcrLogEntry, PcrLogEntryId, RT_FW_CURRENT_PCR, RT_FW_JOURNEY_PCR}; pub const FMC_ORG: u32 = 0x40000000; pub const FMC_SIZE: u32 = 20 * 1024; pub const RUNTIME_ORG: u32 = FMC_ORG + FMC_SIZE; -pub const RUNTIME_SIZE: u32 = 98 * 1024; +pub const RUNTIME_SIZE: u32 = 91 * 1024; pub use memory_layout::{DATA_ORG, FHT_ORG, FHT_SIZE, MAN1_ORG}; pub use wdt::{restart_wdt, start_wdt, stop_wdt, WdtTimeout};