From efd7d3cbd846a91e9050b952972637fa012525cc Mon Sep 17 00:00:00 2001 From: Emanuele Aliberti Date: Wed, 17 Jan 2001 19:07:13 +0000 Subject: [PATCH] Bootstrap title and short licence banner reformatted. Please say your opinion about it. Should the title line ("Starting ReactOS...") be the 1st line on the blue screen? svn path=/trunk/; revision=1533 --- reactos/ntoskrnl/ke/main.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/reactos/ntoskrnl/ke/main.c b/reactos/ntoskrnl/ke/main.c index 613370e492e..1384d0a84e5 100644 --- a/reactos/ntoskrnl/ke/main.c +++ b/reactos/ntoskrnl/ke/main.c @@ -1,4 +1,4 @@ -/* $Id: main.c,v 1.74 2001/01/17 15:38:02 dwelch Exp $ +/* $Id: main.c,v 1.75 2001/01/17 19:07:13 ea Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -13,7 +13,7 @@ #include #include -#include +#include #include #include #include @@ -489,13 +489,12 @@ _main (ULONG MultiBootMagic, PLOADER_PARAMETER_BLOCK _LoaderBlock) */ HalDisplayString("Starting ReactOS "KERNEL_VERSION_STR" (Build " KERNEL_VERSION_BUILD_STR")\n"); - HalDisplayString("Copyright 2000 (So who owns the copyright?).\n"); - HalDisplayString("ReactOS is free software, covered by the GNU General " + HalDisplayString(RES_STR_LEGAL_COPYRIGHT); + HalDisplayString("\n\nReactOS is free software, covered by the GNU General " "Public License, and you\n"); HalDisplayString("are welcome to change it and/or distribute copies of it " "under certain\n"); - HalDisplayString("conditions.\n"); - HalDisplayString("There is absolutely no warranty for ReactOS.\n"); + HalDisplayString("conditions. There is absolutely no warranty for ReactOS.\n"); last_kernel_address = KeLoaderModules[KeLoaderBlock.ModsCount - 1].ModEnd;