From 8d25a30c3f091ad9654918fd149db1a66082626b Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Thu, 11 Mar 2010 18:15:43 +0000 Subject: [PATCH] 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. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35817 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/boot/platform/bios_ia32/debug.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/system/boot/platform/bios_ia32/debug.cpp b/src/system/boot/platform/bios_ia32/debug.cpp index 9966553404..5d582fd17d 100644 --- a/src/system/boot/platform/bios_ia32/debug.cpp +++ b/src/system/boot/platform/bios_ia32/debug.cpp @@ -83,8 +83,8 @@ dprintf(const char *format, ...) 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;