diff options
author | Ian Moffett <ian@osmora.org> | 2025-05-24 16:40:53 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-05-24 16:42:10 -0400 |
commit | 7f52818ebf05f056eb31cdcb09fbc564a4ece6c4 (patch) | |
tree | 0f617a3a391e6ba232a967c887cd6e8bfe54a258 /sys/kern/init_main.c | |
parent | 06260dd6aeedc5c4ab0d42215fc38ab459365ce3 (diff) |
project: Build Hyra with ./hyra-install.sh
- Deprecate *direct* use of 'make' for building world
- Add hyra-build.sh to replace direct use of 'make'
- Remove make vars that will no longer be used
- Update workflow script for GitHub mirror
- Add install media detection define (_INSTALL_MEDIA)
- Add install media detection logs
- Update build instructions within README.md
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/kern/init_main.c')
-rw-r--r-- | sys/kern/init_main.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c index 5845c1c..bfafaf1 100644 --- a/sys/kern/init_main.c +++ b/sys/kern/init_main.c @@ -84,6 +84,11 @@ main(void) kprintf("Starting Hyra/%s v%s: %s\n", HYRA_ARCH, HYRA_VERSION, HYRA_BUILDDATE); +#if _INSTALL_MEDIA + kprintf("Hyra install media detected\n"); + kprintf("Reform Industry!\n"); +#endif /* _INSTALL_MEDIA */ + /* Start the ACPI subsystem */ acpi_init(); |