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
This commit is contained in:
Ingo Weinhold
2010-03-11 18:15:43 +00:00
parent 28a2172c3f
commit 8d25a30c3f
+2 -2
View File
@@ -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;