From c5a7b3279cd4c4928de523a949c396f97926ba3a Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sun, 19 Apr 2026 20:45:47 -0400 Subject: [PATCH] sp1: os: Knot kernel at last execution Signed-off-by: Ian Moffett --- usr/src/sp1/common/os/main.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/usr/src/sp1/common/os/main.c b/usr/src/sp1/common/os/main.c index 1fc7e56..4f02b72 100644 --- a/usr/src/sp1/common/os/main.c +++ b/usr/src/sp1/common/os/main.c @@ -11,6 +11,7 @@ #include #include +#include #include #include #include @@ -50,4 +51,8 @@ main(void) /* Initialize physical memory management */ mm_physmem_init(); + + printf("[*] sp1 is pre-alpha\n"); + printf("[*] knotting kernel...\n"); + knot("end of kernel reached - halting\n"); }