kernel: print version banner on boot

This commit is contained in:
2023-02-04 19:19:48 +00:00
parent 49d2b0a847
commit 17b90a484a
3 changed files with 10 additions and 3 deletions

View File

@@ -1,3 +1,4 @@
#include <socks/init.h>
#include <socks/machine/cpu.h>
#include <socks/machine/vgacon.h>
@@ -13,5 +14,8 @@ int ml_init(uintptr_t arg)
{
bootstrap_cpu_init();
vgacon_init();
print_kernel_banner();
return 0;
}