diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-18 13:54:08 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-18 13:54:08 -0400 |
commit | df5eb26ab729a3230b0fc087b734a29e92697356 (patch) | |
tree | b7b47809d401ab62ee9abc146996db0d7c7b38f5 /src/sys/os/os_init.c | |
parent | c0b1a2d6c0e0009a32755911b2a2f65de0e50986 (diff) |
kern: Bump L5 version to v0.0.2
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/os/os_init.c')
-rw-r--r-- | src/sys/os/os_init.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sys/os/os_init.c b/src/sys/os/os_init.c index 3c564e3..8480a3f 100644 --- a/src/sys/os/os_init.c +++ b/src/sys/os/os_init.c @@ -29,6 +29,7 @@ #include <sys/cdefs.h> #include <sys/panic.h> +#include <sys/sysvar.h> #include <sys/syslog.h> #include <sys/proc.h> #include <sys/cpuvar.h> @@ -47,7 +48,7 @@ boot_print(void) { printf("%s\n", g_LOGO); printf("Copyright (c) 2025 Ian Marco Moffett, et al\n"); - printf("booting l5 lunos v0.0.1...\n"); + printf("booting l5 lunos %s...\n", _L5_VERSION); } /* |