From c4b14223076c92c55a16de4d7d0a8cd5ecfc3186 Mon Sep 17 00:00:00 2001 From: David Garske Date: Wed, 22 Oct 2025 12:59:22 -0700 Subject: [PATCH] Fix build error with MMU defined. --- hal/filesystem.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hal/filesystem.c b/hal/filesystem.c index 5a2cb78c..01dc1a7a 100644 --- a/hal/filesystem.c +++ b/hal/filesystem.c @@ -62,7 +62,12 @@ void hal_prepare_boot(void) { return; } + +#ifdef MMU +void do_boot(const uint32_t *app_offset, const uint32_t* dts_offset) +#else void do_boot(const uint32_t *app_offset) +#endif { (void)app_offset; }