diff options
author | Ian Moffett <ian@osmora.org> | 2023-12-21 10:42:14 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2023-12-21 10:42:14 -0500 |
commit | e1b2a505f0ea92da30ac51d7bdb40a9f586d4af0 (patch) | |
tree | eeaebc6f7dd829c2ea1cee0c7fcc1684f480d0cd /sys | |
parent | ea0290d541d985f84e77f1e8f3b8fadfb5fa9fd9 (diff) |
build: Update build constant OS prefixes
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys')
-rw-r--r-- | sys/include/lib/logo.h | 2 | ||||
-rw-r--r-- | sys/kern/init_main.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sys/include/lib/logo.h b/sys/include/lib/logo.h index ad999b4..4d5c93a 100644 --- a/sys/include/lib/logo.h +++ b/sys/include/lib/logo.h @@ -33,7 +33,7 @@ #define COPYRIGHT "Copyright (c) 2023 Ian Marco Moffett and the Osmora Team." #define PRINT_LOGO() \ - kprintf("%s v%s\n\n", g_logo, VEGA_VERSION); \ + kprintf("%s v%s\n\n", g_logo, HYRA_VERSION); \ kprintf("\t%s\n\n", COPYRIGHT); extern uint8_t g_logo[]; diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c index 8e77010..6840b3b 100644 --- a/sys/kern/init_main.c +++ b/sys/kern/init_main.c @@ -78,8 +78,8 @@ main(void) PRINT_LOGO(); kprintf("Hyra/%s v%s: %s (%s)\n", - VEGA_ARCH, VEGA_VERSION, VEGA_BUILDDATE, - VEGA_BUILDBRANCH); + HYRA_ARCH, HYRA_VERSION, HYRA_BUILDDATE, + HYRA_BUILDBRANCH); acpi_init(); |