From ecaa58d5e51c4a2aea4cc42ac2fe589991d0c990 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Sat, 7 Mar 2026 12:22:36 +0100 Subject: [PATCH] bootstrap: Remove outdated fixme The initfs data is already mapped as read-only by the "rest of memory" mprotect. --- bootstrap/src/start.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/bootstrap/src/start.rs b/bootstrap/src/start.rs index e681df452d..14a97ac2ad 100644 --- a/bootstrap/src/start.rs +++ b/bootstrap/src/start.rs @@ -82,7 +82,5 @@ pub unsafe extern "C" fn start() -> ! { .expect("mprotect failed for rest of memory"); } - // FIXME make the initfs read-only - crate::exec::main(); }