From 999b290feb3c72ac8bc0e20055faed8cb1531396 Mon Sep 17 00:00:00 2001 From: Nathan Giddings Date: Fri, 17 Jul 2020 12:29:34 -0500 Subject: [PATCH] Print package string on startup --- src/quarkkernel.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/quarkkernel.cpp b/src/quarkkernel.cpp index 27db887..b9c74e4 100755 --- a/src/quarkkernel.cpp +++ b/src/quarkkernel.cpp @@ -9,6 +9,7 @@ #include "pio.hpp" #include "tty.hpp" #include "util.hpp" +#include "config.h" using namespace kernel; @@ -18,7 +19,7 @@ extern MemoryMap::Region memory_map; void main(char* cmdline) { TTY tty((char*) 0xC00B8000); - tty << "--Quark Kernel--\n"; + tty << PACKAGE_STRING << '\n'; tty << "Low memory: \t" << (int) system_info.getLowMemory() << " KiB\n"; tty << "High memory:\t" << (int) system_info.getHighMemory() << " KiB\n"; tty << "Type\t\tLocation\t\tSize\n";