Kernel - Made things a little less chatty during boot, and fixed lack of \r in some...
authorJohn Hodge <[email protected]>
Wed, 16 May 2012 03:02:15 +0000 (11:02 +0800)
committerJohn Hodge <[email protected]>
Wed, 16 May 2012 03:02:15 +0000 (11:02 +0800)
KernelLand/Kernel/arch/x86/errors.c
KernelLand/Kernel/arch/x86/main.c
KernelLand/Kernel/modules.c

index f0f6e2b..b69f5f8 100644 (file)
@@ -244,7 +244,7 @@ void Error_Backtrace(Uint eip, Uint ebp)
                ebp = *(Uint*)ebp;
                i++;
        }
-       LogF("\n");
+       LogF("\r\n");
 }
 
 /**
index 2106b6a..75db374 100644 (file)
@@ -45,8 +45,8 @@ int kmain(Uint MbMagic, void *MbInfoPtr)
        tMBoot_Module   *mods;
        tMBoot_Info     *mbInfo;
 
-       LogF("Acess2 x86-"PLATFORM" v"EXPAND_STR(KERNEL_VERSION)"\n");
-       LogF(" Build %i, Git Hash %s\n", BUILD_NUM, gsGitHash);
+       LogF("Acess2 x86-"PLATFORM" v"EXPAND_STR(KERNEL_VERSION)"\r\n");
+       LogF(" Build %i, Git Hash %s\r\n", BUILD_NUM, gsGitHash);
        
        Log("MbMagic = %08x, MbInfoPtr = %p", MbMagic, MbInfoPtr);
        
index 98ca1a1..d703290 100644 (file)
@@ -168,7 +168,7 @@ int Module_int_Initialise(tModule *Module, const char *ArgString)
                        Log_Warning("Module", "Unable to load, reason: Miscelanious");
                        break;
                case MODULE_ERR_NOTNEEDED:
-                       Log_Debug("Module", "Unable to load, reason: Module not needed");
+//                     Log_Debug("Module", "Unable to load, reason: Module not needed");
                        break;
                case MODULE_ERR_MALLOC:
                        Log_Warning("Module", "Unable to load, reason: Error in malloc/realloc/calloc, probably not good");

UCC git Repository :: git.ucc.asn.au