[haiku-commits] r39204 - haiku/trunk/src/system/boot/platform/u-boot

  • From: ithamar.adema@xxxxxxxxxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 30 Oct 2010 15:55:29 +0200 (CEST)

Author: ithamar
Date: 2010-10-30 15:55:29 +0200 (Sat, 30 Oct 2010)
New Revision: 39204
Changeset: http://dev.haiku-os.org/changeset/39204

Modified:
   haiku/trunk/src/system/boot/platform/u-boot/mmu.cpp
Log:
* ARM: Start physical allocated range at top of memory; otherwise our page 
directory/tables won't be included


Modified: haiku/trunk/src/system/boot/platform/u-boot/mmu.cpp
===================================================================
--- haiku/trunk/src/system/boot/platform/u-boot/mmu.cpp 2010-10-30 13:45:01 UTC 
(rev 39203)
+++ haiku/trunk/src/system/boot/platform/u-boot/mmu.cpp 2010-10-30 13:55:29 UTC 
(rev 39204)
@@ -576,7 +576,7 @@
        gKernelArgs.physical_memory_range[0].size = highestRAMAddress - 
SDRAM_BASE;
        gKernelArgs.num_physical_memory_ranges = 1;
 
-       gKernelArgs.physical_allocated_range[0].start = sNextPhysicalAddress;
+       gKernelArgs.physical_allocated_range[0].start = SDRAM_BASE;
        gKernelArgs.physical_allocated_range[0].size = 0;
        gKernelArgs.num_physical_allocated_ranges = 1;
                // remember the start of the allocated physical pages


Other related posts:

  • » [haiku-commits] r39204 - haiku/trunk/src/system/boot/platform/u-boot - ithamar . adema