* The boot loader (bios_ia32 only) now duplicates everything that goes to the

serial output, and puts it into the new kernel_args::debug_output field.
* syslog_init() will now check if there is anything in kernel_args::debug_output
  and will put that into the syslog buffer.
* dump_block() now also prints an offset.
* Fixed warning in mmu.cpp.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23003 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2007-11-27 12:59:34 +00:00
parent 04f08f4f65
commit 3ae3b04bce
7 changed files with 43 additions and 14 deletions
+4 -1
View File
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2006, Axel Dörfler, [email protected].
* Copyright 2002-2007, Axel Dörfler, [email protected].
* Distributed under the terms of the MIT License.
*
* Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
@@ -70,6 +70,9 @@ typedef struct kernel_args {
addr_range physical_buffer;
} frame_buffer;
void *debug_output;
uint32 debug_size;
platform_kernel_args platform_args;
arch_kernel_args arch_args;
} kernel_args;