From dfafeaf313c79b112de4408a9320554dbe3d6d07 Mon Sep 17 00:00:00 2001 From: "Chloe M." Date: Fri, 10 Jul 2026 05:32:42 +0000 Subject: [PATCH] ptos: ke: Display copyright on boot Signed-off-by: Chloe M. --- service/ptos/ke/init.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/service/ptos/ke/init.c b/service/ptos/ke/init.c index f31db49..3b49e5d 100644 --- a/service/ptos/ke/init.c +++ b/service/ptos/ke/init.c @@ -8,10 +8,21 @@ #include #include +#include #include #include #include +/* + * Display the copyright for legal reasons + */ +static VOID +Copyright(VOID) +{ + TRACE("~ Plural Technology ~\n"); + TRACE("Copyright (c) 2026, Chloe M., et al\n"); +} + /* * Starting here is where the world is brought up and system * components are initialized. @@ -24,4 +35,7 @@ KiKernelInit(VOID) /* Initialize the serial driver */ HalSerialInit(); + + /* Display the copyright */ + Copyright(); }