Author: bonefish Date: 2010-03-11 19:15:43 +0100 (Thu, 11 Mar 2010) New Revision: 35817 Changeset: http://dev.haiku-os.org/changeset/35817/haiku Modified: haiku/trunk/src/system/boot/platform/bios_ia32/debug.cpp Log: Changed the location for the debug syslog buffer from 16 MB to 63 MB. On my machine the previous location was overwritten, probably by GRUB. Modified: haiku/trunk/src/system/boot/platform/bios_ia32/debug.cpp =================================================================== --- haiku/trunk/src/system/boot/platform/bios_ia32/debug.cpp 2010-03-11 17:46:36 UTC (rev 35816) +++ haiku/trunk/src/system/boot/platform/bios_ia32/debug.cpp 2010-03-11 18:15:43 UTC (rev 35817) @@ -83,8 +83,8 @@ void debug_init_post_mmu(void) { - // allocate 1 MB memory at 16 MB - addr_t base = 16 * 1024 * 1024; + // allocate 1 MB memory at 63 MB + addr_t base = 63 * 1024 * 1024; size_t size = 1024 * 1024; if (!mmu_allocate_physical(base, size)) return;