From a63146a798733387ddbb6ddb9d06e694637b0207 Mon Sep 17 00:00:00 2001 From: apio Date: Sun, 18 Dec 2022 18:51:25 +0100 Subject: [PATCH] Show the date and time of build :) --- kernel/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/src/main.cpp b/kernel/src/main.cpp index a9ebfe4e..9d82a61c 100644 --- a/kernel/src/main.cpp +++ b/kernel/src/main.cpp @@ -69,7 +69,7 @@ void reap_thread() Result init() { - kinfoln("Starting Moon %s", MOON_VERSION); + kinfoln("Starting Moon %s, built on %s at %s", MOON_VERSION, __DATE__, __TIME__); kinfoln("Current platform: %s", CPU::platform_string());